hububb-models 1.0.117 → 1.0.119
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.
@@ -408,6 +408,9 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
408
408
|
isMandatory: boolean;
|
409
409
|
}[];
|
410
410
|
}>, "many">;
|
411
|
+
checkInTime: import("zod").ZodOptional<import("zod").ZodString>;
|
412
|
+
checkOutTime: import("zod").ZodOptional<import("zod").ZodString>;
|
413
|
+
cancellationTime: import("zod").ZodOptional<import("zod").ZodString>;
|
411
414
|
}, "strip", import("zod").ZodTypeAny, {
|
412
415
|
id: string;
|
413
416
|
status: string;
|
@@ -528,6 +531,9 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
528
531
|
};
|
529
532
|
} | undefined;
|
530
533
|
externalCode?: string | undefined;
|
534
|
+
checkInTime?: string | undefined;
|
535
|
+
checkOutTime?: string | undefined;
|
536
|
+
cancellationTime?: string | undefined;
|
531
537
|
}, {
|
532
538
|
id: string;
|
533
539
|
status: string;
|
@@ -648,5 +654,8 @@ declare const apaleoReservationSchema: import("zod").ZodObject<{
|
|
648
654
|
};
|
649
655
|
} | undefined;
|
650
656
|
externalCode?: string | undefined;
|
657
|
+
checkInTime?: string | undefined;
|
658
|
+
checkOutTime?: string | undefined;
|
659
|
+
cancellationTime?: string | undefined;
|
651
660
|
}>;
|
652
661
|
export { apaleoReservationSchema };
|
@@ -113,5 +113,8 @@ const apaleoReservationSchema = (0, zod_1.object)({
|
|
113
113
|
payableAmount: payableAmountSchema,
|
114
114
|
externalCode: (0, zod_1.string)().optional(),
|
115
115
|
services: (0, zod_1.array)(serviceSchema),
|
116
|
+
checkInTime: (0, zod_1.string)().optional(),
|
117
|
+
checkOutTime: (0, zod_1.string)().optional(),
|
118
|
+
cancellationTime: (0, zod_1.string)().optional(), // ISO date string
|
116
119
|
});
|
117
120
|
exports.apaleoReservationSchema = apaleoReservationSchema;
|
package/dist/schemas/thread.d.ts
CHANGED
@@ -675,6 +675,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
675
675
|
seenBy: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("@firebase/firestore-types").Timestamp, import("zod").ZodTypeDef, import("@firebase/firestore-types").Timestamp>>;
|
676
676
|
isImportant: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
677
677
|
needsAttention: import("zod").ZodArray<import("zod").ZodString, "many">;
|
678
|
+
needsAttentionMap: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>;
|
678
679
|
}, "strip", import("zod").ZodTypeAny, {
|
679
680
|
type: "ONE_TO_ONE" | "GROUP";
|
680
681
|
createdAt: import("@firebase/firestore-types").Timestamp;
|
@@ -682,6 +683,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
682
683
|
participantIds: string[];
|
683
684
|
seenBy: Record<string, import("@firebase/firestore-types").Timestamp>;
|
684
685
|
needsAttention: string[];
|
686
|
+
needsAttentionMap: Record<string, boolean>;
|
685
687
|
id?: string | undefined;
|
686
688
|
source?: string | undefined;
|
687
689
|
title?: string | undefined;
|
@@ -772,6 +774,7 @@ export declare const ChatThreadSchema: import("zod").ZodObject<{
|
|
772
774
|
participantIds: string[];
|
773
775
|
seenBy: Record<string, import("@firebase/firestore-types").Timestamp>;
|
774
776
|
needsAttention: string[];
|
777
|
+
needsAttentionMap: Record<string, boolean>;
|
775
778
|
id?: string | undefined;
|
776
779
|
source?: string | undefined;
|
777
780
|
title?: string | undefined;
|
package/dist/schemas/thread.js
CHANGED
@@ -34,4 +34,5 @@ exports.ChatThreadSchema = (0, zod_1.object)({
|
|
34
34
|
seenBy: (0, zod_1.record)((0, zod_1.string)(), helpers_1.firestoreTimestampSchema),
|
35
35
|
isImportant: (0, zod_1.optional)((0, zod_1.boolean)()),
|
36
36
|
needsAttention: (0, zod_1.array)((0, zod_1.string)()),
|
37
|
+
needsAttentionMap: (0, zod_1.record)((0, zod_1.string)(), (0, zod_1.boolean)()),
|
37
38
|
});
|