@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.
@@ -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;
@@ -79,5 +79,5 @@ const miceBookingExtensionDef = {
79
79
  };
80
80
  export const miceBookingExtension = {
81
81
  extension: miceBookingExtensionDef,
82
- routes: miceBookingExtensionRoutes,
82
+ adminRoutes: miceBookingExtensionRoutes,
83
83
  };