in lambda/src/GaroxaController.ts [132:141]
public async getCurrentRegularScheduleRowData(detail: GaroonScheduleDetail){
const params = this.getCurrentScheduleParams(detail)
const result = await this.client.schedule.getEvents(params as any)
const regularSchedules = result.events.filter((event)=>{
return event.eventType === "REGULAR"
})
console.log(JSON.stringify(regularSchedules, null, 2))
return regularSchedules
}