@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.
@@ -31287,6 +31287,8 @@ export type Routes = {
31287
31287
  queryParams: {};
31288
31288
  jsonBody: {};
31289
31289
  commonParams: {
31290
+ /** List of customer keys to delete all data for. */
31291
+ customer_keys?: string[] | undefined;
31290
31292
  /** List of space keys to delete. */
31291
31293
  space_keys?: string[] | undefined;
31292
31294
  /** List of property keys to delete. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.526.0",
3
+ "version": "1.527.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,6 +1,12 @@
1
1
  import { z } from 'zod'
2
2
 
3
3
  export const customer_delete_data = z.object({
4
+ // Customer keys to delete all data for
5
+ customer_keys: z
6
+ .array(z.string())
7
+ .optional()
8
+ .describe('List of customer keys to delete all data for.'),
9
+
4
10
  // Location resources to delete
5
11
  space_keys: z
6
12
  .array(z.string())
@@ -39152,6 +39152,15 @@ export default {
39152
39152
  '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).',
39153
39153
  operationId: 'customersDeleteDataDelete',
39154
39154
  parameters: [
39155
+ {
39156
+ in: 'query',
39157
+ name: 'customer_keys',
39158
+ schema: {
39159
+ description: 'List of customer keys to delete all data for.',
39160
+ items: { type: 'string' },
39161
+ type: 'array',
39162
+ },
39163
+ },
39155
39164
  {
39156
39165
  in: 'query',
39157
39166
  name: 'space_keys',
@@ -39363,6 +39372,12 @@ export default {
39363
39372
  items: { type: 'string' },
39364
39373
  type: 'array',
39365
39374
  },
39375
+ customer_keys: {
39376
+ description:
39377
+ 'List of customer keys to delete all data for.',
39378
+ items: { type: 'string' },
39379
+ type: 'array',
39380
+ },
39366
39381
  facility_keys: {
39367
39382
  description: 'List of facility keys to delete.',
39368
39383
  items: { type: 'string' },
@@ -36278,6 +36278,8 @@ export type Routes = {
36278
36278
  queryParams: {}
36279
36279
  jsonBody: {}
36280
36280
  commonParams: {
36281
+ /** List of customer keys to delete all data for. */
36282
+ customer_keys?: string[] | undefined
36281
36283
  /** List of space keys to delete. */
36282
36284
  space_keys?: string[] | undefined
36283
36285
  /** List of property keys to delete. */