@seamapi/types 1.524.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 +19 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +110 -45
- package/dist/index.cjs +19 -5
- 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 +6 -1
- package/lib/seam/connect/openapi.js +14 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +52 -18
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +15 -3
- package/src/lib/seam/connect/route-types.ts +52 -18
package/dist/connect.d.cts
CHANGED
|
@@ -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
|
|
10772
|
+
device_name?: string | undefined;
|
|
10773
|
+
activation_enabled?: boolean | undefined;
|
|
10772
10774
|
}, {
|
|
10773
|
-
device_name
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
21233
|
+
device_name?: string | undefined;
|
|
21234
|
+
activation_enabled?: boolean | undefined;
|
|
21226
21235
|
}, {
|
|
21227
|
-
device_name
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
39977
|
+
device_name?: string | undefined;
|
|
39978
|
+
activation_enabled?: boolean | undefined;
|
|
39963
39979
|
}, {
|
|
39964
|
-
device_name
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
44128
|
+
device_name?: string | undefined;
|
|
44129
|
+
activation_enabled?: boolean | undefined;
|
|
44107
44130
|
}, {
|
|
44108
|
-
device_name
|
|
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
|
|
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
|
|
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: {
|
|
@@ -88589,6 +88618,7 @@ declare const _default: {
|
|
|
88589
88618
|
properties: {
|
|
88590
88619
|
automation_id: {
|
|
88591
88620
|
format: string;
|
|
88621
|
+
nullable: boolean;
|
|
88592
88622
|
type: string;
|
|
88593
88623
|
};
|
|
88594
88624
|
automation_result: {
|
|
@@ -88753,6 +88783,7 @@ declare const _default: {
|
|
|
88753
88783
|
properties: {
|
|
88754
88784
|
automation_id: {
|
|
88755
88785
|
format: string;
|
|
88786
|
+
nullable: boolean;
|
|
88756
88787
|
type: string;
|
|
88757
88788
|
};
|
|
88758
88789
|
automation_result: {
|
|
@@ -111474,7 +111505,9 @@ type Routes = {
|
|
|
111474
111505
|
/** Metadata for a Brivo device. */
|
|
111475
111506
|
brivo_metadata?: {
|
|
111476
111507
|
/** Device name for a Brivo device. */
|
|
111477
|
-
device_name
|
|
111508
|
+
device_name?: string | undefined;
|
|
111509
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
111510
|
+
activation_enabled?: boolean | undefined;
|
|
111478
111511
|
} | undefined;
|
|
111479
111512
|
/** Metadata for an igloo device. */
|
|
111480
111513
|
igloo_metadata?: {
|
|
@@ -114594,7 +114627,9 @@ type Routes = {
|
|
|
114594
114627
|
/** Metadata for a Brivo device. */
|
|
114595
114628
|
brivo_metadata?: {
|
|
114596
114629
|
/** Device name for a Brivo device. */
|
|
114597
|
-
device_name
|
|
114630
|
+
device_name?: string | undefined;
|
|
114631
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
114632
|
+
activation_enabled?: boolean | undefined;
|
|
114598
114633
|
} | undefined;
|
|
114599
114634
|
/** Metadata for an igloo device. */
|
|
114600
114635
|
igloo_metadata?: {
|
|
@@ -132904,7 +132939,9 @@ type Routes = {
|
|
|
132904
132939
|
/** Metadata for a Brivo device. */
|
|
132905
132940
|
brivo_metadata?: {
|
|
132906
132941
|
/** Device name for a Brivo device. */
|
|
132907
|
-
device_name
|
|
132942
|
+
device_name?: string | undefined;
|
|
132943
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
132944
|
+
activation_enabled?: boolean | undefined;
|
|
132908
132945
|
} | undefined;
|
|
132909
132946
|
/** Metadata for an igloo device. */
|
|
132910
132947
|
igloo_metadata?: {
|
|
@@ -134125,7 +134162,9 @@ type Routes = {
|
|
|
134125
134162
|
/** Metadata for a Brivo device. */
|
|
134126
134163
|
brivo_metadata?: {
|
|
134127
134164
|
/** Device name for a Brivo device. */
|
|
134128
|
-
device_name
|
|
134165
|
+
device_name?: string | undefined;
|
|
134166
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
134167
|
+
activation_enabled?: boolean | undefined;
|
|
134129
134168
|
} | undefined;
|
|
134130
134169
|
/** Metadata for an igloo device. */
|
|
134131
134170
|
igloo_metadata?: {
|
|
@@ -140152,7 +140191,9 @@ type Routes = {
|
|
|
140152
140191
|
/** Metadata for a Brivo device. */
|
|
140153
140192
|
brivo_metadata?: {
|
|
140154
140193
|
/** Device name for a Brivo device. */
|
|
140155
|
-
device_name
|
|
140194
|
+
device_name?: string | undefined;
|
|
140195
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
140196
|
+
activation_enabled?: boolean | undefined;
|
|
140156
140197
|
} | undefined;
|
|
140157
140198
|
/** Metadata for an igloo device. */
|
|
140158
140199
|
igloo_metadata?: {
|
|
@@ -141322,7 +141363,9 @@ type Routes = {
|
|
|
141322
141363
|
/** Metadata for a Brivo device. */
|
|
141323
141364
|
brivo_metadata?: {
|
|
141324
141365
|
/** Device name for a Brivo device. */
|
|
141325
|
-
device_name
|
|
141366
|
+
device_name?: string | undefined;
|
|
141367
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
141368
|
+
activation_enabled?: boolean | undefined;
|
|
141326
141369
|
} | undefined;
|
|
141327
141370
|
/** Metadata for an igloo device. */
|
|
141328
141371
|
igloo_metadata?: {
|
|
@@ -142543,7 +142586,9 @@ type Routes = {
|
|
|
142543
142586
|
/** Metadata for a Brivo device. */
|
|
142544
142587
|
brivo_metadata?: {
|
|
142545
142588
|
/** Device name for a Brivo device. */
|
|
142546
|
-
device_name
|
|
142589
|
+
device_name?: string | undefined;
|
|
142590
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
142591
|
+
activation_enabled?: boolean | undefined;
|
|
142547
142592
|
} | undefined;
|
|
142548
142593
|
/** Metadata for an igloo device. */
|
|
142549
142594
|
igloo_metadata?: {
|
|
@@ -143712,7 +143757,9 @@ type Routes = {
|
|
|
143712
143757
|
/** Metadata for a Brivo device. */
|
|
143713
143758
|
brivo_metadata?: {
|
|
143714
143759
|
/** Device name for a Brivo device. */
|
|
143715
|
-
device_name
|
|
143760
|
+
device_name?: string | undefined;
|
|
143761
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
143762
|
+
activation_enabled?: boolean | undefined;
|
|
143716
143763
|
} | undefined;
|
|
143717
143764
|
/** Metadata for an igloo device. */
|
|
143718
143765
|
igloo_metadata?: {
|
|
@@ -149971,7 +150018,9 @@ type Routes = {
|
|
|
149971
150018
|
/** Metadata for a Brivo device. */
|
|
149972
150019
|
brivo_metadata?: {
|
|
149973
150020
|
/** Device name for a Brivo device. */
|
|
149974
|
-
device_name
|
|
150021
|
+
device_name?: string | undefined;
|
|
150022
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
150023
|
+
activation_enabled?: boolean | undefined;
|
|
149975
150024
|
} | undefined;
|
|
149976
150025
|
/** Metadata for an igloo device. */
|
|
149977
150026
|
igloo_metadata?: {
|
|
@@ -151140,7 +151189,9 @@ type Routes = {
|
|
|
151140
151189
|
/** Metadata for a Brivo device. */
|
|
151141
151190
|
brivo_metadata?: {
|
|
151142
151191
|
/** Device name for a Brivo device. */
|
|
151143
|
-
device_name
|
|
151192
|
+
device_name?: string | undefined;
|
|
151193
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
151194
|
+
activation_enabled?: boolean | undefined;
|
|
151144
151195
|
} | undefined;
|
|
151145
151196
|
/** Metadata for an igloo device. */
|
|
151146
151197
|
igloo_metadata?: {
|
|
@@ -156641,7 +156692,7 @@ type Routes = {
|
|
|
156641
156692
|
automation_runs: {
|
|
156642
156693
|
automation_run_id: string;
|
|
156643
156694
|
workspace_id: string;
|
|
156644
|
-
automation_id: string;
|
|
156695
|
+
automation_id: string | null;
|
|
156645
156696
|
partner_resource_id: string | null;
|
|
156646
156697
|
automation_result?: {
|
|
156647
156698
|
success: boolean;
|
|
@@ -159601,7 +159652,9 @@ type Routes = {
|
|
|
159601
159652
|
/** Metadata for a Brivo device. */
|
|
159602
159653
|
brivo_metadata?: {
|
|
159603
159654
|
/** Device name for a Brivo device. */
|
|
159604
|
-
device_name
|
|
159655
|
+
device_name?: string | undefined;
|
|
159656
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
159657
|
+
activation_enabled?: boolean | undefined;
|
|
159605
159658
|
} | undefined;
|
|
159606
159659
|
/** Metadata for an igloo device. */
|
|
159607
159660
|
igloo_metadata?: {
|
|
@@ -165153,7 +165206,9 @@ type Routes = {
|
|
|
165153
165206
|
/** Metadata for a Brivo device. */
|
|
165154
165207
|
brivo_metadata?: {
|
|
165155
165208
|
/** Device name for a Brivo device. */
|
|
165156
|
-
device_name
|
|
165209
|
+
device_name?: string | undefined;
|
|
165210
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
165211
|
+
activation_enabled?: boolean | undefined;
|
|
165157
165212
|
} | undefined;
|
|
165158
165213
|
/** Metadata for an igloo device. */
|
|
165159
165214
|
igloo_metadata?: {
|
|
@@ -168906,7 +168961,9 @@ type Routes = {
|
|
|
168906
168961
|
/** Metadata for a Brivo device. */
|
|
168907
168962
|
brivo_metadata?: {
|
|
168908
168963
|
/** Device name for a Brivo device. */
|
|
168909
|
-
device_name
|
|
168964
|
+
device_name?: string | undefined;
|
|
168965
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
168966
|
+
activation_enabled?: boolean | undefined;
|
|
168910
168967
|
} | undefined;
|
|
168911
168968
|
/** Metadata for an igloo device. */
|
|
168912
168969
|
igloo_metadata?: {
|
|
@@ -170075,7 +170132,9 @@ type Routes = {
|
|
|
170075
170132
|
/** Metadata for a Brivo device. */
|
|
170076
170133
|
brivo_metadata?: {
|
|
170077
170134
|
/** Device name for a Brivo device. */
|
|
170078
|
-
device_name
|
|
170135
|
+
device_name?: string | undefined;
|
|
170136
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
170137
|
+
activation_enabled?: boolean | undefined;
|
|
170079
170138
|
} | undefined;
|
|
170080
170139
|
/** Metadata for an igloo device. */
|
|
170081
170140
|
igloo_metadata?: {
|
|
@@ -177185,7 +177244,9 @@ type Routes = {
|
|
|
177185
177244
|
/** Metadata for a Brivo device. */
|
|
177186
177245
|
brivo_metadata?: {
|
|
177187
177246
|
/** Device name for a Brivo device. */
|
|
177188
|
-
device_name
|
|
177247
|
+
device_name?: string | undefined;
|
|
177248
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
177249
|
+
activation_enabled?: boolean | undefined;
|
|
177189
177250
|
} | undefined;
|
|
177190
177251
|
/** Metadata for an igloo device. */
|
|
177191
177252
|
igloo_metadata?: {
|
|
@@ -178356,7 +178417,9 @@ type Routes = {
|
|
|
178356
178417
|
/** Metadata for a Brivo device. */
|
|
178357
178418
|
brivo_metadata?: {
|
|
178358
178419
|
/** Device name for a Brivo device. */
|
|
178359
|
-
device_name
|
|
178420
|
+
device_name?: string | undefined;
|
|
178421
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
178422
|
+
activation_enabled?: boolean | undefined;
|
|
178360
178423
|
} | undefined;
|
|
178361
178424
|
/** Metadata for an igloo device. */
|
|
178362
178425
|
igloo_metadata?: {
|
|
@@ -180289,7 +180352,9 @@ type Routes = {
|
|
|
180289
180352
|
/** Metadata for a Brivo device. */
|
|
180290
180353
|
brivo_metadata?: {
|
|
180291
180354
|
/** Device name for a Brivo device. */
|
|
180292
|
-
device_name
|
|
180355
|
+
device_name?: string | undefined;
|
|
180356
|
+
/** Indicates whether the Brivo access point has activation (remote unlock) enabled. */
|
|
180357
|
+
activation_enabled?: boolean | undefined;
|
|
180293
180358
|
} | undefined;
|
|
180294
180359
|
/** Metadata for an igloo device. */
|
|
180295
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
|
-
|
|
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: {
|
|
@@ -49441,7 +49447,11 @@ var openapi_default = {
|
|
|
49441
49447
|
automation_runs: {
|
|
49442
49448
|
items: {
|
|
49443
49449
|
properties: {
|
|
49444
|
-
automation_id: {
|
|
49450
|
+
automation_id: {
|
|
49451
|
+
format: "uuid",
|
|
49452
|
+
nullable: true,
|
|
49453
|
+
type: "string"
|
|
49454
|
+
},
|
|
49445
49455
|
automation_result: {
|
|
49446
49456
|
properties: {
|
|
49447
49457
|
actions: {
|
|
@@ -49590,7 +49600,11 @@ var openapi_default = {
|
|
|
49590
49600
|
automation_runs: {
|
|
49591
49601
|
items: {
|
|
49592
49602
|
properties: {
|
|
49593
|
-
automation_id: {
|
|
49603
|
+
automation_id: {
|
|
49604
|
+
format: "uuid",
|
|
49605
|
+
nullable: true,
|
|
49606
|
+
type: "string"
|
|
49607
|
+
},
|
|
49594
49608
|
automation_result: {
|
|
49595
49609
|
properties: {
|
|
49596
49610
|
actions: {
|