@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.d.cts
CHANGED
|
@@ -80355,6 +80355,13 @@ declare const _default: {
|
|
|
80355
80355
|
};
|
|
80356
80356
|
type: string;
|
|
80357
80357
|
};
|
|
80358
|
+
customer_keys: {
|
|
80359
|
+
description: string;
|
|
80360
|
+
items: {
|
|
80361
|
+
type: string;
|
|
80362
|
+
};
|
|
80363
|
+
type: string;
|
|
80364
|
+
};
|
|
80358
80365
|
facility_keys: {
|
|
80359
80366
|
description: string;
|
|
80360
80367
|
items: {
|
|
@@ -132382,6 +132389,8 @@ type Routes = {
|
|
|
132382
132389
|
queryParams: {};
|
|
132383
132390
|
jsonBody: {};
|
|
132384
132391
|
commonParams: {
|
|
132392
|
+
/** List of customer keys to delete all data for. */
|
|
132393
|
+
customer_keys?: string[] | undefined;
|
|
132385
132394
|
/** List of space keys to delete. */
|
|
132386
132395
|
space_keys?: string[] | undefined;
|
|
132387
132396
|
/** List of property keys to delete. */
|
package/dist/index.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" },
|