@seamapi/types 1.1022.0 → 1.1024.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":"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"}
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"}
@@ -33542,6 +33542,7 @@ const openapi = {
33542
33542
  name: 'code',
33543
33543
  schema: {
33544
33544
  description: 'Code of the access code that you want to get. You must specify either `access_code_id` or both `device_id` and `code`.',
33545
+ minLength: 1,
33545
33546
  type: 'string',
33546
33547
  },
33547
33548
  },
@@ -33598,6 +33599,7 @@ const openapi = {
33598
33599
  },
33599
33600
  code: {
33600
33601
  description: 'Code of the access code that you want to get. You must specify either `access_code_id` or both `device_id` and `code`.',
33602
+ minLength: 1,
33601
33603
  type: 'string',
33602
33604
  },
33603
33605
  device_id: {
@@ -34843,6 +34845,7 @@ const openapi = {
34843
34845
  name: 'code',
34844
34846
  schema: {
34845
34847
  description: 'Code of the unmanaged access code that you want to get. You must specify either `access_code_id` or both `device_id` and `code`.',
34848
+ minLength: 1,
34846
34849
  type: 'string',
34847
34850
  },
34848
34851
  },
@@ -34901,6 +34904,7 @@ const openapi = {
34901
34904
  },
34902
34905
  code: {
34903
34906
  description: 'Code of the unmanaged access code that you want to get. You must specify either `access_code_id` or both `device_id` and `code`.',
34907
+ minLength: 1,
34904
34908
  type: 'string',
34905
34909
  },
34906
34910
  device_id: {
@@ -48675,7 +48679,7 @@ const openapi = {
48675
48679
  name: 'customer_keys',
48676
48680
  schema: {
48677
48681
  description: 'List of customer keys to delete all data for.',
48678
- items: { type: 'string' },
48682
+ items: { minLength: 1, type: 'string' },
48679
48683
  type: 'array',
48680
48684
  },
48681
48685
  },
@@ -48684,7 +48688,7 @@ const openapi = {
48684
48688
  name: 'space_keys',
48685
48689
  schema: {
48686
48690
  description: 'List of space keys to delete.',
48687
- items: { type: 'string' },
48691
+ items: { minLength: 1, type: 'string' },
48688
48692
  type: 'array',
48689
48693
  },
48690
48694
  },
@@ -48693,7 +48697,7 @@ const openapi = {
48693
48697
  name: 'property_keys',
48694
48698
  schema: {
48695
48699
  description: 'List of property keys to delete.',
48696
- items: { type: 'string' },
48700
+ items: { minLength: 1, type: 'string' },
48697
48701
  type: 'array',
48698
48702
  },
48699
48703
  },
@@ -48702,7 +48706,7 @@ const openapi = {
48702
48706
  name: 'room_keys',
48703
48707
  schema: {
48704
48708
  description: 'List of room keys to delete.',
48705
- items: { type: 'string' },
48709
+ items: { minLength: 1, type: 'string' },
48706
48710
  type: 'array',
48707
48711
  },
48708
48712
  },
@@ -48711,7 +48715,7 @@ const openapi = {
48711
48715
  name: 'common_area_keys',
48712
48716
  schema: {
48713
48717
  description: 'List of common area keys to delete.',
48714
- items: { type: 'string' },
48718
+ items: { minLength: 1, type: 'string' },
48715
48719
  type: 'array',
48716
48720
  },
48717
48721
  },
@@ -48720,7 +48724,7 @@ const openapi = {
48720
48724
  name: 'unit_keys',
48721
48725
  schema: {
48722
48726
  description: 'List of unit keys to delete.',
48723
- items: { type: 'string' },
48727
+ items: { minLength: 1, type: 'string' },
48724
48728
  type: 'array',
48725
48729
  },
48726
48730
  },
@@ -48729,7 +48733,7 @@ const openapi = {
48729
48733
  name: 'facility_keys',
48730
48734
  schema: {
48731
48735
  description: 'List of facility keys to delete.',
48732
- items: { type: 'string' },
48736
+ items: { minLength: 1, type: 'string' },
48733
48737
  type: 'array',
48734
48738
  },
48735
48739
  },
@@ -48738,7 +48742,7 @@ const openapi = {
48738
48742
  name: 'building_keys',
48739
48743
  schema: {
48740
48744
  description: 'List of building keys to delete.',
48741
- items: { type: 'string' },
48745
+ items: { minLength: 1, type: 'string' },
48742
48746
  type: 'array',
48743
48747
  },
48744
48748
  },
@@ -48747,7 +48751,7 @@ const openapi = {
48747
48751
  name: 'listing_keys',
48748
48752
  schema: {
48749
48753
  description: 'List of listing keys to delete.',
48750
- items: { type: 'string' },
48754
+ items: { minLength: 1, type: 'string' },
48751
48755
  type: 'array',
48752
48756
  },
48753
48757
  },
@@ -48756,7 +48760,7 @@ const openapi = {
48756
48760
  name: 'property_listing_keys',
48757
48761
  schema: {
48758
48762
  description: 'List of property listing keys to delete.',
48759
- items: { type: 'string' },
48763
+ items: { minLength: 1, type: 'string' },
48760
48764
  type: 'array',
48761
48765
  },
48762
48766
  },
@@ -48765,7 +48769,7 @@ const openapi = {
48765
48769
  name: 'guest_keys',
48766
48770
  schema: {
48767
48771
  description: 'List of guest keys to delete.',
48768
- items: { type: 'string' },
48772
+ items: { minLength: 1, type: 'string' },
48769
48773
  type: 'array',
48770
48774
  },
48771
48775
  },
@@ -48774,7 +48778,7 @@ const openapi = {
48774
48778
  name: 'tenant_keys',
48775
48779
  schema: {
48776
48780
  description: 'List of tenant keys to delete.',
48777
- items: { type: 'string' },
48781
+ items: { minLength: 1, type: 'string' },
48778
48782
  type: 'array',
48779
48783
  },
48780
48784
  },
@@ -48783,7 +48787,7 @@ const openapi = {
48783
48787
  name: 'resident_keys',
48784
48788
  schema: {
48785
48789
  description: 'List of resident keys to delete.',
48786
- items: { type: 'string' },
48790
+ items: { minLength: 1, type: 'string' },
48787
48791
  type: 'array',
48788
48792
  },
48789
48793
  },
@@ -48792,7 +48796,7 @@ const openapi = {
48792
48796
  name: 'user_keys',
48793
48797
  schema: {
48794
48798
  description: 'List of user keys to delete.',
48795
- items: { type: 'string' },
48799
+ items: { minLength: 1, type: 'string' },
48796
48800
  type: 'array',
48797
48801
  },
48798
48802
  },
@@ -48801,7 +48805,7 @@ const openapi = {
48801
48805
  name: 'user_identity_keys',
48802
48806
  schema: {
48803
48807
  description: 'List of user identity keys to delete.',
48804
- items: { type: 'string' },
48808
+ items: { minLength: 1, type: 'string' },
48805
48809
  type: 'array',
48806
48810
  },
48807
48811
  },
@@ -48810,7 +48814,7 @@ const openapi = {
48810
48814
  name: 'reservation_keys',
48811
48815
  schema: {
48812
48816
  description: 'List of reservation keys to delete.',
48813
- items: { type: 'string' },
48817
+ items: { minLength: 1, type: 'string' },
48814
48818
  type: 'array',
48815
48819
  },
48816
48820
  },
@@ -48819,7 +48823,7 @@ const openapi = {
48819
48823
  name: 'booking_keys',
48820
48824
  schema: {
48821
48825
  description: 'List of booking keys to delete.',
48822
- items: { type: 'string' },
48826
+ items: { minLength: 1, type: 'string' },
48823
48827
  type: 'array',
48824
48828
  },
48825
48829
  },
@@ -48828,7 +48832,7 @@ const openapi = {
48828
48832
  name: 'access_grant_keys',
48829
48833
  schema: {
48830
48834
  description: 'List of access grant keys to delete.',
48831
- items: { type: 'string' },
48835
+ items: { minLength: 1, type: 'string' },
48832
48836
  type: 'array',
48833
48837
  },
48834
48838
  },
@@ -48837,7 +48841,7 @@ const openapi = {
48837
48841
  name: 'staff_member_keys',
48838
48842
  schema: {
48839
48843
  description: 'List of staff member keys to delete.',
48840
- items: { type: 'string' },
48844
+ items: { minLength: 1, type: 'string' },
48841
48845
  type: 'array',
48842
48846
  },
48843
48847
  },
@@ -48881,97 +48885,97 @@ const openapi = {
48881
48885
  properties: {
48882
48886
  access_grant_keys: {
48883
48887
  description: 'List of access grant keys to delete.',
48884
- items: { type: 'string' },
48888
+ items: { minLength: 1, type: 'string' },
48885
48889
  type: 'array',
48886
48890
  },
48887
48891
  booking_keys: {
48888
48892
  description: 'List of booking keys to delete.',
48889
- items: { type: 'string' },
48893
+ items: { minLength: 1, type: 'string' },
48890
48894
  type: 'array',
48891
48895
  },
48892
48896
  building_keys: {
48893
48897
  description: 'List of building keys to delete.',
48894
- items: { type: 'string' },
48898
+ items: { minLength: 1, type: 'string' },
48895
48899
  type: 'array',
48896
48900
  },
48897
48901
  common_area_keys: {
48898
48902
  description: 'List of common area keys to delete.',
48899
- items: { type: 'string' },
48903
+ items: { minLength: 1, type: 'string' },
48900
48904
  type: 'array',
48901
48905
  },
48902
48906
  customer_keys: {
48903
48907
  description: 'List of customer keys to delete all data for.',
48904
- items: { type: 'string' },
48908
+ items: { minLength: 1, type: 'string' },
48905
48909
  type: 'array',
48906
48910
  },
48907
48911
  facility_keys: {
48908
48912
  description: 'List of facility keys to delete.',
48909
- items: { type: 'string' },
48913
+ items: { minLength: 1, type: 'string' },
48910
48914
  type: 'array',
48911
48915
  },
48912
48916
  guest_keys: {
48913
48917
  description: 'List of guest keys to delete.',
48914
- items: { type: 'string' },
48918
+ items: { minLength: 1, type: 'string' },
48915
48919
  type: 'array',
48916
48920
  },
48917
48921
  listing_keys: {
48918
48922
  description: 'List of listing keys to delete.',
48919
- items: { type: 'string' },
48923
+ items: { minLength: 1, type: 'string' },
48920
48924
  type: 'array',
48921
48925
  },
48922
48926
  property_keys: {
48923
48927
  description: 'List of property keys to delete.',
48924
- items: { type: 'string' },
48928
+ items: { minLength: 1, type: 'string' },
48925
48929
  type: 'array',
48926
48930
  },
48927
48931
  property_listing_keys: {
48928
48932
  description: 'List of property listing keys to delete.',
48929
- items: { type: 'string' },
48933
+ items: { minLength: 1, type: 'string' },
48930
48934
  type: 'array',
48931
48935
  },
48932
48936
  reservation_keys: {
48933
48937
  description: 'List of reservation keys to delete.',
48934
- items: { type: 'string' },
48938
+ items: { minLength: 1, type: 'string' },
48935
48939
  type: 'array',
48936
48940
  },
48937
48941
  resident_keys: {
48938
48942
  description: 'List of resident keys to delete.',
48939
- items: { type: 'string' },
48943
+ items: { minLength: 1, type: 'string' },
48940
48944
  type: 'array',
48941
48945
  },
48942
48946
  room_keys: {
48943
48947
  description: 'List of room keys to delete.',
48944
- items: { type: 'string' },
48948
+ items: { minLength: 1, type: 'string' },
48945
48949
  type: 'array',
48946
48950
  },
48947
48951
  space_keys: {
48948
48952
  description: 'List of space keys to delete.',
48949
- items: { type: 'string' },
48953
+ items: { minLength: 1, type: 'string' },
48950
48954
  type: 'array',
48951
48955
  },
48952
48956
  staff_member_keys: {
48953
48957
  description: 'List of staff member keys to delete.',
48954
- items: { type: 'string' },
48958
+ items: { minLength: 1, type: 'string' },
48955
48959
  type: 'array',
48956
48960
  },
48957
48961
  tenant_keys: {
48958
48962
  description: 'List of tenant keys to delete.',
48959
- items: { type: 'string' },
48963
+ items: { minLength: 1, type: 'string' },
48960
48964
  type: 'array',
48961
48965
  },
48962
48966
  unit_keys: {
48963
48967
  description: 'List of unit keys to delete.',
48964
- items: { type: 'string' },
48968
+ items: { minLength: 1, type: 'string' },
48965
48969
  type: 'array',
48966
48970
  },
48967
48971
  user_identity_keys: {
48968
48972
  description: 'List of user identity keys to delete.',
48969
- items: { type: 'string' },
48973
+ items: { minLength: 1, type: 'string' },
48970
48974
  type: 'array',
48971
48975
  },
48972
48976
  user_keys: {
48973
48977
  description: 'List of user keys to delete.',
48974
- items: { type: 'string' },
48978
+ items: { minLength: 1, type: 'string' },
48975
48979
  type: 'array',
48976
48980
  },
48977
48981
  },
@@ -50032,6 +50036,7 @@ const openapi = {
50032
50036
  name: 'name',
50033
50037
  schema: {
50034
50038
  description: 'Name of the device that you want to get.',
50039
+ minLength: 1,
50035
50040
  type: 'string',
50036
50041
  },
50037
50042
  },
@@ -50088,6 +50093,7 @@ const openapi = {
50088
50093
  },
50089
50094
  name: {
50090
50095
  description: 'Name of the device that you want to get.',
50096
+ minLength: 1,
50091
50097
  type: 'string',
50092
50098
  },
50093
50099
  },
@@ -52819,6 +52825,7 @@ const openapi = {
52819
52825
  name: 'name',
52820
52826
  schema: {
52821
52827
  description: 'Name of the unmanaged device that you want to get.',
52828
+ minLength: 1,
52822
52829
  type: 'string',
52823
52830
  },
52824
52831
  },
@@ -52873,6 +52880,7 @@ const openapi = {
52873
52880
  },
52874
52881
  name: {
52875
52882
  description: 'Name of the unmanaged device that you want to get.',
52883
+ minLength: 1,
52876
52884
  type: 'string',
52877
52885
  },
52878
52886
  },
@@ -54019,6 +54027,7 @@ const openapi = {
54019
54027
  name: 'event_type',
54020
54028
  schema: {
54021
54029
  description: 'Type of the event that you want to get.',
54030
+ minLength: 1,
54022
54031
  type: 'string',
54023
54032
  },
54024
54033
  },
@@ -54090,6 +54099,7 @@ const openapi = {
54090
54099
  },
54091
54100
  event_type: {
54092
54101
  description: 'Type of the event that you want to get.',
54102
+ minLength: 1,
54093
54103
  type: 'string',
54094
54104
  },
54095
54105
  },
@@ -55491,6 +55501,7 @@ const openapi = {
55491
55501
  name: 'name',
55492
55502
  schema: {
55493
55503
  description: 'Name of the lock that you want to get.',
55504
+ minLength: 1,
55494
55505
  type: 'string',
55495
55506
  },
55496
55507
  },
@@ -55547,6 +55558,7 @@ const openapi = {
55547
55558
  },
55548
55559
  name: {
55549
55560
  description: 'Name of the lock that you want to get.',
55561
+ minLength: 1,
55550
55562
  type: 'string',
55551
55563
  },
55552
55564
  },
@@ -75519,6 +75531,7 @@ const openapi = {
75519
75531
  name: 'name',
75520
75532
  schema: {
75521
75533
  description: 'Name of the thermostat device that you want to retrieve.',
75534
+ minLength: 1,
75522
75535
  type: 'string',
75523
75536
  },
75524
75537
  },
@@ -75574,6 +75587,7 @@ const openapi = {
75574
75587
  },
75575
75588
  name: {
75576
75589
  description: 'Name of the thermostat device that you want to retrieve.',
75590
+ minLength: 1,
75577
75591
  type: 'string',
75578
75592
  },
75579
75593
  },
@@ -80542,6 +80556,7 @@ const openapi = {
80542
80556
  required: true,
80543
80557
  schema: {
80544
80558
  description: 'ID of the webhook that you want to delete.',
80559
+ minLength: 1,
80545
80560
  type: 'string',
80546
80561
  },
80547
80562
  },
@@ -80584,6 +80599,7 @@ const openapi = {
80584
80599
  properties: {
80585
80600
  webhook_id: {
80586
80601
  description: 'ID of the webhook that you want to delete.',
80602
+ minLength: 1,
80587
80603
  type: 'string',
80588
80604
  },
80589
80605
  },
@@ -80633,6 +80649,7 @@ const openapi = {
80633
80649
  required: true,
80634
80650
  schema: {
80635
80651
  description: 'ID of the webhook that you want to get.',
80652
+ minLength: 1,
80636
80653
  type: 'string',
80637
80654
  },
80638
80655
  },
@@ -80679,6 +80696,7 @@ const openapi = {
80679
80696
  properties: {
80680
80697
  webhook_id: {
80681
80698
  description: 'ID of the webhook that you want to get.',
80699
+ minLength: 1,
80682
80700
  type: 'string',
80683
80701
  },
80684
80702
  },