@seamapi/types 1.272.0 → 1.274.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 +210 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +394 -19
- package/lib/seam/connect/models/acs/acs-access-group.js +23 -8
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -19
- package/lib/seam/connect/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/models/devices/device-metadata.js +11 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +54 -0
- package/lib/seam/connect/models/devices/phone.d.ts +38 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +38 -0
- package/lib/seam/connect/openapi.d.ts +70 -0
- package/lib/seam/connect/openapi.js +179 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +213 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +31 -8
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -1
- package/src/lib/seam/connect/openapi.ts +210 -31
- package/src/lib/seam/connect/route-types.ts +241 -0
|
@@ -3712,7 +3712,9 @@ export interface Routes {
|
|
|
3712
3712
|
queryParams: {}
|
|
3713
3713
|
jsonBody: {}
|
|
3714
3714
|
commonParams: {
|
|
3715
|
+
/** ID of the desired access group. */
|
|
3715
3716
|
acs_access_group_id: string
|
|
3717
|
+
/** ID of the desired user. */
|
|
3716
3718
|
acs_user_id: string
|
|
3717
3719
|
}
|
|
3718
3720
|
formData: {}
|
|
@@ -3724,14 +3726,24 @@ export interface Routes {
|
|
|
3724
3726
|
queryParams: {}
|
|
3725
3727
|
jsonBody: {}
|
|
3726
3728
|
commonParams: {
|
|
3729
|
+
/** ID of the desired access group. */
|
|
3727
3730
|
acs_access_group_id: string
|
|
3728
3731
|
}
|
|
3729
3732
|
formData: {}
|
|
3730
3733
|
jsonResponse: {
|
|
3734
|
+
/**
|
|
3735
|
+
Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.
|
|
3736
|
+
|
|
3737
|
+
The `acs_access_group` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
|
|
3738
|
+
*/
|
|
3731
3739
|
acs_access_group: {
|
|
3740
|
+
/** ID of the access group. */
|
|
3732
3741
|
acs_access_group_id: string
|
|
3742
|
+
/** ID of the access control system that contains the access group. */
|
|
3733
3743
|
acs_system_id: string
|
|
3744
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
3734
3745
|
workspace_id: string
|
|
3746
|
+
/** Name of the access group. */
|
|
3735
3747
|
name: string
|
|
3736
3748
|
/**
|
|
3737
3749
|
* @deprecated use external_type */
|
|
@@ -3744,12 +3756,15 @@ export interface Routes {
|
|
|
3744
3756
|
* @deprecated use external_type_display_name */
|
|
3745
3757
|
access_group_type_display_name: string
|
|
3746
3758
|
display_name: string
|
|
3759
|
+
/** Brand-specific terminology for the access group type. */
|
|
3747
3760
|
external_type:
|
|
3748
3761
|
| 'pti_unit'
|
|
3749
3762
|
| 'pti_access_level'
|
|
3750
3763
|
| 'salto_access_group'
|
|
3751
3764
|
| 'brivo_group'
|
|
3765
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
3752
3766
|
external_type_display_name: string
|
|
3767
|
+
/** Date and time at which the access group was created. */
|
|
3753
3768
|
created_at: string
|
|
3754
3769
|
is_managed: true
|
|
3755
3770
|
}
|
|
@@ -3761,15 +3776,21 @@ export interface Routes {
|
|
|
3761
3776
|
queryParams: {}
|
|
3762
3777
|
jsonBody: {}
|
|
3763
3778
|
commonParams: {
|
|
3779
|
+
/** ID of the access control system for which you want to retrieve all access groups. */
|
|
3764
3780
|
acs_system_id?: string | undefined
|
|
3781
|
+
/** ID of the user for which you want to retrieve all access groups. */
|
|
3765
3782
|
acs_user_id?: string | undefined
|
|
3766
3783
|
}
|
|
3767
3784
|
formData: {}
|
|
3768
3785
|
jsonResponse: {
|
|
3769
3786
|
acs_access_groups: Array<{
|
|
3787
|
+
/** ID of the access group. */
|
|
3770
3788
|
acs_access_group_id: string
|
|
3789
|
+
/** ID of the access control system that contains the access group. */
|
|
3771
3790
|
acs_system_id: string
|
|
3791
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
3772
3792
|
workspace_id: string
|
|
3793
|
+
/** Name of the access group. */
|
|
3773
3794
|
name: string
|
|
3774
3795
|
/**
|
|
3775
3796
|
* @deprecated use external_type */
|
|
@@ -3782,12 +3803,15 @@ export interface Routes {
|
|
|
3782
3803
|
* @deprecated use external_type_display_name */
|
|
3783
3804
|
access_group_type_display_name: string
|
|
3784
3805
|
display_name: string
|
|
3806
|
+
/** Brand-specific terminology for the access group type. */
|
|
3785
3807
|
external_type:
|
|
3786
3808
|
| 'pti_unit'
|
|
3787
3809
|
| 'pti_access_level'
|
|
3788
3810
|
| 'salto_access_group'
|
|
3789
3811
|
| 'brivo_group'
|
|
3812
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
3790
3813
|
external_type_display_name: string
|
|
3814
|
+
/** Date and time at which the access group was created. */
|
|
3791
3815
|
created_at: string
|
|
3792
3816
|
is_managed: true
|
|
3793
3817
|
}>
|
|
@@ -3799,6 +3823,7 @@ export interface Routes {
|
|
|
3799
3823
|
queryParams: {}
|
|
3800
3824
|
jsonBody: {}
|
|
3801
3825
|
commonParams: {
|
|
3826
|
+
/** ID of the access group for which you want to retrieve all accessible entrances. */
|
|
3802
3827
|
acs_access_group_id: string
|
|
3803
3828
|
}
|
|
3804
3829
|
formData: {}
|
|
@@ -3862,6 +3887,7 @@ export interface Routes {
|
|
|
3862
3887
|
queryParams: {}
|
|
3863
3888
|
jsonBody: {}
|
|
3864
3889
|
commonParams: {
|
|
3890
|
+
/** ID of the access group for which you want to retrieve all users. */
|
|
3865
3891
|
acs_access_group_id: string
|
|
3866
3892
|
}
|
|
3867
3893
|
formData: {}
|
|
@@ -3981,7 +4007,9 @@ export interface Routes {
|
|
|
3981
4007
|
queryParams: {}
|
|
3982
4008
|
jsonBody: {}
|
|
3983
4009
|
commonParams: {
|
|
4010
|
+
/** ID of the desired access group. */
|
|
3984
4011
|
acs_access_group_id: string
|
|
4012
|
+
/** ID of the desired user. */
|
|
3985
4013
|
acs_user_id: string
|
|
3986
4014
|
}
|
|
3987
4015
|
formData: {}
|
|
@@ -3993,14 +4021,19 @@ export interface Routes {
|
|
|
3993
4021
|
queryParams: {}
|
|
3994
4022
|
jsonBody: {}
|
|
3995
4023
|
commonParams: {
|
|
4024
|
+
/** ID of the desired unmanaged access group. */
|
|
3996
4025
|
acs_access_group_id: string
|
|
3997
4026
|
}
|
|
3998
4027
|
formData: {}
|
|
3999
4028
|
jsonResponse: {
|
|
4000
4029
|
acs_access_group: {
|
|
4030
|
+
/** ID of the access group. */
|
|
4001
4031
|
acs_access_group_id: string
|
|
4032
|
+
/** ID of the access control system that contains the access group. */
|
|
4002
4033
|
acs_system_id: string
|
|
4034
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
4003
4035
|
workspace_id: string
|
|
4036
|
+
/** Name of the access group. */
|
|
4004
4037
|
name: string
|
|
4005
4038
|
/**
|
|
4006
4039
|
* @deprecated use external_type */
|
|
@@ -4013,12 +4046,15 @@ export interface Routes {
|
|
|
4013
4046
|
* @deprecated use external_type_display_name */
|
|
4014
4047
|
access_group_type_display_name: string
|
|
4015
4048
|
display_name: string
|
|
4049
|
+
/** Brand-specific terminology for the access group type. */
|
|
4016
4050
|
external_type:
|
|
4017
4051
|
| 'pti_unit'
|
|
4018
4052
|
| 'pti_access_level'
|
|
4019
4053
|
| 'salto_access_group'
|
|
4020
4054
|
| 'brivo_group'
|
|
4055
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4021
4056
|
external_type_display_name: string
|
|
4057
|
+
/** Date and time at which the access group was created. */
|
|
4022
4058
|
created_at: string
|
|
4023
4059
|
is_managed: false
|
|
4024
4060
|
}
|
|
@@ -4030,15 +4066,21 @@ export interface Routes {
|
|
|
4030
4066
|
queryParams: {}
|
|
4031
4067
|
jsonBody: {}
|
|
4032
4068
|
commonParams: {
|
|
4069
|
+
/** ID of the access control system for which you want to retrieve all unmanaged access groups. */
|
|
4033
4070
|
acs_system_id?: string | undefined
|
|
4071
|
+
/** ID of the user for which you want to retrieve all unmanaged access groups. */
|
|
4034
4072
|
acs_user_id?: string | undefined
|
|
4035
4073
|
}
|
|
4036
4074
|
formData: {}
|
|
4037
4075
|
jsonResponse: {
|
|
4038
4076
|
acs_access_groups: Array<{
|
|
4077
|
+
/** ID of the access group. */
|
|
4039
4078
|
acs_access_group_id: string
|
|
4079
|
+
/** ID of the access control system that contains the access group. */
|
|
4040
4080
|
acs_system_id: string
|
|
4081
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
4041
4082
|
workspace_id: string
|
|
4083
|
+
/** Name of the access group. */
|
|
4042
4084
|
name: string
|
|
4043
4085
|
/**
|
|
4044
4086
|
* @deprecated use external_type */
|
|
@@ -4051,12 +4093,15 @@ export interface Routes {
|
|
|
4051
4093
|
* @deprecated use external_type_display_name */
|
|
4052
4094
|
access_group_type_display_name: string
|
|
4053
4095
|
display_name: string
|
|
4096
|
+
/** Brand-specific terminology for the access group type. */
|
|
4054
4097
|
external_type:
|
|
4055
4098
|
| 'pti_unit'
|
|
4056
4099
|
| 'pti_access_level'
|
|
4057
4100
|
| 'salto_access_group'
|
|
4058
4101
|
| 'brivo_group'
|
|
4102
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
4059
4103
|
external_type_display_name: string
|
|
4104
|
+
/** Date and time at which the access group was created. */
|
|
4060
4105
|
created_at: string
|
|
4061
4106
|
is_managed: false
|
|
4062
4107
|
}>
|
|
@@ -5724,6 +5769,10 @@ export interface Routes {
|
|
|
5724
5769
|
model_number: string
|
|
5725
5770
|
}
|
|
5726
5771
|
| undefined
|
|
5772
|
+
/**
|
|
5773
|
+
---
|
|
5774
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
5775
|
+
*/
|
|
5727
5776
|
salto_metadata?:
|
|
5728
5777
|
| {
|
|
5729
5778
|
lock_id: string
|
|
@@ -5734,6 +5783,16 @@ export interface Routes {
|
|
|
5734
5783
|
model?: string | undefined
|
|
5735
5784
|
}
|
|
5736
5785
|
| undefined
|
|
5786
|
+
salto_ks_metadata?:
|
|
5787
|
+
| {
|
|
5788
|
+
lock_id: string
|
|
5789
|
+
customer_reference: string
|
|
5790
|
+
lock_type: string
|
|
5791
|
+
battery_level: string
|
|
5792
|
+
locked_state: string
|
|
5793
|
+
model?: string | undefined
|
|
5794
|
+
}
|
|
5795
|
+
| undefined
|
|
5737
5796
|
genie_metadata?:
|
|
5738
5797
|
| {
|
|
5739
5798
|
device_name: string
|
|
@@ -10532,6 +10591,10 @@ export interface Routes {
|
|
|
10532
10591
|
model_number: string
|
|
10533
10592
|
}
|
|
10534
10593
|
| undefined
|
|
10594
|
+
/**
|
|
10595
|
+
---
|
|
10596
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
10597
|
+
*/
|
|
10535
10598
|
salto_metadata?:
|
|
10536
10599
|
| {
|
|
10537
10600
|
lock_id: string
|
|
@@ -10542,6 +10605,16 @@ export interface Routes {
|
|
|
10542
10605
|
model?: string | undefined
|
|
10543
10606
|
}
|
|
10544
10607
|
| undefined
|
|
10608
|
+
salto_ks_metadata?:
|
|
10609
|
+
| {
|
|
10610
|
+
lock_id: string
|
|
10611
|
+
customer_reference: string
|
|
10612
|
+
lock_type: string
|
|
10613
|
+
battery_level: string
|
|
10614
|
+
locked_state: string
|
|
10615
|
+
model?: string | undefined
|
|
10616
|
+
}
|
|
10617
|
+
| undefined
|
|
10545
10618
|
genie_metadata?:
|
|
10546
10619
|
| {
|
|
10547
10620
|
device_name: string
|
|
@@ -11318,6 +11391,10 @@ export interface Routes {
|
|
|
11318
11391
|
model_number: string
|
|
11319
11392
|
}
|
|
11320
11393
|
| undefined
|
|
11394
|
+
/**
|
|
11395
|
+
---
|
|
11396
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
11397
|
+
*/
|
|
11321
11398
|
salto_metadata?:
|
|
11322
11399
|
| {
|
|
11323
11400
|
lock_id: string
|
|
@@ -11328,6 +11405,16 @@ export interface Routes {
|
|
|
11328
11405
|
model?: string | undefined
|
|
11329
11406
|
}
|
|
11330
11407
|
| undefined
|
|
11408
|
+
salto_ks_metadata?:
|
|
11409
|
+
| {
|
|
11410
|
+
lock_id: string
|
|
11411
|
+
customer_reference: string
|
|
11412
|
+
lock_type: string
|
|
11413
|
+
battery_level: string
|
|
11414
|
+
locked_state: string
|
|
11415
|
+
model?: string | undefined
|
|
11416
|
+
}
|
|
11417
|
+
| undefined
|
|
11331
11418
|
genie_metadata?:
|
|
11332
11419
|
| {
|
|
11333
11420
|
device_name: string
|
|
@@ -12805,6 +12892,10 @@ export interface Routes {
|
|
|
12805
12892
|
model_number: string
|
|
12806
12893
|
}
|
|
12807
12894
|
| undefined
|
|
12895
|
+
/**
|
|
12896
|
+
---
|
|
12897
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
12898
|
+
*/
|
|
12808
12899
|
salto_metadata?:
|
|
12809
12900
|
| {
|
|
12810
12901
|
lock_id: string
|
|
@@ -12815,6 +12906,16 @@ export interface Routes {
|
|
|
12815
12906
|
model?: string | undefined
|
|
12816
12907
|
}
|
|
12817
12908
|
| undefined
|
|
12909
|
+
salto_ks_metadata?:
|
|
12910
|
+
| {
|
|
12911
|
+
lock_id: string
|
|
12912
|
+
customer_reference: string
|
|
12913
|
+
lock_type: string
|
|
12914
|
+
battery_level: string
|
|
12915
|
+
locked_state: string
|
|
12916
|
+
model?: string | undefined
|
|
12917
|
+
}
|
|
12918
|
+
| undefined
|
|
12818
12919
|
genie_metadata?:
|
|
12819
12920
|
| {
|
|
12820
12921
|
device_name: string
|
|
@@ -13420,6 +13521,10 @@ export interface Routes {
|
|
|
13420
13521
|
model_number: string
|
|
13421
13522
|
}
|
|
13422
13523
|
| undefined
|
|
13524
|
+
/**
|
|
13525
|
+
---
|
|
13526
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
13527
|
+
*/
|
|
13423
13528
|
salto_metadata?:
|
|
13424
13529
|
| {
|
|
13425
13530
|
lock_id: string
|
|
@@ -13430,6 +13535,16 @@ export interface Routes {
|
|
|
13430
13535
|
model?: string | undefined
|
|
13431
13536
|
}
|
|
13432
13537
|
| undefined
|
|
13538
|
+
salto_ks_metadata?:
|
|
13539
|
+
| {
|
|
13540
|
+
lock_id: string
|
|
13541
|
+
customer_reference: string
|
|
13542
|
+
lock_type: string
|
|
13543
|
+
battery_level: string
|
|
13544
|
+
locked_state: string
|
|
13545
|
+
model?: string | undefined
|
|
13546
|
+
}
|
|
13547
|
+
| undefined
|
|
13433
13548
|
genie_metadata?:
|
|
13434
13549
|
| {
|
|
13435
13550
|
device_name: string
|
|
@@ -14206,6 +14321,10 @@ export interface Routes {
|
|
|
14206
14321
|
model_number: string
|
|
14207
14322
|
}
|
|
14208
14323
|
| undefined
|
|
14324
|
+
/**
|
|
14325
|
+
---
|
|
14326
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
14327
|
+
*/
|
|
14209
14328
|
salto_metadata?:
|
|
14210
14329
|
| {
|
|
14211
14330
|
lock_id: string
|
|
@@ -14216,6 +14335,16 @@ export interface Routes {
|
|
|
14216
14335
|
model?: string | undefined
|
|
14217
14336
|
}
|
|
14218
14337
|
| undefined
|
|
14338
|
+
salto_ks_metadata?:
|
|
14339
|
+
| {
|
|
14340
|
+
lock_id: string
|
|
14341
|
+
customer_reference: string
|
|
14342
|
+
lock_type: string
|
|
14343
|
+
battery_level: string
|
|
14344
|
+
locked_state: string
|
|
14345
|
+
model?: string | undefined
|
|
14346
|
+
}
|
|
14347
|
+
| undefined
|
|
14219
14348
|
genie_metadata?:
|
|
14220
14349
|
| {
|
|
14221
14350
|
device_name: string
|
|
@@ -14821,6 +14950,10 @@ export interface Routes {
|
|
|
14821
14950
|
model_number: string
|
|
14822
14951
|
}
|
|
14823
14952
|
| undefined
|
|
14953
|
+
/**
|
|
14954
|
+
---
|
|
14955
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
14956
|
+
*/
|
|
14824
14957
|
salto_metadata?:
|
|
14825
14958
|
| {
|
|
14826
14959
|
lock_id: string
|
|
@@ -14831,6 +14964,16 @@ export interface Routes {
|
|
|
14831
14964
|
model?: string | undefined
|
|
14832
14965
|
}
|
|
14833
14966
|
| undefined
|
|
14967
|
+
salto_ks_metadata?:
|
|
14968
|
+
| {
|
|
14969
|
+
lock_id: string
|
|
14970
|
+
customer_reference: string
|
|
14971
|
+
lock_type: string
|
|
14972
|
+
battery_level: string
|
|
14973
|
+
locked_state: string
|
|
14974
|
+
model?: string | undefined
|
|
14975
|
+
}
|
|
14976
|
+
| undefined
|
|
14834
14977
|
genie_metadata?:
|
|
14835
14978
|
| {
|
|
14836
14979
|
device_name: string
|
|
@@ -17165,6 +17308,10 @@ export interface Routes {
|
|
|
17165
17308
|
model_number: string
|
|
17166
17309
|
}
|
|
17167
17310
|
| undefined
|
|
17311
|
+
/**
|
|
17312
|
+
---
|
|
17313
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
17314
|
+
*/
|
|
17168
17315
|
salto_metadata?:
|
|
17169
17316
|
| {
|
|
17170
17317
|
lock_id: string
|
|
@@ -17175,6 +17322,16 @@ export interface Routes {
|
|
|
17175
17322
|
model?: string | undefined
|
|
17176
17323
|
}
|
|
17177
17324
|
| undefined
|
|
17325
|
+
salto_ks_metadata?:
|
|
17326
|
+
| {
|
|
17327
|
+
lock_id: string
|
|
17328
|
+
customer_reference: string
|
|
17329
|
+
lock_type: string
|
|
17330
|
+
battery_level: string
|
|
17331
|
+
locked_state: string
|
|
17332
|
+
model?: string | undefined
|
|
17333
|
+
}
|
|
17334
|
+
| undefined
|
|
17178
17335
|
genie_metadata?:
|
|
17179
17336
|
| {
|
|
17180
17337
|
device_name: string
|
|
@@ -17780,6 +17937,10 @@ export interface Routes {
|
|
|
17780
17937
|
model_number: string
|
|
17781
17938
|
}
|
|
17782
17939
|
| undefined
|
|
17940
|
+
/**
|
|
17941
|
+
---
|
|
17942
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
17943
|
+
*/
|
|
17783
17944
|
salto_metadata?:
|
|
17784
17945
|
| {
|
|
17785
17946
|
lock_id: string
|
|
@@ -17790,6 +17951,16 @@ export interface Routes {
|
|
|
17790
17951
|
model?: string | undefined
|
|
17791
17952
|
}
|
|
17792
17953
|
| undefined
|
|
17954
|
+
salto_ks_metadata?:
|
|
17955
|
+
| {
|
|
17956
|
+
lock_id: string
|
|
17957
|
+
customer_reference: string
|
|
17958
|
+
lock_type: string
|
|
17959
|
+
battery_level: string
|
|
17960
|
+
locked_state: string
|
|
17961
|
+
model?: string | undefined
|
|
17962
|
+
}
|
|
17963
|
+
| undefined
|
|
17793
17964
|
genie_metadata?:
|
|
17794
17965
|
| {
|
|
17795
17966
|
device_name: string
|
|
@@ -22522,6 +22693,10 @@ export interface Routes {
|
|
|
22522
22693
|
model_number: string
|
|
22523
22694
|
}
|
|
22524
22695
|
| undefined
|
|
22696
|
+
/**
|
|
22697
|
+
---
|
|
22698
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
22699
|
+
*/
|
|
22525
22700
|
salto_metadata?:
|
|
22526
22701
|
| {
|
|
22527
22702
|
lock_id: string
|
|
@@ -22532,6 +22707,16 @@ export interface Routes {
|
|
|
22532
22707
|
model?: string | undefined
|
|
22533
22708
|
}
|
|
22534
22709
|
| undefined
|
|
22710
|
+
salto_ks_metadata?:
|
|
22711
|
+
| {
|
|
22712
|
+
lock_id: string
|
|
22713
|
+
customer_reference: string
|
|
22714
|
+
lock_type: string
|
|
22715
|
+
battery_level: string
|
|
22716
|
+
locked_state: string
|
|
22717
|
+
model?: string | undefined
|
|
22718
|
+
}
|
|
22719
|
+
| undefined
|
|
22535
22720
|
genie_metadata?:
|
|
22536
22721
|
| {
|
|
22537
22722
|
device_name: string
|
|
@@ -24838,6 +25023,10 @@ export interface Routes {
|
|
|
24838
25023
|
model_number: string
|
|
24839
25024
|
}
|
|
24840
25025
|
| undefined
|
|
25026
|
+
/**
|
|
25027
|
+
---
|
|
25028
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
25029
|
+
*/
|
|
24841
25030
|
salto_metadata?:
|
|
24842
25031
|
| {
|
|
24843
25032
|
lock_id: string
|
|
@@ -24848,6 +25037,16 @@ export interface Routes {
|
|
|
24848
25037
|
model?: string | undefined
|
|
24849
25038
|
}
|
|
24850
25039
|
| undefined
|
|
25040
|
+
salto_ks_metadata?:
|
|
25041
|
+
| {
|
|
25042
|
+
lock_id: string
|
|
25043
|
+
customer_reference: string
|
|
25044
|
+
lock_type: string
|
|
25045
|
+
battery_level: string
|
|
25046
|
+
locked_state: string
|
|
25047
|
+
model?: string | undefined
|
|
25048
|
+
}
|
|
25049
|
+
| undefined
|
|
24851
25050
|
genie_metadata?:
|
|
24852
25051
|
| {
|
|
24853
25052
|
device_name: string
|
|
@@ -25453,6 +25652,10 @@ export interface Routes {
|
|
|
25453
25652
|
model_number: string
|
|
25454
25653
|
}
|
|
25455
25654
|
| undefined
|
|
25655
|
+
/**
|
|
25656
|
+
---
|
|
25657
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
25658
|
+
*/
|
|
25456
25659
|
salto_metadata?:
|
|
25457
25660
|
| {
|
|
25458
25661
|
lock_id: string
|
|
@@ -25463,6 +25666,16 @@ export interface Routes {
|
|
|
25463
25666
|
model?: string | undefined
|
|
25464
25667
|
}
|
|
25465
25668
|
| undefined
|
|
25669
|
+
salto_ks_metadata?:
|
|
25670
|
+
| {
|
|
25671
|
+
lock_id: string
|
|
25672
|
+
customer_reference: string
|
|
25673
|
+
lock_type: string
|
|
25674
|
+
battery_level: string
|
|
25675
|
+
locked_state: string
|
|
25676
|
+
model?: string | undefined
|
|
25677
|
+
}
|
|
25678
|
+
| undefined
|
|
25466
25679
|
genie_metadata?:
|
|
25467
25680
|
| {
|
|
25468
25681
|
device_name: string
|
|
@@ -27926,6 +28139,10 @@ export interface Routes {
|
|
|
27926
28139
|
model_number: string
|
|
27927
28140
|
}
|
|
27928
28141
|
| undefined
|
|
28142
|
+
/**
|
|
28143
|
+
---
|
|
28144
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
28145
|
+
*/
|
|
27929
28146
|
salto_metadata?:
|
|
27930
28147
|
| {
|
|
27931
28148
|
lock_id: string
|
|
@@ -27936,6 +28153,16 @@ export interface Routes {
|
|
|
27936
28153
|
model?: string | undefined
|
|
27937
28154
|
}
|
|
27938
28155
|
| undefined
|
|
28156
|
+
salto_ks_metadata?:
|
|
28157
|
+
| {
|
|
28158
|
+
lock_id: string
|
|
28159
|
+
customer_reference: string
|
|
28160
|
+
lock_type: string
|
|
28161
|
+
battery_level: string
|
|
28162
|
+
locked_state: string
|
|
28163
|
+
model?: string | undefined
|
|
28164
|
+
}
|
|
28165
|
+
| undefined
|
|
27939
28166
|
genie_metadata?:
|
|
27940
28167
|
| {
|
|
27941
28168
|
device_name: string
|
|
@@ -28543,6 +28770,10 @@ export interface Routes {
|
|
|
28543
28770
|
model_number: string
|
|
28544
28771
|
}
|
|
28545
28772
|
| undefined
|
|
28773
|
+
/**
|
|
28774
|
+
---
|
|
28775
|
+
deprecated: Use `salto_ks_metadata ` instead.
|
|
28776
|
+
*/
|
|
28546
28777
|
salto_metadata?:
|
|
28547
28778
|
| {
|
|
28548
28779
|
lock_id: string
|
|
@@ -28553,6 +28784,16 @@ export interface Routes {
|
|
|
28553
28784
|
model?: string | undefined
|
|
28554
28785
|
}
|
|
28555
28786
|
| undefined
|
|
28787
|
+
salto_ks_metadata?:
|
|
28788
|
+
| {
|
|
28789
|
+
lock_id: string
|
|
28790
|
+
customer_reference: string
|
|
28791
|
+
lock_type: string
|
|
28792
|
+
battery_level: string
|
|
28793
|
+
locked_state: string
|
|
28794
|
+
model?: string | undefined
|
|
28795
|
+
}
|
|
28796
|
+
| undefined
|
|
28556
28797
|
genie_metadata?:
|
|
28557
28798
|
| {
|
|
28558
28799
|
device_name: string
|