@voyant-travel/inventory 0.1.0 → 0.3.0
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.d.ts +9 -9
- package/dist/authoring/extension.d.ts +4 -4
- package/dist/authoring/spec.d.ts +16 -16
- package/dist/booking-extension.d.ts +1 -1
- package/dist/extras/routes.d.ts +27 -27
- package/dist/extras/schema.d.ts +2 -2
- package/dist/extras/service.d.ts +8 -8
- package/dist/extras/validation.d.ts +11 -11
- package/dist/extras.d.ts +31 -31
- package/dist/interface.d.ts +102 -102
- package/dist/routes-brochure.d.ts +56 -0
- package/dist/routes-brochure.d.ts.map +1 -0
- package/dist/routes-brochure.js +73 -0
- package/dist/routes-brochure.test.d.ts +2 -0
- package/dist/routes-brochure.test.d.ts.map +1 -0
- package/dist/routes-brochure.test.js +92 -0
- package/dist/routes-catalog.d.ts +8 -8
- package/dist/routes-configuration.d.ts +1 -1
- package/dist/routes-core.d.ts +14 -14
- package/dist/routes-itinerary.d.ts +24 -24
- package/dist/routes-media.d.ts +12 -12
- package/dist/routes-merchandising.d.ts +19 -19
- package/dist/routes-options.d.ts +7 -7
- package/dist/routes-public.d.ts +12 -12
- package/dist/routes-translations.d.ts +5 -5
- package/dist/routes.d.ts +90 -90
- package/dist/schema-core.d.ts +2 -2
- package/dist/schema-itinerary.d.ts +1 -1
- package/dist/schema-settings.d.ts +1 -1
- package/dist/service-catalog.d.ts +4 -4
- package/dist/service-configuration.d.ts +1 -1
- package/dist/service-core.d.ts +6 -6
- package/dist/service-destinations.d.ts +8 -8
- package/dist/service-itinerary-history.d.ts +1 -1
- package/dist/service-itinerary.d.ts +15 -15
- package/dist/service-media.d.ts +10 -10
- package/dist/service-merchandising.d.ts +9 -9
- package/dist/service-option-translations.d.ts +8 -8
- package/dist/service-options.d.ts +8 -8
- package/dist/service-public.d.ts +12 -12
- package/dist/service-taxonomy.d.ts +8 -8
- package/dist/service.d.ts +86 -86
- package/dist/tasks/brochures.d.ts +2 -2
- package/package.json +16 -11
package/dist/interface.d.ts
CHANGED
|
@@ -565,9 +565,9 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
565
565
|
createdAt: string;
|
|
566
566
|
updatedAt: string;
|
|
567
567
|
productId: string;
|
|
568
|
+
notes: string | null;
|
|
568
569
|
capability: "on_request" | "private" | "instant_confirmation" | "pickup_available" | "dropoff_available" | "guided" | "shared" | "digital_ticket" | "voucher_required" | "external_inventory" | "multi_day" | "accommodation" | "transport";
|
|
569
570
|
enabled: boolean;
|
|
570
|
-
notes: string | null;
|
|
571
571
|
};
|
|
572
572
|
};
|
|
573
573
|
outputFormat: "json";
|
|
@@ -860,13 +860,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
860
860
|
output: {
|
|
861
861
|
data: {
|
|
862
862
|
id: string;
|
|
863
|
-
description: string | null;
|
|
864
863
|
createdAt: string;
|
|
864
|
+
description: string | null;
|
|
865
865
|
updatedAt: string;
|
|
866
|
-
title: string;
|
|
867
866
|
productId: string;
|
|
868
|
-
featureType: "other" | "inclusion" | "exclusion" | "highlight" | "important_information";
|
|
869
867
|
sortOrder: number;
|
|
868
|
+
title: string;
|
|
869
|
+
featureType: "other" | "inclusion" | "exclusion" | "highlight" | "important_information";
|
|
870
870
|
};
|
|
871
871
|
};
|
|
872
872
|
outputFormat: "json";
|
|
@@ -1092,7 +1092,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1092
1092
|
data: {
|
|
1093
1093
|
id: string;
|
|
1094
1094
|
productId: string;
|
|
1095
|
-
locationType: "
|
|
1095
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
1096
1096
|
title: string;
|
|
1097
1097
|
address: string | null;
|
|
1098
1098
|
city: string | null;
|
|
@@ -1137,7 +1137,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1137
1137
|
data: {
|
|
1138
1138
|
id: string;
|
|
1139
1139
|
productId: string;
|
|
1140
|
-
locationType: "
|
|
1140
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
1141
1141
|
title: string;
|
|
1142
1142
|
address: string | null;
|
|
1143
1143
|
city: string | null;
|
|
@@ -1180,13 +1180,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1180
1180
|
id: string;
|
|
1181
1181
|
createdAt: string;
|
|
1182
1182
|
updatedAt: string;
|
|
1183
|
-
title: string;
|
|
1184
1183
|
productId: string;
|
|
1185
1184
|
sortOrder: number;
|
|
1186
|
-
|
|
1185
|
+
title: string;
|
|
1186
|
+
countryCode: string | null;
|
|
1187
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
1187
1188
|
address: string | null;
|
|
1188
1189
|
city: string | null;
|
|
1189
|
-
countryCode: string | null;
|
|
1190
1190
|
latitude: number | null;
|
|
1191
1191
|
longitude: number | null;
|
|
1192
1192
|
googlePlaceId: string | null;
|
|
@@ -1221,7 +1221,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1221
1221
|
data: {
|
|
1222
1222
|
id: string;
|
|
1223
1223
|
productId: string;
|
|
1224
|
-
locationType: "
|
|
1224
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
1225
1225
|
title: string;
|
|
1226
1226
|
address: string | null;
|
|
1227
1227
|
city: string | null;
|
|
@@ -1367,20 +1367,20 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1367
1367
|
output: {
|
|
1368
1368
|
data: {
|
|
1369
1369
|
id: string;
|
|
1370
|
-
active: boolean;
|
|
1371
1370
|
createdAt: string;
|
|
1371
|
+
active: boolean;
|
|
1372
1372
|
updatedAt: string;
|
|
1373
|
-
metadata: {
|
|
1374
|
-
[x: string]: import("hono/utils/types").JSONValue;
|
|
1375
|
-
} | null;
|
|
1376
1373
|
code: string | null;
|
|
1377
1374
|
sortOrder: number;
|
|
1378
1375
|
latitude: number | null;
|
|
1379
1376
|
longitude: number | null;
|
|
1377
|
+
slug: string;
|
|
1378
|
+
metadata: {
|
|
1379
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
1380
|
+
} | null;
|
|
1380
1381
|
parentId: string | null;
|
|
1381
|
-
destinationType: string;
|
|
1382
1382
|
canonicalPlaceId: string | null;
|
|
1383
|
-
|
|
1383
|
+
destinationType: string;
|
|
1384
1384
|
} | null;
|
|
1385
1385
|
};
|
|
1386
1386
|
outputFormat: "json";
|
|
@@ -1502,13 +1502,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1502
1502
|
data: {
|
|
1503
1503
|
id: string;
|
|
1504
1504
|
name: string;
|
|
1505
|
-
description: string | null;
|
|
1506
1505
|
createdAt: string;
|
|
1506
|
+
description: string | null;
|
|
1507
1507
|
updatedAt: string;
|
|
1508
1508
|
languageTag: string;
|
|
1509
|
-
destinationId: string;
|
|
1510
1509
|
seoTitle: string | null;
|
|
1511
1510
|
seoDescription: string | null;
|
|
1511
|
+
destinationId: string;
|
|
1512
1512
|
};
|
|
1513
1513
|
};
|
|
1514
1514
|
outputFormat: "json";
|
|
@@ -1624,13 +1624,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1624
1624
|
data: {
|
|
1625
1625
|
id: string;
|
|
1626
1626
|
name: string;
|
|
1627
|
-
description: string | null;
|
|
1628
1627
|
createdAt: string;
|
|
1628
|
+
description: string | null;
|
|
1629
1629
|
updatedAt: string;
|
|
1630
|
-
categoryId: string;
|
|
1631
1630
|
languageTag: string;
|
|
1632
1631
|
seoTitle: string | null;
|
|
1633
1632
|
seoDescription: string | null;
|
|
1633
|
+
categoryId: string;
|
|
1634
1634
|
};
|
|
1635
1635
|
};
|
|
1636
1636
|
outputFormat: "json";
|
|
@@ -1987,11 +1987,11 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
1987
1987
|
id: string;
|
|
1988
1988
|
name: string;
|
|
1989
1989
|
status: "draft" | "active" | "archived";
|
|
1990
|
-
description: string | null;
|
|
1991
1990
|
createdAt: string;
|
|
1991
|
+
description: string | null;
|
|
1992
1992
|
updatedAt: string;
|
|
1993
|
-
code: string | null;
|
|
1994
1993
|
productId: string;
|
|
1994
|
+
code: string | null;
|
|
1995
1995
|
isDefault: boolean;
|
|
1996
1996
|
sortOrder: number;
|
|
1997
1997
|
availableFrom: string | null;
|
|
@@ -2078,7 +2078,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2078
2078
|
name: string;
|
|
2079
2079
|
code: string | null;
|
|
2080
2080
|
description: string | null;
|
|
2081
|
-
unitType: "
|
|
2081
|
+
unitType: "person" | "group" | "room" | "vehicle" | "service" | "other";
|
|
2082
2082
|
minQuantity: number | null;
|
|
2083
2083
|
maxQuantity: number | null;
|
|
2084
2084
|
minAge: number | null;
|
|
@@ -2125,7 +2125,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2125
2125
|
name: string;
|
|
2126
2126
|
code: string | null;
|
|
2127
2127
|
description: string | null;
|
|
2128
|
-
unitType: "
|
|
2128
|
+
unitType: "person" | "group" | "room" | "vehicle" | "service" | "other";
|
|
2129
2129
|
minQuantity: number | null;
|
|
2130
2130
|
maxQuantity: number | null;
|
|
2131
2131
|
minAge: number | null;
|
|
@@ -2166,13 +2166,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2166
2166
|
data: {
|
|
2167
2167
|
id: string;
|
|
2168
2168
|
name: string;
|
|
2169
|
-
description: string | null;
|
|
2170
2169
|
createdAt: string;
|
|
2170
|
+
description: string | null;
|
|
2171
2171
|
updatedAt: string;
|
|
2172
2172
|
code: string | null;
|
|
2173
2173
|
sortOrder: number;
|
|
2174
2174
|
optionId: string;
|
|
2175
|
-
unitType: "
|
|
2175
|
+
unitType: "person" | "group" | "room" | "vehicle" | "service" | "other";
|
|
2176
2176
|
minQuantity: number | null;
|
|
2177
2177
|
maxQuantity: number | null;
|
|
2178
2178
|
minAge: number | null;
|
|
@@ -2213,7 +2213,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2213
2213
|
name: string;
|
|
2214
2214
|
code: string | null;
|
|
2215
2215
|
description: string | null;
|
|
2216
|
-
unitType: "
|
|
2216
|
+
unitType: "person" | "group" | "room" | "vehicle" | "service" | "other";
|
|
2217
2217
|
minQuantity: number | null;
|
|
2218
2218
|
maxQuantity: number | null;
|
|
2219
2219
|
minAge: number | null;
|
|
@@ -2350,18 +2350,18 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2350
2350
|
data: {
|
|
2351
2351
|
id: string;
|
|
2352
2352
|
name: string;
|
|
2353
|
+
createdAt: string;
|
|
2353
2354
|
description: string | null;
|
|
2354
2355
|
inclusionsHtml: string | null;
|
|
2355
2356
|
exclusionsHtml: string | null;
|
|
2356
2357
|
termsHtml: string | null;
|
|
2357
|
-
createdAt: string;
|
|
2358
2358
|
updatedAt: string;
|
|
2359
2359
|
productId: string;
|
|
2360
2360
|
languageTag: string;
|
|
2361
2361
|
slug: string | null;
|
|
2362
|
+
shortDescription: string | null;
|
|
2362
2363
|
seoTitle: string | null;
|
|
2363
2364
|
seoDescription: string | null;
|
|
2364
|
-
shortDescription: string | null;
|
|
2365
2365
|
};
|
|
2366
2366
|
};
|
|
2367
2367
|
outputFormat: "json";
|
|
@@ -2516,11 +2516,11 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2516
2516
|
data: {
|
|
2517
2517
|
id: string;
|
|
2518
2518
|
name: string;
|
|
2519
|
-
description: string | null;
|
|
2520
2519
|
createdAt: string;
|
|
2520
|
+
description: string | null;
|
|
2521
2521
|
updatedAt: string;
|
|
2522
|
-
languageTag: string;
|
|
2523
2522
|
optionId: string;
|
|
2523
|
+
languageTag: string;
|
|
2524
2524
|
shortDescription: string | null;
|
|
2525
2525
|
};
|
|
2526
2526
|
};
|
|
@@ -2670,8 +2670,8 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2670
2670
|
data: {
|
|
2671
2671
|
id: string;
|
|
2672
2672
|
name: string;
|
|
2673
|
-
description: string | null;
|
|
2674
2673
|
createdAt: string;
|
|
2674
|
+
description: string | null;
|
|
2675
2675
|
updatedAt: string;
|
|
2676
2676
|
languageTag: string;
|
|
2677
2677
|
shortDescription: string | null;
|
|
@@ -2815,15 +2815,15 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2815
2815
|
data: {
|
|
2816
2816
|
id: string;
|
|
2817
2817
|
name: string;
|
|
2818
|
-
active: boolean;
|
|
2819
|
-
description: string | null;
|
|
2820
2818
|
createdAt: string;
|
|
2819
|
+
description: string | null;
|
|
2820
|
+
active: boolean;
|
|
2821
2821
|
updatedAt: string;
|
|
2822
|
+
code: string;
|
|
2823
|
+
sortOrder: number;
|
|
2822
2824
|
metadata: {
|
|
2823
2825
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
2824
2826
|
} | null;
|
|
2825
|
-
code: string;
|
|
2826
|
-
sortOrder: number;
|
|
2827
2827
|
} | undefined;
|
|
2828
2828
|
};
|
|
2829
2829
|
outputFormat: "json";
|
|
@@ -2970,17 +2970,17 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
2970
2970
|
data: {
|
|
2971
2971
|
id: string;
|
|
2972
2972
|
name: string;
|
|
2973
|
-
|
|
2973
|
+
createdAt: string;
|
|
2974
2974
|
description: string | null;
|
|
2975
|
+
active: boolean;
|
|
2975
2976
|
customerPaymentPolicy: import("hono/utils/types").JSONValue;
|
|
2976
|
-
createdAt: string;
|
|
2977
2977
|
updatedAt: string;
|
|
2978
|
+
sortOrder: number;
|
|
2979
|
+
slug: string;
|
|
2978
2980
|
metadata: {
|
|
2979
2981
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
2980
2982
|
} | null;
|
|
2981
|
-
sortOrder: number;
|
|
2982
2983
|
parentId: string | null;
|
|
2983
|
-
slug: string;
|
|
2984
2984
|
} | undefined;
|
|
2985
2985
|
};
|
|
2986
2986
|
outputFormat: "json";
|
|
@@ -3348,14 +3348,14 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
3348
3348
|
sortOrder: number;
|
|
3349
3349
|
dayId: string | null;
|
|
3350
3350
|
mediaType: "image" | "video" | "document";
|
|
3351
|
-
isBrochure: boolean;
|
|
3352
|
-
isBrochureCurrent: boolean;
|
|
3353
3351
|
url: string;
|
|
3354
3352
|
storageKey: string | null;
|
|
3355
3353
|
mimeType: string | null;
|
|
3356
3354
|
fileSize: number | null;
|
|
3357
3355
|
altText: string | null;
|
|
3358
3356
|
isCover: boolean;
|
|
3357
|
+
isBrochure: boolean;
|
|
3358
|
+
isBrochureCurrent: boolean;
|
|
3359
3359
|
brochureVersion: number | null;
|
|
3360
3360
|
};
|
|
3361
3361
|
};
|
|
@@ -3469,14 +3469,14 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
3469
3469
|
sortOrder: number;
|
|
3470
3470
|
dayId: string | null;
|
|
3471
3471
|
mediaType: "image" | "video" | "document";
|
|
3472
|
-
isBrochure: boolean;
|
|
3473
|
-
isBrochureCurrent: boolean;
|
|
3474
3472
|
url: string;
|
|
3475
3473
|
storageKey: string | null;
|
|
3476
3474
|
mimeType: string | null;
|
|
3477
3475
|
fileSize: number | null;
|
|
3478
3476
|
altText: string | null;
|
|
3479
3477
|
isCover: boolean;
|
|
3478
|
+
isBrochure: boolean;
|
|
3479
|
+
isBrochureCurrent: boolean;
|
|
3480
3480
|
brochureVersion: number | null;
|
|
3481
3481
|
};
|
|
3482
3482
|
};
|
|
@@ -3513,14 +3513,14 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
3513
3513
|
sortOrder: number;
|
|
3514
3514
|
dayId: string | null;
|
|
3515
3515
|
mediaType: "image" | "video" | "document";
|
|
3516
|
-
isBrochure: boolean;
|
|
3517
|
-
isBrochureCurrent: boolean;
|
|
3518
3516
|
url: string;
|
|
3519
3517
|
storageKey: string | null;
|
|
3520
3518
|
mimeType: string | null;
|
|
3521
3519
|
fileSize: number | null;
|
|
3522
3520
|
altText: string | null;
|
|
3523
3521
|
isCover: boolean;
|
|
3522
|
+
isBrochure: boolean;
|
|
3523
|
+
isBrochureCurrent: boolean;
|
|
3524
3524
|
brochureVersion: number | null;
|
|
3525
3525
|
};
|
|
3526
3526
|
};
|
|
@@ -3609,14 +3609,14 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
3609
3609
|
sortOrder: number;
|
|
3610
3610
|
dayId: string | null;
|
|
3611
3611
|
mediaType: "image" | "video" | "document";
|
|
3612
|
-
isBrochure: boolean;
|
|
3613
|
-
isBrochureCurrent: boolean;
|
|
3614
3612
|
url: string;
|
|
3615
3613
|
storageKey: string | null;
|
|
3616
3614
|
mimeType: string | null;
|
|
3617
3615
|
fileSize: number | null;
|
|
3618
3616
|
altText: string | null;
|
|
3619
3617
|
isCover: boolean;
|
|
3618
|
+
isBrochure: boolean;
|
|
3619
|
+
isBrochureCurrent: boolean;
|
|
3620
3620
|
brochureVersion: number | null;
|
|
3621
3621
|
};
|
|
3622
3622
|
};
|
|
@@ -3689,14 +3689,14 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
3689
3689
|
sortOrder: number;
|
|
3690
3690
|
dayId: string | null;
|
|
3691
3691
|
mediaType: "image" | "video" | "document";
|
|
3692
|
-
isBrochure: boolean;
|
|
3693
|
-
isBrochureCurrent: boolean;
|
|
3694
3692
|
url: string;
|
|
3695
3693
|
storageKey: string | null;
|
|
3696
3694
|
mimeType: string | null;
|
|
3697
3695
|
fileSize: number | null;
|
|
3698
3696
|
altText: string | null;
|
|
3699
3697
|
isCover: boolean;
|
|
3698
|
+
isBrochure: boolean;
|
|
3699
|
+
isBrochureCurrent: boolean;
|
|
3700
3700
|
brochureVersion: number | null;
|
|
3701
3701
|
};
|
|
3702
3702
|
};
|
|
@@ -3792,14 +3792,14 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
3792
3792
|
sortOrder: number;
|
|
3793
3793
|
dayId: string | null;
|
|
3794
3794
|
mediaType: "image" | "video" | "document";
|
|
3795
|
-
isBrochure: boolean;
|
|
3796
|
-
isBrochureCurrent: boolean;
|
|
3797
3795
|
url: string;
|
|
3798
3796
|
storageKey: string | null;
|
|
3799
3797
|
mimeType: string | null;
|
|
3800
3798
|
fileSize: number | null;
|
|
3801
3799
|
altText: string | null;
|
|
3802
3800
|
isCover: boolean;
|
|
3801
|
+
isBrochure: boolean;
|
|
3802
|
+
isBrochureCurrent: boolean;
|
|
3803
3803
|
brochureVersion: number | null;
|
|
3804
3804
|
};
|
|
3805
3805
|
};
|
|
@@ -4010,13 +4010,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4010
4010
|
output: {
|
|
4011
4011
|
data: {
|
|
4012
4012
|
id: string;
|
|
4013
|
-
description: string | null;
|
|
4014
4013
|
createdAt: string;
|
|
4014
|
+
description: string | null;
|
|
4015
4015
|
updatedAt: string;
|
|
4016
|
+
itineraryId: string;
|
|
4017
|
+
dayNumber: number;
|
|
4016
4018
|
title: string | null;
|
|
4017
4019
|
location: string | null;
|
|
4018
|
-
dayNumber: number;
|
|
4019
|
-
itineraryId: string;
|
|
4020
4020
|
};
|
|
4021
4021
|
};
|
|
4022
4022
|
outputFormat: "json";
|
|
@@ -4069,13 +4069,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4069
4069
|
output: {
|
|
4070
4070
|
data: {
|
|
4071
4071
|
id: string;
|
|
4072
|
-
description: string | null;
|
|
4073
4072
|
createdAt: string;
|
|
4073
|
+
description: string | null;
|
|
4074
4074
|
updatedAt: string;
|
|
4075
|
+
itineraryId: string;
|
|
4076
|
+
dayNumber: number;
|
|
4075
4077
|
title: string | null;
|
|
4076
4078
|
location: string | null;
|
|
4077
|
-
dayNumber: number;
|
|
4078
|
-
itineraryId: string;
|
|
4079
4079
|
};
|
|
4080
4080
|
};
|
|
4081
4081
|
outputFormat: "json";
|
|
@@ -4166,7 +4166,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4166
4166
|
id: string;
|
|
4167
4167
|
dayId: string;
|
|
4168
4168
|
supplierServiceId: string | null;
|
|
4169
|
-
serviceType: "
|
|
4169
|
+
serviceType: "other" | "transfer" | "accommodation" | "experience" | "guide" | "meal";
|
|
4170
4170
|
name: string;
|
|
4171
4171
|
description: string | null;
|
|
4172
4172
|
countryCode: string | null;
|
|
@@ -4209,17 +4209,17 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4209
4209
|
data: {
|
|
4210
4210
|
id: string;
|
|
4211
4211
|
name: string;
|
|
4212
|
+
createdAt: string;
|
|
4212
4213
|
description: string | null;
|
|
4213
4214
|
costAmountCents: number;
|
|
4214
|
-
createdAt: string;
|
|
4215
|
-
notes: string | null;
|
|
4216
4215
|
sortOrder: number | null;
|
|
4217
|
-
countryCode: string | null;
|
|
4218
4216
|
dayId: string;
|
|
4219
|
-
serviceType: "transfer" | "other" | "accommodation" | "experience" | "guide" | "meal";
|
|
4220
4217
|
supplierServiceId: string | null;
|
|
4218
|
+
serviceType: "other" | "transfer" | "accommodation" | "experience" | "guide" | "meal";
|
|
4219
|
+
countryCode: string | null;
|
|
4221
4220
|
costCurrency: string;
|
|
4222
4221
|
quantity: number;
|
|
4222
|
+
notes: string | null;
|
|
4223
4223
|
};
|
|
4224
4224
|
};
|
|
4225
4225
|
outputFormat: "json";
|
|
@@ -4258,7 +4258,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4258
4258
|
id: string;
|
|
4259
4259
|
dayId: string;
|
|
4260
4260
|
supplierServiceId: string | null;
|
|
4261
|
-
serviceType: "
|
|
4261
|
+
serviceType: "other" | "transfer" | "accommodation" | "experience" | "guide" | "meal";
|
|
4262
4262
|
name: string;
|
|
4263
4263
|
description: string | null;
|
|
4264
4264
|
countryCode: string | null;
|
|
@@ -4363,13 +4363,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4363
4363
|
output: {
|
|
4364
4364
|
data: {
|
|
4365
4365
|
id: string;
|
|
4366
|
-
description: string | null;
|
|
4367
4366
|
createdAt: string;
|
|
4367
|
+
description: string | null;
|
|
4368
4368
|
updatedAt: string;
|
|
4369
4369
|
title: string | null;
|
|
4370
|
-
languageTag: string;
|
|
4371
|
-
dayId: string;
|
|
4372
4370
|
location: string | null;
|
|
4371
|
+
dayId: string;
|
|
4372
|
+
languageTag: string;
|
|
4373
4373
|
};
|
|
4374
4374
|
};
|
|
4375
4375
|
outputFormat: "json";
|
|
@@ -4382,10 +4382,10 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4382
4382
|
input: {
|
|
4383
4383
|
param: {
|
|
4384
4384
|
id: string;
|
|
4385
|
-
} & {
|
|
4386
|
-
translationId: string;
|
|
4387
4385
|
} & {
|
|
4388
4386
|
dayId: string;
|
|
4387
|
+
} & {
|
|
4388
|
+
translationId: string;
|
|
4389
4389
|
};
|
|
4390
4390
|
};
|
|
4391
4391
|
output: {
|
|
@@ -4397,10 +4397,10 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4397
4397
|
input: {
|
|
4398
4398
|
param: {
|
|
4399
4399
|
id: string;
|
|
4400
|
-
} & {
|
|
4401
|
-
translationId: string;
|
|
4402
4400
|
} & {
|
|
4403
4401
|
dayId: string;
|
|
4402
|
+
} & {
|
|
4403
|
+
translationId: string;
|
|
4404
4404
|
};
|
|
4405
4405
|
};
|
|
4406
4406
|
output: {
|
|
@@ -4425,10 +4425,10 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4425
4425
|
input: {
|
|
4426
4426
|
param: {
|
|
4427
4427
|
id: string;
|
|
4428
|
-
} & {
|
|
4429
|
-
translationId: string;
|
|
4430
4428
|
} & {
|
|
4431
4429
|
dayId: string;
|
|
4430
|
+
} & {
|
|
4431
|
+
translationId: string;
|
|
4432
4432
|
};
|
|
4433
4433
|
};
|
|
4434
4434
|
output: {
|
|
@@ -4440,10 +4440,10 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4440
4440
|
input: {
|
|
4441
4441
|
param: {
|
|
4442
4442
|
id: string;
|
|
4443
|
-
} & {
|
|
4444
|
-
translationId: string;
|
|
4445
4443
|
} & {
|
|
4446
4444
|
dayId: string;
|
|
4445
|
+
} & {
|
|
4446
|
+
translationId: string;
|
|
4447
4447
|
};
|
|
4448
4448
|
};
|
|
4449
4449
|
output: {
|
|
@@ -4555,8 +4555,8 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4555
4555
|
id: string;
|
|
4556
4556
|
createdAt: string;
|
|
4557
4557
|
productId: string;
|
|
4558
|
-
content: string;
|
|
4559
4558
|
authorId: string;
|
|
4559
|
+
content: string;
|
|
4560
4560
|
};
|
|
4561
4561
|
};
|
|
4562
4562
|
outputFormat: "json";
|
|
@@ -4790,7 +4790,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4790
4790
|
exclusionsHtml: string | null;
|
|
4791
4791
|
termsHtml: string | null;
|
|
4792
4792
|
termsShowOnContract: boolean;
|
|
4793
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
4793
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
4794
4794
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
4795
4795
|
timezone: string | null;
|
|
4796
4796
|
defaultLanguageTag: string | null;
|
|
@@ -4831,12 +4831,13 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4831
4831
|
id: string;
|
|
4832
4832
|
name: string;
|
|
4833
4833
|
status: "draft" | "active" | "archived";
|
|
4834
|
+
createdAt: string;
|
|
4834
4835
|
description: string | null;
|
|
4835
4836
|
inclusionsHtml: string | null;
|
|
4836
4837
|
exclusionsHtml: string | null;
|
|
4837
4838
|
termsHtml: string | null;
|
|
4838
4839
|
termsShowOnContract: boolean;
|
|
4839
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
4840
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
4840
4841
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
4841
4842
|
timezone: string | null;
|
|
4842
4843
|
defaultLanguageTag: string | null;
|
|
@@ -4857,7 +4858,6 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4857
4858
|
taxClassId: string | null;
|
|
4858
4859
|
customerPaymentPolicy: import("hono/utils/types").JSONValue;
|
|
4859
4860
|
tags: string[] | null;
|
|
4860
|
-
createdAt: string;
|
|
4861
4861
|
updatedAt: string;
|
|
4862
4862
|
};
|
|
4863
4863
|
};
|
|
@@ -4899,7 +4899,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4899
4899
|
exclusionsHtml: string | null;
|
|
4900
4900
|
termsHtml: string | null;
|
|
4901
4901
|
termsShowOnContract: boolean;
|
|
4902
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
4902
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
4903
4903
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
4904
4904
|
timezone: string | null;
|
|
4905
4905
|
defaultLanguageTag: string | null;
|
|
@@ -4949,27 +4949,27 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
4949
4949
|
};
|
|
4950
4950
|
output: {
|
|
4951
4951
|
data: {
|
|
4952
|
-
principalSubtype: string | null;
|
|
4953
|
-
sessionId: string | null;
|
|
4954
|
-
apiTokenId: string | null;
|
|
4955
|
-
callerType: string | null;
|
|
4956
|
-
organizationId: string | null;
|
|
4957
|
-
workflowRunId: string | null;
|
|
4958
|
-
workflowStepId: string | null;
|
|
4959
4952
|
id: string;
|
|
4960
|
-
status: "requested" | "awaiting_approval" | "approved" | "denied" | "succeeded" | "failed" | "reversed" | "compensated" | "expired" | "cancelled" | "superseded";
|
|
4961
4953
|
actionName: string;
|
|
4962
4954
|
actionVersion: string;
|
|
4963
|
-
actionKind: "
|
|
4955
|
+
actionKind: "read" | "create" | "update" | "delete" | "execute" | "approve" | "reject" | "reverse" | "compensate" | "duplicate";
|
|
4956
|
+
status: "requested" | "awaiting_approval" | "approved" | "denied" | "succeeded" | "failed" | "reversed" | "compensated" | "expired" | "cancelled" | "superseded";
|
|
4964
4957
|
evaluatedRisk: "low" | "medium" | "high" | "critical";
|
|
4965
4958
|
actorType: string | null;
|
|
4966
4959
|
principalType: "user" | "api_key" | "agent" | "workflow" | "system";
|
|
4967
4960
|
principalId: string;
|
|
4961
|
+
principalSubtype: string | null;
|
|
4962
|
+
sessionId: string | null;
|
|
4963
|
+
apiTokenId: string | null;
|
|
4968
4964
|
internalRequest: boolean;
|
|
4969
4965
|
delegatedByPrincipalType: "user" | "api_key" | "agent" | "workflow" | "system" | null;
|
|
4970
4966
|
delegatedByPrincipalId: string | null;
|
|
4971
4967
|
delegationId: string | null;
|
|
4968
|
+
callerType: string | null;
|
|
4969
|
+
organizationId: string | null;
|
|
4972
4970
|
routeOrToolName: string | null;
|
|
4971
|
+
workflowRunId: string | null;
|
|
4972
|
+
workflowStepId: string | null;
|
|
4973
4973
|
correlationId: string | null;
|
|
4974
4974
|
causationActionId: string | null;
|
|
4975
4975
|
idempotencyScope: string | null;
|
|
@@ -5026,7 +5026,7 @@ export declare const inventoryProductRoutes: import("hono/hono-base").HonoBase<i
|
|
|
5026
5026
|
exclusionsHtml: string | null;
|
|
5027
5027
|
termsHtml: string | null;
|
|
5028
5028
|
termsShowOnContract: boolean;
|
|
5029
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5029
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5030
5030
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5031
5031
|
timezone: string | null;
|
|
5032
5032
|
defaultLanguageTag: string | null;
|
|
@@ -5107,7 +5107,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5107
5107
|
shortDescription: string | null;
|
|
5108
5108
|
seoTitle: string | null;
|
|
5109
5109
|
seoDescription: string | null;
|
|
5110
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5110
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5111
5111
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5112
5112
|
visibility: "public" | "private" | "hidden";
|
|
5113
5113
|
sellCurrency: string;
|
|
@@ -5151,7 +5151,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5151
5151
|
}[];
|
|
5152
5152
|
locations: {
|
|
5153
5153
|
id: string;
|
|
5154
|
-
locationType: "
|
|
5154
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
5155
5155
|
title: string;
|
|
5156
5156
|
address: string | null;
|
|
5157
5157
|
city: string | null;
|
|
@@ -5225,7 +5225,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5225
5225
|
shortDescription: string | null;
|
|
5226
5226
|
seoTitle: string | null;
|
|
5227
5227
|
seoDescription: string | null;
|
|
5228
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5228
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5229
5229
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5230
5230
|
visibility: "public" | "private" | "hidden";
|
|
5231
5231
|
sellCurrency: string;
|
|
@@ -5269,7 +5269,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5269
5269
|
}[];
|
|
5270
5270
|
locations: {
|
|
5271
5271
|
id: string;
|
|
5272
|
-
locationType: "
|
|
5272
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
5273
5273
|
title: string;
|
|
5274
5274
|
address: string | null;
|
|
5275
5275
|
city: string | null;
|
|
@@ -5333,7 +5333,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5333
5333
|
shortDescription: string | null;
|
|
5334
5334
|
seoTitle: string | null;
|
|
5335
5335
|
seoDescription: string | null;
|
|
5336
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5336
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5337
5337
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5338
5338
|
visibility: "public" | "private" | "hidden";
|
|
5339
5339
|
sellCurrency: string;
|
|
@@ -5377,7 +5377,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5377
5377
|
}[];
|
|
5378
5378
|
locations: {
|
|
5379
5379
|
id: string;
|
|
5380
|
-
locationType: "
|
|
5380
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
5381
5381
|
title: string;
|
|
5382
5382
|
address: string | null;
|
|
5383
5383
|
city: string | null;
|
|
@@ -5451,7 +5451,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5451
5451
|
shortDescription: string | null;
|
|
5452
5452
|
seoTitle: string | null;
|
|
5453
5453
|
seoDescription: string | null;
|
|
5454
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5454
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5455
5455
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5456
5456
|
visibility: "public" | "private" | "hidden";
|
|
5457
5457
|
sellCurrency: string;
|
|
@@ -5495,7 +5495,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5495
5495
|
}[];
|
|
5496
5496
|
locations: {
|
|
5497
5497
|
id: string;
|
|
5498
|
-
locationType: "
|
|
5498
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
5499
5499
|
title: string;
|
|
5500
5500
|
address: string | null;
|
|
5501
5501
|
city: string | null;
|
|
@@ -5621,7 +5621,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5621
5621
|
shortDescription: string | null;
|
|
5622
5622
|
seoTitle: string | null;
|
|
5623
5623
|
seoDescription: string | null;
|
|
5624
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5624
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5625
5625
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5626
5626
|
visibility: "public" | "private" | "hidden";
|
|
5627
5627
|
sellCurrency: string;
|
|
@@ -5665,7 +5665,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5665
5665
|
}[];
|
|
5666
5666
|
locations: {
|
|
5667
5667
|
id: string;
|
|
5668
|
-
locationType: "
|
|
5668
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
5669
5669
|
title: string;
|
|
5670
5670
|
address: string | null;
|
|
5671
5671
|
city: string | null;
|
|
@@ -5739,7 +5739,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5739
5739
|
shortDescription: string | null;
|
|
5740
5740
|
seoTitle: string | null;
|
|
5741
5741
|
seoDescription: string | null;
|
|
5742
|
-
bookingMode: "date" | "date_time" | "open" | "stay" | "transfer" | "itinerary"
|
|
5742
|
+
bookingMode: "date" | "other" | "date_time" | "open" | "stay" | "transfer" | "itinerary";
|
|
5743
5743
|
capacityMode: "free_sale" | "limited" | "on_request";
|
|
5744
5744
|
visibility: "public" | "private" | "hidden";
|
|
5745
5745
|
sellCurrency: string;
|
|
@@ -5783,7 +5783,7 @@ export declare const publicInventoryProductRoutes: import("hono/hono-base").Hono
|
|
|
5783
5783
|
}[];
|
|
5784
5784
|
locations: {
|
|
5785
5785
|
id: string;
|
|
5786
|
-
locationType: "
|
|
5786
|
+
locationType: "end" | "other" | "start" | "meeting_point" | "pickup" | "dropoff" | "point_of_interest";
|
|
5787
5787
|
title: string;
|
|
5788
5788
|
address: string | null;
|
|
5789
5789
|
city: string | null;
|