public async getCurrentAllDayScheduleRowData()

in lambda/src/GaroxaController.ts [167:176]


    public async getCurrentAllDayScheduleRowData(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 === "ALL_DAY"
        })

        console.log(JSON.stringify(regularSchedules, null, 2))
        return regularSchedules
    }