@seamapi/types 1.600.0 → 1.602.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 +88 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +493 -77
- package/dist/index.cjs +88 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +174 -35
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -2
- package/lib/seam/connect/models/devices/device-metadata.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 +10 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -3
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +53 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +375 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +14 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +14 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -2
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +59 -3
- package/src/lib/seam/connect/route-types.ts +431 -34
|
@@ -557,6 +557,12 @@ export type Routes = {
|
|
|
557
557
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
558
558
|
message: string
|
|
559
559
|
}
|
|
560
|
+
| {
|
|
561
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
562
|
+
type: 'no_card_on_encoder'
|
|
563
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
564
|
+
message: string
|
|
565
|
+
}
|
|
560
566
|
}
|
|
561
567
|
| {
|
|
562
568
|
/** ID of the action attempt. */
|
|
@@ -937,6 +943,12 @@ export type Routes = {
|
|
|
937
943
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
938
944
|
message: string
|
|
939
945
|
}
|
|
946
|
+
| {
|
|
947
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
948
|
+
type: 'no_card_on_encoder'
|
|
949
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
950
|
+
message: string
|
|
951
|
+
}
|
|
940
952
|
}
|
|
941
953
|
| {
|
|
942
954
|
/** ID of the action attempt. */
|
|
@@ -3164,6 +3176,12 @@ export type Routes = {
|
|
|
3164
3176
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3165
3177
|
message: string
|
|
3166
3178
|
}
|
|
3179
|
+
| {
|
|
3180
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
3181
|
+
type: 'no_card_on_encoder'
|
|
3182
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3183
|
+
message: string
|
|
3184
|
+
}
|
|
3167
3185
|
}
|
|
3168
3186
|
| {
|
|
3169
3187
|
/** ID of the action attempt. */
|
|
@@ -3544,6 +3562,12 @@ export type Routes = {
|
|
|
3544
3562
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3545
3563
|
message: string
|
|
3546
3564
|
}
|
|
3565
|
+
| {
|
|
3566
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
3567
|
+
type: 'no_card_on_encoder'
|
|
3568
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3569
|
+
message: string
|
|
3570
|
+
}
|
|
3547
3571
|
}
|
|
3548
3572
|
| {
|
|
3549
3573
|
/** ID of the action attempt. */
|
|
@@ -7511,6 +7535,12 @@ export type Routes = {
|
|
|
7511
7535
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7512
7536
|
message: string
|
|
7513
7537
|
}
|
|
7538
|
+
| {
|
|
7539
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
7540
|
+
type: 'no_card_on_encoder'
|
|
7541
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7542
|
+
message: string
|
|
7543
|
+
}
|
|
7514
7544
|
}
|
|
7515
7545
|
| {
|
|
7516
7546
|
/** ID of the action attempt. */
|
|
@@ -7891,6 +7921,12 @@ export type Routes = {
|
|
|
7891
7921
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7892
7922
|
message: string
|
|
7893
7923
|
}
|
|
7924
|
+
| {
|
|
7925
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
7926
|
+
type: 'no_card_on_encoder'
|
|
7927
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7928
|
+
message: string
|
|
7929
|
+
}
|
|
7894
7930
|
}
|
|
7895
7931
|
| {
|
|
7896
7932
|
/** ID of the action attempt. */
|
|
@@ -10139,6 +10175,12 @@ export type Routes = {
|
|
|
10139
10175
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10140
10176
|
message: string
|
|
10141
10177
|
}
|
|
10178
|
+
| {
|
|
10179
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
10180
|
+
type: 'no_card_on_encoder'
|
|
10181
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10182
|
+
message: string
|
|
10183
|
+
}
|
|
10142
10184
|
}
|
|
10143
10185
|
| {
|
|
10144
10186
|
/** ID of the action attempt. */
|
|
@@ -10519,6 +10561,12 @@ export type Routes = {
|
|
|
10519
10561
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10520
10562
|
message: string
|
|
10521
10563
|
}
|
|
10564
|
+
| {
|
|
10565
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
10566
|
+
type: 'no_card_on_encoder'
|
|
10567
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10568
|
+
message: string
|
|
10569
|
+
}
|
|
10522
10570
|
}
|
|
10523
10571
|
| {
|
|
10524
10572
|
/** ID of the action attempt. */
|
|
@@ -11393,6 +11441,7 @@ export type Routes = {
|
|
|
11393
11441
|
| 'dormakaba_oracode_door'
|
|
11394
11442
|
| 'tedee_lock'
|
|
11395
11443
|
| 'akiles_lock'
|
|
11444
|
+
| 'ultraloq_lock'
|
|
11396
11445
|
)
|
|
11397
11446
|
| 'keynest_key'
|
|
11398
11447
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -12085,11 +12134,13 @@ export type Routes = {
|
|
|
12085
12134
|
has_photo?: boolean | undefined
|
|
12086
12135
|
}
|
|
12087
12136
|
| undefined
|
|
12088
|
-
/** Metadata for
|
|
12137
|
+
/** Metadata for an Ultraloq device. */
|
|
12089
12138
|
ultraloq_metadata?:
|
|
12090
12139
|
| {
|
|
12091
|
-
/** Device ID for
|
|
12140
|
+
/** Device ID for an Ultraloq device. */
|
|
12092
12141
|
device_id: string
|
|
12142
|
+
/** Device name for an Ultraloq device. */
|
|
12143
|
+
device_name: string
|
|
12093
12144
|
}
|
|
12094
12145
|
| undefined
|
|
12095
12146
|
}) &
|
|
@@ -14327,6 +14378,12 @@ export type Routes = {
|
|
|
14327
14378
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14328
14379
|
message: string
|
|
14329
14380
|
}
|
|
14381
|
+
| {
|
|
14382
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
14383
|
+
type: 'no_card_on_encoder'
|
|
14384
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14385
|
+
message: string
|
|
14386
|
+
}
|
|
14330
14387
|
}
|
|
14331
14388
|
| {
|
|
14332
14389
|
/** ID of the action attempt. */
|
|
@@ -14707,6 +14764,12 @@ export type Routes = {
|
|
|
14707
14764
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14708
14765
|
message: string
|
|
14709
14766
|
}
|
|
14767
|
+
| {
|
|
14768
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
14769
|
+
type: 'no_card_on_encoder'
|
|
14770
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14771
|
+
message: string
|
|
14772
|
+
}
|
|
14710
14773
|
}
|
|
14711
14774
|
| {
|
|
14712
14775
|
/** ID of the action attempt. */
|
|
@@ -15482,6 +15545,7 @@ export type Routes = {
|
|
|
15482
15545
|
| 'dormakaba_oracode_door'
|
|
15483
15546
|
| 'tedee_lock'
|
|
15484
15547
|
| 'akiles_lock'
|
|
15548
|
+
| 'ultraloq_lock'
|
|
15485
15549
|
)
|
|
15486
15550
|
| 'keynest_key'
|
|
15487
15551
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -16174,11 +16238,13 @@ export type Routes = {
|
|
|
16174
16238
|
has_photo?: boolean | undefined
|
|
16175
16239
|
}
|
|
16176
16240
|
| undefined
|
|
16177
|
-
/** Metadata for
|
|
16241
|
+
/** Metadata for an Ultraloq device. */
|
|
16178
16242
|
ultraloq_metadata?:
|
|
16179
16243
|
| {
|
|
16180
|
-
/** Device ID for
|
|
16244
|
+
/** Device ID for an Ultraloq device. */
|
|
16181
16245
|
device_id: string
|
|
16246
|
+
/** Device name for an Ultraloq device. */
|
|
16247
|
+
device_name: string
|
|
16182
16248
|
}
|
|
16183
16249
|
| undefined
|
|
16184
16250
|
}) &
|
|
@@ -18482,6 +18548,12 @@ export type Routes = {
|
|
|
18482
18548
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18483
18549
|
message: string
|
|
18484
18550
|
}
|
|
18551
|
+
| {
|
|
18552
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
18553
|
+
type: 'no_card_on_encoder'
|
|
18554
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18555
|
+
message: string
|
|
18556
|
+
}
|
|
18485
18557
|
}
|
|
18486
18558
|
| {
|
|
18487
18559
|
/** ID of the action attempt. */
|
|
@@ -18866,6 +18938,12 @@ export type Routes = {
|
|
|
18866
18938
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18867
18939
|
message: string
|
|
18868
18940
|
}
|
|
18941
|
+
| {
|
|
18942
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
18943
|
+
type: 'no_card_on_encoder'
|
|
18944
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
18945
|
+
message: string
|
|
18946
|
+
}
|
|
18869
18947
|
}
|
|
18870
18948
|
| {
|
|
18871
18949
|
/** ID of the action attempt. */
|
|
@@ -19774,6 +19852,7 @@ export type Routes = {
|
|
|
19774
19852
|
| 'dormakaba_oracode_door'
|
|
19775
19853
|
| 'tedee_lock'
|
|
19776
19854
|
| 'akiles_lock'
|
|
19855
|
+
| 'ultraloq_lock'
|
|
19777
19856
|
)
|
|
19778
19857
|
| 'keynest_key'
|
|
19779
19858
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -27118,6 +27197,12 @@ export type Routes = {
|
|
|
27118
27197
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27119
27198
|
message: string
|
|
27120
27199
|
}
|
|
27200
|
+
| {
|
|
27201
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
27202
|
+
type: 'no_card_on_encoder'
|
|
27203
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27204
|
+
message: string
|
|
27205
|
+
}
|
|
27121
27206
|
}
|
|
27122
27207
|
| {
|
|
27123
27208
|
/** ID of the action attempt. */
|
|
@@ -27498,6 +27583,12 @@ export type Routes = {
|
|
|
27498
27583
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27499
27584
|
message: string
|
|
27500
27585
|
}
|
|
27586
|
+
| {
|
|
27587
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
27588
|
+
type: 'no_card_on_encoder'
|
|
27589
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27590
|
+
message: string
|
|
27591
|
+
}
|
|
27501
27592
|
}
|
|
27502
27593
|
| {
|
|
27503
27594
|
/** ID of the action attempt. */
|
|
@@ -28675,6 +28766,12 @@ export type Routes = {
|
|
|
28675
28766
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28676
28767
|
message: string
|
|
28677
28768
|
}
|
|
28769
|
+
| {
|
|
28770
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
28771
|
+
type: 'no_card_on_encoder'
|
|
28772
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28773
|
+
message: string
|
|
28774
|
+
}
|
|
28678
28775
|
}
|
|
28679
28776
|
| {
|
|
28680
28777
|
/** ID of the action attempt. */
|
|
@@ -29055,6 +29152,12 @@ export type Routes = {
|
|
|
29055
29152
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29056
29153
|
message: string
|
|
29057
29154
|
}
|
|
29155
|
+
| {
|
|
29156
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
29157
|
+
type: 'no_card_on_encoder'
|
|
29158
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
29159
|
+
message: string
|
|
29160
|
+
}
|
|
29058
29161
|
}
|
|
29059
29162
|
| {
|
|
29060
29163
|
/** ID of the action attempt. */
|
|
@@ -32926,6 +33029,12 @@ export type Routes = {
|
|
|
32926
33029
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32927
33030
|
message: string
|
|
32928
33031
|
}
|
|
33032
|
+
| {
|
|
33033
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
33034
|
+
type: 'no_card_on_encoder'
|
|
33035
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33036
|
+
message: string
|
|
33037
|
+
}
|
|
32929
33038
|
}
|
|
32930
33039
|
| {
|
|
32931
33040
|
/** ID of the action attempt. */
|
|
@@ -33306,6 +33415,12 @@ export type Routes = {
|
|
|
33306
33415
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33307
33416
|
message: string
|
|
33308
33417
|
}
|
|
33418
|
+
| {
|
|
33419
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
33420
|
+
type: 'no_card_on_encoder'
|
|
33421
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
33422
|
+
message: string
|
|
33423
|
+
}
|
|
33309
33424
|
}
|
|
33310
33425
|
| {
|
|
33311
33426
|
/** ID of the action attempt. */
|
|
@@ -34368,6 +34483,12 @@ export type Routes = {
|
|
|
34368
34483
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34369
34484
|
message: string
|
|
34370
34485
|
}
|
|
34486
|
+
| {
|
|
34487
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
34488
|
+
type: 'no_card_on_encoder'
|
|
34489
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34490
|
+
message: string
|
|
34491
|
+
}
|
|
34371
34492
|
}
|
|
34372
34493
|
| {
|
|
34373
34494
|
/** ID of the action attempt. */
|
|
@@ -34748,6 +34869,12 @@ export type Routes = {
|
|
|
34748
34869
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34749
34870
|
message: string
|
|
34750
34871
|
}
|
|
34872
|
+
| {
|
|
34873
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
34874
|
+
type: 'no_card_on_encoder'
|
|
34875
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34876
|
+
message: string
|
|
34877
|
+
}
|
|
34751
34878
|
}
|
|
34752
34879
|
| {
|
|
34753
34880
|
/** ID of the action attempt. */
|
|
@@ -37333,6 +37460,7 @@ export type Routes = {
|
|
|
37333
37460
|
| 'dormakaba_oracode_door'
|
|
37334
37461
|
| 'tedee_lock'
|
|
37335
37462
|
| 'akiles_lock'
|
|
37463
|
+
| 'ultraloq_lock'
|
|
37336
37464
|
)
|
|
37337
37465
|
| 'keynest_key'
|
|
37338
37466
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -38025,11 +38153,13 @@ export type Routes = {
|
|
|
38025
38153
|
has_photo?: boolean | undefined
|
|
38026
38154
|
}
|
|
38027
38155
|
| undefined
|
|
38028
|
-
/** Metadata for
|
|
38156
|
+
/** Metadata for an Ultraloq device. */
|
|
38029
38157
|
ultraloq_metadata?:
|
|
38030
38158
|
| {
|
|
38031
|
-
/** Device ID for
|
|
38159
|
+
/** Device ID for an Ultraloq device. */
|
|
38032
38160
|
device_id: string
|
|
38161
|
+
/** Device name for an Ultraloq device. */
|
|
38162
|
+
device_name: string
|
|
38033
38163
|
}
|
|
38034
38164
|
| undefined
|
|
38035
38165
|
}) &
|
|
@@ -38867,6 +38997,7 @@ export type Routes = {
|
|
|
38867
38997
|
| 'dormakaba_oracode_door'
|
|
38868
38998
|
| 'tedee_lock'
|
|
38869
38999
|
| 'akiles_lock'
|
|
39000
|
+
| 'ultraloq_lock'
|
|
38870
39001
|
)
|
|
38871
39002
|
| 'keynest_key'
|
|
38872
39003
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -38912,6 +39043,7 @@ export type Routes = {
|
|
|
38912
39043
|
| 'dormakaba_oracode_door'
|
|
38913
39044
|
| 'tedee_lock'
|
|
38914
39045
|
| 'akiles_lock'
|
|
39046
|
+
| 'ultraloq_lock'
|
|
38915
39047
|
)
|
|
38916
39048
|
| 'keynest_key'
|
|
38917
39049
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -39079,6 +39211,7 @@ export type Routes = {
|
|
|
39079
39211
|
| 'dormakaba_oracode_door'
|
|
39080
39212
|
| 'tedee_lock'
|
|
39081
39213
|
| 'akiles_lock'
|
|
39214
|
+
| 'ultraloq_lock'
|
|
39082
39215
|
)
|
|
39083
39216
|
| 'keynest_key'
|
|
39084
39217
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -39771,11 +39904,13 @@ export type Routes = {
|
|
|
39771
39904
|
has_photo?: boolean | undefined
|
|
39772
39905
|
}
|
|
39773
39906
|
| undefined
|
|
39774
|
-
/** Metadata for
|
|
39907
|
+
/** Metadata for an Ultraloq device. */
|
|
39775
39908
|
ultraloq_metadata?:
|
|
39776
39909
|
| {
|
|
39777
|
-
/** Device ID for
|
|
39910
|
+
/** Device ID for an Ultraloq device. */
|
|
39778
39911
|
device_id: string
|
|
39912
|
+
/** Device name for an Ultraloq device. */
|
|
39913
|
+
device_name: string
|
|
39779
39914
|
}
|
|
39780
39915
|
| undefined
|
|
39781
39916
|
}) &
|
|
@@ -40800,6 +40935,7 @@ export type Routes = {
|
|
|
40800
40935
|
| 'dormakaba_oracode_door'
|
|
40801
40936
|
| 'tedee_lock'
|
|
40802
40937
|
| 'akiles_lock'
|
|
40938
|
+
| 'ultraloq_lock'
|
|
40803
40939
|
)
|
|
40804
40940
|
| 'keynest_key'
|
|
40805
40941
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -41286,6 +41422,7 @@ export type Routes = {
|
|
|
41286
41422
|
| 'dormakaba_oracode_door'
|
|
41287
41423
|
| 'tedee_lock'
|
|
41288
41424
|
| 'akiles_lock'
|
|
41425
|
+
| 'ultraloq_lock'
|
|
41289
41426
|
)
|
|
41290
41427
|
| 'keynest_key'
|
|
41291
41428
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -41331,6 +41468,7 @@ export type Routes = {
|
|
|
41331
41468
|
| 'dormakaba_oracode_door'
|
|
41332
41469
|
| 'tedee_lock'
|
|
41333
41470
|
| 'akiles_lock'
|
|
41471
|
+
| 'ultraloq_lock'
|
|
41334
41472
|
)
|
|
41335
41473
|
| 'keynest_key'
|
|
41336
41474
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -41498,6 +41636,7 @@ export type Routes = {
|
|
|
41498
41636
|
| 'dormakaba_oracode_door'
|
|
41499
41637
|
| 'tedee_lock'
|
|
41500
41638
|
| 'akiles_lock'
|
|
41639
|
+
| 'ultraloq_lock'
|
|
41501
41640
|
)
|
|
41502
41641
|
| 'keynest_key'
|
|
41503
41642
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -46859,6 +46998,7 @@ export type Routes = {
|
|
|
46859
46998
|
| 'dormakaba_oracode_door'
|
|
46860
46999
|
| 'tedee_lock'
|
|
46861
47000
|
| 'akiles_lock'
|
|
47001
|
+
| 'ultraloq_lock'
|
|
46862
47002
|
)
|
|
46863
47003
|
| 'keynest_key'
|
|
46864
47004
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -47551,11 +47691,13 @@ export type Routes = {
|
|
|
47551
47691
|
has_photo?: boolean | undefined
|
|
47552
47692
|
}
|
|
47553
47693
|
| undefined
|
|
47554
|
-
/** Metadata for
|
|
47694
|
+
/** Metadata for an Ultraloq device. */
|
|
47555
47695
|
ultraloq_metadata?:
|
|
47556
47696
|
| {
|
|
47557
|
-
/** Device ID for
|
|
47697
|
+
/** Device ID for an Ultraloq device. */
|
|
47558
47698
|
device_id: string
|
|
47699
|
+
/** Device name for an Ultraloq device. */
|
|
47700
|
+
device_name: string
|
|
47559
47701
|
}
|
|
47560
47702
|
| undefined
|
|
47561
47703
|
}) &
|
|
@@ -48380,6 +48522,7 @@ export type Routes = {
|
|
|
48380
48522
|
| 'dormakaba_oracode_door'
|
|
48381
48523
|
| 'tedee_lock'
|
|
48382
48524
|
| 'akiles_lock'
|
|
48525
|
+
| 'ultraloq_lock'
|
|
48383
48526
|
)
|
|
48384
48527
|
| 'keynest_key'
|
|
48385
48528
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -49072,11 +49215,13 @@ export type Routes = {
|
|
|
49072
49215
|
has_photo?: boolean | undefined
|
|
49073
49216
|
}
|
|
49074
49217
|
| undefined
|
|
49075
|
-
/** Metadata for
|
|
49218
|
+
/** Metadata for an Ultraloq device. */
|
|
49076
49219
|
ultraloq_metadata?:
|
|
49077
49220
|
| {
|
|
49078
|
-
/** Device ID for
|
|
49221
|
+
/** Device ID for an Ultraloq device. */
|
|
49079
49222
|
device_id: string
|
|
49223
|
+
/** Device name for an Ultraloq device. */
|
|
49224
|
+
device_name: string
|
|
49080
49225
|
}
|
|
49081
49226
|
| undefined
|
|
49082
49227
|
}) &
|
|
@@ -49913,6 +50058,7 @@ export type Routes = {
|
|
|
49913
50058
|
| 'dormakaba_oracode_door'
|
|
49914
50059
|
| 'tedee_lock'
|
|
49915
50060
|
| 'akiles_lock'
|
|
50061
|
+
| 'ultraloq_lock'
|
|
49916
50062
|
)
|
|
49917
50063
|
| undefined
|
|
49918
50064
|
/** Device types of the locks that you want to list. */
|
|
@@ -49945,6 +50091,7 @@ export type Routes = {
|
|
|
49945
50091
|
| 'dormakaba_oracode_door'
|
|
49946
50092
|
| 'tedee_lock'
|
|
49947
50093
|
| 'akiles_lock'
|
|
50094
|
+
| 'ultraloq_lock'
|
|
49948
50095
|
)[]
|
|
49949
50096
|
| undefined
|
|
49950
50097
|
/** Manufacturer of the locks that you want to list. */
|
|
@@ -50088,6 +50235,7 @@ export type Routes = {
|
|
|
50088
50235
|
| 'dormakaba_oracode_door'
|
|
50089
50236
|
| 'tedee_lock'
|
|
50090
50237
|
| 'akiles_lock'
|
|
50238
|
+
| 'ultraloq_lock'
|
|
50091
50239
|
)
|
|
50092
50240
|
| 'keynest_key'
|
|
50093
50241
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -50780,11 +50928,13 @@ export type Routes = {
|
|
|
50780
50928
|
has_photo?: boolean | undefined
|
|
50781
50929
|
}
|
|
50782
50930
|
| undefined
|
|
50783
|
-
/** Metadata for
|
|
50931
|
+
/** Metadata for an Ultraloq device. */
|
|
50784
50932
|
ultraloq_metadata?:
|
|
50785
50933
|
| {
|
|
50786
|
-
/** Device ID for
|
|
50934
|
+
/** Device ID for an Ultraloq device. */
|
|
50787
50935
|
device_id: string
|
|
50936
|
+
/** Device name for an Ultraloq device. */
|
|
50937
|
+
device_name: string
|
|
50788
50938
|
}
|
|
50789
50939
|
| undefined
|
|
50790
50940
|
}) &
|
|
@@ -51608,6 +51758,7 @@ export type Routes = {
|
|
|
51608
51758
|
| 'dormakaba_oracode_door'
|
|
51609
51759
|
| 'tedee_lock'
|
|
51610
51760
|
| 'akiles_lock'
|
|
51761
|
+
| 'ultraloq_lock'
|
|
51611
51762
|
)
|
|
51612
51763
|
| 'keynest_key'
|
|
51613
51764
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -52300,11 +52451,13 @@ export type Routes = {
|
|
|
52300
52451
|
has_photo?: boolean | undefined
|
|
52301
52452
|
}
|
|
52302
52453
|
| undefined
|
|
52303
|
-
/** Metadata for
|
|
52454
|
+
/** Metadata for an Ultraloq device. */
|
|
52304
52455
|
ultraloq_metadata?:
|
|
52305
52456
|
| {
|
|
52306
|
-
/** Device ID for
|
|
52457
|
+
/** Device ID for an Ultraloq device. */
|
|
52307
52458
|
device_id: string
|
|
52459
|
+
/** Device name for an Ultraloq device. */
|
|
52460
|
+
device_name: string
|
|
52308
52461
|
}
|
|
52309
52462
|
| undefined
|
|
52310
52463
|
}) &
|
|
@@ -53619,6 +53772,12 @@ export type Routes = {
|
|
|
53619
53772
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53620
53773
|
message: string
|
|
53621
53774
|
}
|
|
53775
|
+
| {
|
|
53776
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
53777
|
+
type: 'no_card_on_encoder'
|
|
53778
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
53779
|
+
message: string
|
|
53780
|
+
}
|
|
53622
53781
|
}
|
|
53623
53782
|
| {
|
|
53624
53783
|
/** ID of the action attempt. */
|
|
@@ -53999,6 +54158,12 @@ export type Routes = {
|
|
|
53999
54158
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54000
54159
|
message: string
|
|
54001
54160
|
}
|
|
54161
|
+
| {
|
|
54162
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
54163
|
+
type: 'no_card_on_encoder'
|
|
54164
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54165
|
+
message: string
|
|
54166
|
+
}
|
|
54002
54167
|
}
|
|
54003
54168
|
| {
|
|
54004
54169
|
/** ID of the action attempt. */
|
|
@@ -55068,6 +55233,12 @@ export type Routes = {
|
|
|
55068
55233
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55069
55234
|
message: string
|
|
55070
55235
|
}
|
|
55236
|
+
| {
|
|
55237
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
55238
|
+
type: 'no_card_on_encoder'
|
|
55239
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55240
|
+
message: string
|
|
55241
|
+
}
|
|
55071
55242
|
}
|
|
55072
55243
|
| {
|
|
55073
55244
|
/** ID of the action attempt. */
|
|
@@ -55448,6 +55619,12 @@ export type Routes = {
|
|
|
55448
55619
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55449
55620
|
message: string
|
|
55450
55621
|
}
|
|
55622
|
+
| {
|
|
55623
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
55624
|
+
type: 'no_card_on_encoder'
|
|
55625
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55626
|
+
message: string
|
|
55627
|
+
}
|
|
55451
55628
|
}
|
|
55452
55629
|
| {
|
|
55453
55630
|
/** ID of the action attempt. */
|
|
@@ -56515,6 +56692,12 @@ export type Routes = {
|
|
|
56515
56692
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56516
56693
|
message: string
|
|
56517
56694
|
}
|
|
56695
|
+
| {
|
|
56696
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
56697
|
+
type: 'no_card_on_encoder'
|
|
56698
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56699
|
+
message: string
|
|
56700
|
+
}
|
|
56518
56701
|
}
|
|
56519
56702
|
| {
|
|
56520
56703
|
/** ID of the action attempt. */
|
|
@@ -56895,6 +57078,12 @@ export type Routes = {
|
|
|
56895
57078
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56896
57079
|
message: string
|
|
56897
57080
|
}
|
|
57081
|
+
| {
|
|
57082
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
57083
|
+
type: 'no_card_on_encoder'
|
|
57084
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57085
|
+
message: string
|
|
57086
|
+
}
|
|
56898
57087
|
}
|
|
56899
57088
|
| {
|
|
56900
57089
|
/** ID of the action attempt. */
|
|
@@ -57964,6 +58153,12 @@ export type Routes = {
|
|
|
57964
58153
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57965
58154
|
message: string
|
|
57966
58155
|
}
|
|
58156
|
+
| {
|
|
58157
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
58158
|
+
type: 'no_card_on_encoder'
|
|
58159
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58160
|
+
message: string
|
|
58161
|
+
}
|
|
57967
58162
|
}
|
|
57968
58163
|
| {
|
|
57969
58164
|
/** ID of the action attempt. */
|
|
@@ -58344,6 +58539,12 @@ export type Routes = {
|
|
|
58344
58539
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58345
58540
|
message: string
|
|
58346
58541
|
}
|
|
58542
|
+
| {
|
|
58543
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
58544
|
+
type: 'no_card_on_encoder'
|
|
58545
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58546
|
+
message: string
|
|
58547
|
+
}
|
|
58347
58548
|
}
|
|
58348
58549
|
| {
|
|
58349
58550
|
/** ID of the action attempt. */
|
|
@@ -59018,6 +59219,7 @@ export type Routes = {
|
|
|
59018
59219
|
| 'dormakaba_oracode_door'
|
|
59019
59220
|
| 'tedee_lock'
|
|
59020
59221
|
| 'akiles_lock'
|
|
59222
|
+
| 'ultraloq_lock'
|
|
59021
59223
|
)
|
|
59022
59224
|
| 'keynest_key'
|
|
59023
59225
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -59710,11 +59912,13 @@ export type Routes = {
|
|
|
59710
59912
|
has_photo?: boolean | undefined
|
|
59711
59913
|
}
|
|
59712
59914
|
| undefined
|
|
59713
|
-
/** Metadata for
|
|
59915
|
+
/** Metadata for an Ultraloq device. */
|
|
59714
59916
|
ultraloq_metadata?:
|
|
59715
59917
|
| {
|
|
59716
|
-
/** Device ID for
|
|
59918
|
+
/** Device ID for an Ultraloq device. */
|
|
59717
59919
|
device_id: string
|
|
59920
|
+
/** Device name for an Ultraloq device. */
|
|
59921
|
+
device_name: string
|
|
59718
59922
|
}
|
|
59719
59923
|
| undefined
|
|
59720
59924
|
}) &
|
|
@@ -60538,6 +60742,7 @@ export type Routes = {
|
|
|
60538
60742
|
| 'dormakaba_oracode_door'
|
|
60539
60743
|
| 'tedee_lock'
|
|
60540
60744
|
| 'akiles_lock'
|
|
60745
|
+
| 'ultraloq_lock'
|
|
60541
60746
|
)
|
|
60542
60747
|
| 'keynest_key'
|
|
60543
60748
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -61230,11 +61435,13 @@ export type Routes = {
|
|
|
61230
61435
|
has_photo?: boolean | undefined
|
|
61231
61436
|
}
|
|
61232
61437
|
| undefined
|
|
61233
|
-
/** Metadata for
|
|
61438
|
+
/** Metadata for an Ultraloq device. */
|
|
61234
61439
|
ultraloq_metadata?:
|
|
61235
61440
|
| {
|
|
61236
|
-
/** Device ID for
|
|
61441
|
+
/** Device ID for an Ultraloq device. */
|
|
61237
61442
|
device_id: string
|
|
61443
|
+
/** Device name for an Ultraloq device. */
|
|
61444
|
+
device_name: string
|
|
61238
61445
|
}
|
|
61239
61446
|
| undefined
|
|
61240
61447
|
}) &
|
|
@@ -62559,6 +62766,12 @@ export type Routes = {
|
|
|
62559
62766
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62560
62767
|
message: string
|
|
62561
62768
|
}
|
|
62769
|
+
| {
|
|
62770
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
62771
|
+
type: 'no_card_on_encoder'
|
|
62772
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62773
|
+
message: string
|
|
62774
|
+
}
|
|
62562
62775
|
}
|
|
62563
62776
|
| {
|
|
62564
62777
|
/** ID of the action attempt. */
|
|
@@ -62939,6 +63152,12 @@ export type Routes = {
|
|
|
62939
63152
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
62940
63153
|
message: string
|
|
62941
63154
|
}
|
|
63155
|
+
| {
|
|
63156
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
63157
|
+
type: 'no_card_on_encoder'
|
|
63158
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
63159
|
+
message: string
|
|
63160
|
+
}
|
|
62942
63161
|
}
|
|
62943
63162
|
| {
|
|
62944
63163
|
/** ID of the action attempt. */
|
|
@@ -64027,6 +64246,12 @@ export type Routes = {
|
|
|
64027
64246
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64028
64247
|
message: string
|
|
64029
64248
|
}
|
|
64249
|
+
| {
|
|
64250
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
64251
|
+
type: 'no_card_on_encoder'
|
|
64252
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64253
|
+
message: string
|
|
64254
|
+
}
|
|
64030
64255
|
}
|
|
64031
64256
|
| {
|
|
64032
64257
|
/** ID of the action attempt. */
|
|
@@ -64407,6 +64632,12 @@ export type Routes = {
|
|
|
64407
64632
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64408
64633
|
message: string
|
|
64409
64634
|
}
|
|
64635
|
+
| {
|
|
64636
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
64637
|
+
type: 'no_card_on_encoder'
|
|
64638
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
64639
|
+
message: string
|
|
64640
|
+
}
|
|
64410
64641
|
}
|
|
64411
64642
|
| {
|
|
64412
64643
|
/** ID of the action attempt. */
|
|
@@ -65549,6 +65780,12 @@ export type Routes = {
|
|
|
65549
65780
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65550
65781
|
message: string
|
|
65551
65782
|
}
|
|
65783
|
+
| {
|
|
65784
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
65785
|
+
type: 'no_card_on_encoder'
|
|
65786
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65787
|
+
message: string
|
|
65788
|
+
}
|
|
65552
65789
|
}
|
|
65553
65790
|
| {
|
|
65554
65791
|
/** ID of the action attempt. */
|
|
@@ -65929,6 +66166,12 @@ export type Routes = {
|
|
|
65929
66166
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
65930
66167
|
message: string
|
|
65931
66168
|
}
|
|
66169
|
+
| {
|
|
66170
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
66171
|
+
type: 'no_card_on_encoder'
|
|
66172
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66173
|
+
message: string
|
|
66174
|
+
}
|
|
65932
66175
|
}
|
|
65933
66176
|
| {
|
|
65934
66177
|
/** ID of the action attempt. */
|
|
@@ -71109,6 +71352,7 @@ export type Routes = {
|
|
|
71109
71352
|
| 'dormakaba_oracode_door'
|
|
71110
71353
|
| 'tedee_lock'
|
|
71111
71354
|
| 'akiles_lock'
|
|
71355
|
+
| 'ultraloq_lock'
|
|
71112
71356
|
)
|
|
71113
71357
|
| 'keynest_key'
|
|
71114
71358
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -71801,11 +72045,13 @@ export type Routes = {
|
|
|
71801
72045
|
has_photo?: boolean | undefined
|
|
71802
72046
|
}
|
|
71803
72047
|
| undefined
|
|
71804
|
-
/** Metadata for
|
|
72048
|
+
/** Metadata for an Ultraloq device. */
|
|
71805
72049
|
ultraloq_metadata?:
|
|
71806
72050
|
| {
|
|
71807
|
-
/** Device ID for
|
|
72051
|
+
/** Device ID for an Ultraloq device. */
|
|
71808
72052
|
device_id: string
|
|
72053
|
+
/** Device name for an Ultraloq device. */
|
|
72054
|
+
device_name: string
|
|
71809
72055
|
}
|
|
71810
72056
|
| undefined
|
|
71811
72057
|
}) &
|
|
@@ -73727,6 +73973,12 @@ export type Routes = {
|
|
|
73727
73973
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73728
73974
|
message: string
|
|
73729
73975
|
}
|
|
73976
|
+
| {
|
|
73977
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
73978
|
+
type: 'no_card_on_encoder'
|
|
73979
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
73980
|
+
message: string
|
|
73981
|
+
}
|
|
73730
73982
|
}
|
|
73731
73983
|
| {
|
|
73732
73984
|
/** ID of the action attempt. */
|
|
@@ -74107,6 +74359,12 @@ export type Routes = {
|
|
|
74107
74359
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74108
74360
|
message: string
|
|
74109
74361
|
}
|
|
74362
|
+
| {
|
|
74363
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
74364
|
+
type: 'no_card_on_encoder'
|
|
74365
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74366
|
+
message: string
|
|
74367
|
+
}
|
|
74110
74368
|
}
|
|
74111
74369
|
| {
|
|
74112
74370
|
/** ID of the action attempt. */
|
|
@@ -75180,6 +75438,12 @@ export type Routes = {
|
|
|
75180
75438
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75181
75439
|
message: string
|
|
75182
75440
|
}
|
|
75441
|
+
| {
|
|
75442
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
75443
|
+
type: 'no_card_on_encoder'
|
|
75444
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75445
|
+
message: string
|
|
75446
|
+
}
|
|
75183
75447
|
}
|
|
75184
75448
|
| {
|
|
75185
75449
|
/** ID of the action attempt. */
|
|
@@ -75560,6 +75824,12 @@ export type Routes = {
|
|
|
75560
75824
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75561
75825
|
message: string
|
|
75562
75826
|
}
|
|
75827
|
+
| {
|
|
75828
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
75829
|
+
type: 'no_card_on_encoder'
|
|
75830
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75831
|
+
message: string
|
|
75832
|
+
}
|
|
75563
75833
|
}
|
|
75564
75834
|
| {
|
|
75565
75835
|
/** ID of the action attempt. */
|
|
@@ -76742,6 +77012,12 @@ export type Routes = {
|
|
|
76742
77012
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76743
77013
|
message: string
|
|
76744
77014
|
}
|
|
77015
|
+
| {
|
|
77016
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
77017
|
+
type: 'no_card_on_encoder'
|
|
77018
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77019
|
+
message: string
|
|
77020
|
+
}
|
|
76745
77021
|
}
|
|
76746
77022
|
| {
|
|
76747
77023
|
/** ID of the action attempt. */
|
|
@@ -77122,6 +77398,12 @@ export type Routes = {
|
|
|
77122
77398
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77123
77399
|
message: string
|
|
77124
77400
|
}
|
|
77401
|
+
| {
|
|
77402
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
77403
|
+
type: 'no_card_on_encoder'
|
|
77404
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
77405
|
+
message: string
|
|
77406
|
+
}
|
|
77125
77407
|
}
|
|
77126
77408
|
| {
|
|
77127
77409
|
/** ID of the action attempt. */
|
|
@@ -77730,6 +78012,7 @@ export type Routes = {
|
|
|
77730
78012
|
| 'dormakaba_oracode_door'
|
|
77731
78013
|
| 'tedee_lock'
|
|
77732
78014
|
| 'akiles_lock'
|
|
78015
|
+
| 'ultraloq_lock'
|
|
77733
78016
|
)
|
|
77734
78017
|
| 'keynest_key'
|
|
77735
78018
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -78422,11 +78705,13 @@ export type Routes = {
|
|
|
78422
78705
|
has_photo?: boolean | undefined
|
|
78423
78706
|
}
|
|
78424
78707
|
| undefined
|
|
78425
|
-
/** Metadata for
|
|
78708
|
+
/** Metadata for an Ultraloq device. */
|
|
78426
78709
|
ultraloq_metadata?:
|
|
78427
78710
|
| {
|
|
78428
|
-
/** Device ID for
|
|
78711
|
+
/** Device ID for an Ultraloq device. */
|
|
78429
78712
|
device_id: string
|
|
78713
|
+
/** Device name for an Ultraloq device. */
|
|
78714
|
+
device_name: string
|
|
78430
78715
|
}
|
|
78431
78716
|
| undefined
|
|
78432
78717
|
}) &
|
|
@@ -79745,6 +80030,12 @@ export type Routes = {
|
|
|
79745
80030
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
79746
80031
|
message: string
|
|
79747
80032
|
}
|
|
80033
|
+
| {
|
|
80034
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
80035
|
+
type: 'no_card_on_encoder'
|
|
80036
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80037
|
+
message: string
|
|
80038
|
+
}
|
|
79748
80039
|
}
|
|
79749
80040
|
| {
|
|
79750
80041
|
/** ID of the action attempt. */
|
|
@@ -80125,6 +80416,12 @@ export type Routes = {
|
|
|
80125
80416
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80126
80417
|
message: string
|
|
80127
80418
|
}
|
|
80419
|
+
| {
|
|
80420
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
80421
|
+
type: 'no_card_on_encoder'
|
|
80422
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80423
|
+
message: string
|
|
80424
|
+
}
|
|
80128
80425
|
}
|
|
80129
80426
|
| {
|
|
80130
80427
|
/** ID of the action attempt. */
|
|
@@ -81202,6 +81499,12 @@ export type Routes = {
|
|
|
81202
81499
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81203
81500
|
message: string
|
|
81204
81501
|
}
|
|
81502
|
+
| {
|
|
81503
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
81504
|
+
type: 'no_card_on_encoder'
|
|
81505
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81506
|
+
message: string
|
|
81507
|
+
}
|
|
81205
81508
|
}
|
|
81206
81509
|
| {
|
|
81207
81510
|
/** ID of the action attempt. */
|
|
@@ -81582,6 +81885,12 @@ export type Routes = {
|
|
|
81582
81885
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81583
81886
|
message: string
|
|
81584
81887
|
}
|
|
81888
|
+
| {
|
|
81889
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
81890
|
+
type: 'no_card_on_encoder'
|
|
81891
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81892
|
+
message: string
|
|
81893
|
+
}
|
|
81585
81894
|
}
|
|
81586
81895
|
| {
|
|
81587
81896
|
/** ID of the action attempt. */
|
|
@@ -82283,6 +82592,7 @@ export type Routes = {
|
|
|
82283
82592
|
| 'dormakaba_oracode_door'
|
|
82284
82593
|
| 'tedee_lock'
|
|
82285
82594
|
| 'akiles_lock'
|
|
82595
|
+
| 'ultraloq_lock'
|
|
82286
82596
|
)
|
|
82287
82597
|
| 'keynest_key'
|
|
82288
82598
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -82975,11 +83285,13 @@ export type Routes = {
|
|
|
82975
83285
|
has_photo?: boolean | undefined
|
|
82976
83286
|
}
|
|
82977
83287
|
| undefined
|
|
82978
|
-
/** Metadata for
|
|
83288
|
+
/** Metadata for an Ultraloq device. */
|
|
82979
83289
|
ultraloq_metadata?:
|
|
82980
83290
|
| {
|
|
82981
|
-
/** Device ID for
|
|
83291
|
+
/** Device ID for an Ultraloq device. */
|
|
82982
83292
|
device_id: string
|
|
83293
|
+
/** Device name for an Ultraloq device. */
|
|
83294
|
+
device_name: string
|
|
82983
83295
|
}
|
|
82984
83296
|
| undefined
|
|
82985
83297
|
}) &
|
|
@@ -83803,6 +84115,7 @@ export type Routes = {
|
|
|
83803
84115
|
| 'dormakaba_oracode_door'
|
|
83804
84116
|
| 'tedee_lock'
|
|
83805
84117
|
| 'akiles_lock'
|
|
84118
|
+
| 'ultraloq_lock'
|
|
83806
84119
|
)
|
|
83807
84120
|
| 'keynest_key'
|
|
83808
84121
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -84495,11 +84808,13 @@ export type Routes = {
|
|
|
84495
84808
|
has_photo?: boolean | undefined
|
|
84496
84809
|
}
|
|
84497
84810
|
| undefined
|
|
84498
|
-
/** Metadata for
|
|
84811
|
+
/** Metadata for an Ultraloq device. */
|
|
84499
84812
|
ultraloq_metadata?:
|
|
84500
84813
|
| {
|
|
84501
|
-
/** Device ID for
|
|
84814
|
+
/** Device ID for an Ultraloq device. */
|
|
84502
84815
|
device_id: string
|
|
84816
|
+
/** Device name for an Ultraloq device. */
|
|
84817
|
+
device_name: string
|
|
84503
84818
|
}
|
|
84504
84819
|
| undefined
|
|
84505
84820
|
}) &
|
|
@@ -85814,6 +86129,12 @@ export type Routes = {
|
|
|
85814
86129
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85815
86130
|
message: string
|
|
85816
86131
|
}
|
|
86132
|
+
| {
|
|
86133
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
86134
|
+
type: 'no_card_on_encoder'
|
|
86135
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86136
|
+
message: string
|
|
86137
|
+
}
|
|
85817
86138
|
}
|
|
85818
86139
|
| {
|
|
85819
86140
|
/** ID of the action attempt. */
|
|
@@ -86194,6 +86515,12 @@ export type Routes = {
|
|
|
86194
86515
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86195
86516
|
message: string
|
|
86196
86517
|
}
|
|
86518
|
+
| {
|
|
86519
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
86520
|
+
type: 'no_card_on_encoder'
|
|
86521
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
86522
|
+
message: string
|
|
86523
|
+
}
|
|
86197
86524
|
}
|
|
86198
86525
|
| {
|
|
86199
86526
|
/** ID of the action attempt. */
|
|
@@ -87460,6 +87787,12 @@ export type Routes = {
|
|
|
87460
87787
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87461
87788
|
message: string
|
|
87462
87789
|
}
|
|
87790
|
+
| {
|
|
87791
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
87792
|
+
type: 'no_card_on_encoder'
|
|
87793
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87794
|
+
message: string
|
|
87795
|
+
}
|
|
87463
87796
|
}
|
|
87464
87797
|
| {
|
|
87465
87798
|
/** ID of the action attempt. */
|
|
@@ -87840,6 +88173,12 @@ export type Routes = {
|
|
|
87840
88173
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
87841
88174
|
message: string
|
|
87842
88175
|
}
|
|
88176
|
+
| {
|
|
88177
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
88178
|
+
type: 'no_card_on_encoder'
|
|
88179
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88180
|
+
message: string
|
|
88181
|
+
}
|
|
87843
88182
|
}
|
|
87844
88183
|
| {
|
|
87845
88184
|
/** ID of the action attempt. */
|
|
@@ -88945,6 +89284,12 @@ export type Routes = {
|
|
|
88945
89284
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
88946
89285
|
message: string
|
|
88947
89286
|
}
|
|
89287
|
+
| {
|
|
89288
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
89289
|
+
type: 'no_card_on_encoder'
|
|
89290
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89291
|
+
message: string
|
|
89292
|
+
}
|
|
88948
89293
|
}
|
|
88949
89294
|
| {
|
|
88950
89295
|
/** ID of the action attempt. */
|
|
@@ -89325,6 +89670,12 @@ export type Routes = {
|
|
|
89325
89670
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89326
89671
|
message: string
|
|
89327
89672
|
}
|
|
89673
|
+
| {
|
|
89674
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
89675
|
+
type: 'no_card_on_encoder'
|
|
89676
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
89677
|
+
message: string
|
|
89678
|
+
}
|
|
89328
89679
|
}
|
|
89329
89680
|
| {
|
|
89330
89681
|
/** ID of the action attempt. */
|
|
@@ -90543,6 +90894,12 @@ export type Routes = {
|
|
|
90543
90894
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90544
90895
|
message: string
|
|
90545
90896
|
}
|
|
90897
|
+
| {
|
|
90898
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
90899
|
+
type: 'no_card_on_encoder'
|
|
90900
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90901
|
+
message: string
|
|
90902
|
+
}
|
|
90546
90903
|
}
|
|
90547
90904
|
| {
|
|
90548
90905
|
/** ID of the action attempt. */
|
|
@@ -90923,6 +91280,12 @@ export type Routes = {
|
|
|
90923
91280
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
90924
91281
|
message: string
|
|
90925
91282
|
}
|
|
91283
|
+
| {
|
|
91284
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
91285
|
+
type: 'no_card_on_encoder'
|
|
91286
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91287
|
+
message: string
|
|
91288
|
+
}
|
|
90926
91289
|
}
|
|
90927
91290
|
| {
|
|
90928
91291
|
/** ID of the action attempt. */
|
|
@@ -92074,6 +92437,7 @@ export type Routes = {
|
|
|
92074
92437
|
| 'dormakaba_oracode_door'
|
|
92075
92438
|
| 'tedee_lock'
|
|
92076
92439
|
| 'akiles_lock'
|
|
92440
|
+
| 'ultraloq_lock'
|
|
92077
92441
|
)
|
|
92078
92442
|
| 'keynest_key'
|
|
92079
92443
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -92766,11 +93130,13 @@ export type Routes = {
|
|
|
92766
93130
|
has_photo?: boolean | undefined
|
|
92767
93131
|
}
|
|
92768
93132
|
| undefined
|
|
92769
|
-
/** Metadata for
|
|
93133
|
+
/** Metadata for an Ultraloq device. */
|
|
92770
93134
|
ultraloq_metadata?:
|
|
92771
93135
|
| {
|
|
92772
|
-
/** Device ID for
|
|
93136
|
+
/** Device ID for an Ultraloq device. */
|
|
92773
93137
|
device_id: string
|
|
93138
|
+
/** Device name for an Ultraloq device. */
|
|
93139
|
+
device_name: string
|
|
92774
93140
|
}
|
|
92775
93141
|
| undefined
|
|
92776
93142
|
}) &
|
|
@@ -93596,6 +93962,7 @@ export type Routes = {
|
|
|
93596
93962
|
| 'dormakaba_oracode_door'
|
|
93597
93963
|
| 'tedee_lock'
|
|
93598
93964
|
| 'akiles_lock'
|
|
93965
|
+
| 'ultraloq_lock'
|
|
93599
93966
|
)
|
|
93600
93967
|
| 'keynest_key'
|
|
93601
93968
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -94288,11 +94655,13 @@ export type Routes = {
|
|
|
94288
94655
|
has_photo?: boolean | undefined
|
|
94289
94656
|
}
|
|
94290
94657
|
| undefined
|
|
94291
|
-
/** Metadata for
|
|
94658
|
+
/** Metadata for an Ultraloq device. */
|
|
94292
94659
|
ultraloq_metadata?:
|
|
94293
94660
|
| {
|
|
94294
|
-
/** Device ID for
|
|
94661
|
+
/** Device ID for an Ultraloq device. */
|
|
94295
94662
|
device_id: string
|
|
94663
|
+
/** Device name for an Ultraloq device. */
|
|
94664
|
+
device_name: string
|
|
94296
94665
|
}
|
|
94297
94666
|
| undefined
|
|
94298
94667
|
}) &
|
|
@@ -96125,6 +96494,7 @@ export type Routes = {
|
|
|
96125
96494
|
| 'dormakaba_oracode_door'
|
|
96126
96495
|
| 'tedee_lock'
|
|
96127
96496
|
| 'akiles_lock'
|
|
96497
|
+
| 'ultraloq_lock'
|
|
96128
96498
|
)
|
|
96129
96499
|
| 'keynest_key'
|
|
96130
96500
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -96817,11 +97187,13 @@ export type Routes = {
|
|
|
96817
97187
|
has_photo?: boolean | undefined
|
|
96818
97188
|
}
|
|
96819
97189
|
| undefined
|
|
96820
|
-
/** Metadata for
|
|
97190
|
+
/** Metadata for an Ultraloq device. */
|
|
96821
97191
|
ultraloq_metadata?:
|
|
96822
97192
|
| {
|
|
96823
|
-
/** Device ID for
|
|
97193
|
+
/** Device ID for an Ultraloq device. */
|
|
96824
97194
|
device_id: string
|
|
97195
|
+
/** Device name for an Ultraloq device. */
|
|
97196
|
+
device_name: string
|
|
96825
97197
|
}
|
|
96826
97198
|
| undefined
|
|
96827
97199
|
}) &
|
|
@@ -99125,6 +99497,12 @@ export type Routes = {
|
|
|
99125
99497
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99126
99498
|
message: string
|
|
99127
99499
|
}
|
|
99500
|
+
| {
|
|
99501
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
99502
|
+
type: 'no_card_on_encoder'
|
|
99503
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99504
|
+
message: string
|
|
99505
|
+
}
|
|
99128
99506
|
}
|
|
99129
99507
|
| {
|
|
99130
99508
|
/** ID of the action attempt. */
|
|
@@ -99509,6 +99887,12 @@ export type Routes = {
|
|
|
99509
99887
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99510
99888
|
message: string
|
|
99511
99889
|
}
|
|
99890
|
+
| {
|
|
99891
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
99892
|
+
type: 'no_card_on_encoder'
|
|
99893
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99894
|
+
message: string
|
|
99895
|
+
}
|
|
99512
99896
|
}
|
|
99513
99897
|
| {
|
|
99514
99898
|
/** ID of the action attempt. */
|
|
@@ -100417,6 +100801,7 @@ export type Routes = {
|
|
|
100417
100801
|
| 'dormakaba_oracode_door'
|
|
100418
100802
|
| 'tedee_lock'
|
|
100419
100803
|
| 'akiles_lock'
|
|
100804
|
+
| 'ultraloq_lock'
|
|
100420
100805
|
)
|
|
100421
100806
|
| 'keynest_key'
|
|
100422
100807
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
@@ -105052,6 +105437,12 @@ export type Routes = {
|
|
|
105052
105437
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105053
105438
|
message: string
|
|
105054
105439
|
}
|
|
105440
|
+
| {
|
|
105441
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
105442
|
+
type: 'no_card_on_encoder'
|
|
105443
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105444
|
+
message: string
|
|
105445
|
+
}
|
|
105055
105446
|
}
|
|
105056
105447
|
| {
|
|
105057
105448
|
/** ID of the action attempt. */
|
|
@@ -105432,6 +105823,12 @@ export type Routes = {
|
|
|
105432
105823
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105433
105824
|
message: string
|
|
105434
105825
|
}
|
|
105826
|
+
| {
|
|
105827
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
105828
|
+
type: 'no_card_on_encoder'
|
|
105829
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105830
|
+
message: string
|
|
105831
|
+
}
|
|
105435
105832
|
}
|
|
105436
105833
|
| {
|
|
105437
105834
|
/** ID of the action attempt. */
|