@voyantjs/products 0.52.2 → 0.52.4

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.
Files changed (62) hide show
  1. package/dist/action-ledger-drift.d.ts +29 -0
  2. package/dist/action-ledger-drift.d.ts.map +1 -0
  3. package/dist/action-ledger-drift.js +335 -0
  4. package/dist/action-ledger.d.ts +104 -0
  5. package/dist/action-ledger.d.ts.map +1 -0
  6. package/dist/action-ledger.js +100 -0
  7. package/dist/booking-extension.d.ts +3 -3
  8. package/dist/events.d.ts +1 -1
  9. package/dist/events.d.ts.map +1 -1
  10. package/dist/route-env.d.ts +22 -0
  11. package/dist/route-env.d.ts.map +1 -0
  12. package/dist/route-env.js +1 -0
  13. package/dist/routes-associations.d.ts +164 -0
  14. package/dist/routes-associations.d.ts.map +1 -0
  15. package/dist/routes-associations.js +100 -0
  16. package/dist/routes-catalog.d.ts +436 -0
  17. package/dist/routes-catalog.d.ts.map +1 -0
  18. package/dist/routes-catalog.js +104 -0
  19. package/dist/routes-configuration.d.ts +773 -0
  20. package/dist/routes-configuration.d.ts.map +1 -0
  21. package/dist/routes-configuration.js +364 -0
  22. package/dist/routes-core.d.ts +302 -0
  23. package/dist/routes-core.d.ts.map +1 -0
  24. package/dist/routes-core.js +79 -0
  25. package/dist/routes-itinerary.d.ts +614 -0
  26. package/dist/routes-itinerary.d.ts.map +1 -0
  27. package/dist/routes-itinerary.js +309 -0
  28. package/dist/routes-maintenance.d.ts +32 -0
  29. package/dist/routes-maintenance.d.ts.map +1 -0
  30. package/dist/routes-maintenance.js +14 -0
  31. package/dist/routes-media.d.ts +634 -0
  32. package/dist/routes-media.d.ts.map +1 -0
  33. package/dist/routes-media.js +245 -0
  34. package/dist/routes-merchandising.d.ts +1108 -0
  35. package/dist/routes-merchandising.d.ts.map +1 -0
  36. package/dist/routes-merchandising.js +376 -0
  37. package/dist/routes-options.d.ts +363 -0
  38. package/dist/routes-options.d.ts.map +1 -0
  39. package/dist/routes-options.js +173 -0
  40. package/dist/routes-public.d.ts +4 -4
  41. package/dist/routes-translations.d.ts +477 -0
  42. package/dist/routes-translations.d.ts.map +1 -0
  43. package/dist/routes-translations.js +258 -0
  44. package/dist/routes.d.ts +417 -355
  45. package/dist/routes.d.ts.map +1 -1
  46. package/dist/routes.js +21 -1133
  47. package/dist/schema-core.d.ts +3 -3
  48. package/dist/schema-itinerary.d.ts +1 -1
  49. package/dist/schema-settings.d.ts +4 -4
  50. package/dist/service-catalog.d.ts +2 -2
  51. package/dist/service-public.d.ts +4 -4
  52. package/dist/service.d.ts +225 -97
  53. package/dist/service.d.ts.map +1 -1
  54. package/dist/service.js +91 -0
  55. package/dist/tasks/brochures.d.ts +1 -1
  56. package/dist/validation-catalog.d.ts +10 -10
  57. package/dist/validation-config.d.ts +17 -17
  58. package/dist/validation-content.d.ts +26 -26
  59. package/dist/validation-core.d.ts +21 -21
  60. package/dist/validation-public.d.ts +25 -25
  61. package/dist/validation-shared.d.ts +11 -11
  62. package/package.json +13 -7
@@ -41,7 +41,7 @@ export declare const products: import("drizzle-orm/pg-core").PgTableWithColumns<
41
41
  tableName: "products";
42
42
  dataType: "string";
43
43
  columnType: "PgEnumColumn";
44
- data: "active" | "draft" | "archived";
44
+ data: "draft" | "active" | "archived";
45
45
  driverParam: string;
46
46
  notNull: true;
47
47
  hasDefault: true;
@@ -528,7 +528,7 @@ export declare const productOptions: import("drizzle-orm/pg-core").PgTableWithCo
528
528
  tableName: "product_options";
529
529
  dataType: "string";
530
530
  columnType: "PgEnumColumn";
531
- data: "active" | "draft" | "archived";
531
+ data: "draft" | "active" | "archived";
532
532
  driverParam: string;
533
533
  notNull: true;
534
534
  hasDefault: true;
@@ -741,7 +741,7 @@ export declare const optionUnits: import("drizzle-orm/pg-core").PgTableWithColum
741
741
  tableName: "option_units";
742
742
  dataType: "string";
743
743
  columnType: "PgEnumColumn";
744
- data: "service" | "other" | "group" | "person" | "room" | "vehicle";
744
+ data: "person" | "group" | "room" | "vehicle" | "service" | "other";
745
745
  driverParam: string;
746
746
  notNull: true;
747
747
  hasDefault: true;
@@ -331,7 +331,7 @@ export declare const productDayServices: import("drizzle-orm/pg-core").PgTableWi
331
331
  tableName: "product_day_services";
332
332
  dataType: "string";
333
333
  columnType: "PgEnumColumn";
334
- data: "other" | "accommodation" | "transfer" | "experience" | "guide" | "meal";
334
+ data: "other" | "transfer" | "accommodation" | "experience" | "guide" | "meal";
335
335
  driverParam: string;
336
336
  notNull: true;
337
337
  hasDefault: false;
@@ -218,7 +218,7 @@ export declare const productTicketSettings: import("drizzle-orm/pg-core").PgTabl
218
218
  tableName: "product_ticket_settings";
219
219
  dataType: "string";
220
220
  columnType: "PgEnumColumn";
221
- data: "email" | "none" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
221
+ data: "none" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "email" | "mobile";
222
222
  driverParam: string;
223
223
  notNull: true;
224
224
  hasDefault: true;
@@ -521,7 +521,7 @@ export declare const productCapabilities: import("drizzle-orm/pg-core").PgTableW
521
521
  tableName: "product_capabilities";
522
522
  dataType: "string";
523
523
  columnType: "PgEnumColumn";
524
- data: "accommodation" | "on_request" | "private" | "instant_confirmation" | "pickup_available" | "dropoff_available" | "guided" | "shared" | "digital_ticket" | "voucher_required" | "external_inventory" | "multi_day" | "transport";
524
+ data: "on_request" | "private" | "instant_confirmation" | "pickup_available" | "dropoff_available" | "guided" | "shared" | "digital_ticket" | "voucher_required" | "external_inventory" | "multi_day" | "accommodation" | "transport";
525
525
  driverParam: string;
526
526
  notNull: true;
527
527
  hasDefault: false;
@@ -647,7 +647,7 @@ export declare const productDeliveryFormats: import("drizzle-orm/pg-core").PgTab
647
647
  tableName: "product_delivery_formats";
648
648
  dataType: "string";
649
649
  columnType: "PgEnumColumn";
650
- data: "email" | "none" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
650
+ data: "none" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "email" | "mobile";
651
651
  driverParam: string;
652
652
  notNull: true;
653
653
  hasDefault: false;
@@ -1035,7 +1035,7 @@ export declare const productLocations: import("drizzle-orm/pg-core").PgTableWith
1035
1035
  tableName: "product_locations";
1036
1036
  dataType: "string";
1037
1037
  columnType: "PgEnumColumn";
1038
- data: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
1038
+ data: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
1039
1039
  driverParam: string;
1040
1040
  notNull: true;
1041
1041
  hasDefault: true;
@@ -57,7 +57,7 @@ export declare const catalogProductsService: {
57
57
  }[];
58
58
  locations: {
59
59
  id: string;
60
- locationType: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
60
+ locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
61
61
  title: string;
62
62
  address: string | null;
63
63
  city: string | null;
@@ -168,7 +168,7 @@ export declare const catalogProductsService: {
168
168
  }[];
169
169
  locations: {
170
170
  id: string;
171
- locationType: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
171
+ locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
172
172
  title: string;
173
173
  address: string | null;
174
174
  city: string | null;
@@ -51,7 +51,7 @@ export declare const publicProductsService: {
51
51
  }[];
52
52
  locations: {
53
53
  id: string;
54
- locationType: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
54
+ locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
55
55
  title: string;
56
56
  address: string | null;
57
57
  city: string | null;
@@ -162,7 +162,7 @@ export declare const publicProductsService: {
162
162
  }[];
163
163
  locations: {
164
164
  id: string;
165
- locationType: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
165
+ locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
166
166
  title: string;
167
167
  address: string | null;
168
168
  city: string | null;
@@ -241,7 +241,7 @@ export declare const publicProductsService: {
241
241
  }[];
242
242
  locations: {
243
243
  id: string;
244
- locationType: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
244
+ locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
245
245
  title: string;
246
246
  address: string | null;
247
247
  city: string | null;
@@ -314,7 +314,7 @@ export declare const publicProductsService: {
314
314
  }[];
315
315
  locations: {
316
316
  id: string;
317
- locationType: "start" | "other" | "end" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
317
+ locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
318
318
  title: string;
319
319
  address: string | null;
320
320
  city: string | null;