@seamapi/types 1.712.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 +4 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -10
- package/dist/index.cjs +4 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +1 -4
- package/lib/seam/connect/openapi.js +4 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -7
- package/src/lib/seam/connect/route-types.ts +4 -6
package/dist/connect.cjs
CHANGED
|
@@ -57051,10 +57051,6 @@ var openapi_default = {
|
|
|
57051
57051
|
description: "Type of the connector to sync",
|
|
57052
57052
|
type: "string"
|
|
57053
57053
|
},
|
|
57054
|
-
customer_id: {
|
|
57055
|
-
description: "ID of the customer to sync",
|
|
57056
|
-
type: "string"
|
|
57057
|
-
},
|
|
57058
57054
|
customer_key: {
|
|
57059
57055
|
description: "Key of the customer to sync",
|
|
57060
57056
|
type: "string"
|
|
@@ -57065,7 +57061,7 @@ var openapi_default = {
|
|
|
57065
57061
|
type: "string"
|
|
57066
57062
|
}
|
|
57067
57063
|
},
|
|
57068
|
-
required: ["connector_id"],
|
|
57064
|
+
required: ["connector_id", "connector_type", "customer_key"],
|
|
57069
57065
|
type: "object"
|
|
57070
57066
|
}
|
|
57071
57067
|
}
|
|
@@ -57206,7 +57202,8 @@ var openapi_default = {
|
|
|
57206
57202
|
},
|
|
57207
57203
|
auth_token: { type: "string" },
|
|
57208
57204
|
hotel_id: {
|
|
57209
|
-
description: "
|
|
57205
|
+
description: "Hotel ID - required for identifying the customer",
|
|
57206
|
+
minLength: 1,
|
|
57210
57207
|
type: "string"
|
|
57211
57208
|
},
|
|
57212
57209
|
id: {
|
|
@@ -57225,7 +57222,7 @@ var openapi_default = {
|
|
|
57225
57222
|
type: "string"
|
|
57226
57223
|
}
|
|
57227
57224
|
},
|
|
57228
|
-
required: ["api_key", "id", "secret"],
|
|
57225
|
+
required: ["api_key", "id", "secret", "hotel_id"],
|
|
57229
57226
|
type: "object"
|
|
57230
57227
|
}
|
|
57231
57228
|
]
|