You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -429,7 +583,7 @@ export class RunConfigurationDto {
429
583
required: true,
430
584
enum: RunCycleEnum,
431
585
example: RunCycleEnum.DAILY,
432
-
description: "Type of run cycle"
586
+
description: "Type of run cycle",
433
587
})
434
588
@IsEnum(RunCycleEnum)
435
589
runCycle: RunCycleEnum;
@@ -438,7 +592,8 @@ export class RunConfigurationDto {
438
592
@ApiProperty({
439
593
required: false,
440
594
example: "2025-12-25T15:30:00.000Z",
441
-
description: "ISO date string for one-time execution (required for ONCE type)"
595
+
description:
596
+
"ISO date string for one-time execution (required for ONCE type)",
442
597
})
443
598
@IsISO8601()
444
599
@IsOptional()
@@ -450,7 +605,7 @@ export class RunConfigurationDto {
450
605
example: 2,
451
606
minimum: 1,
452
607
maximum: 24,
453
-
description: "Interval in hours (required for HOURLY type)"
608
+
description: "Interval in hours (required for HOURLY type)",
454
609
})
455
610
@IsInt()
456
611
@Min(1)
@@ -462,8 +617,9 @@ export class RunConfigurationDto {
462
617
@ApiProperty({
463
618
required: false,
464
619
example: [1,3,5],// Monday, Wednesday, Friday
465
-
description: "Array of days (0=Sunday, 1=Monday, ..., 6=Saturday) - required for WEEKLY type",
466
-
type: [Number]
620
+
description:
621
+
"Array of days (0=Sunday, 1=Monday, ..., 6=Saturday) - required for WEEKLY type",
622
+
type: [Number],
467
623
})
468
624
@IsArray()
469
625
@IsInt({each: true})
@@ -477,12 +633,13 @@ export class RunConfigurationDto {
477
633
@ApiProperty({
478
634
required: false,
479
635
example: "14:30",
480
-
description: "Time in HH:mm format - REQUIRED for DAILY (runs daily at this time), REQUIRED for WEEKLY (runs on selected days at this time), OPTIONAL for HOURLY (start time)"
636
+
description:
637
+
"Time in HH:mm format - REQUIRED for DAILY (runs daily at this time), REQUIRED for WEEKLY (runs on selected days at this time), OPTIONAL for HOURLY (start time)",
0 commit comments