(scheduleId: string, note = 'Resumed via API')
| 420 | } |
| 421 | |
| 422 | async resumeSchedule(scheduleId: string, note = 'Resumed via API'): Promise<void> { |
| 423 | const client = await this.getScheduleClient(); |
| 424 | const handle = client.getHandle(scheduleId); |
| 425 | await handle.unpause(note); |
| 426 | } |
| 427 | |
| 428 | async triggerSchedule(scheduleId: string): Promise<void> { |
| 429 | const client = await this.getScheduleClient(); |
no test coverage detected