@voyant-travel/quotes 0.123.5 → 0.123.6

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.
@@ -108,11 +108,11 @@ export declare const bookingQuoteExtensionService: {
108
108
  updatedAt: Date;
109
109
  } | null>;
110
110
  upsert(db: PostgresJsDatabase, bookingId: string, data: z.infer<typeof bookingQuoteDetailSchema>): Promise<{
111
- createdAt: Date;
112
- updatedAt: Date;
113
111
  bookingId: string;
114
112
  quoteId: string | null;
115
113
  quoteVersionId: string | null;
114
+ createdAt: Date;
115
+ updatedAt: Date;
116
116
  } | null>;
117
117
  remove(db: PostgresJsDatabase, bookingId: string): Promise<{
118
118
  bookingId: string;
@@ -83,5 +83,5 @@ const quotesBookingExtensionDef = {
83
83
  };
84
84
  export const quotesBookingExtension = {
85
85
  extension: quotesBookingExtensionDef,
86
- routes: bookingQuoteExtensionRoutes,
86
+ adminRoutes: bookingQuoteExtensionRoutes,
87
87
  };
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ export const quotesModule = {
9
9
  export function createQuotesHonoModule() {
10
10
  return {
11
11
  module: quotesModule,
12
- routes: quotesRoutes,
12
+ adminRoutes: quotesRoutes,
13
13
  };
14
14
  }
15
15
  export const quotesHonoModule = createQuotesHonoModule();