@voyant-travel/cruises 0.135.1 → 0.136.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.
|
@@ -37,7 +37,7 @@ export declare const bookingCruiseDetails: import("drizzle-orm/pg-core").PgTable
|
|
|
37
37
|
tableName: "booking_cruise_details";
|
|
38
38
|
dataType: "string";
|
|
39
39
|
columnType: "PgEnumColumn";
|
|
40
|
-
data: "
|
|
40
|
+
data: "local" | "external";
|
|
41
41
|
driverParam: string;
|
|
42
42
|
notNull: true;
|
|
43
43
|
hasDefault: true;
|
|
@@ -498,7 +498,7 @@ export declare const bookingGroupCruiseDetails: import("drizzle-orm/pg-core").Pg
|
|
|
498
498
|
tableName: "booking_group_cruise_details";
|
|
499
499
|
dataType: "string";
|
|
500
500
|
columnType: "PgEnumColumn";
|
|
501
|
-
data: "
|
|
501
|
+
data: "local" | "external";
|
|
502
502
|
driverParam: string;
|
|
503
503
|
notNull: true;
|
|
504
504
|
hasDefault: true;
|
|
@@ -727,8 +727,8 @@ export type BookingGroupCruiseDetail = typeof bookingGroupCruiseDetails.$inferSe
|
|
|
727
727
|
export type NewBookingGroupCruiseDetail = typeof bookingGroupCruiseDetails.$inferInsert;
|
|
728
728
|
declare const cruiseDetailUpsertSchema: z.ZodObject<{
|
|
729
729
|
source: z.ZodDefault<z.ZodEnum<{
|
|
730
|
-
external: "external";
|
|
731
730
|
local: "local";
|
|
731
|
+
external: "external";
|
|
732
732
|
}>>;
|
|
733
733
|
sourceProvider: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
734
734
|
sourceRef: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -774,8 +774,8 @@ declare const cruiseDetailUpsertSchema: z.ZodObject<{
|
|
|
774
774
|
}, z.core.$strip>;
|
|
775
775
|
declare const groupCruiseDetailUpsertSchema: z.ZodObject<{
|
|
776
776
|
source: z.ZodDefault<z.ZodEnum<{
|
|
777
|
-
external: "external";
|
|
778
777
|
local: "local";
|
|
778
|
+
external: "external";
|
|
779
779
|
}>>;
|
|
780
780
|
sourceProvider: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
781
781
|
sourceRef: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -828,7 +828,7 @@ export declare const cruisesBookingExtensionRoutes: import("hono/hono-base").Hon
|
|
|
828
828
|
};
|
|
829
829
|
output: {
|
|
830
830
|
data: {
|
|
831
|
-
source: "
|
|
831
|
+
source: "local" | "external";
|
|
832
832
|
mode: "reserve" | "inquiry";
|
|
833
833
|
createdAt: string;
|
|
834
834
|
updatedAt: string;
|
|
@@ -915,7 +915,7 @@ export declare const cruisesBookingExtensionRoutes: import("hono/hono-base").Hon
|
|
|
915
915
|
};
|
|
916
916
|
output: {
|
|
917
917
|
data: {
|
|
918
|
-
source: "
|
|
918
|
+
source: "local" | "external";
|
|
919
919
|
mode: "reserve" | "inquiry";
|
|
920
920
|
createdAt: string;
|
|
921
921
|
updatedAt: string;
|
|
@@ -1037,7 +1037,7 @@ export declare const cruisesBookingExtensionRoutes: import("hono/hono-base").Hon
|
|
|
1037
1037
|
};
|
|
1038
1038
|
output: {
|
|
1039
1039
|
data: {
|
|
1040
|
-
source: "
|
|
1040
|
+
source: "local" | "external";
|
|
1041
1041
|
createdAt: string;
|
|
1042
1042
|
updatedAt: string;
|
|
1043
1043
|
notes: string | null;
|
|
@@ -1098,7 +1098,7 @@ export declare const cruisesBookingExtensionRoutes: import("hono/hono-base").Hon
|
|
|
1098
1098
|
};
|
|
1099
1099
|
output: {
|
|
1100
1100
|
data: {
|
|
1101
|
-
source: "
|
|
1101
|
+
source: "local" | "external";
|
|
1102
1102
|
createdAt: string;
|
|
1103
1103
|
updatedAt: string;
|
|
1104
1104
|
notes: string | null;
|
package/dist/routes-public.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare const cruisePublicRoutes: import("hono/hono-base").HonoBase<Env,
|
|
|
20
20
|
input: {};
|
|
21
21
|
output: {
|
|
22
22
|
data: {
|
|
23
|
-
source: "
|
|
23
|
+
source: "local" | "external";
|
|
24
24
|
id: string;
|
|
25
25
|
name: string;
|
|
26
26
|
createdAt: string;
|
|
@@ -92,7 +92,7 @@ export declare const cruisePublicRoutes: import("hono/hono-base").HonoBase<Env,
|
|
|
92
92
|
sourceProvider: null;
|
|
93
93
|
sourceRef: null;
|
|
94
94
|
summary: {
|
|
95
|
-
source: "
|
|
95
|
+
source: "local" | "external";
|
|
96
96
|
id: string;
|
|
97
97
|
name: string;
|
|
98
98
|
createdAt: string;
|
|
@@ -245,7 +245,7 @@ export declare const cruisePublicRoutes: import("hono/hono-base").HonoBase<Env,
|
|
|
245
245
|
connectionId?: string | undefined;
|
|
246
246
|
};
|
|
247
247
|
summary: {
|
|
248
|
-
source: "
|
|
248
|
+
source: "local" | "external";
|
|
249
249
|
id: string;
|
|
250
250
|
name: string;
|
|
251
251
|
createdAt: string;
|
package/dist/schema-search.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export declare const cruiseSearchIndex: import("drizzle-orm/pg-core").PgTableWit
|
|
|
25
25
|
tableName: "cruise_search_index";
|
|
26
26
|
dataType: "string";
|
|
27
27
|
columnType: "PgEnumColumn";
|
|
28
|
-
data: "
|
|
28
|
+
data: "local" | "external";
|
|
29
29
|
driverParam: string;
|
|
30
30
|
notNull: true;
|
|
31
31
|
hasDefault: false;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from "./validation-shared.js";
|
|
2
2
|
export declare const insertSearchIndexSchema: z.ZodObject<{
|
|
3
3
|
source: z.ZodEnum<{
|
|
4
|
-
external: "external";
|
|
5
4
|
local: "local";
|
|
5
|
+
external: "external";
|
|
6
6
|
}>;
|
|
7
7
|
sourceProvider: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8
8
|
sourceRef: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -44,8 +44,8 @@ export declare const insertSearchIndexSchema: z.ZodObject<{
|
|
|
44
44
|
}, z.core.$strip>;
|
|
45
45
|
export declare const updateSearchIndexSchema: z.ZodObject<{
|
|
46
46
|
source: z.ZodOptional<z.ZodEnum<{
|
|
47
|
-
external: "external";
|
|
48
47
|
local: "local";
|
|
48
|
+
external: "external";
|
|
49
49
|
}>>;
|
|
50
50
|
sourceProvider: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
51
51
|
sourceRef: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -102,8 +102,8 @@ export declare const searchIndexQuerySchema: z.ZodObject<{
|
|
|
102
102
|
dateTo: z.ZodOptional<z.ZodString>;
|
|
103
103
|
priceMaxCents: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
104
104
|
source: z.ZodOptional<z.ZodEnum<{
|
|
105
|
-
external: "external";
|
|
106
105
|
local: "local";
|
|
106
|
+
external: "external";
|
|
107
107
|
}>>;
|
|
108
108
|
embarkPortCanonicalPlaceId: z.ZodOptional<z.ZodString>;
|
|
109
109
|
disembarkPortCanonicalPlaceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15,8 +15,8 @@ export declare const cruiseStatusSchema: z.ZodEnum<{
|
|
|
15
15
|
archived: "archived";
|
|
16
16
|
}>;
|
|
17
17
|
export declare const cruiseSourceSchema: z.ZodEnum<{
|
|
18
|
-
external: "external";
|
|
19
18
|
local: "local";
|
|
19
|
+
external: "external";
|
|
20
20
|
}>;
|
|
21
21
|
export declare const cruiseVoyageGroupKindSchema: z.ZodEnum<{
|
|
22
22
|
combination: "combination";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyant-travel/cruises",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.136.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -104,12 +104,12 @@
|
|
|
104
104
|
"drizzle-orm": "^0.45.2",
|
|
105
105
|
"hono": "^4.12.10",
|
|
106
106
|
"zod": "^4.3.6",
|
|
107
|
-
"@voyant-travel/bookings": "^0.
|
|
107
|
+
"@voyant-travel/bookings": "^0.137.0",
|
|
108
108
|
"@voyant-travel/core": "^0.111.0",
|
|
109
109
|
"@voyant-travel/db": "^0.109.4",
|
|
110
110
|
"@voyant-travel/types": "^0.106.0",
|
|
111
|
-
"@voyant-travel/hono": "^0.
|
|
112
|
-
"@voyant-travel/catalog": "^0.
|
|
111
|
+
"@voyant-travel/hono": "^0.117.0",
|
|
112
|
+
"@voyant-travel/catalog": "^0.135.0",
|
|
113
113
|
"@voyant-travel/cruises-contracts": "^0.105.4"
|
|
114
114
|
},
|
|
115
115
|
"devDependencies": {
|