@seamapi/types 1.977.0 → 1.979.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 +185 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +722 -57
- package/dist/index.cjs +185 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +48 -0
- package/lib/seam/connect/models/devices/device-metadata.js +40 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +71 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +51 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
- package/lib/seam/connect/openapi.js +136 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +544 -45
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +41 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +147 -0
- package/src/lib/seam/connect/route-types.ts +663 -0
|
@@ -13422,6 +13422,7 @@ export type Routes = {
|
|
|
13422
13422
|
| 'keyincode_lock'
|
|
13423
13423
|
| 'omnitec_lock'
|
|
13424
13424
|
| 'kisi_lock'
|
|
13425
|
+
| 'aqara_lock'
|
|
13425
13426
|
)
|
|
13426
13427
|
| 'keynest_key'
|
|
13427
13428
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -14286,6 +14287,29 @@ export type Routes = {
|
|
|
14286
14287
|
description?: ((string | null) | undefined) | undefined
|
|
14287
14288
|
}
|
|
14288
14289
|
| undefined
|
|
14290
|
+
/** Metadata for an Aqara device. */
|
|
14291
|
+
aqara_metadata?:
|
|
14292
|
+
| {
|
|
14293
|
+
/** Device ID (did) for an Aqara device. */
|
|
14294
|
+
did?: (string | undefined) | undefined
|
|
14295
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
14296
|
+
parent_did?: (string | undefined) | undefined
|
|
14297
|
+
/** Device name for an Aqara device. */
|
|
14298
|
+
device_name?: (string | undefined) | undefined
|
|
14299
|
+
/** Model identifier for an Aqara device. */
|
|
14300
|
+
model?: (string | undefined) | undefined
|
|
14301
|
+
/** Model type for an Aqara device. */
|
|
14302
|
+
model_type?: (number | undefined) | undefined
|
|
14303
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
14304
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
14305
|
+
/** Position (room) ID for an Aqara device. */
|
|
14306
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
14307
|
+
/** Firmware version for an Aqara device. */
|
|
14308
|
+
firmware_version?:
|
|
14309
|
+
| ((string | null) | undefined)
|
|
14310
|
+
| undefined
|
|
14311
|
+
}
|
|
14312
|
+
| undefined
|
|
14289
14313
|
}) &
|
|
14290
14314
|
({
|
|
14291
14315
|
/** */
|
|
@@ -15543,6 +15567,29 @@ export type Routes = {
|
|
|
15543
15567
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
15544
15568
|
}
|
|
15545
15569
|
| undefined
|
|
15570
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
15571
|
+
akiles_metadata?:
|
|
15572
|
+
| {
|
|
15573
|
+
/** ID of the Akiles gadget. */
|
|
15574
|
+
gadget_id?: (string | undefined) | undefined
|
|
15575
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
15576
|
+
site_id?: (string | undefined) | undefined
|
|
15577
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
15578
|
+
site_name?: (string | undefined) | undefined
|
|
15579
|
+
/** Actions the gadget exposes (for example, open). */
|
|
15580
|
+
actions?:
|
|
15581
|
+
| (
|
|
15582
|
+
| {
|
|
15583
|
+
/** ID of the gadget action. */
|
|
15584
|
+
id?: (string | undefined) | undefined
|
|
15585
|
+
/** Name of the gadget action. */
|
|
15586
|
+
name?: (string | undefined) | undefined
|
|
15587
|
+
}[]
|
|
15588
|
+
| undefined
|
|
15589
|
+
)
|
|
15590
|
+
| undefined
|
|
15591
|
+
}
|
|
15592
|
+
| undefined
|
|
15546
15593
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
15547
15594
|
is_locked?: boolean | undefined
|
|
15548
15595
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -15810,6 +15857,7 @@ export type Routes = {
|
|
|
15810
15857
|
| 'assa_abloy_vostio_credential_service'
|
|
15811
15858
|
| 'hotek_site'
|
|
15812
15859
|
| 'kisi_organization'
|
|
15860
|
+
| 'akiles_organization'
|
|
15813
15861
|
)
|
|
15814
15862
|
| undefined
|
|
15815
15863
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -15847,6 +15895,7 @@ export type Routes = {
|
|
|
15847
15895
|
| 'assa_abloy_vostio_credential_service'
|
|
15848
15896
|
| 'hotek_site'
|
|
15849
15897
|
| 'kisi_organization'
|
|
15898
|
+
| 'akiles_organization'
|
|
15850
15899
|
)
|
|
15851
15900
|
| undefined
|
|
15852
15901
|
/**
|
|
@@ -21663,6 +21712,7 @@ export type Routes = {
|
|
|
21663
21712
|
| 'keyincode_lock'
|
|
21664
21713
|
| 'omnitec_lock'
|
|
21665
21714
|
| 'kisi_lock'
|
|
21715
|
+
| 'aqara_lock'
|
|
21666
21716
|
)
|
|
21667
21717
|
| 'keynest_key'
|
|
21668
21718
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -22527,6 +22577,29 @@ export type Routes = {
|
|
|
22527
22577
|
description?: ((string | null) | undefined) | undefined
|
|
22528
22578
|
}
|
|
22529
22579
|
| undefined
|
|
22580
|
+
/** Metadata for an Aqara device. */
|
|
22581
|
+
aqara_metadata?:
|
|
22582
|
+
| {
|
|
22583
|
+
/** Device ID (did) for an Aqara device. */
|
|
22584
|
+
did?: (string | undefined) | undefined
|
|
22585
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
22586
|
+
parent_did?: (string | undefined) | undefined
|
|
22587
|
+
/** Device name for an Aqara device. */
|
|
22588
|
+
device_name?: (string | undefined) | undefined
|
|
22589
|
+
/** Model identifier for an Aqara device. */
|
|
22590
|
+
model?: (string | undefined) | undefined
|
|
22591
|
+
/** Model type for an Aqara device. */
|
|
22592
|
+
model_type?: (number | undefined) | undefined
|
|
22593
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
22594
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
22595
|
+
/** Position (room) ID for an Aqara device. */
|
|
22596
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
22597
|
+
/** Firmware version for an Aqara device. */
|
|
22598
|
+
firmware_version?:
|
|
22599
|
+
| ((string | null) | undefined)
|
|
22600
|
+
| undefined
|
|
22601
|
+
}
|
|
22602
|
+
| undefined
|
|
22530
22603
|
}) &
|
|
22531
22604
|
({
|
|
22532
22605
|
/** */
|
|
@@ -23784,6 +23857,29 @@ export type Routes = {
|
|
|
23784
23857
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
23785
23858
|
}
|
|
23786
23859
|
| undefined
|
|
23860
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
23861
|
+
akiles_metadata?:
|
|
23862
|
+
| {
|
|
23863
|
+
/** ID of the Akiles gadget. */
|
|
23864
|
+
gadget_id?: (string | undefined) | undefined
|
|
23865
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
23866
|
+
site_id?: (string | undefined) | undefined
|
|
23867
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
23868
|
+
site_name?: (string | undefined) | undefined
|
|
23869
|
+
/** Actions the gadget exposes (for example, open). */
|
|
23870
|
+
actions?:
|
|
23871
|
+
| (
|
|
23872
|
+
| {
|
|
23873
|
+
/** ID of the gadget action. */
|
|
23874
|
+
id?: (string | undefined) | undefined
|
|
23875
|
+
/** Name of the gadget action. */
|
|
23876
|
+
name?: (string | undefined) | undefined
|
|
23877
|
+
}[]
|
|
23878
|
+
| undefined
|
|
23879
|
+
)
|
|
23880
|
+
| undefined
|
|
23881
|
+
}
|
|
23882
|
+
| undefined
|
|
23787
23883
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
23788
23884
|
is_locked?: boolean | undefined
|
|
23789
23885
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -27577,6 +27673,29 @@ export type Routes = {
|
|
|
27577
27673
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
27578
27674
|
}
|
|
27579
27675
|
| undefined
|
|
27676
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
27677
|
+
akiles_metadata?:
|
|
27678
|
+
| {
|
|
27679
|
+
/** ID of the Akiles gadget. */
|
|
27680
|
+
gadget_id?: (string | undefined) | undefined
|
|
27681
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
27682
|
+
site_id?: (string | undefined) | undefined
|
|
27683
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
27684
|
+
site_name?: (string | undefined) | undefined
|
|
27685
|
+
/** Actions the gadget exposes (for example, open). */
|
|
27686
|
+
actions?:
|
|
27687
|
+
| (
|
|
27688
|
+
| {
|
|
27689
|
+
/** ID of the gadget action. */
|
|
27690
|
+
id?: (string | undefined) | undefined
|
|
27691
|
+
/** Name of the gadget action. */
|
|
27692
|
+
name?: (string | undefined) | undefined
|
|
27693
|
+
}[]
|
|
27694
|
+
| undefined
|
|
27695
|
+
)
|
|
27696
|
+
| undefined
|
|
27697
|
+
}
|
|
27698
|
+
| undefined
|
|
27580
27699
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
27581
27700
|
is_locked?: boolean | undefined
|
|
27582
27701
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -29712,6 +29831,29 @@ export type Routes = {
|
|
|
29712
29831
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
29713
29832
|
}
|
|
29714
29833
|
| undefined
|
|
29834
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
29835
|
+
akiles_metadata?:
|
|
29836
|
+
| {
|
|
29837
|
+
/** ID of the Akiles gadget. */
|
|
29838
|
+
gadget_id?: (string | undefined) | undefined
|
|
29839
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
29840
|
+
site_id?: (string | undefined) | undefined
|
|
29841
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
29842
|
+
site_name?: (string | undefined) | undefined
|
|
29843
|
+
/** Actions the gadget exposes (for example, open). */
|
|
29844
|
+
actions?:
|
|
29845
|
+
| (
|
|
29846
|
+
| {
|
|
29847
|
+
/** ID of the gadget action. */
|
|
29848
|
+
id?: (string | undefined) | undefined
|
|
29849
|
+
/** Name of the gadget action. */
|
|
29850
|
+
name?: (string | undefined) | undefined
|
|
29851
|
+
}[]
|
|
29852
|
+
| undefined
|
|
29853
|
+
)
|
|
29854
|
+
| undefined
|
|
29855
|
+
}
|
|
29856
|
+
| undefined
|
|
29715
29857
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
29716
29858
|
is_locked?: boolean | undefined
|
|
29717
29859
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -37065,6 +37207,29 @@ export type Routes = {
|
|
|
37065
37207
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
37066
37208
|
}
|
|
37067
37209
|
| undefined
|
|
37210
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
37211
|
+
akiles_metadata?:
|
|
37212
|
+
| {
|
|
37213
|
+
/** ID of the Akiles gadget. */
|
|
37214
|
+
gadget_id?: (string | undefined) | undefined
|
|
37215
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
37216
|
+
site_id?: (string | undefined) | undefined
|
|
37217
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
37218
|
+
site_name?: (string | undefined) | undefined
|
|
37219
|
+
/** Actions the gadget exposes (for example, open). */
|
|
37220
|
+
actions?:
|
|
37221
|
+
| (
|
|
37222
|
+
| {
|
|
37223
|
+
/** ID of the gadget action. */
|
|
37224
|
+
id?: (string | undefined) | undefined
|
|
37225
|
+
/** Name of the gadget action. */
|
|
37226
|
+
name?: (string | undefined) | undefined
|
|
37227
|
+
}[]
|
|
37228
|
+
| undefined
|
|
37229
|
+
)
|
|
37230
|
+
| undefined
|
|
37231
|
+
}
|
|
37232
|
+
| undefined
|
|
37068
37233
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
37069
37234
|
is_locked?: boolean | undefined
|
|
37070
37235
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -37355,6 +37520,29 @@ export type Routes = {
|
|
|
37355
37520
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
37356
37521
|
}
|
|
37357
37522
|
| undefined
|
|
37523
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
37524
|
+
akiles_metadata?:
|
|
37525
|
+
| {
|
|
37526
|
+
/** ID of the Akiles gadget. */
|
|
37527
|
+
gadget_id?: (string | undefined) | undefined
|
|
37528
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
37529
|
+
site_id?: (string | undefined) | undefined
|
|
37530
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
37531
|
+
site_name?: (string | undefined) | undefined
|
|
37532
|
+
/** Actions the gadget exposes (for example, open). */
|
|
37533
|
+
actions?:
|
|
37534
|
+
| (
|
|
37535
|
+
| {
|
|
37536
|
+
/** ID of the gadget action. */
|
|
37537
|
+
id?: (string | undefined) | undefined
|
|
37538
|
+
/** Name of the gadget action. */
|
|
37539
|
+
name?: (string | undefined) | undefined
|
|
37540
|
+
}[]
|
|
37541
|
+
| undefined
|
|
37542
|
+
)
|
|
37543
|
+
| undefined
|
|
37544
|
+
}
|
|
37545
|
+
| undefined
|
|
37358
37546
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
37359
37547
|
is_locked?: boolean | undefined
|
|
37360
37548
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -39644,6 +39832,7 @@ export type Routes = {
|
|
|
39644
39832
|
| 'assa_abloy_vostio_credential_service'
|
|
39645
39833
|
| 'hotek_site'
|
|
39646
39834
|
| 'kisi_organization'
|
|
39835
|
+
| 'akiles_organization'
|
|
39647
39836
|
)
|
|
39648
39837
|
| undefined
|
|
39649
39838
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -39681,6 +39870,7 @@ export type Routes = {
|
|
|
39681
39870
|
| 'assa_abloy_vostio_credential_service'
|
|
39682
39871
|
| 'hotek_site'
|
|
39683
39872
|
| 'kisi_organization'
|
|
39873
|
+
| 'akiles_organization'
|
|
39684
39874
|
)
|
|
39685
39875
|
| undefined
|
|
39686
39876
|
/**
|
|
@@ -39852,6 +40042,7 @@ export type Routes = {
|
|
|
39852
40042
|
| 'assa_abloy_vostio_credential_service'
|
|
39853
40043
|
| 'hotek_site'
|
|
39854
40044
|
| 'kisi_organization'
|
|
40045
|
+
| 'akiles_organization'
|
|
39855
40046
|
)
|
|
39856
40047
|
| undefined
|
|
39857
40048
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -39889,6 +40080,7 @@ export type Routes = {
|
|
|
39889
40080
|
| 'assa_abloy_vostio_credential_service'
|
|
39890
40081
|
| 'hotek_site'
|
|
39891
40082
|
| 'kisi_organization'
|
|
40083
|
+
| 'akiles_organization'
|
|
39892
40084
|
)
|
|
39893
40085
|
| undefined
|
|
39894
40086
|
/**
|
|
@@ -40056,6 +40248,7 @@ export type Routes = {
|
|
|
40056
40248
|
| 'assa_abloy_vostio_credential_service'
|
|
40057
40249
|
| 'hotek_site'
|
|
40058
40250
|
| 'kisi_organization'
|
|
40251
|
+
| 'akiles_organization'
|
|
40059
40252
|
)
|
|
40060
40253
|
| undefined
|
|
40061
40254
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -40093,6 +40286,7 @@ export type Routes = {
|
|
|
40093
40286
|
| 'assa_abloy_vostio_credential_service'
|
|
40094
40287
|
| 'hotek_site'
|
|
40095
40288
|
| 'kisi_organization'
|
|
40289
|
+
| 'akiles_organization'
|
|
40096
40290
|
)
|
|
40097
40291
|
| undefined
|
|
40098
40292
|
/**
|
|
@@ -41560,6 +41754,29 @@ export type Routes = {
|
|
|
41560
41754
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
41561
41755
|
}
|
|
41562
41756
|
| undefined
|
|
41757
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
41758
|
+
akiles_metadata?:
|
|
41759
|
+
| {
|
|
41760
|
+
/** ID of the Akiles gadget. */
|
|
41761
|
+
gadget_id?: (string | undefined) | undefined
|
|
41762
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
41763
|
+
site_id?: (string | undefined) | undefined
|
|
41764
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
41765
|
+
site_name?: (string | undefined) | undefined
|
|
41766
|
+
/** Actions the gadget exposes (for example, open). */
|
|
41767
|
+
actions?:
|
|
41768
|
+
| (
|
|
41769
|
+
| {
|
|
41770
|
+
/** ID of the gadget action. */
|
|
41771
|
+
id?: (string | undefined) | undefined
|
|
41772
|
+
/** Name of the gadget action. */
|
|
41773
|
+
name?: (string | undefined) | undefined
|
|
41774
|
+
}[]
|
|
41775
|
+
| undefined
|
|
41776
|
+
)
|
|
41777
|
+
| undefined
|
|
41778
|
+
}
|
|
41779
|
+
| undefined
|
|
41563
41780
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
41564
41781
|
is_locked?: boolean | undefined
|
|
41565
41782
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -46847,6 +47064,7 @@ export type Routes = {
|
|
|
46847
47064
|
| 'acuity_scheduling'
|
|
46848
47065
|
| 'omnitec'
|
|
46849
47066
|
| 'kisi'
|
|
47067
|
+
| 'aqara'
|
|
46850
47068
|
| 'yale_access'
|
|
46851
47069
|
| 'hid_cm'
|
|
46852
47070
|
| 'google_nest'
|
|
@@ -49029,6 +49247,7 @@ export type Routes = {
|
|
|
49029
49247
|
| 'keyincode_lock'
|
|
49030
49248
|
| 'omnitec_lock'
|
|
49031
49249
|
| 'kisi_lock'
|
|
49250
|
+
| 'aqara_lock'
|
|
49032
49251
|
)
|
|
49033
49252
|
| 'keynest_key'
|
|
49034
49253
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -49847,6 +50066,27 @@ export type Routes = {
|
|
|
49847
50066
|
description?: ((string | null) | undefined) | undefined
|
|
49848
50067
|
}
|
|
49849
50068
|
| undefined
|
|
50069
|
+
/** Metadata for an Aqara device. */
|
|
50070
|
+
aqara_metadata?:
|
|
50071
|
+
| {
|
|
50072
|
+
/** Device ID (did) for an Aqara device. */
|
|
50073
|
+
did?: (string | undefined) | undefined
|
|
50074
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
50075
|
+
parent_did?: (string | undefined) | undefined
|
|
50076
|
+
/** Device name for an Aqara device. */
|
|
50077
|
+
device_name?: (string | undefined) | undefined
|
|
50078
|
+
/** Model identifier for an Aqara device. */
|
|
50079
|
+
model?: (string | undefined) | undefined
|
|
50080
|
+
/** Model type for an Aqara device. */
|
|
50081
|
+
model_type?: (number | undefined) | undefined
|
|
50082
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
50083
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
50084
|
+
/** Position (room) ID for an Aqara device. */
|
|
50085
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
50086
|
+
/** Firmware version for an Aqara device. */
|
|
50087
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
50088
|
+
}
|
|
50089
|
+
| undefined
|
|
49850
50090
|
}) &
|
|
49851
50091
|
({
|
|
49852
50092
|
/** */
|
|
@@ -50888,6 +51128,7 @@ export type Routes = {
|
|
|
50888
51128
|
| 'keyincode_lock'
|
|
50889
51129
|
| 'omnitec_lock'
|
|
50890
51130
|
| 'kisi_lock'
|
|
51131
|
+
| 'aqara_lock'
|
|
50891
51132
|
)
|
|
50892
51133
|
| 'keynest_key'
|
|
50893
51134
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -50936,6 +51177,7 @@ export type Routes = {
|
|
|
50936
51177
|
| 'keyincode_lock'
|
|
50937
51178
|
| 'omnitec_lock'
|
|
50938
51179
|
| 'kisi_lock'
|
|
51180
|
+
| 'aqara_lock'
|
|
50939
51181
|
)
|
|
50940
51182
|
| 'keynest_key'
|
|
50941
51183
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -50984,6 +51226,7 @@ export type Routes = {
|
|
|
50984
51226
|
| 'tedee'
|
|
50985
51227
|
| 'keyincode'
|
|
50986
51228
|
| 'akiles'
|
|
51229
|
+
| 'aqara'
|
|
50987
51230
|
| 'ecobee'
|
|
50988
51231
|
| 'honeywell_resideo'
|
|
50989
51232
|
| 'keynest'
|
|
@@ -51117,6 +51360,7 @@ export type Routes = {
|
|
|
51117
51360
|
| 'keyincode_lock'
|
|
51118
51361
|
| 'omnitec_lock'
|
|
51119
51362
|
| 'kisi_lock'
|
|
51363
|
+
| 'aqara_lock'
|
|
51120
51364
|
)
|
|
51121
51365
|
| 'keynest_key'
|
|
51122
51366
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -51935,6 +52179,27 @@ export type Routes = {
|
|
|
51935
52179
|
description?: ((string | null) | undefined) | undefined
|
|
51936
52180
|
}
|
|
51937
52181
|
| undefined
|
|
52182
|
+
/** Metadata for an Aqara device. */
|
|
52183
|
+
aqara_metadata?:
|
|
52184
|
+
| {
|
|
52185
|
+
/** Device ID (did) for an Aqara device. */
|
|
52186
|
+
did?: (string | undefined) | undefined
|
|
52187
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
52188
|
+
parent_did?: (string | undefined) | undefined
|
|
52189
|
+
/** Device name for an Aqara device. */
|
|
52190
|
+
device_name?: (string | undefined) | undefined
|
|
52191
|
+
/** Model identifier for an Aqara device. */
|
|
52192
|
+
model?: (string | undefined) | undefined
|
|
52193
|
+
/** Model type for an Aqara device. */
|
|
52194
|
+
model_type?: (number | undefined) | undefined
|
|
52195
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
52196
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
52197
|
+
/** Position (room) ID for an Aqara device. */
|
|
52198
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
52199
|
+
/** Firmware version for an Aqara device. */
|
|
52200
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
52201
|
+
}
|
|
52202
|
+
| undefined
|
|
51938
52203
|
}) &
|
|
51939
52204
|
({
|
|
51940
52205
|
/** */
|
|
@@ -53025,6 +53290,7 @@ export type Routes = {
|
|
|
53025
53290
|
| 'acuity_scheduling'
|
|
53026
53291
|
| 'omnitec'
|
|
53027
53292
|
| 'kisi'
|
|
53293
|
+
| 'aqara'
|
|
53028
53294
|
/** Display name for the device provider. */
|
|
53029
53295
|
display_name: string
|
|
53030
53296
|
/** Image URL for the device provider. */
|
|
@@ -54537,6 +54803,7 @@ export type Routes = {
|
|
|
54537
54803
|
| 'keyincode_lock'
|
|
54538
54804
|
| 'omnitec_lock'
|
|
54539
54805
|
| 'kisi_lock'
|
|
54806
|
+
| 'aqara_lock'
|
|
54540
54807
|
)
|
|
54541
54808
|
| 'keynest_key'
|
|
54542
54809
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -55128,6 +55395,7 @@ export type Routes = {
|
|
|
55128
55395
|
| 'keyincode_lock'
|
|
55129
55396
|
| 'omnitec_lock'
|
|
55130
55397
|
| 'kisi_lock'
|
|
55398
|
+
| 'aqara_lock'
|
|
55131
55399
|
)
|
|
55132
55400
|
| 'keynest_key'
|
|
55133
55401
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -55176,6 +55444,7 @@ export type Routes = {
|
|
|
55176
55444
|
| 'keyincode_lock'
|
|
55177
55445
|
| 'omnitec_lock'
|
|
55178
55446
|
| 'kisi_lock'
|
|
55447
|
+
| 'aqara_lock'
|
|
55179
55448
|
)
|
|
55180
55449
|
| 'keynest_key'
|
|
55181
55450
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -55224,6 +55493,7 @@ export type Routes = {
|
|
|
55224
55493
|
| 'tedee'
|
|
55225
55494
|
| 'keyincode'
|
|
55226
55495
|
| 'akiles'
|
|
55496
|
+
| 'aqara'
|
|
55227
55497
|
| 'ecobee'
|
|
55228
55498
|
| 'honeywell_resideo'
|
|
55229
55499
|
| 'keynest'
|
|
@@ -55357,6 +55627,7 @@ export type Routes = {
|
|
|
55357
55627
|
| 'keyincode_lock'
|
|
55358
55628
|
| 'omnitec_lock'
|
|
55359
55629
|
| 'kisi_lock'
|
|
55630
|
+
| 'aqara_lock'
|
|
55360
55631
|
)
|
|
55361
55632
|
| 'keynest_key'
|
|
55362
55633
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -65790,6 +66061,7 @@ export type Routes = {
|
|
|
65790
66061
|
| 'keyincode_lock'
|
|
65791
66062
|
| 'omnitec_lock'
|
|
65792
66063
|
| 'kisi_lock'
|
|
66064
|
+
| 'aqara_lock'
|
|
65793
66065
|
)
|
|
65794
66066
|
| 'keynest_key'
|
|
65795
66067
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -66608,6 +66880,27 @@ export type Routes = {
|
|
|
66608
66880
|
description?: ((string | null) | undefined) | undefined
|
|
66609
66881
|
}
|
|
66610
66882
|
| undefined
|
|
66883
|
+
/** Metadata for an Aqara device. */
|
|
66884
|
+
aqara_metadata?:
|
|
66885
|
+
| {
|
|
66886
|
+
/** Device ID (did) for an Aqara device. */
|
|
66887
|
+
did?: (string | undefined) | undefined
|
|
66888
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
66889
|
+
parent_did?: (string | undefined) | undefined
|
|
66890
|
+
/** Device name for an Aqara device. */
|
|
66891
|
+
device_name?: (string | undefined) | undefined
|
|
66892
|
+
/** Model identifier for an Aqara device. */
|
|
66893
|
+
model?: (string | undefined) | undefined
|
|
66894
|
+
/** Model type for an Aqara device. */
|
|
66895
|
+
model_type?: (number | undefined) | undefined
|
|
66896
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
66897
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
66898
|
+
/** Position (room) ID for an Aqara device. */
|
|
66899
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
66900
|
+
/** Firmware version for an Aqara device. */
|
|
66901
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
66902
|
+
}
|
|
66903
|
+
| undefined
|
|
66611
66904
|
}) &
|
|
66612
66905
|
({
|
|
66613
66906
|
/** */
|
|
@@ -67635,6 +67928,7 @@ export type Routes = {
|
|
|
67635
67928
|
| 'keyincode_lock'
|
|
67636
67929
|
| 'omnitec_lock'
|
|
67637
67930
|
| 'kisi_lock'
|
|
67931
|
+
| 'aqara_lock'
|
|
67638
67932
|
)
|
|
67639
67933
|
| 'keynest_key'
|
|
67640
67934
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -68453,6 +68747,27 @@ export type Routes = {
|
|
|
68453
68747
|
description?: ((string | null) | undefined) | undefined
|
|
68454
68748
|
}
|
|
68455
68749
|
| undefined
|
|
68750
|
+
/** Metadata for an Aqara device. */
|
|
68751
|
+
aqara_metadata?:
|
|
68752
|
+
| {
|
|
68753
|
+
/** Device ID (did) for an Aqara device. */
|
|
68754
|
+
did?: (string | undefined) | undefined
|
|
68755
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
68756
|
+
parent_did?: (string | undefined) | undefined
|
|
68757
|
+
/** Device name for an Aqara device. */
|
|
68758
|
+
device_name?: (string | undefined) | undefined
|
|
68759
|
+
/** Model identifier for an Aqara device. */
|
|
68760
|
+
model?: (string | undefined) | undefined
|
|
68761
|
+
/** Model type for an Aqara device. */
|
|
68762
|
+
model_type?: (number | undefined) | undefined
|
|
68763
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
68764
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
68765
|
+
/** Position (room) ID for an Aqara device. */
|
|
68766
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
68767
|
+
/** Firmware version for an Aqara device. */
|
|
68768
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
68769
|
+
}
|
|
68770
|
+
| undefined
|
|
68456
68771
|
}) &
|
|
68457
68772
|
({
|
|
68458
68773
|
/** */
|
|
@@ -69493,6 +69808,7 @@ export type Routes = {
|
|
|
69493
69808
|
| 'keyincode_lock'
|
|
69494
69809
|
| 'omnitec_lock'
|
|
69495
69810
|
| 'kisi_lock'
|
|
69811
|
+
| 'aqara_lock'
|
|
69496
69812
|
)
|
|
69497
69813
|
| undefined
|
|
69498
69814
|
/** Device types of the locks that you want to list. */
|
|
@@ -69527,6 +69843,7 @@ export type Routes = {
|
|
|
69527
69843
|
| 'keyincode_lock'
|
|
69528
69844
|
| 'omnitec_lock'
|
|
69529
69845
|
| 'kisi_lock'
|
|
69846
|
+
| 'aqara_lock'
|
|
69530
69847
|
)[]
|
|
69531
69848
|
| undefined
|
|
69532
69849
|
/** Manufacturer of the locks that you want to list. */
|
|
@@ -69558,6 +69875,7 @@ export type Routes = {
|
|
|
69558
69875
|
| 'tedee'
|
|
69559
69876
|
| 'keyincode'
|
|
69560
69877
|
| 'akiles'
|
|
69878
|
+
| 'aqara'
|
|
69561
69879
|
| 'korelock'
|
|
69562
69880
|
| 'smartthings'
|
|
69563
69881
|
| 'ultraloq'
|
|
@@ -69676,6 +69994,7 @@ export type Routes = {
|
|
|
69676
69994
|
| 'keyincode_lock'
|
|
69677
69995
|
| 'omnitec_lock'
|
|
69678
69996
|
| 'kisi_lock'
|
|
69997
|
+
| 'aqara_lock'
|
|
69679
69998
|
)
|
|
69680
69999
|
| 'keynest_key'
|
|
69681
70000
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -70494,6 +70813,27 @@ export type Routes = {
|
|
|
70494
70813
|
description?: ((string | null) | undefined) | undefined
|
|
70495
70814
|
}
|
|
70496
70815
|
| undefined
|
|
70816
|
+
/** Metadata for an Aqara device. */
|
|
70817
|
+
aqara_metadata?:
|
|
70818
|
+
| {
|
|
70819
|
+
/** Device ID (did) for an Aqara device. */
|
|
70820
|
+
did?: (string | undefined) | undefined
|
|
70821
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
70822
|
+
parent_did?: (string | undefined) | undefined
|
|
70823
|
+
/** Device name for an Aqara device. */
|
|
70824
|
+
device_name?: (string | undefined) | undefined
|
|
70825
|
+
/** Model identifier for an Aqara device. */
|
|
70826
|
+
model?: (string | undefined) | undefined
|
|
70827
|
+
/** Model type for an Aqara device. */
|
|
70828
|
+
model_type?: (number | undefined) | undefined
|
|
70829
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
70830
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
70831
|
+
/** Position (room) ID for an Aqara device. */
|
|
70832
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
70833
|
+
/** Firmware version for an Aqara device. */
|
|
70834
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
70835
|
+
}
|
|
70836
|
+
| undefined
|
|
70497
70837
|
}) &
|
|
70498
70838
|
({
|
|
70499
70839
|
/** */
|
|
@@ -71520,6 +71860,7 @@ export type Routes = {
|
|
|
71520
71860
|
| 'keyincode_lock'
|
|
71521
71861
|
| 'omnitec_lock'
|
|
71522
71862
|
| 'kisi_lock'
|
|
71863
|
+
| 'aqara_lock'
|
|
71523
71864
|
)
|
|
71524
71865
|
| 'keynest_key'
|
|
71525
71866
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -72338,6 +72679,27 @@ export type Routes = {
|
|
|
72338
72679
|
description?: ((string | null) | undefined) | undefined
|
|
72339
72680
|
}
|
|
72340
72681
|
| undefined
|
|
72682
|
+
/** Metadata for an Aqara device. */
|
|
72683
|
+
aqara_metadata?:
|
|
72684
|
+
| {
|
|
72685
|
+
/** Device ID (did) for an Aqara device. */
|
|
72686
|
+
did?: (string | undefined) | undefined
|
|
72687
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
72688
|
+
parent_did?: (string | undefined) | undefined
|
|
72689
|
+
/** Device name for an Aqara device. */
|
|
72690
|
+
device_name?: (string | undefined) | undefined
|
|
72691
|
+
/** Model identifier for an Aqara device. */
|
|
72692
|
+
model?: (string | undefined) | undefined
|
|
72693
|
+
/** Model type for an Aqara device. */
|
|
72694
|
+
model_type?: (number | undefined) | undefined
|
|
72695
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
72696
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
72697
|
+
/** Position (room) ID for an Aqara device. */
|
|
72698
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
72699
|
+
/** Firmware version for an Aqara device. */
|
|
72700
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
72701
|
+
}
|
|
72702
|
+
| undefined
|
|
72341
72703
|
}) &
|
|
72342
72704
|
({
|
|
72343
72705
|
/** */
|
|
@@ -81605,6 +81967,7 @@ export type Routes = {
|
|
|
81605
81967
|
| 'keyincode_lock'
|
|
81606
81968
|
| 'omnitec_lock'
|
|
81607
81969
|
| 'kisi_lock'
|
|
81970
|
+
| 'aqara_lock'
|
|
81608
81971
|
)
|
|
81609
81972
|
| 'keynest_key'
|
|
81610
81973
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -82423,6 +82786,27 @@ export type Routes = {
|
|
|
82423
82786
|
description?: ((string | null) | undefined) | undefined
|
|
82424
82787
|
}
|
|
82425
82788
|
| undefined
|
|
82789
|
+
/** Metadata for an Aqara device. */
|
|
82790
|
+
aqara_metadata?:
|
|
82791
|
+
| {
|
|
82792
|
+
/** Device ID (did) for an Aqara device. */
|
|
82793
|
+
did?: (string | undefined) | undefined
|
|
82794
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
82795
|
+
parent_did?: (string | undefined) | undefined
|
|
82796
|
+
/** Device name for an Aqara device. */
|
|
82797
|
+
device_name?: (string | undefined) | undefined
|
|
82798
|
+
/** Model identifier for an Aqara device. */
|
|
82799
|
+
model?: (string | undefined) | undefined
|
|
82800
|
+
/** Model type for an Aqara device. */
|
|
82801
|
+
model_type?: (number | undefined) | undefined
|
|
82802
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
82803
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
82804
|
+
/** Position (room) ID for an Aqara device. */
|
|
82805
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
82806
|
+
/** Firmware version for an Aqara device. */
|
|
82807
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
82808
|
+
}
|
|
82809
|
+
| undefined
|
|
82426
82810
|
}) &
|
|
82427
82811
|
({
|
|
82428
82812
|
/** */
|
|
@@ -83449,6 +83833,7 @@ export type Routes = {
|
|
|
83449
83833
|
| 'keyincode_lock'
|
|
83450
83834
|
| 'omnitec_lock'
|
|
83451
83835
|
| 'kisi_lock'
|
|
83836
|
+
| 'aqara_lock'
|
|
83452
83837
|
)
|
|
83453
83838
|
| 'keynest_key'
|
|
83454
83839
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -84267,6 +84652,27 @@ export type Routes = {
|
|
|
84267
84652
|
description?: ((string | null) | undefined) | undefined
|
|
84268
84653
|
}
|
|
84269
84654
|
| undefined
|
|
84655
|
+
/** Metadata for an Aqara device. */
|
|
84656
|
+
aqara_metadata?:
|
|
84657
|
+
| {
|
|
84658
|
+
/** Device ID (did) for an Aqara device. */
|
|
84659
|
+
did?: (string | undefined) | undefined
|
|
84660
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
84661
|
+
parent_did?: (string | undefined) | undefined
|
|
84662
|
+
/** Device name for an Aqara device. */
|
|
84663
|
+
device_name?: (string | undefined) | undefined
|
|
84664
|
+
/** Model identifier for an Aqara device. */
|
|
84665
|
+
model?: (string | undefined) | undefined
|
|
84666
|
+
/** Model type for an Aqara device. */
|
|
84667
|
+
model_type?: (number | undefined) | undefined
|
|
84668
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
84669
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
84670
|
+
/** Position (room) ID for an Aqara device. */
|
|
84671
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
84672
|
+
/** Firmware version for an Aqara device. */
|
|
84673
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
84674
|
+
}
|
|
84675
|
+
| undefined
|
|
84270
84676
|
}) &
|
|
84271
84677
|
({
|
|
84272
84678
|
/** */
|
|
@@ -102567,6 +102973,29 @@ export type Routes = {
|
|
|
102567
102973
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
102568
102974
|
}
|
|
102569
102975
|
| undefined
|
|
102976
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
102977
|
+
akiles_metadata?:
|
|
102978
|
+
| {
|
|
102979
|
+
/** ID of the Akiles gadget. */
|
|
102980
|
+
gadget_id?: (string | undefined) | undefined
|
|
102981
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
102982
|
+
site_id?: (string | undefined) | undefined
|
|
102983
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
102984
|
+
site_name?: (string | undefined) | undefined
|
|
102985
|
+
/** Actions the gadget exposes (for example, open). */
|
|
102986
|
+
actions?:
|
|
102987
|
+
| (
|
|
102988
|
+
| {
|
|
102989
|
+
/** ID of the gadget action. */
|
|
102990
|
+
id?: (string | undefined) | undefined
|
|
102991
|
+
/** Name of the gadget action. */
|
|
102992
|
+
name?: (string | undefined) | undefined
|
|
102993
|
+
}[]
|
|
102994
|
+
| undefined
|
|
102995
|
+
)
|
|
102996
|
+
| undefined
|
|
102997
|
+
}
|
|
102998
|
+
| undefined
|
|
102570
102999
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
102571
103000
|
is_locked?: boolean | undefined
|
|
102572
103001
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -103033,6 +103462,7 @@ export type Routes = {
|
|
|
103033
103462
|
| 'keyincode_lock'
|
|
103034
103463
|
| 'omnitec_lock'
|
|
103035
103464
|
| 'kisi_lock'
|
|
103465
|
+
| 'aqara_lock'
|
|
103036
103466
|
)
|
|
103037
103467
|
| 'keynest_key'
|
|
103038
103468
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -103897,6 +104327,29 @@ export type Routes = {
|
|
|
103897
104327
|
description?: ((string | null) | undefined) | undefined
|
|
103898
104328
|
}
|
|
103899
104329
|
| undefined
|
|
104330
|
+
/** Metadata for an Aqara device. */
|
|
104331
|
+
aqara_metadata?:
|
|
104332
|
+
| {
|
|
104333
|
+
/** Device ID (did) for an Aqara device. */
|
|
104334
|
+
did?: (string | undefined) | undefined
|
|
104335
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
104336
|
+
parent_did?: (string | undefined) | undefined
|
|
104337
|
+
/** Device name for an Aqara device. */
|
|
104338
|
+
device_name?: (string | undefined) | undefined
|
|
104339
|
+
/** Model identifier for an Aqara device. */
|
|
104340
|
+
model?: (string | undefined) | undefined
|
|
104341
|
+
/** Model type for an Aqara device. */
|
|
104342
|
+
model_type?: (number | undefined) | undefined
|
|
104343
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
104344
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
104345
|
+
/** Position (room) ID for an Aqara device. */
|
|
104346
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
104347
|
+
/** Firmware version for an Aqara device. */
|
|
104348
|
+
firmware_version?:
|
|
104349
|
+
| ((string | null) | undefined)
|
|
104350
|
+
| undefined
|
|
104351
|
+
}
|
|
104352
|
+
| undefined
|
|
103900
104353
|
}) &
|
|
103901
104354
|
({
|
|
103902
104355
|
/** */
|
|
@@ -105154,6 +105607,29 @@ export type Routes = {
|
|
|
105154
105607
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
105155
105608
|
}
|
|
105156
105609
|
| undefined
|
|
105610
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
105611
|
+
akiles_metadata?:
|
|
105612
|
+
| {
|
|
105613
|
+
/** ID of the Akiles gadget. */
|
|
105614
|
+
gadget_id?: (string | undefined) | undefined
|
|
105615
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
105616
|
+
site_id?: (string | undefined) | undefined
|
|
105617
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
105618
|
+
site_name?: (string | undefined) | undefined
|
|
105619
|
+
/** Actions the gadget exposes (for example, open). */
|
|
105620
|
+
actions?:
|
|
105621
|
+
| (
|
|
105622
|
+
| {
|
|
105623
|
+
/** ID of the gadget action. */
|
|
105624
|
+
id?: (string | undefined) | undefined
|
|
105625
|
+
/** Name of the gadget action. */
|
|
105626
|
+
name?: (string | undefined) | undefined
|
|
105627
|
+
}[]
|
|
105628
|
+
| undefined
|
|
105629
|
+
)
|
|
105630
|
+
| undefined
|
|
105631
|
+
}
|
|
105632
|
+
| undefined
|
|
105157
105633
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
105158
105634
|
is_locked?: boolean | undefined
|
|
105159
105635
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -105421,6 +105897,7 @@ export type Routes = {
|
|
|
105421
105897
|
| 'assa_abloy_vostio_credential_service'
|
|
105422
105898
|
| 'hotek_site'
|
|
105423
105899
|
| 'kisi_organization'
|
|
105900
|
+
| 'akiles_organization'
|
|
105424
105901
|
)
|
|
105425
105902
|
| undefined
|
|
105426
105903
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -105458,6 +105935,7 @@ export type Routes = {
|
|
|
105458
105935
|
| 'assa_abloy_vostio_credential_service'
|
|
105459
105936
|
| 'hotek_site'
|
|
105460
105937
|
| 'kisi_organization'
|
|
105938
|
+
| 'akiles_organization'
|
|
105461
105939
|
)
|
|
105462
105940
|
| undefined
|
|
105463
105941
|
/**
|
|
@@ -112235,6 +112713,7 @@ export type Routes = {
|
|
|
112235
112713
|
| 'keyincode_lock'
|
|
112236
112714
|
| 'omnitec_lock'
|
|
112237
112715
|
| 'kisi_lock'
|
|
112716
|
+
| 'aqara_lock'
|
|
112238
112717
|
)
|
|
112239
112718
|
| 'keynest_key'
|
|
112240
112719
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -113053,6 +113532,27 @@ export type Routes = {
|
|
|
113053
113532
|
description?: ((string | null) | undefined) | undefined
|
|
113054
113533
|
}
|
|
113055
113534
|
| undefined
|
|
113535
|
+
/** Metadata for an Aqara device. */
|
|
113536
|
+
aqara_metadata?:
|
|
113537
|
+
| {
|
|
113538
|
+
/** Device ID (did) for an Aqara device. */
|
|
113539
|
+
did?: (string | undefined) | undefined
|
|
113540
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
113541
|
+
parent_did?: (string | undefined) | undefined
|
|
113542
|
+
/** Device name for an Aqara device. */
|
|
113543
|
+
device_name?: (string | undefined) | undefined
|
|
113544
|
+
/** Model identifier for an Aqara device. */
|
|
113545
|
+
model?: (string | undefined) | undefined
|
|
113546
|
+
/** Model type for an Aqara device. */
|
|
113547
|
+
model_type?: (number | undefined) | undefined
|
|
113548
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
113549
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
113550
|
+
/** Position (room) ID for an Aqara device. */
|
|
113551
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
113552
|
+
/** Firmware version for an Aqara device. */
|
|
113553
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
113554
|
+
}
|
|
113555
|
+
| undefined
|
|
113056
113556
|
}) &
|
|
113057
113557
|
({
|
|
113058
113558
|
/** */
|
|
@@ -118289,6 +118789,7 @@ export type Routes = {
|
|
|
118289
118789
|
| 'keyincode_lock'
|
|
118290
118790
|
| 'omnitec_lock'
|
|
118291
118791
|
| 'kisi_lock'
|
|
118792
|
+
| 'aqara_lock'
|
|
118292
118793
|
)
|
|
118293
118794
|
| 'keynest_key'
|
|
118294
118795
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -119107,6 +119608,27 @@ export type Routes = {
|
|
|
119107
119608
|
description?: ((string | null) | undefined) | undefined
|
|
119108
119609
|
}
|
|
119109
119610
|
| undefined
|
|
119611
|
+
/** Metadata for an Aqara device. */
|
|
119612
|
+
aqara_metadata?:
|
|
119613
|
+
| {
|
|
119614
|
+
/** Device ID (did) for an Aqara device. */
|
|
119615
|
+
did?: (string | undefined) | undefined
|
|
119616
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
119617
|
+
parent_did?: (string | undefined) | undefined
|
|
119618
|
+
/** Device name for an Aqara device. */
|
|
119619
|
+
device_name?: (string | undefined) | undefined
|
|
119620
|
+
/** Model identifier for an Aqara device. */
|
|
119621
|
+
model?: (string | undefined) | undefined
|
|
119622
|
+
/** Model type for an Aqara device. */
|
|
119623
|
+
model_type?: (number | undefined) | undefined
|
|
119624
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
119625
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
119626
|
+
/** Position (room) ID for an Aqara device. */
|
|
119627
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
119628
|
+
/** Firmware version for an Aqara device. */
|
|
119629
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
119630
|
+
}
|
|
119631
|
+
| undefined
|
|
119110
119632
|
}) &
|
|
119111
119633
|
({
|
|
119112
119634
|
/** */
|
|
@@ -120133,6 +120655,7 @@ export type Routes = {
|
|
|
120133
120655
|
| 'keyincode_lock'
|
|
120134
120656
|
| 'omnitec_lock'
|
|
120135
120657
|
| 'kisi_lock'
|
|
120658
|
+
| 'aqara_lock'
|
|
120136
120659
|
)
|
|
120137
120660
|
| 'keynest_key'
|
|
120138
120661
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -120951,6 +121474,27 @@ export type Routes = {
|
|
|
120951
121474
|
description?: ((string | null) | undefined) | undefined
|
|
120952
121475
|
}
|
|
120953
121476
|
| undefined
|
|
121477
|
+
/** Metadata for an Aqara device. */
|
|
121478
|
+
aqara_metadata?:
|
|
121479
|
+
| {
|
|
121480
|
+
/** Device ID (did) for an Aqara device. */
|
|
121481
|
+
did?: (string | undefined) | undefined
|
|
121482
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
121483
|
+
parent_did?: (string | undefined) | undefined
|
|
121484
|
+
/** Device name for an Aqara device. */
|
|
121485
|
+
device_name?: (string | undefined) | undefined
|
|
121486
|
+
/** Model identifier for an Aqara device. */
|
|
121487
|
+
model?: (string | undefined) | undefined
|
|
121488
|
+
/** Model type for an Aqara device. */
|
|
121489
|
+
model_type?: (number | undefined) | undefined
|
|
121490
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
121491
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
121492
|
+
/** Position (room) ID for an Aqara device. */
|
|
121493
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
121494
|
+
/** Firmware version for an Aqara device. */
|
|
121495
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
121496
|
+
}
|
|
121497
|
+
| undefined
|
|
120954
121498
|
}) &
|
|
120955
121499
|
({
|
|
120956
121500
|
/** */
|
|
@@ -131159,6 +131703,7 @@ export type Routes = {
|
|
|
131159
131703
|
| 'keyincode_lock'
|
|
131160
131704
|
| 'omnitec_lock'
|
|
131161
131705
|
| 'kisi_lock'
|
|
131706
|
+
| 'aqara_lock'
|
|
131162
131707
|
)
|
|
131163
131708
|
| 'keynest_key'
|
|
131164
131709
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -131977,6 +132522,27 @@ export type Routes = {
|
|
|
131977
132522
|
description?: ((string | null) | undefined) | undefined
|
|
131978
132523
|
}
|
|
131979
132524
|
| undefined
|
|
132525
|
+
/** Metadata for an Aqara device. */
|
|
132526
|
+
aqara_metadata?:
|
|
132527
|
+
| {
|
|
132528
|
+
/** Device ID (did) for an Aqara device. */
|
|
132529
|
+
did?: (string | undefined) | undefined
|
|
132530
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
132531
|
+
parent_did?: (string | undefined) | undefined
|
|
132532
|
+
/** Device name for an Aqara device. */
|
|
132533
|
+
device_name?: (string | undefined) | undefined
|
|
132534
|
+
/** Model identifier for an Aqara device. */
|
|
132535
|
+
model?: (string | undefined) | undefined
|
|
132536
|
+
/** Model type for an Aqara device. */
|
|
132537
|
+
model_type?: (number | undefined) | undefined
|
|
132538
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
132539
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
132540
|
+
/** Position (room) ID for an Aqara device. */
|
|
132541
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
132542
|
+
/** Firmware version for an Aqara device. */
|
|
132543
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
132544
|
+
}
|
|
132545
|
+
| undefined
|
|
131980
132546
|
}) &
|
|
131981
132547
|
({
|
|
131982
132548
|
/** */
|
|
@@ -133005,6 +133571,7 @@ export type Routes = {
|
|
|
133005
133571
|
| 'keyincode_lock'
|
|
133006
133572
|
| 'omnitec_lock'
|
|
133007
133573
|
| 'kisi_lock'
|
|
133574
|
+
| 'aqara_lock'
|
|
133008
133575
|
)
|
|
133009
133576
|
| 'keynest_key'
|
|
133010
133577
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -133823,6 +134390,27 @@ export type Routes = {
|
|
|
133823
134390
|
description?: ((string | null) | undefined) | undefined
|
|
133824
134391
|
}
|
|
133825
134392
|
| undefined
|
|
134393
|
+
/** Metadata for an Aqara device. */
|
|
134394
|
+
aqara_metadata?:
|
|
134395
|
+
| {
|
|
134396
|
+
/** Device ID (did) for an Aqara device. */
|
|
134397
|
+
did?: (string | undefined) | undefined
|
|
134398
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
134399
|
+
parent_did?: (string | undefined) | undefined
|
|
134400
|
+
/** Device name for an Aqara device. */
|
|
134401
|
+
device_name?: (string | undefined) | undefined
|
|
134402
|
+
/** Model identifier for an Aqara device. */
|
|
134403
|
+
model?: (string | undefined) | undefined
|
|
134404
|
+
/** Model type for an Aqara device. */
|
|
134405
|
+
model_type?: (number | undefined) | undefined
|
|
134406
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
134407
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
134408
|
+
/** Position (room) ID for an Aqara device. */
|
|
134409
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
134410
|
+
/** Firmware version for an Aqara device. */
|
|
134411
|
+
firmware_version?: ((string | null) | undefined) | undefined
|
|
134412
|
+
}
|
|
134413
|
+
| undefined
|
|
133826
134414
|
}) &
|
|
133827
134415
|
({
|
|
133828
134416
|
/** */
|
|
@@ -135055,6 +135643,29 @@ export type Routes = {
|
|
|
135055
135643
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
135056
135644
|
}
|
|
135057
135645
|
| undefined
|
|
135646
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
135647
|
+
akiles_metadata?:
|
|
135648
|
+
| {
|
|
135649
|
+
/** ID of the Akiles gadget. */
|
|
135650
|
+
gadget_id?: (string | undefined) | undefined
|
|
135651
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
135652
|
+
site_id?: (string | undefined) | undefined
|
|
135653
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
135654
|
+
site_name?: (string | undefined) | undefined
|
|
135655
|
+
/** Actions the gadget exposes (for example, open). */
|
|
135656
|
+
actions?:
|
|
135657
|
+
| (
|
|
135658
|
+
| {
|
|
135659
|
+
/** ID of the gadget action. */
|
|
135660
|
+
id?: (string | undefined) | undefined
|
|
135661
|
+
/** Name of the gadget action. */
|
|
135662
|
+
name?: (string | undefined) | undefined
|
|
135663
|
+
}[]
|
|
135664
|
+
| undefined
|
|
135665
|
+
)
|
|
135666
|
+
| undefined
|
|
135667
|
+
}
|
|
135668
|
+
| undefined
|
|
135058
135669
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
135059
135670
|
is_locked?: boolean | undefined
|
|
135060
135671
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -135110,6 +135721,7 @@ export type Routes = {
|
|
|
135110
135721
|
| 'assa_abloy_vostio_credential_service'
|
|
135111
135722
|
| 'hotek_site'
|
|
135112
135723
|
| 'kisi_organization'
|
|
135724
|
+
| 'akiles_organization'
|
|
135113
135725
|
)
|
|
135114
135726
|
| undefined
|
|
135115
135727
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -135147,6 +135759,7 @@ export type Routes = {
|
|
|
135147
135759
|
| 'assa_abloy_vostio_credential_service'
|
|
135148
135760
|
| 'hotek_site'
|
|
135149
135761
|
| 'kisi_organization'
|
|
135762
|
+
| 'akiles_organization'
|
|
135150
135763
|
)
|
|
135151
135764
|
| undefined
|
|
135152
135765
|
/**
|
|
@@ -136315,6 +136928,7 @@ export type Routes = {
|
|
|
136315
136928
|
| 'keyincode_lock'
|
|
136316
136929
|
| 'omnitec_lock'
|
|
136317
136930
|
| 'kisi_lock'
|
|
136931
|
+
| 'aqara_lock'
|
|
136318
136932
|
)
|
|
136319
136933
|
| 'keynest_key'
|
|
136320
136934
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -137179,6 +137793,29 @@ export type Routes = {
|
|
|
137179
137793
|
description?: ((string | null) | undefined) | undefined
|
|
137180
137794
|
}
|
|
137181
137795
|
| undefined
|
|
137796
|
+
/** Metadata for an Aqara device. */
|
|
137797
|
+
aqara_metadata?:
|
|
137798
|
+
| {
|
|
137799
|
+
/** Device ID (did) for an Aqara device. */
|
|
137800
|
+
did?: (string | undefined) | undefined
|
|
137801
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
137802
|
+
parent_did?: (string | undefined) | undefined
|
|
137803
|
+
/** Device name for an Aqara device. */
|
|
137804
|
+
device_name?: (string | undefined) | undefined
|
|
137805
|
+
/** Model identifier for an Aqara device. */
|
|
137806
|
+
model?: (string | undefined) | undefined
|
|
137807
|
+
/** Model type for an Aqara device. */
|
|
137808
|
+
model_type?: (number | undefined) | undefined
|
|
137809
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
137810
|
+
time_zone?: ((string | null) | undefined) | undefined
|
|
137811
|
+
/** Position (room) ID for an Aqara device. */
|
|
137812
|
+
position_id?: ((string | null) | undefined) | undefined
|
|
137813
|
+
/** Firmware version for an Aqara device. */
|
|
137814
|
+
firmware_version?:
|
|
137815
|
+
| ((string | null) | undefined)
|
|
137816
|
+
| undefined
|
|
137817
|
+
}
|
|
137818
|
+
| undefined
|
|
137182
137819
|
}) &
|
|
137183
137820
|
({
|
|
137184
137821
|
/** */
|
|
@@ -138436,6 +139073,29 @@ export type Routes = {
|
|
|
138436
139073
|
entry_relays_total_count?: (number | undefined) | undefined
|
|
138437
139074
|
}
|
|
138438
139075
|
| undefined
|
|
139076
|
+
/** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
|
|
139077
|
+
akiles_metadata?:
|
|
139078
|
+
| {
|
|
139079
|
+
/** ID of the Akiles gadget. */
|
|
139080
|
+
gadget_id?: (string | undefined) | undefined
|
|
139081
|
+
/** ID of the Akiles site the gadget belongs to. */
|
|
139082
|
+
site_id?: (string | undefined) | undefined
|
|
139083
|
+
/** Name of the Akiles site the gadget belongs to. */
|
|
139084
|
+
site_name?: (string | undefined) | undefined
|
|
139085
|
+
/** Actions the gadget exposes (for example, open). */
|
|
139086
|
+
actions?:
|
|
139087
|
+
| (
|
|
139088
|
+
| {
|
|
139089
|
+
/** ID of the gadget action. */
|
|
139090
|
+
id?: (string | undefined) | undefined
|
|
139091
|
+
/** Name of the gadget action. */
|
|
139092
|
+
name?: (string | undefined) | undefined
|
|
139093
|
+
}[]
|
|
139094
|
+
| undefined
|
|
139095
|
+
)
|
|
139096
|
+
| undefined
|
|
139097
|
+
}
|
|
139098
|
+
| undefined
|
|
138439
139099
|
/** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
|
|
138440
139100
|
is_locked?: boolean | undefined
|
|
138441
139101
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
@@ -138481,6 +139141,7 @@ export type Routes = {
|
|
|
138481
139141
|
| 'assa_abloy_vostio_credential_service'
|
|
138482
139142
|
| 'hotek_site'
|
|
138483
139143
|
| 'kisi_organization'
|
|
139144
|
+
| 'akiles_organization'
|
|
138484
139145
|
)
|
|
138485
139146
|
| undefined
|
|
138486
139147
|
/** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
|
|
@@ -138518,6 +139179,7 @@ export type Routes = {
|
|
|
138518
139179
|
| 'assa_abloy_vostio_credential_service'
|
|
138519
139180
|
| 'hotek_site'
|
|
138520
139181
|
| 'kisi_organization'
|
|
139182
|
+
| 'akiles_organization'
|
|
138521
139183
|
)
|
|
138522
139184
|
| undefined
|
|
138523
139185
|
/**
|
|
@@ -141820,6 +142482,7 @@ export type Routes = {
|
|
|
141820
142482
|
| 'keyincode_lock'
|
|
141821
142483
|
| 'omnitec_lock'
|
|
141822
142484
|
| 'kisi_lock'
|
|
142485
|
+
| 'aqara_lock'
|
|
141823
142486
|
)
|
|
141824
142487
|
| 'keynest_key'
|
|
141825
142488
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|