@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.
- package/dist/connect.cjs +9 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +107 -44
- package/dist/index.cjs +9 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +110 -55
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -5
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +14 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -5
- package/lib/seam/connect/openapi.d.ts +4 -1
- package/lib/seam/connect/openapi.js +4 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -17
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +5 -1
- package/src/lib/seam/connect/route-types.ts +51 -17
|
@@ -10410,7 +10410,9 @@ export type Routes = {
|
|
|
10410
10410
|
/** Metadata for a Brivo device. */
|
|
10411
10411
|
brivo_metadata?: {
|
|
10412
10412
|
/** Device name for a Brivo device. */
|
|
10413
|
-
device_name
|
|
10413
|
+
device_name?: string | undefined;
|
|
10414
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
10415
|
+
activation_enabled?: boolean | undefined;
|
|
10414
10416
|
} | undefined;
|
|
10415
10417
|
/** Metadata for an igloo device. */
|
|
10416
10418
|
igloo_metadata?: {
|
|
@@ -13530,7 +13532,9 @@ export type Routes = {
|
|
|
13530
13532
|
/** Metadata for a Brivo device. */
|
|
13531
13533
|
brivo_metadata?: {
|
|
13532
13534
|
/** Device name for a Brivo device. */
|
|
13533
|
-
device_name
|
|
13535
|
+
device_name?: string | undefined;
|
|
13536
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
13537
|
+
activation_enabled?: boolean | undefined;
|
|
13534
13538
|
} | undefined;
|
|
13535
13539
|
/** Metadata for an igloo device. */
|
|
13536
13540
|
igloo_metadata?: {
|
|
@@ -31840,7 +31844,9 @@ export type Routes = {
|
|
|
31840
31844
|
/** Metadata for a Brivo device. */
|
|
31841
31845
|
brivo_metadata?: {
|
|
31842
31846
|
/** Device name for a Brivo device. */
|
|
31843
|
-
device_name
|
|
31847
|
+
device_name?: string | undefined;
|
|
31848
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
31849
|
+
activation_enabled?: boolean | undefined;
|
|
31844
31850
|
} | undefined;
|
|
31845
31851
|
/** Metadata for an igloo device. */
|
|
31846
31852
|
igloo_metadata?: {
|
|
@@ -33061,7 +33067,9 @@ export type Routes = {
|
|
|
33061
33067
|
/** Metadata for a Brivo device. */
|
|
33062
33068
|
brivo_metadata?: {
|
|
33063
33069
|
/** Device name for a Brivo device. */
|
|
33064
|
-
device_name
|
|
33070
|
+
device_name?: string | undefined;
|
|
33071
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
33072
|
+
activation_enabled?: boolean | undefined;
|
|
33065
33073
|
} | undefined;
|
|
33066
33074
|
/** Metadata for an igloo device. */
|
|
33067
33075
|
igloo_metadata?: {
|
|
@@ -39088,7 +39096,9 @@ export type Routes = {
|
|
|
39088
39096
|
/** Metadata for a Brivo device. */
|
|
39089
39097
|
brivo_metadata?: {
|
|
39090
39098
|
/** Device name for a Brivo device. */
|
|
39091
|
-
device_name
|
|
39099
|
+
device_name?: string | undefined;
|
|
39100
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
39101
|
+
activation_enabled?: boolean | undefined;
|
|
39092
39102
|
} | undefined;
|
|
39093
39103
|
/** Metadata for an igloo device. */
|
|
39094
39104
|
igloo_metadata?: {
|
|
@@ -40258,7 +40268,9 @@ export type Routes = {
|
|
|
40258
40268
|
/** Metadata for a Brivo device. */
|
|
40259
40269
|
brivo_metadata?: {
|
|
40260
40270
|
/** Device name for a Brivo device. */
|
|
40261
|
-
device_name
|
|
40271
|
+
device_name?: string | undefined;
|
|
40272
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
40273
|
+
activation_enabled?: boolean | undefined;
|
|
40262
40274
|
} | undefined;
|
|
40263
40275
|
/** Metadata for an igloo device. */
|
|
40264
40276
|
igloo_metadata?: {
|
|
@@ -41479,7 +41491,9 @@ export type Routes = {
|
|
|
41479
41491
|
/** Metadata for a Brivo device. */
|
|
41480
41492
|
brivo_metadata?: {
|
|
41481
41493
|
/** Device name for a Brivo device. */
|
|
41482
|
-
device_name
|
|
41494
|
+
device_name?: string | undefined;
|
|
41495
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
41496
|
+
activation_enabled?: boolean | undefined;
|
|
41483
41497
|
} | undefined;
|
|
41484
41498
|
/** Metadata for an igloo device. */
|
|
41485
41499
|
igloo_metadata?: {
|
|
@@ -42648,7 +42662,9 @@ export type Routes = {
|
|
|
42648
42662
|
/** Metadata for a Brivo device. */
|
|
42649
42663
|
brivo_metadata?: {
|
|
42650
42664
|
/** Device name for a Brivo device. */
|
|
42651
|
-
device_name
|
|
42665
|
+
device_name?: string | undefined;
|
|
42666
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
42667
|
+
activation_enabled?: boolean | undefined;
|
|
42652
42668
|
} | undefined;
|
|
42653
42669
|
/** Metadata for an igloo device. */
|
|
42654
42670
|
igloo_metadata?: {
|
|
@@ -48907,7 +48923,9 @@ export type Routes = {
|
|
|
48907
48923
|
/** Metadata for a Brivo device. */
|
|
48908
48924
|
brivo_metadata?: {
|
|
48909
48925
|
/** Device name for a Brivo device. */
|
|
48910
|
-
device_name
|
|
48926
|
+
device_name?: string | undefined;
|
|
48927
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
48928
|
+
activation_enabled?: boolean | undefined;
|
|
48911
48929
|
} | undefined;
|
|
48912
48930
|
/** Metadata for an igloo device. */
|
|
48913
48931
|
igloo_metadata?: {
|
|
@@ -50076,7 +50094,9 @@ export type Routes = {
|
|
|
50076
50094
|
/** Metadata for a Brivo device. */
|
|
50077
50095
|
brivo_metadata?: {
|
|
50078
50096
|
/** Device name for a Brivo device. */
|
|
50079
|
-
device_name
|
|
50097
|
+
device_name?: string | undefined;
|
|
50098
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
50099
|
+
activation_enabled?: boolean | undefined;
|
|
50080
50100
|
} | undefined;
|
|
50081
50101
|
/** Metadata for an igloo device. */
|
|
50082
50102
|
igloo_metadata?: {
|
|
@@ -58537,7 +58557,9 @@ export type Routes = {
|
|
|
58537
58557
|
/** Metadata for a Brivo device. */
|
|
58538
58558
|
brivo_metadata?: {
|
|
58539
58559
|
/** Device name for a Brivo device. */
|
|
58540
|
-
device_name
|
|
58560
|
+
device_name?: string | undefined;
|
|
58561
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
58562
|
+
activation_enabled?: boolean | undefined;
|
|
58541
58563
|
} | undefined;
|
|
58542
58564
|
/** Metadata for an igloo device. */
|
|
58543
58565
|
igloo_metadata?: {
|
|
@@ -64089,7 +64111,9 @@ export type Routes = {
|
|
|
64089
64111
|
/** Metadata for a Brivo device. */
|
|
64090
64112
|
brivo_metadata?: {
|
|
64091
64113
|
/** Device name for a Brivo device. */
|
|
64092
|
-
device_name
|
|
64114
|
+
device_name?: string | undefined;
|
|
64115
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
64116
|
+
activation_enabled?: boolean | undefined;
|
|
64093
64117
|
} | undefined;
|
|
64094
64118
|
/** Metadata for an igloo device. */
|
|
64095
64119
|
igloo_metadata?: {
|
|
@@ -67842,7 +67866,9 @@ export type Routes = {
|
|
|
67842
67866
|
/** Metadata for a Brivo device. */
|
|
67843
67867
|
brivo_metadata?: {
|
|
67844
67868
|
/** Device name for a Brivo device. */
|
|
67845
|
-
device_name
|
|
67869
|
+
device_name?: string | undefined;
|
|
67870
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
67871
|
+
activation_enabled?: boolean | undefined;
|
|
67846
67872
|
} | undefined;
|
|
67847
67873
|
/** Metadata for an igloo device. */
|
|
67848
67874
|
igloo_metadata?: {
|
|
@@ -69011,7 +69037,9 @@ export type Routes = {
|
|
|
69011
69037
|
/** Metadata for a Brivo device. */
|
|
69012
69038
|
brivo_metadata?: {
|
|
69013
69039
|
/** Device name for a Brivo device. */
|
|
69014
|
-
device_name
|
|
69040
|
+
device_name?: string | undefined;
|
|
69041
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
69042
|
+
activation_enabled?: boolean | undefined;
|
|
69015
69043
|
} | undefined;
|
|
69016
69044
|
/** Metadata for an igloo device. */
|
|
69017
69045
|
igloo_metadata?: {
|
|
@@ -76121,7 +76149,9 @@ export type Routes = {
|
|
|
76121
76149
|
/** Metadata for a Brivo device. */
|
|
76122
76150
|
brivo_metadata?: {
|
|
76123
76151
|
/** Device name for a Brivo device. */
|
|
76124
|
-
device_name
|
|
76152
|
+
device_name?: string | undefined;
|
|
76153
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
76154
|
+
activation_enabled?: boolean | undefined;
|
|
76125
76155
|
} | undefined;
|
|
76126
76156
|
/** Metadata for an igloo device. */
|
|
76127
76157
|
igloo_metadata?: {
|
|
@@ -77292,7 +77322,9 @@ export type Routes = {
|
|
|
77292
77322
|
/** Metadata for a Brivo device. */
|
|
77293
77323
|
brivo_metadata?: {
|
|
77294
77324
|
/** Device name for a Brivo device. */
|
|
77295
|
-
device_name
|
|
77325
|
+
device_name?: string | undefined;
|
|
77326
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
77327
|
+
activation_enabled?: boolean | undefined;
|
|
77296
77328
|
} | undefined;
|
|
77297
77329
|
/** Metadata for an igloo device. */
|
|
77298
77330
|
igloo_metadata?: {
|
|
@@ -79225,7 +79257,9 @@ export type Routes = {
|
|
|
79225
79257
|
/** Metadata for a Brivo device. */
|
|
79226
79258
|
brivo_metadata?: {
|
|
79227
79259
|
/** Device name for a Brivo device. */
|
|
79228
|
-
device_name
|
|
79260
|
+
device_name?: string | undefined;
|
|
79261
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
79262
|
+
activation_enabled?: boolean | undefined;
|
|
79229
79263
|
} | undefined;
|
|
79230
79264
|
/** Metadata for an igloo device. */
|
|
79231
79265
|
igloo_metadata?: {
|
package/package.json
CHANGED
|
@@ -201,7 +201,13 @@ export const device_metadata = z
|
|
|
201
201
|
brivo_metadata: z
|
|
202
202
|
.object({
|
|
203
203
|
device_name: z.string().describe(`Device name for a Brivo device.`),
|
|
204
|
+
activation_enabled: z
|
|
205
|
+
.boolean()
|
|
206
|
+
.describe(
|
|
207
|
+
`Indicates whether the Brivo access point has activation (remote unlock) enabled.`,
|
|
208
|
+
),
|
|
204
209
|
})
|
|
210
|
+
.partial()
|
|
205
211
|
.describe(`Metadata for a Brivo device.`),
|
|
206
212
|
|
|
207
213
|
igloo_metadata: z
|
|
@@ -10423,12 +10423,16 @@ export default {
|
|
|
10423
10423
|
brivo_metadata: {
|
|
10424
10424
|
description: 'Metadata for a Brivo device.',
|
|
10425
10425
|
properties: {
|
|
10426
|
+
activation_enabled: {
|
|
10427
|
+
description:
|
|
10428
|
+
'Indicates whether the Brivo access point has activation (remote unlock) enabled.',
|
|
10429
|
+
type: 'boolean',
|
|
10430
|
+
},
|
|
10426
10431
|
device_name: {
|
|
10427
10432
|
description: 'Device name for a Brivo device.',
|
|
10428
10433
|
type: 'string',
|
|
10429
10434
|
},
|
|
10430
10435
|
},
|
|
10431
|
-
required: ['device_name'],
|
|
10432
10436
|
type: 'object',
|
|
10433
10437
|
},
|
|
10434
10438
|
controlbyweb_metadata: {
|
|
@@ -11758,7 +11758,9 @@ export type Routes = {
|
|
|
11758
11758
|
brivo_metadata?:
|
|
11759
11759
|
| {
|
|
11760
11760
|
/** Device name for a Brivo device. */
|
|
11761
|
-
device_name
|
|
11761
|
+
device_name?: string | undefined
|
|
11762
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
11763
|
+
activation_enabled?: boolean | undefined
|
|
11762
11764
|
}
|
|
11763
11765
|
| undefined
|
|
11764
11766
|
/** Metadata for an igloo device. */
|
|
@@ -15513,7 +15515,9 @@ export type Routes = {
|
|
|
15513
15515
|
brivo_metadata?:
|
|
15514
15516
|
| {
|
|
15515
15517
|
/** Device name for a Brivo device. */
|
|
15516
|
-
device_name
|
|
15518
|
+
device_name?: string | undefined
|
|
15519
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
15520
|
+
activation_enabled?: boolean | undefined
|
|
15517
15521
|
}
|
|
15518
15522
|
| undefined
|
|
15519
15523
|
/** Metadata for an igloo device. */
|
|
@@ -36948,7 +36952,9 @@ export type Routes = {
|
|
|
36948
36952
|
brivo_metadata?:
|
|
36949
36953
|
| {
|
|
36950
36954
|
/** Device name for a Brivo device. */
|
|
36951
|
-
device_name
|
|
36955
|
+
device_name?: string | undefined
|
|
36956
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
36957
|
+
activation_enabled?: boolean | undefined
|
|
36952
36958
|
}
|
|
36953
36959
|
| undefined
|
|
36954
36960
|
/** Metadata for an igloo device. */
|
|
@@ -38637,7 +38643,9 @@ export type Routes = {
|
|
|
38637
38643
|
brivo_metadata?:
|
|
38638
38644
|
| {
|
|
38639
38645
|
/** Device name for a Brivo device. */
|
|
38640
|
-
device_name
|
|
38646
|
+
device_name?: string | undefined
|
|
38647
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
38648
|
+
activation_enabled?: boolean | undefined
|
|
38641
38649
|
}
|
|
38642
38650
|
| undefined
|
|
38643
38651
|
/** Metadata for an igloo device. */
|
|
@@ -46223,7 +46231,9 @@ export type Routes = {
|
|
|
46223
46231
|
brivo_metadata?:
|
|
46224
46232
|
| {
|
|
46225
46233
|
/** Device name for a Brivo device. */
|
|
46226
|
-
device_name
|
|
46234
|
+
device_name?: string | undefined
|
|
46235
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
46236
|
+
activation_enabled?: boolean | undefined
|
|
46227
46237
|
}
|
|
46228
46238
|
| undefined
|
|
46229
46239
|
/** Metadata for an igloo device. */
|
|
@@ -47696,7 +47706,9 @@ export type Routes = {
|
|
|
47696
47706
|
brivo_metadata?:
|
|
47697
47707
|
| {
|
|
47698
47708
|
/** Device name for a Brivo device. */
|
|
47699
|
-
device_name
|
|
47709
|
+
device_name?: string | undefined
|
|
47710
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
47711
|
+
activation_enabled?: boolean | undefined
|
|
47700
47712
|
}
|
|
47701
47713
|
| undefined
|
|
47702
47714
|
/** Metadata for an igloo device. */
|
|
@@ -49349,7 +49361,9 @@ export type Routes = {
|
|
|
49349
49361
|
brivo_metadata?:
|
|
49350
49362
|
| {
|
|
49351
49363
|
/** Device name for a Brivo device. */
|
|
49352
|
-
device_name
|
|
49364
|
+
device_name?: string | undefined
|
|
49365
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
49366
|
+
activation_enabled?: boolean | undefined
|
|
49353
49367
|
}
|
|
49354
49368
|
| undefined
|
|
49355
49369
|
/** Metadata for an igloo device. */
|
|
@@ -50821,7 +50835,9 @@ export type Routes = {
|
|
|
50821
50835
|
brivo_metadata?:
|
|
50822
50836
|
| {
|
|
50823
50837
|
/** Device name for a Brivo device. */
|
|
50824
|
-
device_name
|
|
50838
|
+
device_name?: string | undefined
|
|
50839
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
50840
|
+
activation_enabled?: boolean | undefined
|
|
50825
50841
|
}
|
|
50826
50842
|
| undefined
|
|
50827
50843
|
/** Metadata for an igloo device. */
|
|
@@ -58161,7 +58177,9 @@ export type Routes = {
|
|
|
58161
58177
|
brivo_metadata?:
|
|
58162
58178
|
| {
|
|
58163
58179
|
/** Device name for a Brivo device. */
|
|
58164
|
-
device_name
|
|
58180
|
+
device_name?: string | undefined
|
|
58181
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
58182
|
+
activation_enabled?: boolean | undefined
|
|
58165
58183
|
}
|
|
58166
58184
|
| undefined
|
|
58167
58185
|
/** Metadata for an igloo device. */
|
|
@@ -59633,7 +59651,9 @@ export type Routes = {
|
|
|
59633
59651
|
brivo_metadata?:
|
|
59634
59652
|
| {
|
|
59635
59653
|
/** Device name for a Brivo device. */
|
|
59636
|
-
device_name
|
|
59654
|
+
device_name?: string | undefined
|
|
59655
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
59656
|
+
activation_enabled?: boolean | undefined
|
|
59637
59657
|
}
|
|
59638
59658
|
| undefined
|
|
59639
59659
|
/** Metadata for an igloo device. */
|
|
@@ -69673,7 +69693,9 @@ export type Routes = {
|
|
|
69673
69693
|
brivo_metadata?:
|
|
69674
69694
|
| {
|
|
69675
69695
|
/** Device name for a Brivo device. */
|
|
69676
|
-
device_name
|
|
69696
|
+
device_name?: string | undefined
|
|
69697
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
69698
|
+
activation_enabled?: boolean | undefined
|
|
69677
69699
|
}
|
|
69678
69700
|
| undefined
|
|
69679
69701
|
/** Metadata for an igloo device. */
|
|
@@ -76205,7 +76227,9 @@ export type Routes = {
|
|
|
76205
76227
|
brivo_metadata?:
|
|
76206
76228
|
| {
|
|
76207
76229
|
/** Device name for a Brivo device. */
|
|
76208
|
-
device_name
|
|
76230
|
+
device_name?: string | undefined
|
|
76231
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
76232
|
+
activation_enabled?: boolean | undefined
|
|
76209
76233
|
}
|
|
76210
76234
|
| undefined
|
|
76211
76235
|
/** Metadata for an igloo device. */
|
|
@@ -80696,7 +80720,9 @@ export type Routes = {
|
|
|
80696
80720
|
brivo_metadata?:
|
|
80697
80721
|
| {
|
|
80698
80722
|
/** Device name for a Brivo device. */
|
|
80699
|
-
device_name
|
|
80723
|
+
device_name?: string | undefined
|
|
80724
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
80725
|
+
activation_enabled?: boolean | undefined
|
|
80700
80726
|
}
|
|
80701
80727
|
| undefined
|
|
80702
80728
|
/** Metadata for an igloo device. */
|
|
@@ -82168,7 +82194,9 @@ export type Routes = {
|
|
|
82168
82194
|
brivo_metadata?:
|
|
82169
82195
|
| {
|
|
82170
82196
|
/** Device name for a Brivo device. */
|
|
82171
|
-
device_name
|
|
82197
|
+
device_name?: string | undefined
|
|
82198
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
82199
|
+
activation_enabled?: boolean | undefined
|
|
82172
82200
|
}
|
|
82173
82201
|
| undefined
|
|
82174
82202
|
/** Metadata for an igloo device. */
|
|
@@ -90373,7 +90401,9 @@ export type Routes = {
|
|
|
90373
90401
|
brivo_metadata?:
|
|
90374
90402
|
| {
|
|
90375
90403
|
/** Device name for a Brivo device. */
|
|
90376
|
-
device_name
|
|
90404
|
+
device_name?: string | undefined
|
|
90405
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
90406
|
+
activation_enabled?: boolean | undefined
|
|
90377
90407
|
}
|
|
90378
90408
|
| undefined
|
|
90379
90409
|
/** Metadata for an igloo device. */
|
|
@@ -91847,7 +91877,9 @@ export type Routes = {
|
|
|
91847
91877
|
brivo_metadata?:
|
|
91848
91878
|
| {
|
|
91849
91879
|
/** Device name for a Brivo device. */
|
|
91850
|
-
device_name
|
|
91880
|
+
device_name?: string | undefined
|
|
91881
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
91882
|
+
activation_enabled?: boolean | undefined
|
|
91851
91883
|
}
|
|
91852
91884
|
| undefined
|
|
91853
91885
|
/** Metadata for an igloo device. */
|
|
@@ -94175,7 +94207,9 @@ export type Routes = {
|
|
|
94175
94207
|
brivo_metadata?:
|
|
94176
94208
|
| {
|
|
94177
94209
|
/** Device name for a Brivo device. */
|
|
94178
|
-
device_name
|
|
94210
|
+
device_name?: string | undefined
|
|
94211
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
94212
|
+
activation_enabled?: boolean | undefined
|
|
94179
94213
|
}
|
|
94180
94214
|
| undefined
|
|
94181
94215
|
/** Metadata for an igloo device. */
|