@purpleschool/gptbot 0.8.94 → 0.8.95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,7 +12,7 @@ var RecurrentNotificationCommand;
|
|
|
12
12
|
Email: zod_1.z.string(),
|
|
13
13
|
Amount: zod_1.z.coerce.number(),
|
|
14
14
|
Currency: zod_1.z.string(), // "RUB", "USD", "EUR", "GBP"
|
|
15
|
-
RequireConfirmation: zod_1.z.boolean(),
|
|
15
|
+
RequireConfirmation: zod_1.z.coerce.boolean(),
|
|
16
16
|
StartDate: zod_1.z.string(), // ISO‐8601 datetime in UTC, e.g. "2025-07-21T14:30:00Z"
|
|
17
17
|
Interval: zod_1.z.string(), // "Week", "Month", "Year"
|
|
18
18
|
Period: zod_1.z.coerce.number(),
|
|
@@ -9,7 +9,7 @@ export namespace RecurrentNotificationCommand {
|
|
|
9
9
|
Email: z.string(),
|
|
10
10
|
Amount: z.coerce.number(),
|
|
11
11
|
Currency: z.string(), // "RUB", "USD", "EUR", "GBP"
|
|
12
|
-
RequireConfirmation: z.boolean(),
|
|
12
|
+
RequireConfirmation: z.coerce.boolean(),
|
|
13
13
|
StartDate: z.string(), // ISO‐8601 datetime in UTC, e.g. "2025-07-21T14:30:00Z"
|
|
14
14
|
Interval: z.string(), // "Week", "Month", "Year"
|
|
15
15
|
Period: z.coerce.number(),
|