@voyantjs/products 0.2.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/routes.d.ts +4 -4
- package/dist/schema-core.d.ts +897 -0
- package/dist/schema-core.d.ts.map +1 -0
- package/dist/schema-core.js +77 -0
- package/dist/schema-itinerary.d.ts +828 -0
- package/dist/schema-itinerary.d.ts.map +1 -0
- package/dist/schema-itinerary.js +77 -0
- package/dist/schema-relations.d.ts +99 -0
- package/dist/schema-relations.d.ts.map +1 -0
- package/dist/schema-relations.js +155 -0
- package/dist/schema-settings.d.ts +1749 -0
- package/dist/schema-settings.d.ts.map +1 -0
- package/dist/schema-settings.js +175 -0
- package/dist/schema-shared.d.ts +15 -0
- package/dist/schema-shared.d.ts.map +1 -0
- package/dist/schema-shared.js +91 -0
- package/dist/schema-taxonomy.d.ts +573 -0
- package/dist/schema-taxonomy.d.ts.map +1 -0
- package/dist/schema-taxonomy.js +65 -0
- package/dist/schema.d.ts +6 -4155
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +6 -653
- package/dist/service.d.ts +4 -4
- package/dist/validation-config.d.ts +233 -0
- package/dist/validation-config.d.ts.map +1 -0
- package/dist/validation-config.js +73 -0
- package/dist/validation-content.d.ts +358 -0
- package/dist/validation-content.d.ts.map +1 -0
- package/dist/validation-content.js +177 -0
- package/dist/validation-core.d.ts +268 -0
- package/dist/validation-core.d.ts.map +1 -0
- package/dist/validation-core.js +91 -0
- package/dist/validation-shared.d.ts +103 -0
- package/dist/validation-shared.d.ts.map +1 -0
- package/dist/validation-shared.js +86 -0
- package/dist/validation.d.ts +4 -854
- package/dist/validation.d.ts.map +1 -1
- package/dist/validation.js +4 -433
- package/package.json +4 -4
package/dist/routes.d.ts
CHANGED
|
@@ -632,8 +632,8 @@ export declare const productRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
632
632
|
createdAt: string;
|
|
633
633
|
updatedAt: string;
|
|
634
634
|
id: string;
|
|
635
|
-
capability: "on_request" | "private" | "instant_confirmation" | "pickup_available" | "dropoff_available" | "guided" | "shared" | "digital_ticket" | "voucher_required" | "external_inventory" | "multi_day" | "accommodation" | "transport";
|
|
636
635
|
notes: string | null;
|
|
636
|
+
capability: "on_request" | "private" | "instant_confirmation" | "pickup_available" | "dropoff_available" | "guided" | "shared" | "digital_ticket" | "voucher_required" | "external_inventory" | "multi_day" | "accommodation" | "transport";
|
|
637
637
|
};
|
|
638
638
|
};
|
|
639
639
|
outputFormat: "json";
|
|
@@ -931,8 +931,8 @@ export declare const productRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
931
931
|
description: string | null;
|
|
932
932
|
id: string;
|
|
933
933
|
sortOrder: number;
|
|
934
|
-
featureType: "other" | "inclusion" | "exclusion" | "highlight" | "important_information";
|
|
935
934
|
title: string;
|
|
935
|
+
featureType: "other" | "inclusion" | "exclusion" | "highlight" | "important_information";
|
|
936
936
|
};
|
|
937
937
|
};
|
|
938
938
|
outputFormat: "json";
|
|
@@ -2944,8 +2944,8 @@ export declare const productRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
2944
2944
|
updatedAt: string;
|
|
2945
2945
|
description: string | null;
|
|
2946
2946
|
id: string;
|
|
2947
|
-
title: string | null;
|
|
2948
2947
|
dayNumber: number;
|
|
2948
|
+
title: string | null;
|
|
2949
2949
|
location: string | null;
|
|
2950
2950
|
};
|
|
2951
2951
|
};
|
|
@@ -3084,11 +3084,11 @@ export declare const productRoutes: import("hono/hono-base").HonoBase<Env, {
|
|
|
3084
3084
|
id: string;
|
|
3085
3085
|
costAmountCents: number;
|
|
3086
3086
|
sortOrder: number | null;
|
|
3087
|
-
notes: string | null;
|
|
3088
3087
|
dayId: string;
|
|
3089
3088
|
serviceType: "other" | "transfer" | "accommodation" | "experience" | "guide" | "meal";
|
|
3090
3089
|
costCurrency: string;
|
|
3091
3090
|
quantity: number;
|
|
3091
|
+
notes: string | null;
|
|
3092
3092
|
};
|
|
3093
3093
|
};
|
|
3094
3094
|
outputFormat: "json";
|