@voyant-travel/mice 0.5.2 → 0.6.1
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.
- package/dist/booking-extension.d.ts +2 -2
- package/dist/booking-extension.js +1 -1
- package/dist/routes.d.ts +1425 -557
- package/dist/routes.d.ts.map +1 -1
- package/dist/routes.js +863 -162
- package/dist/schema-delegates.d.ts +1 -1
- package/dist/schema-sessions.d.ts +1 -1
- package/dist/schema.d.ts +1 -1
- package/dist/validation-delegates.d.ts +7 -7
- package/dist/validation-rfp.d.ts +2 -2
- package/dist/validation-sessions.d.ts +4 -4
- package/dist/validation.d.ts +8 -8
- package/package.json +8 -7
|
@@ -115,11 +115,11 @@ export declare const miceBookingExtensionService: {
|
|
|
115
115
|
updatedAt: Date;
|
|
116
116
|
} | null>;
|
|
117
117
|
upsertDetails(db: PostgresJsDatabase, bookingId: string, data: z.infer<typeof bookingMiceDetailSchema>): Promise<{
|
|
118
|
-
createdAt: Date;
|
|
119
|
-
updatedAt: Date;
|
|
120
118
|
bookingId: string;
|
|
121
119
|
programId: string | null;
|
|
122
120
|
delegateId: string | null;
|
|
121
|
+
createdAt: Date;
|
|
122
|
+
updatedAt: Date;
|
|
123
123
|
} | null>;
|
|
124
124
|
removeDetails(db: PostgresJsDatabase, bookingId: string): Promise<{
|
|
125
125
|
bookingId: string;
|