Skip to content

Commit ef10355

Browse files
authored
doc(client): Dont specify exact count of prev/next schedules time (#1060)
1 parent 1fc32ab commit ef10355

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/client/src/schedule-types.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ export interface ScheduleSummary {
207207

208208
info: {
209209
/**
210-
* Most recent 10 Actions started (including manual triggers), sorted from older start time to newer.
210+
* Most recent actions started (including manual triggers), sorted from older start time to newer.
211211
*/
212212
recentActions: ScheduleExecutionResult[];
213213

214214
/**
215-
* Scheduled time of the next 10 executions of this Schedule
215+
* Next upcoming scheduled times of this Schedule
216216
*/
217217
nextActionTimes: Date[];
218218
};
@@ -332,12 +332,12 @@ export type ScheduleDescription = {
332332

333333
info: {
334334
/**
335-
* Most recent 10 Actions started (including manual triggers), sorted from older start time to newer.
335+
* Most recent actions started (including manual triggers), sorted from older start time to newer.
336336
*/
337337
recentActions: ScheduleExecutionResult[];
338338

339339
/**
340-
* Scheduled time of the next 10 executions of this Schedule
340+
* Next upcoming scheduled times of this Schedule
341341
*/
342342
nextActionTimes: Date[];
343343

0 commit comments

Comments
 (0)