@seamapi/types 1.525.0 → 1.527.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10766,11 +10766,14 @@ declare const batch: z.ZodObject<{
10766
10766
  door_name: string;
10767
10767
  }>>;
10768
10768
  brivo_metadata: z.ZodOptional<z.ZodObject<{
10769
- device_name: z.ZodString;
10769
+ device_name: z.ZodOptional<z.ZodString>;
10770
+ activation_enabled: z.ZodOptional<z.ZodBoolean>;
10770
10771
  }, "strip", z.ZodTypeAny, {
10771
- device_name: string;
10772
+ device_name?: string | undefined;
10773
+ activation_enabled?: boolean | undefined;
10772
10774
  }, {
10773
- device_name: string;
10775
+ device_name?: string | undefined;
10776
+ activation_enabled?: boolean | undefined;
10774
10777
  }>>;
10775
10778
  igloo_metadata: z.ZodOptional<z.ZodObject<{
10776
10779
  device_id: z.ZodString;
@@ -11412,7 +11415,8 @@ declare const batch: z.ZodObject<{
11412
11415
  door_name: string;
11413
11416
  } | undefined;
11414
11417
  brivo_metadata?: {
11415
- device_name: string;
11418
+ device_name?: string | undefined;
11419
+ activation_enabled?: boolean | undefined;
11416
11420
  } | undefined;
11417
11421
  igloo_metadata?: {
11418
11422
  device_id: string;
@@ -11648,7 +11652,8 @@ declare const batch: z.ZodObject<{
11648
11652
  door_name: string;
11649
11653
  } | undefined;
11650
11654
  brivo_metadata?: {
11651
- device_name: string;
11655
+ device_name?: string | undefined;
11656
+ activation_enabled?: boolean | undefined;
11652
11657
  } | undefined;
11653
11658
  igloo_metadata?: {
11654
11659
  device_id: string;
@@ -13425,7 +13430,8 @@ declare const batch: z.ZodObject<{
13425
13430
  door_name: string;
13426
13431
  } | undefined;
13427
13432
  brivo_metadata?: {
13428
- device_name: string;
13433
+ device_name?: string | undefined;
13434
+ activation_enabled?: boolean | undefined;
13429
13435
  } | undefined;
13430
13436
  igloo_metadata?: {
13431
13437
  device_id: string;
@@ -14064,7 +14070,8 @@ declare const batch: z.ZodObject<{
14064
14070
  door_name: string;
14065
14071
  } | undefined;
14066
14072
  brivo_metadata?: {
14067
- device_name: string;
14073
+ device_name?: string | undefined;
14074
+ activation_enabled?: boolean | undefined;
14068
14075
  } | undefined;
14069
14076
  igloo_metadata?: {
14070
14077
  device_id: string;
@@ -21220,11 +21227,14 @@ declare const batch: z.ZodObject<{
21220
21227
  door_name: string;
21221
21228
  }>>;
21222
21229
  brivo_metadata: z.ZodOptional<z.ZodObject<{
21223
- device_name: z.ZodString;
21230
+ device_name: z.ZodOptional<z.ZodString>;
21231
+ activation_enabled: z.ZodOptional<z.ZodBoolean>;
21224
21232
  }, "strip", z.ZodTypeAny, {
21225
- device_name: string;
21233
+ device_name?: string | undefined;
21234
+ activation_enabled?: boolean | undefined;
21226
21235
  }, {
21227
- device_name: string;
21236
+ device_name?: string | undefined;
21237
+ activation_enabled?: boolean | undefined;
21228
21238
  }>>;
21229
21239
  igloo_metadata: z.ZodOptional<z.ZodObject<{
21230
21240
  device_id: z.ZodString;
@@ -21866,7 +21876,8 @@ declare const batch: z.ZodObject<{
21866
21876
  door_name: string;
21867
21877
  } | undefined;
21868
21878
  brivo_metadata?: {
21869
- device_name: string;
21879
+ device_name?: string | undefined;
21880
+ activation_enabled?: boolean | undefined;
21870
21881
  } | undefined;
21871
21882
  igloo_metadata?: {
21872
21883
  device_id: string;
@@ -22102,7 +22113,8 @@ declare const batch: z.ZodObject<{
22102
22113
  door_name: string;
22103
22114
  } | undefined;
22104
22115
  brivo_metadata?: {
22105
- device_name: string;
22116
+ device_name?: string | undefined;
22117
+ activation_enabled?: boolean | undefined;
22106
22118
  } | undefined;
22107
22119
  igloo_metadata?: {
22108
22120
  device_id: string;
@@ -30868,7 +30880,8 @@ declare const batch: z.ZodObject<{
30868
30880
  door_name: string;
30869
30881
  } | undefined;
30870
30882
  brivo_metadata?: {
30871
- device_name: string;
30883
+ device_name?: string | undefined;
30884
+ activation_enabled?: boolean | undefined;
30872
30885
  } | undefined;
30873
30886
  igloo_metadata?: {
30874
30887
  device_id: string;
@@ -34716,7 +34729,8 @@ declare const batch: z.ZodObject<{
34716
34729
  door_name: string;
34717
34730
  } | undefined;
34718
34731
  brivo_metadata?: {
34719
- device_name: string;
34732
+ device_name?: string | undefined;
34733
+ activation_enabled?: boolean | undefined;
34720
34734
  } | undefined;
34721
34735
  igloo_metadata?: {
34722
34736
  device_id: string;
@@ -39957,11 +39971,14 @@ declare const device: z.ZodObject<{
39957
39971
  door_name: string;
39958
39972
  }>>;
39959
39973
  brivo_metadata: z.ZodOptional<z.ZodObject<{
39960
- device_name: z.ZodString;
39974
+ device_name: z.ZodOptional<z.ZodString>;
39975
+ activation_enabled: z.ZodOptional<z.ZodBoolean>;
39961
39976
  }, "strip", z.ZodTypeAny, {
39962
- device_name: string;
39977
+ device_name?: string | undefined;
39978
+ activation_enabled?: boolean | undefined;
39963
39979
  }, {
39964
- device_name: string;
39980
+ device_name?: string | undefined;
39981
+ activation_enabled?: boolean | undefined;
39965
39982
  }>>;
39966
39983
  igloo_metadata: z.ZodOptional<z.ZodObject<{
39967
39984
  device_id: z.ZodString;
@@ -40603,7 +40620,8 @@ declare const device: z.ZodObject<{
40603
40620
  door_name: string;
40604
40621
  } | undefined;
40605
40622
  brivo_metadata?: {
40606
- device_name: string;
40623
+ device_name?: string | undefined;
40624
+ activation_enabled?: boolean | undefined;
40607
40625
  } | undefined;
40608
40626
  igloo_metadata?: {
40609
40627
  device_id: string;
@@ -40839,7 +40857,8 @@ declare const device: z.ZodObject<{
40839
40857
  door_name: string;
40840
40858
  } | undefined;
40841
40859
  brivo_metadata?: {
40842
- device_name: string;
40860
+ device_name?: string | undefined;
40861
+ activation_enabled?: boolean | undefined;
40843
40862
  } | undefined;
40844
40863
  igloo_metadata?: {
40845
40864
  device_id: string;
@@ -42616,7 +42635,8 @@ declare const device: z.ZodObject<{
42616
42635
  door_name: string;
42617
42636
  } | undefined;
42618
42637
  brivo_metadata?: {
42619
- device_name: string;
42638
+ device_name?: string | undefined;
42639
+ activation_enabled?: boolean | undefined;
42620
42640
  } | undefined;
42621
42641
  igloo_metadata?: {
42622
42642
  device_id: string;
@@ -43255,7 +43275,8 @@ declare const device: z.ZodObject<{
43255
43275
  door_name: string;
43256
43276
  } | undefined;
43257
43277
  brivo_metadata?: {
43258
- device_name: string;
43278
+ device_name?: string | undefined;
43279
+ activation_enabled?: boolean | undefined;
43259
43280
  } | undefined;
43260
43281
  igloo_metadata?: {
43261
43282
  device_id: string;
@@ -44101,11 +44122,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
44101
44122
  door_name: string;
44102
44123
  }>>;
44103
44124
  brivo_metadata: z.ZodOptional<z.ZodObject<{
44104
- device_name: z.ZodString;
44125
+ device_name: z.ZodOptional<z.ZodString>;
44126
+ activation_enabled: z.ZodOptional<z.ZodBoolean>;
44105
44127
  }, "strip", z.ZodTypeAny, {
44106
- device_name: string;
44128
+ device_name?: string | undefined;
44129
+ activation_enabled?: boolean | undefined;
44107
44130
  }, {
44108
- device_name: string;
44131
+ device_name?: string | undefined;
44132
+ activation_enabled?: boolean | undefined;
44109
44133
  }>>;
44110
44134
  igloo_metadata: z.ZodOptional<z.ZodObject<{
44111
44135
  device_id: z.ZodString;
@@ -44747,7 +44771,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
44747
44771
  door_name: string;
44748
44772
  } | undefined;
44749
44773
  brivo_metadata?: {
44750
- device_name: string;
44774
+ device_name?: string | undefined;
44775
+ activation_enabled?: boolean | undefined;
44751
44776
  } | undefined;
44752
44777
  igloo_metadata?: {
44753
44778
  device_id: string;
@@ -44983,7 +45008,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
44983
45008
  door_name: string;
44984
45009
  } | undefined;
44985
45010
  brivo_metadata?: {
44986
- device_name: string;
45011
+ device_name?: string | undefined;
45012
+ activation_enabled?: boolean | undefined;
44987
45013
  } | undefined;
44988
45014
  igloo_metadata?: {
44989
45015
  device_id: string;
@@ -55571,12 +55597,15 @@ declare const _default: {
55571
55597
  brivo_metadata: {
55572
55598
  description: string;
55573
55599
  properties: {
55600
+ activation_enabled: {
55601
+ description: string;
55602
+ type: string;
55603
+ };
55574
55604
  device_name: {
55575
55605
  description: string;
55576
55606
  type: string;
55577
55607
  };
55578
55608
  };
55579
- required: string[];
55580
55609
  type: string;
55581
55610
  };
55582
55611
  controlbyweb_metadata: {
@@ -80326,6 +80355,13 @@ declare const _default: {
80326
80355
  };
80327
80356
  type: string;
80328
80357
  };
80358
+ customer_keys: {
80359
+ description: string;
80360
+ items: {
80361
+ type: string;
80362
+ };
80363
+ type: string;
80364
+ };
80329
80365
  facility_keys: {
80330
80366
  description: string;
80331
80367
  items: {
@@ -111476,7 +111512,9 @@ type Routes = {
111476
111512
  /** Metadata for a Brivo device. */
111477
111513
  brivo_metadata?: {
111478
111514
  /** Device name for a Brivo device. */
111479
- device_name: string;
111515
+ device_name?: string | undefined;
111516
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
111517
+ activation_enabled?: boolean | undefined;
111480
111518
  } | undefined;
111481
111519
  /** Metadata for an igloo device. */
111482
111520
  igloo_metadata?: {
@@ -114596,7 +114634,9 @@ type Routes = {
114596
114634
  /** Metadata for a Brivo device. */
114597
114635
  brivo_metadata?: {
114598
114636
  /** Device name for a Brivo device. */
114599
- device_name: string;
114637
+ device_name?: string | undefined;
114638
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
114639
+ activation_enabled?: boolean | undefined;
114600
114640
  } | undefined;
114601
114641
  /** Metadata for an igloo device. */
114602
114642
  igloo_metadata?: {
@@ -132349,6 +132389,8 @@ type Routes = {
132349
132389
  queryParams: {};
132350
132390
  jsonBody: {};
132351
132391
  commonParams: {
132392
+ /** List of customer keys to delete all data for. */
132393
+ customer_keys?: string[] | undefined;
132352
132394
  /** List of space keys to delete. */
132353
132395
  space_keys?: string[] | undefined;
132354
132396
  /** List of property keys to delete. */
@@ -132906,7 +132948,9 @@ type Routes = {
132906
132948
  /** Metadata for a Brivo device. */
132907
132949
  brivo_metadata?: {
132908
132950
  /** Device name for a Brivo device. */
132909
- device_name: string;
132951
+ device_name?: string | undefined;
132952
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
132953
+ activation_enabled?: boolean | undefined;
132910
132954
  } | undefined;
132911
132955
  /** Metadata for an igloo device. */
132912
132956
  igloo_metadata?: {
@@ -134127,7 +134171,9 @@ type Routes = {
134127
134171
  /** Metadata for a Brivo device. */
134128
134172
  brivo_metadata?: {
134129
134173
  /** Device name for a Brivo device. */
134130
- device_name: string;
134174
+ device_name?: string | undefined;
134175
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
134176
+ activation_enabled?: boolean | undefined;
134131
134177
  } | undefined;
134132
134178
  /** Metadata for an igloo device. */
134133
134179
  igloo_metadata?: {
@@ -140154,7 +140200,9 @@ type Routes = {
140154
140200
  /** Metadata for a Brivo device. */
140155
140201
  brivo_metadata?: {
140156
140202
  /** Device name for a Brivo device. */
140157
- device_name: string;
140203
+ device_name?: string | undefined;
140204
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
140205
+ activation_enabled?: boolean | undefined;
140158
140206
  } | undefined;
140159
140207
  /** Metadata for an igloo device. */
140160
140208
  igloo_metadata?: {
@@ -141324,7 +141372,9 @@ type Routes = {
141324
141372
  /** Metadata for a Brivo device. */
141325
141373
  brivo_metadata?: {
141326
141374
  /** Device name for a Brivo device. */
141327
- device_name: string;
141375
+ device_name?: string | undefined;
141376
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
141377
+ activation_enabled?: boolean | undefined;
141328
141378
  } | undefined;
141329
141379
  /** Metadata for an igloo device. */
141330
141380
  igloo_metadata?: {
@@ -142545,7 +142595,9 @@ type Routes = {
142545
142595
  /** Metadata for a Brivo device. */
142546
142596
  brivo_metadata?: {
142547
142597
  /** Device name for a Brivo device. */
142548
- device_name: string;
142598
+ device_name?: string | undefined;
142599
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
142600
+ activation_enabled?: boolean | undefined;
142549
142601
  } | undefined;
142550
142602
  /** Metadata for an igloo device. */
142551
142603
  igloo_metadata?: {
@@ -143714,7 +143766,9 @@ type Routes = {
143714
143766
  /** Metadata for a Brivo device. */
143715
143767
  brivo_metadata?: {
143716
143768
  /** Device name for a Brivo device. */
143717
- device_name: string;
143769
+ device_name?: string | undefined;
143770
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
143771
+ activation_enabled?: boolean | undefined;
143718
143772
  } | undefined;
143719
143773
  /** Metadata for an igloo device. */
143720
143774
  igloo_metadata?: {
@@ -149973,7 +150027,9 @@ type Routes = {
149973
150027
  /** Metadata for a Brivo device. */
149974
150028
  brivo_metadata?: {
149975
150029
  /** Device name for a Brivo device. */
149976
- device_name: string;
150030
+ device_name?: string | undefined;
150031
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
150032
+ activation_enabled?: boolean | undefined;
149977
150033
  } | undefined;
149978
150034
  /** Metadata for an igloo device. */
149979
150035
  igloo_metadata?: {
@@ -151142,7 +151198,9 @@ type Routes = {
151142
151198
  /** Metadata for a Brivo device. */
151143
151199
  brivo_metadata?: {
151144
151200
  /** Device name for a Brivo device. */
151145
- device_name: string;
151201
+ device_name?: string | undefined;
151202
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
151203
+ activation_enabled?: boolean | undefined;
151146
151204
  } | undefined;
151147
151205
  /** Metadata for an igloo device. */
151148
151206
  igloo_metadata?: {
@@ -159603,7 +159661,9 @@ type Routes = {
159603
159661
  /** Metadata for a Brivo device. */
159604
159662
  brivo_metadata?: {
159605
159663
  /** Device name for a Brivo device. */
159606
- device_name: string;
159664
+ device_name?: string | undefined;
159665
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
159666
+ activation_enabled?: boolean | undefined;
159607
159667
  } | undefined;
159608
159668
  /** Metadata for an igloo device. */
159609
159669
  igloo_metadata?: {
@@ -165155,7 +165215,9 @@ type Routes = {
165155
165215
  /** Metadata for a Brivo device. */
165156
165216
  brivo_metadata?: {
165157
165217
  /** Device name for a Brivo device. */
165158
- device_name: string;
165218
+ device_name?: string | undefined;
165219
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
165220
+ activation_enabled?: boolean | undefined;
165159
165221
  } | undefined;
165160
165222
  /** Metadata for an igloo device. */
165161
165223
  igloo_metadata?: {
@@ -168908,7 +168970,9 @@ type Routes = {
168908
168970
  /** Metadata for a Brivo device. */
168909
168971
  brivo_metadata?: {
168910
168972
  /** Device name for a Brivo device. */
168911
- device_name: string;
168973
+ device_name?: string | undefined;
168974
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
168975
+ activation_enabled?: boolean | undefined;
168912
168976
  } | undefined;
168913
168977
  /** Metadata for an igloo device. */
168914
168978
  igloo_metadata?: {
@@ -170077,7 +170141,9 @@ type Routes = {
170077
170141
  /** Metadata for a Brivo device. */
170078
170142
  brivo_metadata?: {
170079
170143
  /** Device name for a Brivo device. */
170080
- device_name: string;
170144
+ device_name?: string | undefined;
170145
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
170146
+ activation_enabled?: boolean | undefined;
170081
170147
  } | undefined;
170082
170148
  /** Metadata for an igloo device. */
170083
170149
  igloo_metadata?: {
@@ -177187,7 +177253,9 @@ type Routes = {
177187
177253
  /** Metadata for a Brivo device. */
177188
177254
  brivo_metadata?: {
177189
177255
  /** Device name for a Brivo device. */
177190
- device_name: string;
177256
+ device_name?: string | undefined;
177257
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
177258
+ activation_enabled?: boolean | undefined;
177191
177259
  } | undefined;
177192
177260
  /** Metadata for an igloo device. */
177193
177261
  igloo_metadata?: {
@@ -178358,7 +178426,9 @@ type Routes = {
178358
178426
  /** Metadata for a Brivo device. */
178359
178427
  brivo_metadata?: {
178360
178428
  /** Device name for a Brivo device. */
178361
- device_name: string;
178429
+ device_name?: string | undefined;
178430
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
178431
+ activation_enabled?: boolean | undefined;
178362
178432
  } | undefined;
178363
178433
  /** Metadata for an igloo device. */
178364
178434
  igloo_metadata?: {
@@ -180291,7 +180361,9 @@ type Routes = {
180291
180361
  /** Metadata for a Brivo device. */
180292
180362
  brivo_metadata?: {
180293
180363
  /** Device name for a Brivo device. */
180294
- device_name: string;
180364
+ device_name?: string | undefined;
180365
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
180366
+ activation_enabled?: boolean | undefined;
180295
180367
  } | undefined;
180296
180368
  /** Metadata for an igloo device. */
180297
180369
  igloo_metadata?: {
package/dist/index.cjs CHANGED
@@ -821,8 +821,11 @@ var device_metadata = zod.z.object({
821
821
  door_name: zod.z.string().describe(`Door name for a Genie device.`)
822
822
  }).describe(`Metadata for a Genie device.`),
823
823
  brivo_metadata: zod.z.object({
824
- device_name: zod.z.string().describe(`Device name for a Brivo device.`)
825
- }).describe(`Metadata for a Brivo device.`),
824
+ device_name: zod.z.string().describe(`Device name for a Brivo device.`),
825
+ activation_enabled: zod.z.boolean().describe(
826
+ `Indicates whether the Brivo access point has activation (remote unlock) enabled.`
827
+ )
828
+ }).partial().describe(`Metadata for a Brivo device.`),
826
829
  igloo_metadata: zod.z.object({
827
830
  device_id: zod.z.string().describe(`Device ID for an igloo device.`),
828
831
  bridge_id: zod.z.string().describe(`Bridge ID for an igloo device.`),
@@ -14763,12 +14766,15 @@ var openapi_default = {
14763
14766
  brivo_metadata: {
14764
14767
  description: "Metadata for a Brivo device.",
14765
14768
  properties: {
14769
+ activation_enabled: {
14770
+ description: "Indicates whether the Brivo access point has activation (remote unlock) enabled.",
14771
+ type: "boolean"
14772
+ },
14766
14773
  device_name: {
14767
14774
  description: "Device name for a Brivo device.",
14768
14775
  type: "string"
14769
14776
  }
14770
14777
  },
14771
- required: ["device_name"],
14772
14778
  type: "object"
14773
14779
  },
14774
14780
  controlbyweb_metadata: {
@@ -41216,6 +41222,15 @@ var openapi_default = {
41216
41222
  description: "Deletes customer data including resources like spaces, properties, rooms, users, etc.\nThis will delete the partner resources and any related Seam resources (user identities, access grants, spaces).",
41217
41223
  operationId: "customersDeleteDataDelete",
41218
41224
  parameters: [
41225
+ {
41226
+ in: "query",
41227
+ name: "customer_keys",
41228
+ schema: {
41229
+ description: "List of customer keys to delete all data for.",
41230
+ items: { type: "string" },
41231
+ type: "array"
41232
+ }
41233
+ },
41219
41234
  {
41220
41235
  in: "query",
41221
41236
  name: "space_keys",
@@ -41426,6 +41441,11 @@ var openapi_default = {
41426
41441
  items: { type: "string" },
41427
41442
  type: "array"
41428
41443
  },
41444
+ customer_keys: {
41445
+ description: "List of customer keys to delete all data for.",
41446
+ items: { type: "string" },
41447
+ type: "array"
41448
+ },
41429
41449
  facility_keys: {
41430
41450
  description: "List of facility keys to delete.",
41431
41451
  items: { type: "string" },