@seamapi/types 1.525.0 → 1.526.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: {
@@ -111476,7 +111505,9 @@ type Routes = {
111476
111505
  /** Metadata for a Brivo device. */
111477
111506
  brivo_metadata?: {
111478
111507
  /** Device name for a Brivo device. */
111479
- device_name: string;
111508
+ device_name?: string | undefined;
111509
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
111510
+ activation_enabled?: boolean | undefined;
111480
111511
  } | undefined;
111481
111512
  /** Metadata for an igloo device. */
111482
111513
  igloo_metadata?: {
@@ -114596,7 +114627,9 @@ type Routes = {
114596
114627
  /** Metadata for a Brivo device. */
114597
114628
  brivo_metadata?: {
114598
114629
  /** Device name for a Brivo device. */
114599
- device_name: string;
114630
+ device_name?: string | undefined;
114631
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
114632
+ activation_enabled?: boolean | undefined;
114600
114633
  } | undefined;
114601
114634
  /** Metadata for an igloo device. */
114602
114635
  igloo_metadata?: {
@@ -132906,7 +132939,9 @@ type Routes = {
132906
132939
  /** Metadata for a Brivo device. */
132907
132940
  brivo_metadata?: {
132908
132941
  /** Device name for a Brivo device. */
132909
- device_name: string;
132942
+ device_name?: string | undefined;
132943
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
132944
+ activation_enabled?: boolean | undefined;
132910
132945
  } | undefined;
132911
132946
  /** Metadata for an igloo device. */
132912
132947
  igloo_metadata?: {
@@ -134127,7 +134162,9 @@ type Routes = {
134127
134162
  /** Metadata for a Brivo device. */
134128
134163
  brivo_metadata?: {
134129
134164
  /** Device name for a Brivo device. */
134130
- device_name: string;
134165
+ device_name?: string | undefined;
134166
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
134167
+ activation_enabled?: boolean | undefined;
134131
134168
  } | undefined;
134132
134169
  /** Metadata for an igloo device. */
134133
134170
  igloo_metadata?: {
@@ -140154,7 +140191,9 @@ type Routes = {
140154
140191
  /** Metadata for a Brivo device. */
140155
140192
  brivo_metadata?: {
140156
140193
  /** Device name for a Brivo device. */
140157
- device_name: string;
140194
+ device_name?: string | undefined;
140195
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
140196
+ activation_enabled?: boolean | undefined;
140158
140197
  } | undefined;
140159
140198
  /** Metadata for an igloo device. */
140160
140199
  igloo_metadata?: {
@@ -141324,7 +141363,9 @@ type Routes = {
141324
141363
  /** Metadata for a Brivo device. */
141325
141364
  brivo_metadata?: {
141326
141365
  /** Device name for a Brivo device. */
141327
- device_name: string;
141366
+ device_name?: string | undefined;
141367
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
141368
+ activation_enabled?: boolean | undefined;
141328
141369
  } | undefined;
141329
141370
  /** Metadata for an igloo device. */
141330
141371
  igloo_metadata?: {
@@ -142545,7 +142586,9 @@ type Routes = {
142545
142586
  /** Metadata for a Brivo device. */
142546
142587
  brivo_metadata?: {
142547
142588
  /** Device name for a Brivo device. */
142548
- device_name: string;
142589
+ device_name?: string | undefined;
142590
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
142591
+ activation_enabled?: boolean | undefined;
142549
142592
  } | undefined;
142550
142593
  /** Metadata for an igloo device. */
142551
142594
  igloo_metadata?: {
@@ -143714,7 +143757,9 @@ type Routes = {
143714
143757
  /** Metadata for a Brivo device. */
143715
143758
  brivo_metadata?: {
143716
143759
  /** Device name for a Brivo device. */
143717
- device_name: string;
143760
+ device_name?: string | undefined;
143761
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
143762
+ activation_enabled?: boolean | undefined;
143718
143763
  } | undefined;
143719
143764
  /** Metadata for an igloo device. */
143720
143765
  igloo_metadata?: {
@@ -149973,7 +150018,9 @@ type Routes = {
149973
150018
  /** Metadata for a Brivo device. */
149974
150019
  brivo_metadata?: {
149975
150020
  /** Device name for a Brivo device. */
149976
- device_name: string;
150021
+ device_name?: string | undefined;
150022
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
150023
+ activation_enabled?: boolean | undefined;
149977
150024
  } | undefined;
149978
150025
  /** Metadata for an igloo device. */
149979
150026
  igloo_metadata?: {
@@ -151142,7 +151189,9 @@ type Routes = {
151142
151189
  /** Metadata for a Brivo device. */
151143
151190
  brivo_metadata?: {
151144
151191
  /** Device name for a Brivo device. */
151145
- device_name: string;
151192
+ device_name?: string | undefined;
151193
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
151194
+ activation_enabled?: boolean | undefined;
151146
151195
  } | undefined;
151147
151196
  /** Metadata for an igloo device. */
151148
151197
  igloo_metadata?: {
@@ -159603,7 +159652,9 @@ type Routes = {
159603
159652
  /** Metadata for a Brivo device. */
159604
159653
  brivo_metadata?: {
159605
159654
  /** Device name for a Brivo device. */
159606
- device_name: string;
159655
+ device_name?: string | undefined;
159656
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
159657
+ activation_enabled?: boolean | undefined;
159607
159658
  } | undefined;
159608
159659
  /** Metadata for an igloo device. */
159609
159660
  igloo_metadata?: {
@@ -165155,7 +165206,9 @@ type Routes = {
165155
165206
  /** Metadata for a Brivo device. */
165156
165207
  brivo_metadata?: {
165157
165208
  /** Device name for a Brivo device. */
165158
- device_name: string;
165209
+ device_name?: string | undefined;
165210
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
165211
+ activation_enabled?: boolean | undefined;
165159
165212
  } | undefined;
165160
165213
  /** Metadata for an igloo device. */
165161
165214
  igloo_metadata?: {
@@ -168908,7 +168961,9 @@ type Routes = {
168908
168961
  /** Metadata for a Brivo device. */
168909
168962
  brivo_metadata?: {
168910
168963
  /** Device name for a Brivo device. */
168911
- device_name: string;
168964
+ device_name?: string | undefined;
168965
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
168966
+ activation_enabled?: boolean | undefined;
168912
168967
  } | undefined;
168913
168968
  /** Metadata for an igloo device. */
168914
168969
  igloo_metadata?: {
@@ -170077,7 +170132,9 @@ type Routes = {
170077
170132
  /** Metadata for a Brivo device. */
170078
170133
  brivo_metadata?: {
170079
170134
  /** Device name for a Brivo device. */
170080
- device_name: string;
170135
+ device_name?: string | undefined;
170136
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
170137
+ activation_enabled?: boolean | undefined;
170081
170138
  } | undefined;
170082
170139
  /** Metadata for an igloo device. */
170083
170140
  igloo_metadata?: {
@@ -177187,7 +177244,9 @@ type Routes = {
177187
177244
  /** Metadata for a Brivo device. */
177188
177245
  brivo_metadata?: {
177189
177246
  /** Device name for a Brivo device. */
177190
- device_name: string;
177247
+ device_name?: string | undefined;
177248
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
177249
+ activation_enabled?: boolean | undefined;
177191
177250
  } | undefined;
177192
177251
  /** Metadata for an igloo device. */
177193
177252
  igloo_metadata?: {
@@ -178358,7 +178417,9 @@ type Routes = {
178358
178417
  /** Metadata for a Brivo device. */
178359
178418
  brivo_metadata?: {
178360
178419
  /** Device name for a Brivo device. */
178361
- device_name: string;
178420
+ device_name?: string | undefined;
178421
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
178422
+ activation_enabled?: boolean | undefined;
178362
178423
  } | undefined;
178363
178424
  /** Metadata for an igloo device. */
178364
178425
  igloo_metadata?: {
@@ -180291,7 +180352,9 @@ type Routes = {
180291
180352
  /** Metadata for a Brivo device. */
180292
180353
  brivo_metadata?: {
180293
180354
  /** Device name for a Brivo device. */
180294
- device_name: string;
180355
+ device_name?: string | undefined;
180356
+ /** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
180357
+ activation_enabled?: boolean | undefined;
180295
180358
  } | undefined;
180296
180359
  /** Metadata for an igloo device. */
180297
180360
  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: {