@seamapi/types 1.526.0 → 1.527.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-delete-data.d.ts +3 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js +5 -0
- package/lib/seam/connect/models/customer/customer-delete-data.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-delete-data.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +15 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -41222,6 +41222,15 @@ var openapi_default = {
|
|
|
41222
41222
|
description: "Deletes customer data including resources like spaces, properties, rooms, users, etc.\nThis will delete the partner resources and any related Seam resources (user identities, access grants, spaces).",
|
|
41223
41223
|
operationId: "customersDeleteDataDelete",
|
|
41224
41224
|
parameters: [
|
|
41225
|
+
{
|
|
41226
|
+
in: "query",
|
|
41227
|
+
name: "customer_keys",
|
|
41228
|
+
schema: {
|
|
41229
|
+
description: "List of customer keys to delete all data for.",
|
|
41230
|
+
items: { type: "string" },
|
|
41231
|
+
type: "array"
|
|
41232
|
+
}
|
|
41233
|
+
},
|
|
41225
41234
|
{
|
|
41226
41235
|
in: "query",
|
|
41227
41236
|
name: "space_keys",
|
|
@@ -41432,6 +41441,11 @@ var openapi_default = {
|
|
|
41432
41441
|
items: { type: "string" },
|
|
41433
41442
|
type: "array"
|
|
41434
41443
|
},
|
|
41444
|
+
customer_keys: {
|
|
41445
|
+
description: "List of customer keys to delete all data for.",
|
|
41446
|
+
items: { type: "string" },
|
|
41447
|
+
type: "array"
|
|
41448
|
+
},
|
|
41435
41449
|
facility_keys: {
|
|
41436
41450
|
description: "List of facility keys to delete.",
|
|
41437
41451
|
items: { type: "string" },
|