@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.
@@ -35949,10 +35949,10 @@ export type Routes = {
35949
35949
  commonParams: {
35950
35950
  /** ID of the user identity for which you want to retrieve all access system users. */
35951
35951
  user_identity_id?: string | undefined;
35952
- /** 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`). */
35953
- user_identity_phone_number?: string | undefined;
35954
- /** Email address of the user identity for which you want to retrieve all access system users. */
35955
- user_identity_email_address?: string | undefined;
35952
+ /** 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. */
35953
+ user_identity_phone_number?: (string | null) | undefined;
35954
+ /** 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. */
35955
+ user_identity_email_address?: (string | null) | undefined;
35956
35956
  /** ID of the `acs_system` for which you want to retrieve all access system users. */
35957
35957
  acs_system_id?: string | undefined;
35958
35958
  /** String for which to search. Filters returned access system users to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address`, `acs_user_id`, `user_identity_id`, `user_identity_full_name` or `user_identity_phone_number`. */
@@ -36804,10 +36804,10 @@ export type Routes = {
36804
36804
  commonParams: {
36805
36805
  /** ID of the user identity for which you want to retrieve all unmanaged access system users. */
36806
36806
  user_identity_id?: string | undefined;
36807
- /** Phone number of the user identity for which you want to retrieve all unmanaged access system users. */
36808
- user_identity_phone_number?: string | undefined;
36809
- /** Email address of the user identity for which you want to retrieve all unmanaged access system users. */
36810
- user_identity_email_address?: string | undefined;
36807
+ /** 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. */
36808
+ user_identity_phone_number?: (string | null) | undefined;
36809
+ /** 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. */
36810
+ user_identity_email_address?: (string | null) | undefined;
36811
36811
  /** ID of the access system for which you want to retrieve all unmanaged access system users. */
36812
36812
  acs_system_id?: string | undefined;
36813
36813
  /** Number of unmanaged access system users to return. */
@@ -41042,12 +41042,12 @@ export type Routes = {
41042
41042
  client_session_id?: string | undefined;
41043
41043
  /** Your user ID for the user by which you want to filter client sessions. */
41044
41044
  user_identifier_key?: string | undefined;
41045
- /** ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions. */
41046
- connect_webview_id?: string | undefined;
41045
+ /** 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. */
41046
+ connect_webview_id?: (string | null) | undefined;
41047
41047
  /** Indicates whether to retrieve only client sessions without associated user identifier keys. */
41048
41048
  without_user_identifier_key?: boolean | undefined;
41049
- /** 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. */
41050
- user_identity_id?: string | undefined;
41049
+ /** 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. */
41050
+ user_identity_id?: (string | null) | undefined;
41051
41051
  };
41052
41052
  formData: {};
41053
41053
  jsonResponse: {
@@ -78876,8 +78876,8 @@ export type Routes = {
78876
78876
  entry_types?: ('resource_created' | 'resource_updated' | 'resource_deleted' | 'event' | 'provider_call' | 'automation_run' | 'webhook_processed')[] | undefined;
78877
78877
  /** Filter timeline entries by context type. 'request' for API requests, 'job' for background jobs. */
78878
78878
  context_type?: ('request' | 'job') | undefined;
78879
- /** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
78880
- page_cursor?: string | undefined;
78879
+ /** Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page. */
78880
+ page_cursor?: (string | null) | undefined;
78881
78881
  };
78882
78882
  formData: {};
78883
78883
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.1021.0",
3
+ "version": "1.1023.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,87 +1,89 @@
1
1
  import { z } from 'zod'
2
2
 
3
+ import { resource_key } from '../../models/resource-key.js'
4
+
3
5
  export const customer_delete_data = z.object({
4
6
  // Customer keys to delete all data for
5
7
  customer_keys: z
6
- .array(z.string())
8
+ .array(resource_key)
7
9
  .optional()
8
10
  .describe('List of customer keys to delete all data for.'),
9
11
 
10
12
  // Location resources to delete
11
13
  space_keys: z
12
- .array(z.string())
14
+ .array(resource_key)
13
15
  .optional()
14
16
  .describe('List of space keys to delete.'),
15
17
  property_keys: z
16
- .array(z.string())
18
+ .array(resource_key)
17
19
  .optional()
18
20
  .describe('List of property keys to delete.'),
19
21
  room_keys: z
20
- .array(z.string())
22
+ .array(resource_key)
21
23
  .optional()
22
24
  .describe('List of room keys to delete.'),
23
25
  common_area_keys: z
24
- .array(z.string())
26
+ .array(resource_key)
25
27
  .optional()
26
28
  .describe('List of common area keys to delete.'),
27
29
  unit_keys: z
28
- .array(z.string())
30
+ .array(resource_key)
29
31
  .optional()
30
32
  .describe('List of unit keys to delete.'),
31
33
  facility_keys: z
32
- .array(z.string())
34
+ .array(resource_key)
33
35
  .optional()
34
36
  .describe('List of facility keys to delete.'),
35
37
  building_keys: z
36
- .array(z.string())
38
+ .array(resource_key)
37
39
  .optional()
38
40
  .describe('List of building keys to delete.'),
39
41
  listing_keys: z
40
- .array(z.string())
42
+ .array(resource_key)
41
43
  .optional()
42
44
  .describe('List of listing keys to delete.'),
43
45
  property_listing_keys: z
44
- .array(z.string())
46
+ .array(resource_key)
45
47
  .optional()
46
48
  .describe('List of property listing keys to delete.'),
47
49
 
48
50
  // User identity resources to delete
49
51
  guest_keys: z
50
- .array(z.string())
52
+ .array(resource_key)
51
53
  .optional()
52
54
  .describe('List of guest keys to delete.'),
53
55
  tenant_keys: z
54
- .array(z.string())
56
+ .array(resource_key)
55
57
  .optional()
56
58
  .describe('List of tenant keys to delete.'),
57
59
  resident_keys: z
58
- .array(z.string())
60
+ .array(resource_key)
59
61
  .optional()
60
62
  .describe('List of resident keys to delete.'),
61
63
  user_keys: z
62
- .array(z.string())
64
+ .array(resource_key)
63
65
  .optional()
64
66
  .describe('List of user keys to delete.'),
65
67
  user_identity_keys: z
66
- .array(z.string())
68
+ .array(resource_key)
67
69
  .optional()
68
70
  .describe('List of user identity keys to delete.'),
69
71
 
70
72
  // Access grant resources to delete
71
73
  reservation_keys: z
72
- .array(z.string())
74
+ .array(resource_key)
73
75
  .optional()
74
76
  .describe('List of reservation keys to delete.'),
75
77
  booking_keys: z
76
- .array(z.string())
78
+ .array(resource_key)
77
79
  .optional()
78
80
  .describe('List of booking keys to delete.'),
79
81
  access_grant_keys: z
80
- .array(z.string())
82
+ .array(resource_key)
81
83
  .optional()
82
84
  .describe('List of access grant keys to delete.'),
83
85
  staff_member_keys: z
84
- .array(z.string())
86
+ .array(resource_key)
85
87
  .optional()
86
88
  .describe('List of staff member keys to delete.'),
87
89
  })
@@ -48092,7 +48092,8 @@ const openapi: OpenAPISpec = {
48092
48092
  name: 'user_identity_phone_number',
48093
48093
  schema: {
48094
48094
  description:
48095
- '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`).',
48095
+ '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.',
48096
+ nullable: true,
48096
48097
  type: 'string',
48097
48098
  },
48098
48099
  },
@@ -48101,7 +48102,8 @@ const openapi: OpenAPISpec = {
48101
48102
  name: 'user_identity_email_address',
48102
48103
  schema: {
48103
48104
  description:
48104
- 'Email address of the user identity for which you want to retrieve all access system users.',
48105
+ '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.',
48106
+ nullable: true,
48105
48107
  type: 'string',
48106
48108
  },
48107
48109
  },
@@ -48238,7 +48240,8 @@ const openapi: OpenAPISpec = {
48238
48240
  },
48239
48241
  user_identity_email_address: {
48240
48242
  description:
48241
- 'Email address of the user identity for which you want to retrieve all access system users.',
48243
+ '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.',
48244
+ nullable: true,
48242
48245
  type: 'string',
48243
48246
  },
48244
48247
  user_identity_id: {
@@ -48249,7 +48252,8 @@ const openapi: OpenAPISpec = {
48249
48252
  },
48250
48253
  user_identity_phone_number: {
48251
48254
  description:
48252
- '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`).',
48255
+ '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.',
48256
+ nullable: true,
48253
48257
  type: 'string',
48254
48258
  },
48255
48259
  },
@@ -48835,7 +48839,8 @@ const openapi: OpenAPISpec = {
48835
48839
  name: 'user_identity_phone_number',
48836
48840
  schema: {
48837
48841
  description:
48838
- 'Phone number of the user identity for which you want to retrieve all unmanaged access system users.',
48842
+ '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.',
48843
+ nullable: true,
48839
48844
  type: 'string',
48840
48845
  },
48841
48846
  },
@@ -48844,7 +48849,8 @@ const openapi: OpenAPISpec = {
48844
48849
  name: 'user_identity_email_address',
48845
48850
  schema: {
48846
48851
  description:
48847
- 'Email address of the user identity for which you want to retrieve all unmanaged access system users.',
48852
+ '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.',
48853
+ nullable: true,
48848
48854
  type: 'string',
48849
48855
  },
48850
48856
  },
@@ -48947,7 +48953,8 @@ const openapi: OpenAPISpec = {
48947
48953
  },
48948
48954
  user_identity_email_address: {
48949
48955
  description:
48950
- 'Email address of the user identity for which you want to retrieve all unmanaged access system users.',
48956
+ '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.',
48957
+ nullable: true,
48951
48958
  type: 'string',
48952
48959
  },
48953
48960
  user_identity_id: {
@@ -48958,7 +48965,8 @@ const openapi: OpenAPISpec = {
48958
48965
  },
48959
48966
  user_identity_phone_number: {
48960
48967
  description:
48961
- 'Phone number of the user identity for which you want to retrieve all unmanaged access system users.',
48968
+ '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.',
48969
+ nullable: true,
48962
48970
  type: 'string',
48963
48971
  },
48964
48972
  },
@@ -50594,7 +50602,8 @@ const openapi: OpenAPISpec = {
50594
50602
  name: 'connect_webview_id',
50595
50603
  schema: {
50596
50604
  description:
50597
- 'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions.',
50605
+ '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.',
50606
+ nullable: true,
50598
50607
  type: 'string',
50599
50608
  },
50600
50609
  },
@@ -50612,7 +50621,8 @@ const openapi: OpenAPISpec = {
50612
50621
  name: 'user_identity_id',
50613
50622
  schema: {
50614
50623
  description:
50615
- '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.',
50624
+ '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.',
50625
+ nullable: true,
50616
50626
  type: 'string',
50617
50627
  },
50618
50628
  },
@@ -50668,7 +50678,8 @@ const openapi: OpenAPISpec = {
50668
50678
  },
50669
50679
  connect_webview_id: {
50670
50680
  description:
50671
- 'ID of the [Connect Webview](https://docs.seam.co/core-concepts/connect-webviews) for which you want to retrieve client sessions.',
50681
+ '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.',
50682
+ nullable: true,
50672
50683
  type: 'string',
50673
50684
  },
50674
50685
  user_identifier_key: {
@@ -50679,7 +50690,8 @@ const openapi: OpenAPISpec = {
50679
50690
  },
50680
50691
  user_identity_id: {
50681
50692
  description:
50682
- '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.',
50693
+ '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.',
50694
+ nullable: true,
50683
50695
  type: 'string',
50684
50696
  },
50685
50697
  without_user_identifier_key: {
@@ -53601,7 +53613,7 @@ const openapi: OpenAPISpec = {
53601
53613
  name: 'customer_keys',
53602
53614
  schema: {
53603
53615
  description: 'List of customer keys to delete all data for.',
53604
- items: { type: 'string' },
53616
+ items: { minLength: 1, type: 'string' },
53605
53617
  type: 'array',
53606
53618
  },
53607
53619
  },
@@ -53610,7 +53622,7 @@ const openapi: OpenAPISpec = {
53610
53622
  name: 'space_keys',
53611
53623
  schema: {
53612
53624
  description: 'List of space keys to delete.',
53613
- items: { type: 'string' },
53625
+ items: { minLength: 1, type: 'string' },
53614
53626
  type: 'array',
53615
53627
  },
53616
53628
  },
@@ -53619,7 +53631,7 @@ const openapi: OpenAPISpec = {
53619
53631
  name: 'property_keys',
53620
53632
  schema: {
53621
53633
  description: 'List of property keys to delete.',
53622
- items: { type: 'string' },
53634
+ items: { minLength: 1, type: 'string' },
53623
53635
  type: 'array',
53624
53636
  },
53625
53637
  },
@@ -53628,7 +53640,7 @@ const openapi: OpenAPISpec = {
53628
53640
  name: 'room_keys',
53629
53641
  schema: {
53630
53642
  description: 'List of room keys to delete.',
53631
- items: { type: 'string' },
53643
+ items: { minLength: 1, type: 'string' },
53632
53644
  type: 'array',
53633
53645
  },
53634
53646
  },
@@ -53637,7 +53649,7 @@ const openapi: OpenAPISpec = {
53637
53649
  name: 'common_area_keys',
53638
53650
  schema: {
53639
53651
  description: 'List of common area keys to delete.',
53640
- items: { type: 'string' },
53652
+ items: { minLength: 1, type: 'string' },
53641
53653
  type: 'array',
53642
53654
  },
53643
53655
  },
@@ -53646,7 +53658,7 @@ const openapi: OpenAPISpec = {
53646
53658
  name: 'unit_keys',
53647
53659
  schema: {
53648
53660
  description: 'List of unit keys to delete.',
53649
- items: { type: 'string' },
53661
+ items: { minLength: 1, type: 'string' },
53650
53662
  type: 'array',
53651
53663
  },
53652
53664
  },
@@ -53655,7 +53667,7 @@ const openapi: OpenAPISpec = {
53655
53667
  name: 'facility_keys',
53656
53668
  schema: {
53657
53669
  description: 'List of facility keys to delete.',
53658
- items: { type: 'string' },
53670
+ items: { minLength: 1, type: 'string' },
53659
53671
  type: 'array',
53660
53672
  },
53661
53673
  },
@@ -53664,7 +53676,7 @@ const openapi: OpenAPISpec = {
53664
53676
  name: 'building_keys',
53665
53677
  schema: {
53666
53678
  description: 'List of building keys to delete.',
53667
- items: { type: 'string' },
53679
+ items: { minLength: 1, type: 'string' },
53668
53680
  type: 'array',
53669
53681
  },
53670
53682
  },
@@ -53673,7 +53685,7 @@ const openapi: OpenAPISpec = {
53673
53685
  name: 'listing_keys',
53674
53686
  schema: {
53675
53687
  description: 'List of listing keys to delete.',
53676
- items: { type: 'string' },
53688
+ items: { minLength: 1, type: 'string' },
53677
53689
  type: 'array',
53678
53690
  },
53679
53691
  },
@@ -53682,7 +53694,7 @@ const openapi: OpenAPISpec = {
53682
53694
  name: 'property_listing_keys',
53683
53695
  schema: {
53684
53696
  description: 'List of property listing keys to delete.',
53685
- items: { type: 'string' },
53697
+ items: { minLength: 1, type: 'string' },
53686
53698
  type: 'array',
53687
53699
  },
53688
53700
  },
@@ -53691,7 +53703,7 @@ const openapi: OpenAPISpec = {
53691
53703
  name: 'guest_keys',
53692
53704
  schema: {
53693
53705
  description: 'List of guest keys to delete.',
53694
- items: { type: 'string' },
53706
+ items: { minLength: 1, type: 'string' },
53695
53707
  type: 'array',
53696
53708
  },
53697
53709
  },
@@ -53700,7 +53712,7 @@ const openapi: OpenAPISpec = {
53700
53712
  name: 'tenant_keys',
53701
53713
  schema: {
53702
53714
  description: 'List of tenant keys to delete.',
53703
- items: { type: 'string' },
53715
+ items: { minLength: 1, type: 'string' },
53704
53716
  type: 'array',
53705
53717
  },
53706
53718
  },
@@ -53709,7 +53721,7 @@ const openapi: OpenAPISpec = {
53709
53721
  name: 'resident_keys',
53710
53722
  schema: {
53711
53723
  description: 'List of resident keys to delete.',
53712
- items: { type: 'string' },
53724
+ items: { minLength: 1, type: 'string' },
53713
53725
  type: 'array',
53714
53726
  },
53715
53727
  },
@@ -53718,7 +53730,7 @@ const openapi: OpenAPISpec = {
53718
53730
  name: 'user_keys',
53719
53731
  schema: {
53720
53732
  description: 'List of user keys to delete.',
53721
- items: { type: 'string' },
53733
+ items: { minLength: 1, type: 'string' },
53722
53734
  type: 'array',
53723
53735
  },
53724
53736
  },
@@ -53727,7 +53739,7 @@ const openapi: OpenAPISpec = {
53727
53739
  name: 'user_identity_keys',
53728
53740
  schema: {
53729
53741
  description: 'List of user identity keys to delete.',
53730
- items: { type: 'string' },
53742
+ items: { minLength: 1, type: 'string' },
53731
53743
  type: 'array',
53732
53744
  },
53733
53745
  },
@@ -53736,7 +53748,7 @@ const openapi: OpenAPISpec = {
53736
53748
  name: 'reservation_keys',
53737
53749
  schema: {
53738
53750
  description: 'List of reservation keys to delete.',
53739
- items: { type: 'string' },
53751
+ items: { minLength: 1, type: 'string' },
53740
53752
  type: 'array',
53741
53753
  },
53742
53754
  },
@@ -53745,7 +53757,7 @@ const openapi: OpenAPISpec = {
53745
53757
  name: 'booking_keys',
53746
53758
  schema: {
53747
53759
  description: 'List of booking keys to delete.',
53748
- items: { type: 'string' },
53760
+ items: { minLength: 1, type: 'string' },
53749
53761
  type: 'array',
53750
53762
  },
53751
53763
  },
@@ -53754,7 +53766,7 @@ const openapi: OpenAPISpec = {
53754
53766
  name: 'access_grant_keys',
53755
53767
  schema: {
53756
53768
  description: 'List of access grant keys to delete.',
53757
- items: { type: 'string' },
53769
+ items: { minLength: 1, type: 'string' },
53758
53770
  type: 'array',
53759
53771
  },
53760
53772
  },
@@ -53763,7 +53775,7 @@ const openapi: OpenAPISpec = {
53763
53775
  name: 'staff_member_keys',
53764
53776
  schema: {
53765
53777
  description: 'List of staff member keys to delete.',
53766
- items: { type: 'string' },
53778
+ items: { minLength: 1, type: 'string' },
53767
53779
  type: 'array',
53768
53780
  },
53769
53781
  },
@@ -53808,98 +53820,98 @@ const openapi: OpenAPISpec = {
53808
53820
  properties: {
53809
53821
  access_grant_keys: {
53810
53822
  description: 'List of access grant keys to delete.',
53811
- items: { type: 'string' },
53823
+ items: { minLength: 1, type: 'string' },
53812
53824
  type: 'array',
53813
53825
  },
53814
53826
  booking_keys: {
53815
53827
  description: 'List of booking keys to delete.',
53816
- items: { type: 'string' },
53828
+ items: { minLength: 1, type: 'string' },
53817
53829
  type: 'array',
53818
53830
  },
53819
53831
  building_keys: {
53820
53832
  description: 'List of building keys to delete.',
53821
- items: { type: 'string' },
53833
+ items: { minLength: 1, type: 'string' },
53822
53834
  type: 'array',
53823
53835
  },
53824
53836
  common_area_keys: {
53825
53837
  description: 'List of common area keys to delete.',
53826
- items: { type: 'string' },
53838
+ items: { minLength: 1, type: 'string' },
53827
53839
  type: 'array',
53828
53840
  },
53829
53841
  customer_keys: {
53830
53842
  description:
53831
53843
  'List of customer keys to delete all data for.',
53832
- items: { type: 'string' },
53844
+ items: { minLength: 1, type: 'string' },
53833
53845
  type: 'array',
53834
53846
  },
53835
53847
  facility_keys: {
53836
53848
  description: 'List of facility keys to delete.',
53837
- items: { type: 'string' },
53849
+ items: { minLength: 1, type: 'string' },
53838
53850
  type: 'array',
53839
53851
  },
53840
53852
  guest_keys: {
53841
53853
  description: 'List of guest keys to delete.',
53842
- items: { type: 'string' },
53854
+ items: { minLength: 1, type: 'string' },
53843
53855
  type: 'array',
53844
53856
  },
53845
53857
  listing_keys: {
53846
53858
  description: 'List of listing keys to delete.',
53847
- items: { type: 'string' },
53859
+ items: { minLength: 1, type: 'string' },
53848
53860
  type: 'array',
53849
53861
  },
53850
53862
  property_keys: {
53851
53863
  description: 'List of property keys to delete.',
53852
- items: { type: 'string' },
53864
+ items: { minLength: 1, type: 'string' },
53853
53865
  type: 'array',
53854
53866
  },
53855
53867
  property_listing_keys: {
53856
53868
  description: 'List of property listing keys to delete.',
53857
- items: { type: 'string' },
53869
+ items: { minLength: 1, type: 'string' },
53858
53870
  type: 'array',
53859
53871
  },
53860
53872
  reservation_keys: {
53861
53873
  description: 'List of reservation keys to delete.',
53862
- items: { type: 'string' },
53874
+ items: { minLength: 1, type: 'string' },
53863
53875
  type: 'array',
53864
53876
  },
53865
53877
  resident_keys: {
53866
53878
  description: 'List of resident keys to delete.',
53867
- items: { type: 'string' },
53879
+ items: { minLength: 1, type: 'string' },
53868
53880
  type: 'array',
53869
53881
  },
53870
53882
  room_keys: {
53871
53883
  description: 'List of room keys to delete.',
53872
- items: { type: 'string' },
53884
+ items: { minLength: 1, type: 'string' },
53873
53885
  type: 'array',
53874
53886
  },
53875
53887
  space_keys: {
53876
53888
  description: 'List of space keys to delete.',
53877
- items: { type: 'string' },
53889
+ items: { minLength: 1, type: 'string' },
53878
53890
  type: 'array',
53879
53891
  },
53880
53892
  staff_member_keys: {
53881
53893
  description: 'List of staff member keys to delete.',
53882
- items: { type: 'string' },
53894
+ items: { minLength: 1, type: 'string' },
53883
53895
  type: 'array',
53884
53896
  },
53885
53897
  tenant_keys: {
53886
53898
  description: 'List of tenant keys to delete.',
53887
- items: { type: 'string' },
53899
+ items: { minLength: 1, type: 'string' },
53888
53900
  type: 'array',
53889
53901
  },
53890
53902
  unit_keys: {
53891
53903
  description: 'List of unit keys to delete.',
53892
- items: { type: 'string' },
53904
+ items: { minLength: 1, type: 'string' },
53893
53905
  type: 'array',
53894
53906
  },
53895
53907
  user_identity_keys: {
53896
53908
  description: 'List of user identity keys to delete.',
53897
- items: { type: 'string' },
53909
+ items: { minLength: 1, type: 'string' },
53898
53910
  type: 'array',
53899
53911
  },
53900
53912
  user_keys: {
53901
53913
  description: 'List of user keys to delete.',
53902
- items: { type: 'string' },
53914
+ items: { minLength: 1, type: 'string' },
53903
53915
  type: 'array',
53904
53916
  },
53905
53917
  },
@@ -66608,7 +66620,9 @@ const openapi: OpenAPISpec = {
66608
66620
  required: false,
66609
66621
  schema: {
66610
66622
  description:
66611
- "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
66623
+ 'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
66624
+ minLength: 1,
66625
+ nullable: true,
66612
66626
  type: 'string',
66613
66627
  },
66614
66628
  },
@@ -67004,7 +67018,9 @@ const openapi: OpenAPISpec = {
67004
67018
  },
67005
67019
  page_cursor: {
67006
67020
  description:
67007
- "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
67021
+ 'Identifies the specific page of results to return. Specify `null` or omit this parameter to return the first page.',
67022
+ minLength: 1,
67023
+ nullable: true,
67008
67024
  type: 'string',
67009
67025
  },
67010
67026
  resource_id: {