@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.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
|
]
|