@seamapi/types 1.1021.0 → 1.1023.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.
@@ -1,24 +1,24 @@
1
1
  import { z } from 'zod';
2
2
  export declare const customer_delete_data: z.ZodObject<{
3
- customer_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4
- space_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5
- property_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6
- room_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
- common_area_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8
- unit_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9
- facility_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10
- building_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11
- listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12
- property_listing_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13
- guest_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14
- tenant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15
- resident_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16
- user_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17
- user_identity_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18
- reservation_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19
- booking_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
20
- access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21
- staff_member_keys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3
+ customer_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
4
+ space_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
5
+ property_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
6
+ room_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
7
+ common_area_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
8
+ unit_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
9
+ facility_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
10
+ building_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
11
+ listing_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
12
+ property_listing_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
13
+ guest_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
14
+ tenant_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
15
+ resident_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
16
+ user_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
17
+ user_identity_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
18
+ reservation_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
19
+ booking_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
20
+ access_grant_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
21
+ staff_member_keys: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
22
22
  }, "strip", z.ZodTypeAny, {
23
23
  access_grant_keys?: string[] | undefined;
24
24
  space_keys?: string[] | undefined;
@@ -1,83 +1,84 @@
1
1
  import { z } from 'zod';
2
+ import { resource_key } from '../../models/resource-key.js';
2
3
  export const customer_delete_data = z.object({
3
4
  // Customer keys to delete all data for
4
5
  customer_keys: z
5
- .array(z.string())
6
+ .array(resource_key)
6
7
  .optional()
7
8
  .describe('List of customer keys to delete all data for.'),
8
9
  // Location resources to delete
9
10
  space_keys: z
10
- .array(z.string())
11
+ .array(resource_key)
11
12
  .optional()
12
13
  .describe('List of space keys to delete.'),
13
14
  property_keys: z
14
- .array(z.string())
15
+ .array(resource_key)
15
16
  .optional()
16
17
  .describe('List of property keys to delete.'),
17
18
  room_keys: z
18
- .array(z.string())
19
+ .array(resource_key)
19
20
  .optional()
20
21
  .describe('List of room keys to delete.'),
21
22
  common_area_keys: z
22
- .array(z.string())
23
+ .array(resource_key)
23
24
  .optional()
24
25
  .describe('List of common area keys to delete.'),
25
26
  unit_keys: z
26
- .array(z.string())
27
+ .array(resource_key)
27
28
  .optional()
28
29
  .describe('List of unit keys to delete.'),
29
30
  facility_keys: z
30
- .array(z.string())
31
+ .array(resource_key)
31
32
  .optional()
32
33
  .describe('List of facility keys to delete.'),
33
34
  building_keys: z
34
- .array(z.string())
35
+ .array(resource_key)
35
36
  .optional()
36
37
  .describe('List of building keys to delete.'),
37
38
  listing_keys: z
38
- .array(z.string())
39
+ .array(resource_key)
39
40
  .optional()
40
41
  .describe('List of listing keys to delete.'),
41
42
  property_listing_keys: z
42
- .array(z.string())
43
+ .array(resource_key)
43
44
  .optional()
44
45
  .describe('List of property listing keys to delete.'),
45
46
  // User identity resources to delete
46
47
  guest_keys: z
47
- .array(z.string())
48
+ .array(resource_key)
48
49
  .optional()
49
50
  .describe('List of guest keys to delete.'),
50
51
  tenant_keys: z
51
- .array(z.string())
52
+ .array(resource_key)
52
53
  .optional()
53
54
  .describe('List of tenant keys to delete.'),
54
55
  resident_keys: z
55
- .array(z.string())
56
+ .array(resource_key)
56
57
  .optional()
57
58
  .describe('List of resident keys to delete.'),
58
59
  user_keys: z
59
- .array(z.string())
60
+ .array(resource_key)
60
61
  .optional()
61
62
  .describe('List of user keys to delete.'),
62
63
  user_identity_keys: z
63
- .array(z.string())
64
+ .array(resource_key)
64
65
  .optional()
65
66
  .describe('List of user identity keys to delete.'),
66
67
  // Access grant resources to delete
67
68
  reservation_keys: z
68
- .array(z.string())
69
+ .array(resource_key)
69
70
  .optional()
70
71
  .describe('List of reservation keys to delete.'),
71
72
  booking_keys: z
72
- .array(z.string())
73
+ .array(resource_key)
73
74
  .optional()
74
75
  .describe('List of booking keys to delete.'),
75
76
  access_grant_keys: z
76
- .array(z.string())
77
+ .array(resource_key)
77
78
  .optional()
78
79
  .describe('List of access grant keys to delete.'),
79
80
  staff_member_keys: z
80
- .array(z.string())
81
+ .array(resource_key)
81
82
  .optional()
82
83
  .describe('List of staff member keys to delete.'),
83
84
  });
@@ -1 +1 @@
1
- {"version":3,"file":"customer-delete-data.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-delete-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,uCAAuC;IACvC,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAE5D,+BAA+B;IAC/B,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,gBAAgB,EAAE,CAAC;SAChB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,iCAAiC,CAAC;IAC9C,qBAAqB,EAAE,CAAC;SACrB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IAEvD,oCAAoC;IACpC,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,WAAW,EAAE,CAAC;SACX,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IAEpD,mCAAmC;IACnC,gBAAgB,EAAE,CAAC;SAChB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,iCAAiC,CAAC;IAC9C,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;IACnD,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;CACpD,CAAC,CAAA"}
1
+ {"version":3,"file":"customer-delete-data.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-delete-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAE3D,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,uCAAuC;IACvC,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAE5D,+BAA+B;IAC/B,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,gBAAgB,EAAE,CAAC;SAChB,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,iCAAiC,CAAC;IAC9C,qBAAqB,EAAE,CAAC;SACrB,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,0CAA0C,CAAC;IAEvD,oCAAoC;IACpC,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,+BAA+B,CAAC;IAC5C,WAAW,EAAE,CAAC;SACX,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,kBAAkB,EAAE,CAAC;SAClB,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IAEpD,mCAAmC;IACnC,gBAAgB,EAAE,CAAC;SAChB,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,iCAAiC,CAAC;IAC9C,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;IACnD,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,YAAY,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,sCAAsC,CAAC;CACpD,CAAC,CAAA"}
@@ -43568,7 +43568,8 @@ const openapi = {
43568
43568
  in: 'query',
43569
43569
  name: 'user_identity_phone_number',
43570
43570
  schema: {
43571
- description: 'Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`).',
43571
+ description: 'Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). Specify `null` to retrieve access system users whose user identity has no phone number.',
43572
+ nullable: true,
43572
43573
  type: 'string',
43573
43574
  },
43574
43575
  },
@@ -43576,7 +43577,8 @@ const openapi = {
43576
43577
  in: 'query',
43577
43578
  name: 'user_identity_email_address',
43578
43579
  schema: {
43579
- description: 'Email address of the user identity for which you want to retrieve all access system users.',
43580
+ description: 'Email address of the user identity for which you want to retrieve all access system users. Specify `null` to retrieve access system users whose user identity has no email address.',
43581
+ nullable: true,
43580
43582
  type: 'string',
43581
43583
  },
43582
43584
  },
@@ -43702,7 +43704,8 @@ const openapi = {
43702
43704
  type: 'string',
43703
43705
  },
43704
43706
  user_identity_email_address: {
43705
- description: 'Email address of the user identity for which you want to retrieve all access system users.',
43707
+ description: 'Email address of the user identity for which you want to retrieve all access system users. Specify `null` to retrieve access system users whose user identity has no email address.',
43708
+ nullable: true,
43706
43709
  type: 'string',
43707
43710
  },
43708
43711
  user_identity_id: {
@@ -43711,7 +43714,8 @@ const openapi = {
43711
43714
  type: 'string',
43712
43715
  },
43713
43716
  user_identity_phone_number: {
43714
- description: 'Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`).',
43717
+ description: 'Phone number of the user identity for which you want to retrieve all access system users, in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, `+15555550100`). Specify `null` to retrieve access system users whose user identity has no phone number.',
43718
+ nullable: true,
43715
43719
  type: 'string',
43716
43720
  },
43717
43721
  },
@@ -44266,7 +44270,8 @@ const openapi = {
44266
44270
  in: 'query',
44267
44271
  name: 'user_identity_phone_number',
44268
44272
  schema: {
44269
- description: 'Phone number of the user identity for which you want to retrieve all unmanaged access system users.',
44273
+ description: 'Phone number of the user identity for which you want to retrieve all unmanaged access system users. Specify `null` to retrieve unmanaged access system users whose user identity has no phone number.',
44274
+ nullable: true,
44270
44275
  type: 'string',
44271
44276
  },
44272
44277
  },
@@ -44274,7 +44279,8 @@ const openapi = {
44274
44279
  in: 'query',
44275
44280
  name: 'user_identity_email_address',
44276
44281
  schema: {
44277
- description: 'Email address of the user identity for which you want to retrieve all unmanaged access system users.',
44282
+ description: 'Email address of the user identity for which you want to retrieve all unmanaged access system users. Specify `null` to retrieve unmanaged access system users whose user identity has no email address.',
44283
+ nullable: true,
44278
44284
  type: 'string',
44279
44285
  },
44280
44286
  },
@@ -44370,7 +44376,8 @@ const openapi = {
44370
44376
  type: 'string',
44371
44377
  },
44372
44378
  user_identity_email_address: {
44373
- description: 'Email address of the user identity for which you want to retrieve all unmanaged access system users.',
44379
+ description: 'Email address of the user identity for which you want to retrieve all unmanaged access system users. Specify `null` to retrieve unmanaged access system users whose user identity has no email address.',
44380
+ nullable: true,
44374
44381
  type: 'string',
44375
44382
  },
44376
44383
  user_identity_id: {
@@ -44379,7 +44386,8 @@ const openapi = {
44379
44386
  type: 'string',
44380
44387
  },
44381
44388
  user_identity_phone_number: {
44382
- description: 'Phone number of the user identity for which you want to retrieve all unmanaged access system users.',
44389
+ description: 'Phone number of the user identity for which you want to retrieve all unmanaged access system users. Specify `null` to retrieve unmanaged access system users whose user identity has no phone number.',
44390
+ nullable: true,
44383
44391
  type: 'string',
44384
44392
  },
44385
44393
  },
@@ -45911,7 +45919,8 @@ const openapi = {
45911
45919
  in: 'query',
45912
45920
  name: 'connect_webview_id',
45913
45921
  schema: {
45914
- description: 'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions.',
45922
+ description: 'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a Connect Webview.',
45923
+ nullable: true,
45915
45924
  type: 'string',
45916
45925
  },
45917
45926
  },
@@ -45927,7 +45936,8 @@ const openapi = {
45927
45936
  in: 'query',
45928
45937
  name: 'user_identity_id',
45929
45938
  schema: {
45930
- description: 'ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions.',
45939
+ description: 'ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a user identity.',
45940
+ nullable: true,
45931
45941
  type: 'string',
45932
45942
  },
45933
45943
  },
@@ -45980,7 +45990,8 @@ const openapi = {
45980
45990
  type: 'string',
45981
45991
  },
45982
45992
  connect_webview_id: {
45983
- description: 'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions.',
45993
+ description: 'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a Connect Webview.',
45994
+ nullable: true,
45984
45995
  type: 'string',
45985
45996
  },
45986
45997
  user_identifier_key: {
@@ -45989,7 +46000,8 @@ const openapi = {
45989
46000
  type: 'string',
45990
46001
  },
45991
46002
  user_identity_id: {
45992
- description: 'ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions.',
46003
+ description: 'ID of the [user identity](https://docs.seam.co/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to retrieve client sessions. Specify `null` to retrieve client sessions that are not associated with a user identity.',
46004
+ nullable: true,
45993
46005
  type: 'string',
45994
46006
  },
45995
46007
  without_user_identifier_key: {
@@ -48663,7 +48675,7 @@ const openapi = {
48663
48675
  name: 'customer_keys',
48664
48676
  schema: {
48665
48677
  description: 'List of customer keys to delete all data for.',
48666
- items: { type: 'string' },
48678
+ items: { minLength: 1, type: 'string' },
48667
48679
  type: 'array',
48668
48680
  },
48669
48681
  },
@@ -48672,7 +48684,7 @@ const openapi = {
48672
48684
  name: 'space_keys',
48673
48685
  schema: {
48674
48686
  description: 'List of space keys to delete.',
48675
- items: { type: 'string' },
48687
+ items: { minLength: 1, type: 'string' },
48676
48688
  type: 'array',
48677
48689
  },
48678
48690
  },
@@ -48681,7 +48693,7 @@ const openapi = {
48681
48693
  name: 'property_keys',
48682
48694
  schema: {
48683
48695
  description: 'List of property keys to delete.',
48684
- items: { type: 'string' },
48696
+ items: { minLength: 1, type: 'string' },
48685
48697
  type: 'array',
48686
48698
  },
48687
48699
  },
@@ -48690,7 +48702,7 @@ const openapi = {
48690
48702
  name: 'room_keys',
48691
48703
  schema: {
48692
48704
  description: 'List of room keys to delete.',
48693
- items: { type: 'string' },
48705
+ items: { minLength: 1, type: 'string' },
48694
48706
  type: 'array',
48695
48707
  },
48696
48708
  },
@@ -48699,7 +48711,7 @@ const openapi = {
48699
48711
  name: 'common_area_keys',
48700
48712
  schema: {
48701
48713
  description: 'List of common area keys to delete.',
48702
- items: { type: 'string' },
48714
+ items: { minLength: 1, type: 'string' },
48703
48715
  type: 'array',
48704
48716
  },
48705
48717
  },
@@ -48708,7 +48720,7 @@ const openapi = {
48708
48720
  name: 'unit_keys',
48709
48721
  schema: {
48710
48722
  description: 'List of unit keys to delete.',
48711
- items: { type: 'string' },
48723
+ items: { minLength: 1, type: 'string' },
48712
48724
  type: 'array',
48713
48725
  },
48714
48726
  },
@@ -48717,7 +48729,7 @@ const openapi = {
48717
48729
  name: 'facility_keys',
48718
48730
  schema: {
48719
48731
  description: 'List of facility keys to delete.',
48720
- items: { type: 'string' },
48732
+ items: { minLength: 1, type: 'string' },
48721
48733
  type: 'array',
48722
48734
  },
48723
48735
  },
@@ -48726,7 +48738,7 @@ const openapi = {
48726
48738
  name: 'building_keys',
48727
48739
  schema: {
48728
48740
  description: 'List of building keys to delete.',
48729
- items: { type: 'string' },
48741
+ items: { minLength: 1, type: 'string' },
48730
48742
  type: 'array',
48731
48743
  },
48732
48744
  },
@@ -48735,7 +48747,7 @@ const openapi = {
48735
48747
  name: 'listing_keys',
48736
48748
  schema: {
48737
48749
  description: 'List of listing keys to delete.',
48738
- items: { type: 'string' },
48750
+ items: { minLength: 1, type: 'string' },
48739
48751
  type: 'array',
48740
48752
  },
48741
48753
  },
@@ -48744,7 +48756,7 @@ const openapi = {
48744
48756
  name: 'property_listing_keys',
48745
48757
  schema: {
48746
48758
  description: 'List of property listing keys to delete.',
48747
- items: { type: 'string' },
48759
+ items: { minLength: 1, type: 'string' },
48748
48760
  type: 'array',
48749
48761
  },
48750
48762
  },
@@ -48753,7 +48765,7 @@ const openapi = {
48753
48765
  name: 'guest_keys',
48754
48766
  schema: {
48755
48767
  description: 'List of guest keys to delete.',
48756
- items: { type: 'string' },
48768
+ items: { minLength: 1, type: 'string' },
48757
48769
  type: 'array',
48758
48770
  },
48759
48771
  },
@@ -48762,7 +48774,7 @@ const openapi = {
48762
48774
  name: 'tenant_keys',
48763
48775
  schema: {
48764
48776
  description: 'List of tenant keys to delete.',
48765
- items: { type: 'string' },
48777
+ items: { minLength: 1, type: 'string' },
48766
48778
  type: 'array',
48767
48779
  },
48768
48780
  },
@@ -48771,7 +48783,7 @@ const openapi = {
48771
48783
  name: 'resident_keys',
48772
48784
  schema: {
48773
48785
  description: 'List of resident keys to delete.',
48774
- items: { type: 'string' },
48786
+ items: { minLength: 1, type: 'string' },
48775
48787
  type: 'array',
48776
48788
  },
48777
48789
  },
@@ -48780,7 +48792,7 @@ const openapi = {
48780
48792
  name: 'user_keys',
48781
48793
  schema: {
48782
48794
  description: 'List of user keys to delete.',
48783
- items: { type: 'string' },
48795
+ items: { minLength: 1, type: 'string' },
48784
48796
  type: 'array',
48785
48797
  },
48786
48798
  },
@@ -48789,7 +48801,7 @@ const openapi = {
48789
48801
  name: 'user_identity_keys',
48790
48802
  schema: {
48791
48803
  description: 'List of user identity keys to delete.',
48792
- items: { type: 'string' },
48804
+ items: { minLength: 1, type: 'string' },
48793
48805
  type: 'array',
48794
48806
  },
48795
48807
  },
@@ -48798,7 +48810,7 @@ const openapi = {
48798
48810
  name: 'reservation_keys',
48799
48811
  schema: {
48800
48812
  description: 'List of reservation keys to delete.',
48801
- items: { type: 'string' },
48813
+ items: { minLength: 1, type: 'string' },
48802
48814
  type: 'array',
48803
48815
  },
48804
48816
  },
@@ -48807,7 +48819,7 @@ const openapi = {
48807
48819
  name: 'booking_keys',
48808
48820
  schema: {
48809
48821
  description: 'List of booking keys to delete.',
48810
- items: { type: 'string' },
48822
+ items: { minLength: 1, type: 'string' },
48811
48823
  type: 'array',
48812
48824
  },
48813
48825
  },
@@ -48816,7 +48828,7 @@ const openapi = {
48816
48828
  name: 'access_grant_keys',
48817
48829
  schema: {
48818
48830
  description: 'List of access grant keys to delete.',
48819
- items: { type: 'string' },
48831
+ items: { minLength: 1, type: 'string' },
48820
48832
  type: 'array',
48821
48833
  },
48822
48834
  },
@@ -48825,7 +48837,7 @@ const openapi = {
48825
48837
  name: 'staff_member_keys',
48826
48838
  schema: {
48827
48839
  description: 'List of staff member keys to delete.',
48828
- items: { type: 'string' },
48840
+ items: { minLength: 1, type: 'string' },
48829
48841
  type: 'array',
48830
48842
  },
48831
48843
  },
@@ -48869,97 +48881,97 @@ const openapi = {
48869
48881
  properties: {
48870
48882
  access_grant_keys: {
48871
48883
  description: 'List of access grant keys to delete.',
48872
- items: { type: 'string' },
48884
+ items: { minLength: 1, type: 'string' },
48873
48885
  type: 'array',
48874
48886
  },
48875
48887
  booking_keys: {
48876
48888
  description: 'List of booking keys to delete.',
48877
- items: { type: 'string' },
48889
+ items: { minLength: 1, type: 'string' },
48878
48890
  type: 'array',
48879
48891
  },
48880
48892
  building_keys: {
48881
48893
  description: 'List of building keys to delete.',
48882
- items: { type: 'string' },
48894
+ items: { minLength: 1, type: 'string' },
48883
48895
  type: 'array',
48884
48896
  },
48885
48897
  common_area_keys: {
48886
48898
  description: 'List of common area keys to delete.',
48887
- items: { type: 'string' },
48899
+ items: { minLength: 1, type: 'string' },
48888
48900
  type: 'array',
48889
48901
  },
48890
48902
  customer_keys: {
48891
48903
  description: 'List of customer keys to delete all data for.',
48892
- items: { type: 'string' },
48904
+ items: { minLength: 1, type: 'string' },
48893
48905
  type: 'array',
48894
48906
  },
48895
48907
  facility_keys: {
48896
48908
  description: 'List of facility keys to delete.',
48897
- items: { type: 'string' },
48909
+ items: { minLength: 1, type: 'string' },
48898
48910
  type: 'array',
48899
48911
  },
48900
48912
  guest_keys: {
48901
48913
  description: 'List of guest keys to delete.',
48902
- items: { type: 'string' },
48914
+ items: { minLength: 1, type: 'string' },
48903
48915
  type: 'array',
48904
48916
  },
48905
48917
  listing_keys: {
48906
48918
  description: 'List of listing keys to delete.',
48907
- items: { type: 'string' },
48919
+ items: { minLength: 1, type: 'string' },
48908
48920
  type: 'array',
48909
48921
  },
48910
48922
  property_keys: {
48911
48923
  description: 'List of property keys to delete.',
48912
- items: { type: 'string' },
48924
+ items: { minLength: 1, type: 'string' },
48913
48925
  type: 'array',
48914
48926
  },
48915
48927
  property_listing_keys: {
48916
48928
  description: 'List of property listing keys to delete.',
48917
- items: { type: 'string' },
48929
+ items: { minLength: 1, type: 'string' },
48918
48930
  type: 'array',
48919
48931
  },
48920
48932
  reservation_keys: {
48921
48933
  description: 'List of reservation keys to delete.',
48922
- items: { type: 'string' },
48934
+ items: { minLength: 1, type: 'string' },
48923
48935
  type: 'array',
48924
48936
  },
48925
48937
  resident_keys: {
48926
48938
  description: 'List of resident keys to delete.',
48927
- items: { type: 'string' },
48939
+ items: { minLength: 1, type: 'string' },
48928
48940
  type: 'array',
48929
48941
  },
48930
48942
  room_keys: {
48931
48943
  description: 'List of room keys to delete.',
48932
- items: { type: 'string' },
48944
+ items: { minLength: 1, type: 'string' },
48933
48945
  type: 'array',
48934
48946
  },
48935
48947
  space_keys: {
48936
48948
  description: 'List of space keys to delete.',
48937
- items: { type: 'string' },
48949
+ items: { minLength: 1, type: 'string' },
48938
48950
  type: 'array',
48939
48951
  },
48940
48952
  staff_member_keys: {
48941
48953
  description: 'List of staff member keys to delete.',
48942
- items: { type: 'string' },
48954
+ items: { minLength: 1, type: 'string' },
48943
48955
  type: 'array',
48944
48956
  },
48945
48957
  tenant_keys: {
48946
48958
  description: 'List of tenant keys to delete.',
48947
- items: { type: 'string' },
48959
+ items: { minLength: 1, type: 'string' },
48948
48960
  type: 'array',
48949
48961
  },
48950
48962
  unit_keys: {
48951
48963
  description: 'List of unit keys to delete.',
48952
- items: { type: 'string' },
48964
+ items: { minLength: 1, type: 'string' },
48953
48965
  type: 'array',
48954
48966
  },
48955
48967
  user_identity_keys: {
48956
48968
  description: 'List of user identity keys to delete.',
48957
- items: { type: 'string' },
48969
+ items: { minLength: 1, type: 'string' },
48958
48970
  type: 'array',
48959
48971
  },
48960
48972
  user_keys: {
48961
48973
  description: 'List of user keys to delete.',
48962
- items: { type: 'string' },
48974
+ items: { minLength: 1, type: 'string' },
48963
48975
  type: 'array',
48964
48976
  },
48965
48977
  },
@@ -61204,7 +61216,9 @@ const openapi = {
61204
61216
  name: 'page_cursor',
61205
61217
  required: false,
61206
61218
  schema: {
61207
- description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
61219
+ description: 'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
61220
+ minLength: 1,
61221
+ nullable: true,
61208
61222
  type: 'string',
61209
61223
  },
61210
61224
  },
@@ -61589,7 +61603,9 @@ const openapi = {
61589
61603
  type: 'integer',
61590
61604
  },
61591
61605
  page_cursor: {
61592
- description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
61606
+ description: 'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
61607
+ minLength: 1,
61608
+ nullable: true,
61593
61609
  type: 'string',
61594
61610
  },
61595
61611
  resource_id: {