(id: string)
| 293 | } |
| 294 | |
| 295 | async getSchedule(id: string) { |
| 296 | return this.client.GET('/api/v1/schedules/{id}', { |
| 297 | params: { path: { id } }, |
| 298 | }); |
| 299 | } |
| 300 | |
| 301 | async createSchedule(schedule: CreateSchedulePayload) { |
| 302 | return this.client.POST('/api/v1/schedules', { |