@seamapi/types 1.713.0 → 1.714.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/connect.cjs +3 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -2
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +3 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -2
- package/src/lib/seam/connect/route-types.ts +2 -2
package/dist/connect.d.cts
CHANGED
|
@@ -100322,6 +100322,7 @@ declare const _default: {
|
|
|
100322
100322
|
};
|
|
100323
100323
|
hotel_id: {
|
|
100324
100324
|
description: string;
|
|
100325
|
+
minLength: number;
|
|
100325
100326
|
type: string;
|
|
100326
100327
|
};
|
|
100327
100328
|
id: {
|
|
@@ -170107,8 +170108,8 @@ type Routes = {
|
|
|
170107
170108
|
id: string;
|
|
170108
170109
|
/** Zonal Secret for login request body (required) */
|
|
170109
170110
|
secret: string;
|
|
170110
|
-
/**
|
|
170111
|
-
hotel_id
|
|
170111
|
+
/** Hotel ID - required for identifying the customer */
|
|
170112
|
+
hotel_id: string;
|
|
170112
170113
|
/** Use staging API instead of production */
|
|
170113
170114
|
is_staging?: boolean;
|
|
170114
170115
|
auth_token?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -57202,7 +57202,8 @@ var openapi_default = {
|
|
|
57202
57202
|
},
|
|
57203
57203
|
auth_token: { type: "string" },
|
|
57204
57204
|
hotel_id: {
|
|
57205
|
-
description: "
|
|
57205
|
+
description: "Hotel ID - required for identifying the customer",
|
|
57206
|
+
minLength: 1,
|
|
57206
57207
|
type: "string"
|
|
57207
57208
|
},
|
|
57208
57209
|
id: {
|
|
@@ -57221,7 +57222,7 @@ var openapi_default = {
|
|
|
57221
57222
|
type: "string"
|
|
57222
57223
|
}
|
|
57223
57224
|
},
|
|
57224
|
-
required: ["api_key", "id", "secret"],
|
|
57225
|
+
required: ["api_key", "id", "secret", "hotel_id"],
|
|
57225
57226
|
type: "object"
|
|
57226
57227
|
}
|
|
57227
57228
|
]
|