@seamapi/types 1.680.0 → 1.681.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 +8 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +64 -0
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- 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 +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -0
- 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 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
package/dist/connect.d.cts
CHANGED
|
@@ -11016,6 +11016,7 @@ declare const batch: z.ZodObject<{
|
|
|
11016
11016
|
battery_level: z.ZodString;
|
|
11017
11017
|
locked_state: z.ZodString;
|
|
11018
11018
|
model: z.ZodOptional<z.ZodString>;
|
|
11019
|
+
has_custom_pin_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
11019
11020
|
}, "strip", z.ZodTypeAny, {
|
|
11020
11021
|
lock_id: string;
|
|
11021
11022
|
customer_reference: string;
|
|
@@ -11023,6 +11024,7 @@ declare const batch: z.ZodObject<{
|
|
|
11023
11024
|
battery_level: string;
|
|
11024
11025
|
locked_state: string;
|
|
11025
11026
|
model?: string | undefined;
|
|
11027
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
11026
11028
|
}, {
|
|
11027
11029
|
lock_id: string;
|
|
11028
11030
|
customer_reference: string;
|
|
@@ -11030,6 +11032,7 @@ declare const batch: z.ZodObject<{
|
|
|
11030
11032
|
battery_level: string;
|
|
11031
11033
|
locked_state: string;
|
|
11032
11034
|
model?: string | undefined;
|
|
11035
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
11033
11036
|
}>>;
|
|
11034
11037
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
11035
11038
|
device_name: z.ZodString;
|
|
@@ -11707,6 +11710,7 @@ declare const batch: z.ZodObject<{
|
|
|
11707
11710
|
battery_level: string;
|
|
11708
11711
|
locked_state: string;
|
|
11709
11712
|
model?: string | undefined;
|
|
11713
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
11710
11714
|
} | undefined;
|
|
11711
11715
|
august_metadata?: {
|
|
11712
11716
|
lock_id: string;
|
|
@@ -11970,6 +11974,7 @@ declare const batch: z.ZodObject<{
|
|
|
11970
11974
|
battery_level: string;
|
|
11971
11975
|
locked_state: string;
|
|
11972
11976
|
model?: string | undefined;
|
|
11977
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
11973
11978
|
} | undefined;
|
|
11974
11979
|
august_metadata?: {
|
|
11975
11980
|
lock_id: string;
|
|
@@ -13791,6 +13796,7 @@ declare const batch: z.ZodObject<{
|
|
|
13791
13796
|
battery_level: string;
|
|
13792
13797
|
locked_state: string;
|
|
13793
13798
|
model?: string | undefined;
|
|
13799
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
13794
13800
|
} | undefined;
|
|
13795
13801
|
august_metadata?: {
|
|
13796
13802
|
lock_id: string;
|
|
@@ -14465,6 +14471,7 @@ declare const batch: z.ZodObject<{
|
|
|
14465
14471
|
battery_level: string;
|
|
14466
14472
|
locked_state: string;
|
|
14467
14473
|
model?: string | undefined;
|
|
14474
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
14468
14475
|
} | undefined;
|
|
14469
14476
|
august_metadata?: {
|
|
14470
14477
|
lock_id: string;
|
|
@@ -22212,6 +22219,7 @@ declare const batch: z.ZodObject<{
|
|
|
22212
22219
|
battery_level: z.ZodString;
|
|
22213
22220
|
locked_state: z.ZodString;
|
|
22214
22221
|
model: z.ZodOptional<z.ZodString>;
|
|
22222
|
+
has_custom_pin_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
22215
22223
|
}, "strip", z.ZodTypeAny, {
|
|
22216
22224
|
lock_id: string;
|
|
22217
22225
|
customer_reference: string;
|
|
@@ -22219,6 +22227,7 @@ declare const batch: z.ZodObject<{
|
|
|
22219
22227
|
battery_level: string;
|
|
22220
22228
|
locked_state: string;
|
|
22221
22229
|
model?: string | undefined;
|
|
22230
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
22222
22231
|
}, {
|
|
22223
22232
|
lock_id: string;
|
|
22224
22233
|
customer_reference: string;
|
|
@@ -22226,6 +22235,7 @@ declare const batch: z.ZodObject<{
|
|
|
22226
22235
|
battery_level: string;
|
|
22227
22236
|
locked_state: string;
|
|
22228
22237
|
model?: string | undefined;
|
|
22238
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
22229
22239
|
}>>;
|
|
22230
22240
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
22231
22241
|
device_name: z.ZodString;
|
|
@@ -22903,6 +22913,7 @@ declare const batch: z.ZodObject<{
|
|
|
22903
22913
|
battery_level: string;
|
|
22904
22914
|
locked_state: string;
|
|
22905
22915
|
model?: string | undefined;
|
|
22916
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
22906
22917
|
} | undefined;
|
|
22907
22918
|
august_metadata?: {
|
|
22908
22919
|
lock_id: string;
|
|
@@ -23166,6 +23177,7 @@ declare const batch: z.ZodObject<{
|
|
|
23166
23177
|
battery_level: string;
|
|
23167
23178
|
locked_state: string;
|
|
23168
23179
|
model?: string | undefined;
|
|
23180
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
23169
23181
|
} | undefined;
|
|
23170
23182
|
august_metadata?: {
|
|
23171
23183
|
lock_id: string;
|
|
@@ -32274,6 +32286,7 @@ declare const batch: z.ZodObject<{
|
|
|
32274
32286
|
battery_level: string;
|
|
32275
32287
|
locked_state: string;
|
|
32276
32288
|
model?: string | undefined;
|
|
32289
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
32277
32290
|
} | undefined;
|
|
32278
32291
|
august_metadata?: {
|
|
32279
32292
|
lock_id: string;
|
|
@@ -36331,6 +36344,7 @@ declare const batch: z.ZodObject<{
|
|
|
36331
36344
|
battery_level: string;
|
|
36332
36345
|
locked_state: string;
|
|
36333
36346
|
model?: string | undefined;
|
|
36347
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
36334
36348
|
} | undefined;
|
|
36335
36349
|
august_metadata?: {
|
|
36336
36350
|
lock_id: string;
|
|
@@ -41854,6 +41868,7 @@ declare const device: z.ZodObject<{
|
|
|
41854
41868
|
battery_level: z.ZodString;
|
|
41855
41869
|
locked_state: z.ZodString;
|
|
41856
41870
|
model: z.ZodOptional<z.ZodString>;
|
|
41871
|
+
has_custom_pin_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
41857
41872
|
}, "strip", z.ZodTypeAny, {
|
|
41858
41873
|
lock_id: string;
|
|
41859
41874
|
customer_reference: string;
|
|
@@ -41861,6 +41876,7 @@ declare const device: z.ZodObject<{
|
|
|
41861
41876
|
battery_level: string;
|
|
41862
41877
|
locked_state: string;
|
|
41863
41878
|
model?: string | undefined;
|
|
41879
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
41864
41880
|
}, {
|
|
41865
41881
|
lock_id: string;
|
|
41866
41882
|
customer_reference: string;
|
|
@@ -41868,6 +41884,7 @@ declare const device: z.ZodObject<{
|
|
|
41868
41884
|
battery_level: string;
|
|
41869
41885
|
locked_state: string;
|
|
41870
41886
|
model?: string | undefined;
|
|
41887
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
41871
41888
|
}>>;
|
|
41872
41889
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
41873
41890
|
device_name: z.ZodString;
|
|
@@ -42545,6 +42562,7 @@ declare const device: z.ZodObject<{
|
|
|
42545
42562
|
battery_level: string;
|
|
42546
42563
|
locked_state: string;
|
|
42547
42564
|
model?: string | undefined;
|
|
42565
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
42548
42566
|
} | undefined;
|
|
42549
42567
|
august_metadata?: {
|
|
42550
42568
|
lock_id: string;
|
|
@@ -42808,6 +42826,7 @@ declare const device: z.ZodObject<{
|
|
|
42808
42826
|
battery_level: string;
|
|
42809
42827
|
locked_state: string;
|
|
42810
42828
|
model?: string | undefined;
|
|
42829
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
42811
42830
|
} | undefined;
|
|
42812
42831
|
august_metadata?: {
|
|
42813
42832
|
lock_id: string;
|
|
@@ -44629,6 +44648,7 @@ declare const device: z.ZodObject<{
|
|
|
44629
44648
|
battery_level: string;
|
|
44630
44649
|
locked_state: string;
|
|
44631
44650
|
model?: string | undefined;
|
|
44651
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
44632
44652
|
} | undefined;
|
|
44633
44653
|
august_metadata?: {
|
|
44634
44654
|
lock_id: string;
|
|
@@ -45303,6 +45323,7 @@ declare const device: z.ZodObject<{
|
|
|
45303
45323
|
battery_level: string;
|
|
45304
45324
|
locked_state: string;
|
|
45305
45325
|
model?: string | undefined;
|
|
45326
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
45306
45327
|
} | undefined;
|
|
45307
45328
|
august_metadata?: {
|
|
45308
45329
|
lock_id: string;
|
|
@@ -46230,6 +46251,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46230
46251
|
battery_level: z.ZodString;
|
|
46231
46252
|
locked_state: z.ZodString;
|
|
46232
46253
|
model: z.ZodOptional<z.ZodString>;
|
|
46254
|
+
has_custom_pin_subscription: z.ZodOptional<z.ZodBoolean>;
|
|
46233
46255
|
}, "strip", z.ZodTypeAny, {
|
|
46234
46256
|
lock_id: string;
|
|
46235
46257
|
customer_reference: string;
|
|
@@ -46237,6 +46259,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46237
46259
|
battery_level: string;
|
|
46238
46260
|
locked_state: string;
|
|
46239
46261
|
model?: string | undefined;
|
|
46262
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
46240
46263
|
}, {
|
|
46241
46264
|
lock_id: string;
|
|
46242
46265
|
customer_reference: string;
|
|
@@ -46244,6 +46267,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46244
46267
|
battery_level: string;
|
|
46245
46268
|
locked_state: string;
|
|
46246
46269
|
model?: string | undefined;
|
|
46270
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
46247
46271
|
}>>;
|
|
46248
46272
|
genie_metadata: z.ZodOptional<z.ZodObject<{
|
|
46249
46273
|
device_name: z.ZodString;
|
|
@@ -46921,6 +46945,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46921
46945
|
battery_level: string;
|
|
46922
46946
|
locked_state: string;
|
|
46923
46947
|
model?: string | undefined;
|
|
46948
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
46924
46949
|
} | undefined;
|
|
46925
46950
|
august_metadata?: {
|
|
46926
46951
|
lock_id: string;
|
|
@@ -47184,6 +47209,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47184
47209
|
battery_level: string;
|
|
47185
47210
|
locked_state: string;
|
|
47186
47211
|
model?: string | undefined;
|
|
47212
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
47187
47213
|
} | undefined;
|
|
47188
47214
|
august_metadata?: {
|
|
47189
47215
|
lock_id: string;
|
|
@@ -58974,6 +59000,10 @@ declare const _default: {
|
|
|
58974
59000
|
description: string;
|
|
58975
59001
|
type: string;
|
|
58976
59002
|
};
|
|
59003
|
+
has_custom_pin_subscription: {
|
|
59004
|
+
description: string;
|
|
59005
|
+
type: string;
|
|
59006
|
+
};
|
|
58977
59007
|
lock_id: {
|
|
58978
59008
|
description: string;
|
|
58979
59009
|
type: string;
|
|
@@ -124449,6 +124479,8 @@ type Routes = {
|
|
|
124449
124479
|
locked_state: string;
|
|
124450
124480
|
/** Model for a Salto KS device. */
|
|
124451
124481
|
model?: string | undefined;
|
|
124482
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
124483
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
124452
124484
|
} | undefined;
|
|
124453
124485
|
/** Metadata for a Genie device. */
|
|
124454
124486
|
genie_metadata?: {
|
|
@@ -127840,6 +127872,8 @@ type Routes = {
|
|
|
127840
127872
|
locked_state: string;
|
|
127841
127873
|
/** Model for a Salto KS device. */
|
|
127842
127874
|
model?: string | undefined;
|
|
127875
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
127876
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
127843
127877
|
} | undefined;
|
|
127844
127878
|
/** Metadata for a Genie device. */
|
|
127845
127879
|
genie_metadata?: {
|
|
@@ -141500,6 +141534,8 @@ type Routes = {
|
|
|
141500
141534
|
locked_state: string;
|
|
141501
141535
|
/** Model for a Salto KS device. */
|
|
141502
141536
|
model?: string | undefined;
|
|
141537
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
141538
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
141503
141539
|
} | undefined;
|
|
141504
141540
|
/** Metadata for a Genie device. */
|
|
141505
141541
|
genie_metadata?: {
|
|
@@ -142784,6 +142820,8 @@ type Routes = {
|
|
|
142784
142820
|
locked_state: string;
|
|
142785
142821
|
/** Model for a Salto KS device. */
|
|
142786
142822
|
model?: string | undefined;
|
|
142823
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
142824
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
142787
142825
|
} | undefined;
|
|
142788
142826
|
/** Metadata for a Genie device. */
|
|
142789
142827
|
genie_metadata?: {
|
|
@@ -149154,6 +149192,8 @@ type Routes = {
|
|
|
149154
149192
|
locked_state: string;
|
|
149155
149193
|
/** Model for a Salto KS device. */
|
|
149156
149194
|
model?: string | undefined;
|
|
149195
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
149196
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
149157
149197
|
} | undefined;
|
|
149158
149198
|
/** Metadata for a Genie device. */
|
|
149159
149199
|
genie_metadata?: {
|
|
@@ -150388,6 +150428,8 @@ type Routes = {
|
|
|
150388
150428
|
locked_state: string;
|
|
150389
150429
|
/** Model for a Salto KS device. */
|
|
150390
150430
|
model?: string | undefined;
|
|
150431
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
150432
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
150391
150433
|
} | undefined;
|
|
150392
150434
|
/** Metadata for a Genie device. */
|
|
150393
150435
|
genie_metadata?: {
|
|
@@ -151672,6 +151714,8 @@ type Routes = {
|
|
|
151672
151714
|
locked_state: string;
|
|
151673
151715
|
/** Model for a Salto KS device. */
|
|
151674
151716
|
model?: string | undefined;
|
|
151717
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
151718
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
151675
151719
|
} | undefined;
|
|
151676
151720
|
/** Metadata for a Genie device. */
|
|
151677
151721
|
genie_metadata?: {
|
|
@@ -152905,6 +152949,8 @@ type Routes = {
|
|
|
152905
152949
|
locked_state: string;
|
|
152906
152950
|
/** Model for a Salto KS device. */
|
|
152907
152951
|
model?: string | undefined;
|
|
152952
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
152953
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
152908
152954
|
} | undefined;
|
|
152909
152955
|
/** Metadata for a Genie device. */
|
|
152910
152956
|
genie_metadata?: {
|
|
@@ -159271,6 +159317,8 @@ type Routes = {
|
|
|
159271
159317
|
locked_state: string;
|
|
159272
159318
|
/** Model for a Salto KS device. */
|
|
159273
159319
|
model?: string | undefined;
|
|
159320
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
159321
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
159274
159322
|
} | undefined;
|
|
159275
159323
|
/** Metadata for a Genie device. */
|
|
159276
159324
|
genie_metadata?: {
|
|
@@ -160504,6 +160552,8 @@ type Routes = {
|
|
|
160504
160552
|
locked_state: string;
|
|
160505
160553
|
/** Model for a Salto KS device. */
|
|
160506
160554
|
model?: string | undefined;
|
|
160555
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
160556
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
160507
160557
|
} | undefined;
|
|
160508
160558
|
/** Metadata for a Genie device. */
|
|
160509
160559
|
genie_metadata?: {
|
|
@@ -170066,6 +170116,8 @@ type Routes = {
|
|
|
170066
170116
|
locked_state: string;
|
|
170067
170117
|
/** Model for a Salto KS device. */
|
|
170068
170118
|
model?: string | undefined;
|
|
170119
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
170120
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
170069
170121
|
} | undefined;
|
|
170070
170122
|
/** Metadata for a Genie device. */
|
|
170071
170123
|
genie_metadata?: {
|
|
@@ -175745,6 +175797,8 @@ type Routes = {
|
|
|
175745
175797
|
locked_state: string;
|
|
175746
175798
|
/** Model for a Salto KS device. */
|
|
175747
175799
|
model?: string | undefined;
|
|
175800
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
175801
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
175748
175802
|
} | undefined;
|
|
175749
175803
|
/** Metadata for a Genie device. */
|
|
175750
175804
|
genie_metadata?: {
|
|
@@ -179583,6 +179637,8 @@ type Routes = {
|
|
|
179583
179637
|
locked_state: string;
|
|
179584
179638
|
/** Model for a Salto KS device. */
|
|
179585
179639
|
model?: string | undefined;
|
|
179640
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
179641
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
179586
179642
|
} | undefined;
|
|
179587
179643
|
/** Metadata for a Genie device. */
|
|
179588
179644
|
genie_metadata?: {
|
|
@@ -180816,6 +180872,8 @@ type Routes = {
|
|
|
180816
180872
|
locked_state: string;
|
|
180817
180873
|
/** Model for a Salto KS device. */
|
|
180818
180874
|
model?: string | undefined;
|
|
180875
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
180876
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
180819
180877
|
} | undefined;
|
|
180820
180878
|
/** Metadata for a Genie device. */
|
|
180821
180879
|
genie_metadata?: {
|
|
@@ -188069,6 +188127,8 @@ type Routes = {
|
|
|
188069
188127
|
locked_state: string;
|
|
188070
188128
|
/** Model for a Salto KS device. */
|
|
188071
188129
|
model?: string | undefined;
|
|
188130
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
188131
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
188072
188132
|
} | undefined;
|
|
188073
188133
|
/** Metadata for a Genie device. */
|
|
188074
188134
|
genie_metadata?: {
|
|
@@ -189304,6 +189364,8 @@ type Routes = {
|
|
|
189304
189364
|
locked_state: string;
|
|
189305
189365
|
/** Model for a Salto KS device. */
|
|
189306
189366
|
model?: string | undefined;
|
|
189367
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
189368
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
189307
189369
|
} | undefined;
|
|
189308
189370
|
/** Metadata for a Genie device. */
|
|
189309
189371
|
genie_metadata?: {
|
|
@@ -191504,6 +191566,8 @@ type Routes = {
|
|
|
191504
191566
|
locked_state: string;
|
|
191505
191567
|
/** Model for a Salto KS device. */
|
|
191506
191568
|
model?: string | undefined;
|
|
191569
|
+
/** Indicates whether the site has a Salto KS subscription that supports custom PINs. */
|
|
191570
|
+
has_custom_pin_subscription?: boolean | undefined;
|
|
191507
191571
|
} | undefined;
|
|
191508
191572
|
/** Metadata for a Genie device. */
|
|
191509
191573
|
genie_metadata?: {
|
package/dist/index.cjs
CHANGED
|
@@ -822,7 +822,10 @@ var device_metadata = zod.z.object({
|
|
|
822
822
|
lock_type: zod.z.string().describe(`Lock type for a Salto KS device.`),
|
|
823
823
|
battery_level: zod.z.string().describe(`Battery level for a Salto KS device.`),
|
|
824
824
|
locked_state: zod.z.string().describe(`Locked state for a Salto KS device.`),
|
|
825
|
-
model: zod.z.string().optional().describe(`Model for a Salto KS device.`)
|
|
825
|
+
model: zod.z.string().optional().describe(`Model for a Salto KS device.`),
|
|
826
|
+
has_custom_pin_subscription: zod.z.boolean().optional().describe(
|
|
827
|
+
`Indicates whether the site has a Salto KS subscription that supports custom PINs.`
|
|
828
|
+
)
|
|
826
829
|
}).describe(`Metadata for a Salto KS device.`),
|
|
827
830
|
genie_metadata: zod.z.object({
|
|
828
831
|
device_name: zod.z.string().describe(`Lock name for a Genie device.`),
|
|
@@ -16051,6 +16054,10 @@ var openapi_default = {
|
|
|
16051
16054
|
description: "Customer reference for a Salto KS device.",
|
|
16052
16055
|
type: "string"
|
|
16053
16056
|
},
|
|
16057
|
+
has_custom_pin_subscription: {
|
|
16058
|
+
description: "Indicates whether the site has a Salto KS subscription that supports custom PINs.",
|
|
16059
|
+
type: "boolean"
|
|
16060
|
+
},
|
|
16054
16061
|
lock_id: {
|
|
16055
16062
|
description: "Lock ID for a Salto KS device.",
|
|
16056
16063
|
type: "string"
|