@seamapi/types 1.1022.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":"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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"}
@@ -48675,7 +48675,7 @@ const openapi = {
48675
48675
  name: 'customer_keys',
48676
48676
  schema: {
48677
48677
  description: 'List of customer keys to delete all data for.',
48678
- items: { type: 'string' },
48678
+ items: { minLength: 1, type: 'string' },
48679
48679
  type: 'array',
48680
48680
  },
48681
48681
  },
@@ -48684,7 +48684,7 @@ const openapi = {
48684
48684
  name: 'space_keys',
48685
48685
  schema: {
48686
48686
  description: 'List of space keys to delete.',
48687
- items: { type: 'string' },
48687
+ items: { minLength: 1, type: 'string' },
48688
48688
  type: 'array',
48689
48689
  },
48690
48690
  },
@@ -48693,7 +48693,7 @@ const openapi = {
48693
48693
  name: 'property_keys',
48694
48694
  schema: {
48695
48695
  description: 'List of property keys to delete.',
48696
- items: { type: 'string' },
48696
+ items: { minLength: 1, type: 'string' },
48697
48697
  type: 'array',
48698
48698
  },
48699
48699
  },
@@ -48702,7 +48702,7 @@ const openapi = {
48702
48702
  name: 'room_keys',
48703
48703
  schema: {
48704
48704
  description: 'List of room keys to delete.',
48705
- items: { type: 'string' },
48705
+ items: { minLength: 1, type: 'string' },
48706
48706
  type: 'array',
48707
48707
  },
48708
48708
  },
@@ -48711,7 +48711,7 @@ const openapi = {
48711
48711
  name: 'common_area_keys',
48712
48712
  schema: {
48713
48713
  description: 'List of common area keys to delete.',
48714
- items: { type: 'string' },
48714
+ items: { minLength: 1, type: 'string' },
48715
48715
  type: 'array',
48716
48716
  },
48717
48717
  },
@@ -48720,7 +48720,7 @@ const openapi = {
48720
48720
  name: 'unit_keys',
48721
48721
  schema: {
48722
48722
  description: 'List of unit keys to delete.',
48723
- items: { type: 'string' },
48723
+ items: { minLength: 1, type: 'string' },
48724
48724
  type: 'array',
48725
48725
  },
48726
48726
  },
@@ -48729,7 +48729,7 @@ const openapi = {
48729
48729
  name: 'facility_keys',
48730
48730
  schema: {
48731
48731
  description: 'List of facility keys to delete.',
48732
- items: { type: 'string' },
48732
+ items: { minLength: 1, type: 'string' },
48733
48733
  type: 'array',
48734
48734
  },
48735
48735
  },
@@ -48738,7 +48738,7 @@ const openapi = {
48738
48738
  name: 'building_keys',
48739
48739
  schema: {
48740
48740
  description: 'List of building keys to delete.',
48741
- items: { type: 'string' },
48741
+ items: { minLength: 1, type: 'string' },
48742
48742
  type: 'array',
48743
48743
  },
48744
48744
  },
@@ -48747,7 +48747,7 @@ const openapi = {
48747
48747
  name: 'listing_keys',
48748
48748
  schema: {
48749
48749
  description: 'List of listing keys to delete.',
48750
- items: { type: 'string' },
48750
+ items: { minLength: 1, type: 'string' },
48751
48751
  type: 'array',
48752
48752
  },
48753
48753
  },
@@ -48756,7 +48756,7 @@ const openapi = {
48756
48756
  name: 'property_listing_keys',
48757
48757
  schema: {
48758
48758
  description: 'List of property listing keys to delete.',
48759
- items: { type: 'string' },
48759
+ items: { minLength: 1, type: 'string' },
48760
48760
  type: 'array',
48761
48761
  },
48762
48762
  },
@@ -48765,7 +48765,7 @@ const openapi = {
48765
48765
  name: 'guest_keys',
48766
48766
  schema: {
48767
48767
  description: 'List of guest keys to delete.',
48768
- items: { type: 'string' },
48768
+ items: { minLength: 1, type: 'string' },
48769
48769
  type: 'array',
48770
48770
  },
48771
48771
  },
@@ -48774,7 +48774,7 @@ const openapi = {
48774
48774
  name: 'tenant_keys',
48775
48775
  schema: {
48776
48776
  description: 'List of tenant keys to delete.',
48777
- items: { type: 'string' },
48777
+ items: { minLength: 1, type: 'string' },
48778
48778
  type: 'array',
48779
48779
  },
48780
48780
  },
@@ -48783,7 +48783,7 @@ const openapi = {
48783
48783
  name: 'resident_keys',
48784
48784
  schema: {
48785
48785
  description: 'List of resident keys to delete.',
48786
- items: { type: 'string' },
48786
+ items: { minLength: 1, type: 'string' },
48787
48787
  type: 'array',
48788
48788
  },
48789
48789
  },
@@ -48792,7 +48792,7 @@ const openapi = {
48792
48792
  name: 'user_keys',
48793
48793
  schema: {
48794
48794
  description: 'List of user keys to delete.',
48795
- items: { type: 'string' },
48795
+ items: { minLength: 1, type: 'string' },
48796
48796
  type: 'array',
48797
48797
  },
48798
48798
  },
@@ -48801,7 +48801,7 @@ const openapi = {
48801
48801
  name: 'user_identity_keys',
48802
48802
  schema: {
48803
48803
  description: 'List of user identity keys to delete.',
48804
- items: { type: 'string' },
48804
+ items: { minLength: 1, type: 'string' },
48805
48805
  type: 'array',
48806
48806
  },
48807
48807
  },
@@ -48810,7 +48810,7 @@ const openapi = {
48810
48810
  name: 'reservation_keys',
48811
48811
  schema: {
48812
48812
  description: 'List of reservation keys to delete.',
48813
- items: { type: 'string' },
48813
+ items: { minLength: 1, type: 'string' },
48814
48814
  type: 'array',
48815
48815
  },
48816
48816
  },
@@ -48819,7 +48819,7 @@ const openapi = {
48819
48819
  name: 'booking_keys',
48820
48820
  schema: {
48821
48821
  description: 'List of booking keys to delete.',
48822
- items: { type: 'string' },
48822
+ items: { minLength: 1, type: 'string' },
48823
48823
  type: 'array',
48824
48824
  },
48825
48825
  },
@@ -48828,7 +48828,7 @@ const openapi = {
48828
48828
  name: 'access_grant_keys',
48829
48829
  schema: {
48830
48830
  description: 'List of access grant keys to delete.',
48831
- items: { type: 'string' },
48831
+ items: { minLength: 1, type: 'string' },
48832
48832
  type: 'array',
48833
48833
  },
48834
48834
  },
@@ -48837,7 +48837,7 @@ const openapi = {
48837
48837
  name: 'staff_member_keys',
48838
48838
  schema: {
48839
48839
  description: 'List of staff member keys to delete.',
48840
- items: { type: 'string' },
48840
+ items: { minLength: 1, type: 'string' },
48841
48841
  type: 'array',
48842
48842
  },
48843
48843
  },
@@ -48881,97 +48881,97 @@ const openapi = {
48881
48881
  properties: {
48882
48882
  access_grant_keys: {
48883
48883
  description: 'List of access grant keys to delete.',
48884
- items: { type: 'string' },
48884
+ items: { minLength: 1, type: 'string' },
48885
48885
  type: 'array',
48886
48886
  },
48887
48887
  booking_keys: {
48888
48888
  description: 'List of booking keys to delete.',
48889
- items: { type: 'string' },
48889
+ items: { minLength: 1, type: 'string' },
48890
48890
  type: 'array',
48891
48891
  },
48892
48892
  building_keys: {
48893
48893
  description: 'List of building keys to delete.',
48894
- items: { type: 'string' },
48894
+ items: { minLength: 1, type: 'string' },
48895
48895
  type: 'array',
48896
48896
  },
48897
48897
  common_area_keys: {
48898
48898
  description: 'List of common area keys to delete.',
48899
- items: { type: 'string' },
48899
+ items: { minLength: 1, type: 'string' },
48900
48900
  type: 'array',
48901
48901
  },
48902
48902
  customer_keys: {
48903
48903
  description: 'List of customer keys to delete all data for.',
48904
- items: { type: 'string' },
48904
+ items: { minLength: 1, type: 'string' },
48905
48905
  type: 'array',
48906
48906
  },
48907
48907
  facility_keys: {
48908
48908
  description: 'List of facility keys to delete.',
48909
- items: { type: 'string' },
48909
+ items: { minLength: 1, type: 'string' },
48910
48910
  type: 'array',
48911
48911
  },
48912
48912
  guest_keys: {
48913
48913
  description: 'List of guest keys to delete.',
48914
- items: { type: 'string' },
48914
+ items: { minLength: 1, type: 'string' },
48915
48915
  type: 'array',
48916
48916
  },
48917
48917
  listing_keys: {
48918
48918
  description: 'List of listing keys to delete.',
48919
- items: { type: 'string' },
48919
+ items: { minLength: 1, type: 'string' },
48920
48920
  type: 'array',
48921
48921
  },
48922
48922
  property_keys: {
48923
48923
  description: 'List of property keys to delete.',
48924
- items: { type: 'string' },
48924
+ items: { minLength: 1, type: 'string' },
48925
48925
  type: 'array',
48926
48926
  },
48927
48927
  property_listing_keys: {
48928
48928
  description: 'List of property listing keys to delete.',
48929
- items: { type: 'string' },
48929
+ items: { minLength: 1, type: 'string' },
48930
48930
  type: 'array',
48931
48931
  },
48932
48932
  reservation_keys: {
48933
48933
  description: 'List of reservation keys to delete.',
48934
- items: { type: 'string' },
48934
+ items: { minLength: 1, type: 'string' },
48935
48935
  type: 'array',
48936
48936
  },
48937
48937
  resident_keys: {
48938
48938
  description: 'List of resident keys to delete.',
48939
- items: { type: 'string' },
48939
+ items: { minLength: 1, type: 'string' },
48940
48940
  type: 'array',
48941
48941
  },
48942
48942
  room_keys: {
48943
48943
  description: 'List of room keys to delete.',
48944
- items: { type: 'string' },
48944
+ items: { minLength: 1, type: 'string' },
48945
48945
  type: 'array',
48946
48946
  },
48947
48947
  space_keys: {
48948
48948
  description: 'List of space keys to delete.',
48949
- items: { type: 'string' },
48949
+ items: { minLength: 1, type: 'string' },
48950
48950
  type: 'array',
48951
48951
  },
48952
48952
  staff_member_keys: {
48953
48953
  description: 'List of staff member keys to delete.',
48954
- items: { type: 'string' },
48954
+ items: { minLength: 1, type: 'string' },
48955
48955
  type: 'array',
48956
48956
  },
48957
48957
  tenant_keys: {
48958
48958
  description: 'List of tenant keys to delete.',
48959
- items: { type: 'string' },
48959
+ items: { minLength: 1, type: 'string' },
48960
48960
  type: 'array',
48961
48961
  },
48962
48962
  unit_keys: {
48963
48963
  description: 'List of unit keys to delete.',
48964
- items: { type: 'string' },
48964
+ items: { minLength: 1, type: 'string' },
48965
48965
  type: 'array',
48966
48966
  },
48967
48967
  user_identity_keys: {
48968
48968
  description: 'List of user identity keys to delete.',
48969
- items: { type: 'string' },
48969
+ items: { minLength: 1, type: 'string' },
48970
48970
  type: 'array',
48971
48971
  },
48972
48972
  user_keys: {
48973
48973
  description: 'List of user keys to delete.',
48974
- items: { type: 'string' },
48974
+ items: { minLength: 1, type: 'string' },
48975
48975
  type: 'array',
48976
48976
  },
48977
48977
  },