@timothyw/pat-common 1.0.134 → 1.0.135
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.
|
@@ -20,7 +20,8 @@ export declare enum NotificationSchedulerType {
|
|
|
20
20
|
RELATIVE_DATE = "relative_date"
|
|
21
21
|
}
|
|
22
22
|
export declare enum NotificationVariantType {
|
|
23
|
-
AGENDA_ITEM_UPCOMING_DEADLINE = "agenda_item_upcoming_deadline"
|
|
23
|
+
AGENDA_ITEM_UPCOMING_DEADLINE = "agenda_item_upcoming_deadline",
|
|
24
|
+
HABIT_UPCOMING_DEADLINE = "habit_upcoming_deadline"
|
|
24
25
|
}
|
|
25
26
|
export declare const notificationSchedulerDataSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
26
27
|
type: z.ZodLiteral<NotificationSchedulerType.DAY_TIME>;
|
|
@@ -22,6 +22,7 @@ var NotificationSchedulerType;
|
|
|
22
22
|
var NotificationVariantType;
|
|
23
23
|
(function (NotificationVariantType) {
|
|
24
24
|
NotificationVariantType["AGENDA_ITEM_UPCOMING_DEADLINE"] = "agenda_item_upcoming_deadline";
|
|
25
|
+
NotificationVariantType["HABIT_UPCOMING_DEADLINE"] = "habit_upcoming_deadline";
|
|
25
26
|
})(NotificationVariantType || (exports.NotificationVariantType = NotificationVariantType = {}));
|
|
26
27
|
exports.notificationSchedulerDataSchema = zod_1.z.discriminatedUnion('type', [
|
|
27
28
|
zod_1.z.object({
|
package/package.json
CHANGED
|
@@ -28,6 +28,7 @@ export enum NotificationSchedulerType {
|
|
|
28
28
|
|
|
29
29
|
export enum NotificationVariantType {
|
|
30
30
|
AGENDA_ITEM_UPCOMING_DEADLINE = 'agenda_item_upcoming_deadline',
|
|
31
|
+
HABIT_UPCOMING_DEADLINE = 'habit_upcoming_deadline',
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
export const notificationSchedulerDataSchema = z.discriminatedUnion('type', [
|