@seamapi/types 1.507.0 → 1.508.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 +10 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +92 -42
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device.js +2 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +84 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +84 -42
package/dist/connect.d.cts
CHANGED
|
@@ -55224,8 +55224,10 @@ declare const _default: {
|
|
|
55224
55224
|
'x-property-group-key': string;
|
|
55225
55225
|
};
|
|
55226
55226
|
offline_access_codes_enabled: {
|
|
55227
|
+
deprecated: boolean;
|
|
55227
55228
|
description: string;
|
|
55228
55229
|
type: string;
|
|
55230
|
+
'x-deprecated': string;
|
|
55229
55231
|
'x-property-group-key': string;
|
|
55230
55232
|
};
|
|
55231
55233
|
online: {
|
|
@@ -55233,8 +55235,10 @@ declare const _default: {
|
|
|
55233
55235
|
type: string;
|
|
55234
55236
|
};
|
|
55235
55237
|
online_access_codes_enabled: {
|
|
55238
|
+
deprecated: boolean;
|
|
55236
55239
|
description: string;
|
|
55237
55240
|
type: string;
|
|
55241
|
+
'x-deprecated': string;
|
|
55238
55242
|
'x-property-group-key': string;
|
|
55239
55243
|
};
|
|
55240
55244
|
serial_number: {
|
|
@@ -63503,8 +63507,10 @@ declare const _default: {
|
|
|
63503
63507
|
'x-deprecated': string;
|
|
63504
63508
|
};
|
|
63505
63509
|
offline_access_codes_enabled: {
|
|
63510
|
+
deprecated: boolean;
|
|
63506
63511
|
description: string;
|
|
63507
63512
|
type: string;
|
|
63513
|
+
'x-deprecated': string;
|
|
63508
63514
|
'x-property-group-key': string;
|
|
63509
63515
|
};
|
|
63510
63516
|
online: {
|
|
@@ -63512,8 +63518,10 @@ declare const _default: {
|
|
|
63512
63518
|
type: string;
|
|
63513
63519
|
};
|
|
63514
63520
|
online_access_codes_enabled: {
|
|
63521
|
+
deprecated: boolean;
|
|
63515
63522
|
description: string;
|
|
63516
63523
|
type: string;
|
|
63524
|
+
'x-deprecated': string;
|
|
63517
63525
|
'x-property-group-key': string;
|
|
63518
63526
|
};
|
|
63519
63527
|
};
|
|
@@ -110527,9 +110535,11 @@ type Routes = {
|
|
|
110527
110535
|
image_alt_text?: string | undefined;
|
|
110528
110536
|
/** Serial number of the device. */
|
|
110529
110537
|
serial_number?: string | undefined;
|
|
110530
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
110538
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
110539
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
110531
110540
|
online_access_codes_enabled?: boolean | undefined;
|
|
110532
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
110541
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
110542
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
110533
110543
|
offline_access_codes_enabled?: boolean | undefined;
|
|
110534
110544
|
/**
|
|
110535
110545
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -113637,9 +113647,11 @@ type Routes = {
|
|
|
113637
113647
|
image_alt_text?: string | undefined;
|
|
113638
113648
|
/** Serial number of the device. */
|
|
113639
113649
|
serial_number?: string | undefined;
|
|
113640
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
113650
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
113651
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
113641
113652
|
online_access_codes_enabled?: boolean | undefined;
|
|
113642
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
113653
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
113654
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
113643
113655
|
offline_access_codes_enabled?: boolean | undefined;
|
|
113644
113656
|
/**
|
|
113645
113657
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -117318,9 +117330,11 @@ type Routes = {
|
|
|
117318
117330
|
*/
|
|
117319
117331
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
117320
117332
|
} | undefined;
|
|
117321
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
117333
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
117334
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
117322
117335
|
online_access_codes_enabled?: boolean | undefined;
|
|
117323
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
117336
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
117337
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
117324
117338
|
offline_access_codes_enabled?: boolean | undefined;
|
|
117325
117339
|
/** Device model-related properties. */
|
|
117326
117340
|
model: {
|
|
@@ -131887,9 +131901,11 @@ type Routes = {
|
|
|
131887
131901
|
image_alt_text?: string | undefined;
|
|
131888
131902
|
/** Serial number of the device. */
|
|
131889
131903
|
serial_number?: string | undefined;
|
|
131890
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
131904
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
131905
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
131891
131906
|
online_access_codes_enabled?: boolean | undefined;
|
|
131892
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
131907
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
131908
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
131893
131909
|
offline_access_codes_enabled?: boolean | undefined;
|
|
131894
131910
|
/**
|
|
131895
131911
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -133105,9 +133121,11 @@ type Routes = {
|
|
|
133105
133121
|
image_alt_text?: string | undefined;
|
|
133106
133122
|
/** Serial number of the device. */
|
|
133107
133123
|
serial_number?: string | undefined;
|
|
133108
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
133124
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
133125
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
133109
133126
|
online_access_codes_enabled?: boolean | undefined;
|
|
133110
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
133127
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
133128
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
133111
133129
|
offline_access_codes_enabled?: boolean | undefined;
|
|
133112
133130
|
/**
|
|
133113
133131
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -134641,9 +134659,11 @@ type Routes = {
|
|
|
134641
134659
|
*/
|
|
134642
134660
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
134643
134661
|
} | undefined;
|
|
134644
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
134662
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
134663
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
134645
134664
|
online_access_codes_enabled?: boolean | undefined;
|
|
134646
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
134665
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
134666
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
134647
134667
|
offline_access_codes_enabled?: boolean | undefined;
|
|
134648
134668
|
/** Device model-related properties. */
|
|
134649
134669
|
model: {
|
|
@@ -135076,9 +135096,11 @@ type Routes = {
|
|
|
135076
135096
|
*/
|
|
135077
135097
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
135078
135098
|
} | undefined;
|
|
135079
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
135099
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
135100
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
135080
135101
|
online_access_codes_enabled?: boolean | undefined;
|
|
135081
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
135102
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
135103
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
135082
135104
|
offline_access_codes_enabled?: boolean | undefined;
|
|
135083
135105
|
/** Device model-related properties. */
|
|
135084
135106
|
model: {
|
|
@@ -139083,9 +139105,11 @@ type Routes = {
|
|
|
139083
139105
|
image_alt_text?: string | undefined;
|
|
139084
139106
|
/** Serial number of the device. */
|
|
139085
139107
|
serial_number?: string | undefined;
|
|
139086
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
139108
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
139109
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
139087
139110
|
online_access_codes_enabled?: boolean | undefined;
|
|
139088
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
139111
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
139112
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
139089
139113
|
offline_access_codes_enabled?: boolean | undefined;
|
|
139090
139114
|
/**
|
|
139091
139115
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -140251,9 +140275,11 @@ type Routes = {
|
|
|
140251
140275
|
image_alt_text?: string | undefined;
|
|
140252
140276
|
/** Serial number of the device. */
|
|
140253
140277
|
serial_number?: string | undefined;
|
|
140254
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
140278
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
140279
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
140255
140280
|
online_access_codes_enabled?: boolean | undefined;
|
|
140256
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
140281
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
140282
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
140257
140283
|
offline_access_codes_enabled?: boolean | undefined;
|
|
140258
140284
|
/**
|
|
140259
140285
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -141469,9 +141495,11 @@ type Routes = {
|
|
|
141469
141495
|
image_alt_text?: string | undefined;
|
|
141470
141496
|
/** Serial number of the device. */
|
|
141471
141497
|
serial_number?: string | undefined;
|
|
141472
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
141498
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
141499
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
141473
141500
|
online_access_codes_enabled?: boolean | undefined;
|
|
141474
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
141501
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
141502
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
141475
141503
|
offline_access_codes_enabled?: boolean | undefined;
|
|
141476
141504
|
/**
|
|
141477
141505
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -142636,9 +142664,11 @@ type Routes = {
|
|
|
142636
142664
|
image_alt_text?: string | undefined;
|
|
142637
142665
|
/** Serial number of the device. */
|
|
142638
142666
|
serial_number?: string | undefined;
|
|
142639
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
142667
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
142668
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
142640
142669
|
online_access_codes_enabled?: boolean | undefined;
|
|
142641
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
142670
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
142671
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
142642
142672
|
offline_access_codes_enabled?: boolean | undefined;
|
|
142643
142673
|
/**
|
|
142644
142674
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -148892,9 +148922,11 @@ type Routes = {
|
|
|
148892
148922
|
image_alt_text?: string | undefined;
|
|
148893
148923
|
/** Serial number of the device. */
|
|
148894
148924
|
serial_number?: string | undefined;
|
|
148895
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
148925
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
148926
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
148896
148927
|
online_access_codes_enabled?: boolean | undefined;
|
|
148897
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
148928
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
148929
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
148898
148930
|
offline_access_codes_enabled?: boolean | undefined;
|
|
148899
148931
|
/**
|
|
148900
148932
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -150059,9 +150091,11 @@ type Routes = {
|
|
|
150059
150091
|
image_alt_text?: string | undefined;
|
|
150060
150092
|
/** Serial number of the device. */
|
|
150061
150093
|
serial_number?: string | undefined;
|
|
150062
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
150094
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
150095
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
150063
150096
|
online_access_codes_enabled?: boolean | undefined;
|
|
150064
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
150097
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
150098
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
150065
150099
|
offline_access_codes_enabled?: boolean | undefined;
|
|
150066
150100
|
/**
|
|
150067
150101
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -158422,9 +158456,11 @@ type Routes = {
|
|
|
158422
158456
|
image_alt_text?: string | undefined;
|
|
158423
158457
|
/** Serial number of the device. */
|
|
158424
158458
|
serial_number?: string | undefined;
|
|
158425
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
158459
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
158460
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
158426
158461
|
online_access_codes_enabled?: boolean | undefined;
|
|
158427
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
158462
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
158463
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
158428
158464
|
offline_access_codes_enabled?: boolean | undefined;
|
|
158429
158465
|
/**
|
|
158430
158466
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -163970,9 +164006,11 @@ type Routes = {
|
|
|
163970
164006
|
image_alt_text?: string | undefined;
|
|
163971
164007
|
/** Serial number of the device. */
|
|
163972
164008
|
serial_number?: string | undefined;
|
|
163973
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
164009
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
164010
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
163974
164011
|
online_access_codes_enabled?: boolean | undefined;
|
|
163975
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
164012
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
164013
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
163976
164014
|
offline_access_codes_enabled?: boolean | undefined;
|
|
163977
164015
|
/**
|
|
163978
164016
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -167720,9 +167758,11 @@ type Routes = {
|
|
|
167720
167758
|
image_alt_text?: string | undefined;
|
|
167721
167759
|
/** Serial number of the device. */
|
|
167722
167760
|
serial_number?: string | undefined;
|
|
167723
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
167761
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
167762
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
167724
167763
|
online_access_codes_enabled?: boolean | undefined;
|
|
167725
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
167764
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
167765
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
167726
167766
|
offline_access_codes_enabled?: boolean | undefined;
|
|
167727
167767
|
/**
|
|
167728
167768
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -168887,9 +168927,11 @@ type Routes = {
|
|
|
168887
168927
|
image_alt_text?: string | undefined;
|
|
168888
168928
|
/** Serial number of the device. */
|
|
168889
168929
|
serial_number?: string | undefined;
|
|
168890
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
168930
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
168931
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
168891
168932
|
online_access_codes_enabled?: boolean | undefined;
|
|
168892
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
168933
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
168934
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
168893
168935
|
offline_access_codes_enabled?: boolean | undefined;
|
|
168894
168936
|
/**
|
|
168895
168937
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -175995,9 +176037,11 @@ type Routes = {
|
|
|
175995
176037
|
image_alt_text?: string | undefined;
|
|
175996
176038
|
/** Serial number of the device. */
|
|
175997
176039
|
serial_number?: string | undefined;
|
|
175998
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
176040
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
176041
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
175999
176042
|
online_access_codes_enabled?: boolean | undefined;
|
|
176000
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
176043
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
176044
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
176001
176045
|
offline_access_codes_enabled?: boolean | undefined;
|
|
176002
176046
|
/**
|
|
176003
176047
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -177164,9 +177208,11 @@ type Routes = {
|
|
|
177164
177208
|
image_alt_text?: string | undefined;
|
|
177165
177209
|
/** Serial number of the device. */
|
|
177166
177210
|
serial_number?: string | undefined;
|
|
177167
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
177211
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
177212
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
177168
177213
|
online_access_codes_enabled?: boolean | undefined;
|
|
177169
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
177214
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
177215
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
177170
177216
|
offline_access_codes_enabled?: boolean | undefined;
|
|
177171
177217
|
/**
|
|
177172
177218
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -179092,9 +179138,11 @@ type Routes = {
|
|
|
179092
179138
|
image_alt_text?: string | undefined;
|
|
179093
179139
|
/** Serial number of the device. */
|
|
179094
179140
|
serial_number?: string | undefined;
|
|
179095
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
179141
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
179142
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
179096
179143
|
online_access_codes_enabled?: boolean | undefined;
|
|
179097
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
179144
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
179145
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
179098
179146
|
offline_access_codes_enabled?: boolean | undefined;
|
|
179099
179147
|
/**
|
|
179100
179148
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -182773,9 +182821,11 @@ type Routes = {
|
|
|
182773
182821
|
*/
|
|
182774
182822
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
182775
182823
|
} | undefined;
|
|
182776
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
182824
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
182825
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
182777
182826
|
online_access_codes_enabled?: boolean | undefined;
|
|
182778
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
182827
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
182828
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
182779
182829
|
offline_access_codes_enabled?: boolean | undefined;
|
|
182780
182830
|
/** Device model-related properties. */
|
|
182781
182831
|
model: {
|
package/dist/index.cjs
CHANGED
|
@@ -1526,6 +1526,7 @@ var common_device_properties = zod.z.object({
|
|
|
1526
1526
|
`
|
|
1527
1527
|
---
|
|
1528
1528
|
property_group_key: access_codes
|
|
1529
|
+
deprecated: use device.can_program_online_access_codes
|
|
1529
1530
|
---
|
|
1530
1531
|
Indicates whether it is currently possible to use online access codes for the device.
|
|
1531
1532
|
`
|
|
@@ -1534,6 +1535,7 @@ var common_device_properties = zod.z.object({
|
|
|
1534
1535
|
`
|
|
1535
1536
|
---
|
|
1536
1537
|
property_group_key: access_codes
|
|
1538
|
+
deprecated: use device.can_program_offline_access_codes
|
|
1537
1539
|
---
|
|
1538
1540
|
Indicates whether it is currently possible to use offline access codes for the device.
|
|
1539
1541
|
`
|
|
@@ -14511,8 +14513,10 @@ var openapi_default = {
|
|
|
14511
14513
|
"x-property-group-key": "noise_sensors"
|
|
14512
14514
|
},
|
|
14513
14515
|
offline_access_codes_enabled: {
|
|
14516
|
+
deprecated: true,
|
|
14514
14517
|
description: "Indicates whether it is currently possible to use offline access codes for the device.",
|
|
14515
14518
|
type: "boolean",
|
|
14519
|
+
"x-deprecated": "use device.can_program_offline_access_codes",
|
|
14516
14520
|
"x-property-group-key": "access_codes"
|
|
14517
14521
|
},
|
|
14518
14522
|
online: {
|
|
@@ -14520,8 +14524,10 @@ var openapi_default = {
|
|
|
14520
14524
|
type: "boolean"
|
|
14521
14525
|
},
|
|
14522
14526
|
online_access_codes_enabled: {
|
|
14527
|
+
deprecated: true,
|
|
14523
14528
|
description: "Indicates whether it is currently possible to use online access codes for the device.",
|
|
14524
14529
|
type: "boolean",
|
|
14530
|
+
"x-deprecated": "use device.can_program_online_access_codes",
|
|
14525
14531
|
"x-property-group-key": "access_codes"
|
|
14526
14532
|
},
|
|
14527
14533
|
serial_number: {
|
|
@@ -27395,8 +27401,10 @@ var openapi_default = {
|
|
|
27395
27401
|
"x-deprecated": "use device.display_name instead"
|
|
27396
27402
|
},
|
|
27397
27403
|
offline_access_codes_enabled: {
|
|
27404
|
+
deprecated: true,
|
|
27398
27405
|
description: "Indicates whether it is currently possible to use offline access codes for the device.",
|
|
27399
27406
|
type: "boolean",
|
|
27407
|
+
"x-deprecated": "use device.can_program_offline_access_codes",
|
|
27400
27408
|
"x-property-group-key": "access_codes"
|
|
27401
27409
|
},
|
|
27402
27410
|
online: {
|
|
@@ -27404,8 +27412,10 @@ var openapi_default = {
|
|
|
27404
27412
|
type: "boolean"
|
|
27405
27413
|
},
|
|
27406
27414
|
online_access_codes_enabled: {
|
|
27415
|
+
deprecated: true,
|
|
27407
27416
|
description: "Indicates whether it is currently possible to use online access codes for the device.",
|
|
27408
27417
|
type: "boolean",
|
|
27418
|
+
"x-deprecated": "use device.can_program_online_access_codes",
|
|
27409
27419
|
"x-property-group-key": "access_codes"
|
|
27410
27420
|
}
|
|
27411
27421
|
},
|