@voyantjs/products 0.52.2 → 0.52.3
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/action-ledger-drift.d.ts +29 -0
- package/dist/action-ledger-drift.d.ts.map +1 -0
- package/dist/action-ledger-drift.js +335 -0
- package/dist/action-ledger.d.ts +104 -0
- package/dist/action-ledger.d.ts.map +1 -0
- package/dist/action-ledger.js +100 -0
- package/dist/booking-extension.d.ts +3 -3
- package/dist/events.d.ts +1 -1
- package/dist/events.d.ts.map +1 -1
- package/dist/route-env.d.ts +22 -0
- package/dist/route-env.d.ts.map +1 -0
- package/dist/route-env.js +1 -0
- package/dist/routes-associations.d.ts +164 -0
- package/dist/routes-associations.d.ts.map +1 -0
- package/dist/routes-associations.js +100 -0
- package/dist/routes-catalog.d.ts +436 -0
- package/dist/routes-catalog.d.ts.map +1 -0
- package/dist/routes-catalog.js +104 -0
- package/dist/routes-configuration.d.ts +773 -0
- package/dist/routes-configuration.d.ts.map +1 -0
- package/dist/routes-configuration.js +364 -0
- package/dist/routes-core.d.ts +302 -0
- package/dist/routes-core.d.ts.map +1 -0
- package/dist/routes-core.js +79 -0
- package/dist/routes-itinerary.d.ts +614 -0
- package/dist/routes-itinerary.d.ts.map +1 -0
- package/dist/routes-itinerary.js +309 -0
- package/dist/routes-maintenance.d.ts +32 -0
- package/dist/routes-maintenance.d.ts.map +1 -0
- package/dist/routes-maintenance.js +14 -0
- package/dist/routes-media.d.ts +634 -0
- package/dist/routes-media.d.ts.map +1 -0
- package/dist/routes-media.js +245 -0
- package/dist/routes-merchandising.d.ts +1108 -0
- package/dist/routes-merchandising.d.ts.map +1 -0
- package/dist/routes-merchandising.js +376 -0
- package/dist/routes-options.d.ts +363 -0
- package/dist/routes-options.d.ts.map +1 -0
- package/dist/routes-options.js +173 -0
- package/dist/routes-public.d.ts +4 -4
- package/dist/routes-translations.d.ts +477 -0
- package/dist/routes-translations.d.ts.map +1 -0
- package/dist/routes-translations.js +258 -0
- package/dist/routes.d.ts +417 -355
- package/dist/routes.d.ts.map +1 -1
- package/dist/routes.js +21 -1133
- package/dist/schema-core.d.ts +3 -3
- package/dist/schema-itinerary.d.ts +1 -1
- package/dist/schema-settings.d.ts +4 -4
- package/dist/service-catalog.d.ts +2 -2
- package/dist/service-public.d.ts +4 -4
- package/dist/service.d.ts +225 -97
- package/dist/service.d.ts.map +1 -1
- package/dist/service.js +91 -0
- package/dist/tasks/brochures.d.ts +1 -1
- package/dist/validation-catalog.d.ts +10 -10
- package/dist/validation-config.d.ts +17 -17
- package/dist/validation-content.d.ts +26 -26
- package/dist/validation-core.d.ts +21 -21
- package/dist/validation-public.d.ts +25 -25
- package/dist/validation-shared.d.ts +11 -11
- package/package.json +13 -7
package/dist/schema-core.d.ts
CHANGED
|
@@ -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: "
|
|
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: "
|
|
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: "
|
|
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" | "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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;
|
package/dist/service-public.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export declare const publicProductsService: {
|
|
|
51
51
|
}[];
|
|
52
52
|
locations: {
|
|
53
53
|
id: string;
|
|
54
|
-
locationType: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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;
|