@seamapi/types 1.363.1 → 1.365.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 +855 -45
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2125 -542
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +464 -109
- package/lib/seam/connect/models/access-codes/managed-access-code.js +74 -17
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +156 -26
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -2
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.js +1 -2
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +2 -2
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/models/acs/acs-user.js +1 -2
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +1 -2
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +1 -2
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/locations/index.d.ts +1 -0
- package/lib/seam/connect/models/locations/index.js +2 -0
- package/lib/seam/connect/models/locations/index.js.map +1 -0
- package/lib/seam/connect/models/locations/location.d.ts +49 -0
- package/lib/seam/connect/models/locations/location.js +25 -0
- package/lib/seam/connect/models/locations/location.js.map +1 -0
- package/lib/seam/connect/openapi.d.ts +803 -0
- package/lib/seam/connect/openapi.js +813 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +494 -54
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +2 -0
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -19
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -2
- package/src/lib/seam/connect/models/acs/acs-system.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-user.ts +1 -2
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +1 -2
- package/src/lib/seam/connect/models/devices/device.ts +1 -2
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/locations/index.ts +1 -0
- package/src/lib/seam/connect/models/locations/location.ts +30 -0
- package/src/lib/seam/connect/openapi.ts +838 -32
- package/src/lib/seam/connect/route-types.ts +560 -63
|
@@ -937,6 +937,12 @@ export interface Routes {
|
|
|
937
937
|
created_at?: string | undefined;
|
|
938
938
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
939
939
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
940
|
+
} | {
|
|
941
|
+
message: string;
|
|
942
|
+
is_access_code_error: true;
|
|
943
|
+
created_at?: string | undefined;
|
|
944
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
945
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
940
946
|
} | {
|
|
941
947
|
message: string;
|
|
942
948
|
is_access_code_error: true;
|
|
@@ -1026,7 +1032,13 @@ export interface Routes {
|
|
|
1026
1032
|
is_access_code_error: true;
|
|
1027
1033
|
created_at?: string | undefined;
|
|
1028
1034
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1029
|
-
error_code: '
|
|
1035
|
+
error_code: 'august_lock_temporarily_offline';
|
|
1036
|
+
} | {
|
|
1037
|
+
message: string;
|
|
1038
|
+
is_access_code_error: true;
|
|
1039
|
+
created_at?: string | undefined;
|
|
1040
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1041
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
1030
1042
|
} | {
|
|
1031
1043
|
message: string;
|
|
1032
1044
|
is_access_code_error: true;
|
|
@@ -1039,6 +1051,24 @@ export interface Routes {
|
|
|
1039
1051
|
created_at?: string | undefined;
|
|
1040
1052
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1041
1053
|
error_code: 'hubitat_no_free_positions_available';
|
|
1054
|
+
} | {
|
|
1055
|
+
message: string;
|
|
1056
|
+
is_access_code_error: true;
|
|
1057
|
+
created_at?: string | undefined;
|
|
1058
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1059
|
+
error_code: 'wyze_duplicate_code_name';
|
|
1060
|
+
} | {
|
|
1061
|
+
message: string;
|
|
1062
|
+
is_access_code_error: true;
|
|
1063
|
+
created_at?: string | undefined;
|
|
1064
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1065
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
1066
|
+
} | {
|
|
1067
|
+
message: string;
|
|
1068
|
+
is_access_code_error: true;
|
|
1069
|
+
created_at?: string | undefined;
|
|
1070
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1071
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
1042
1072
|
} | {
|
|
1043
1073
|
message: string;
|
|
1044
1074
|
is_device_error: false;
|
|
@@ -1143,11 +1173,6 @@ export interface Routes {
|
|
|
1143
1173
|
created_at?: string | undefined;
|
|
1144
1174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1145
1175
|
warning_code: 'schlage_creation_outage';
|
|
1146
|
-
} | {
|
|
1147
|
-
message: string;
|
|
1148
|
-
created_at?: string | undefined;
|
|
1149
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1150
|
-
warning_code: 'salto_office_mode';
|
|
1151
1176
|
} | {
|
|
1152
1177
|
message: string;
|
|
1153
1178
|
created_at?: string | undefined;
|
|
@@ -1173,6 +1198,11 @@ export interface Routes {
|
|
|
1173
1198
|
created_at?: string | undefined;
|
|
1174
1199
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1175
1200
|
warning_code: 'august_device_programming_delay';
|
|
1201
|
+
} | {
|
|
1202
|
+
message: string;
|
|
1203
|
+
created_at?: string | undefined;
|
|
1204
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1205
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
1176
1206
|
} | {
|
|
1177
1207
|
message: string;
|
|
1178
1208
|
created_at?: string | undefined;
|
|
@@ -1271,6 +1301,12 @@ export interface Routes {
|
|
|
1271
1301
|
created_at?: string | undefined;
|
|
1272
1302
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1273
1303
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
1304
|
+
} | {
|
|
1305
|
+
message: string;
|
|
1306
|
+
is_access_code_error: true;
|
|
1307
|
+
created_at?: string | undefined;
|
|
1308
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1309
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
1274
1310
|
} | {
|
|
1275
1311
|
message: string;
|
|
1276
1312
|
is_access_code_error: true;
|
|
@@ -1360,7 +1396,13 @@ export interface Routes {
|
|
|
1360
1396
|
is_access_code_error: true;
|
|
1361
1397
|
created_at?: string | undefined;
|
|
1362
1398
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1363
|
-
error_code: '
|
|
1399
|
+
error_code: 'august_lock_temporarily_offline';
|
|
1400
|
+
} | {
|
|
1401
|
+
message: string;
|
|
1402
|
+
is_access_code_error: true;
|
|
1403
|
+
created_at?: string | undefined;
|
|
1404
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1405
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
1364
1406
|
} | {
|
|
1365
1407
|
message: string;
|
|
1366
1408
|
is_access_code_error: true;
|
|
@@ -1373,6 +1415,24 @@ export interface Routes {
|
|
|
1373
1415
|
created_at?: string | undefined;
|
|
1374
1416
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1375
1417
|
error_code: 'hubitat_no_free_positions_available';
|
|
1418
|
+
} | {
|
|
1419
|
+
message: string;
|
|
1420
|
+
is_access_code_error: true;
|
|
1421
|
+
created_at?: string | undefined;
|
|
1422
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1423
|
+
error_code: 'wyze_duplicate_code_name';
|
|
1424
|
+
} | {
|
|
1425
|
+
message: string;
|
|
1426
|
+
is_access_code_error: true;
|
|
1427
|
+
created_at?: string | undefined;
|
|
1428
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1429
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
1430
|
+
} | {
|
|
1431
|
+
message: string;
|
|
1432
|
+
is_access_code_error: true;
|
|
1433
|
+
created_at?: string | undefined;
|
|
1434
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1435
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
1376
1436
|
} | {
|
|
1377
1437
|
message: string;
|
|
1378
1438
|
is_device_error: false;
|
|
@@ -1477,11 +1537,6 @@ export interface Routes {
|
|
|
1477
1537
|
created_at?: string | undefined;
|
|
1478
1538
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1479
1539
|
warning_code: 'schlage_creation_outage';
|
|
1480
|
-
} | {
|
|
1481
|
-
message: string;
|
|
1482
|
-
created_at?: string | undefined;
|
|
1483
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1484
|
-
warning_code: 'salto_office_mode';
|
|
1485
1540
|
} | {
|
|
1486
1541
|
message: string;
|
|
1487
1542
|
created_at?: string | undefined;
|
|
@@ -1507,6 +1562,11 @@ export interface Routes {
|
|
|
1507
1562
|
created_at?: string | undefined;
|
|
1508
1563
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1509
1564
|
warning_code: 'august_device_programming_delay';
|
|
1565
|
+
} | {
|
|
1566
|
+
message: string;
|
|
1567
|
+
created_at?: string | undefined;
|
|
1568
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1569
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
1510
1570
|
} | {
|
|
1511
1571
|
message: string;
|
|
1512
1572
|
created_at?: string | undefined;
|
|
@@ -2502,6 +2562,12 @@ export interface Routes {
|
|
|
2502
2562
|
created_at?: string | undefined;
|
|
2503
2563
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2504
2564
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
2565
|
+
} | {
|
|
2566
|
+
message: string;
|
|
2567
|
+
is_access_code_error: true;
|
|
2568
|
+
created_at?: string | undefined;
|
|
2569
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2570
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
2505
2571
|
} | {
|
|
2506
2572
|
message: string;
|
|
2507
2573
|
is_access_code_error: true;
|
|
@@ -2591,7 +2657,13 @@ export interface Routes {
|
|
|
2591
2657
|
is_access_code_error: true;
|
|
2592
2658
|
created_at?: string | undefined;
|
|
2593
2659
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2594
|
-
error_code: '
|
|
2660
|
+
error_code: 'august_lock_temporarily_offline';
|
|
2661
|
+
} | {
|
|
2662
|
+
message: string;
|
|
2663
|
+
is_access_code_error: true;
|
|
2664
|
+
created_at?: string | undefined;
|
|
2665
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2666
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
2595
2667
|
} | {
|
|
2596
2668
|
message: string;
|
|
2597
2669
|
is_access_code_error: true;
|
|
@@ -2604,6 +2676,24 @@ export interface Routes {
|
|
|
2604
2676
|
created_at?: string | undefined;
|
|
2605
2677
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2606
2678
|
error_code: 'hubitat_no_free_positions_available';
|
|
2679
|
+
} | {
|
|
2680
|
+
message: string;
|
|
2681
|
+
is_access_code_error: true;
|
|
2682
|
+
created_at?: string | undefined;
|
|
2683
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2684
|
+
error_code: 'wyze_duplicate_code_name';
|
|
2685
|
+
} | {
|
|
2686
|
+
message: string;
|
|
2687
|
+
is_access_code_error: true;
|
|
2688
|
+
created_at?: string | undefined;
|
|
2689
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2690
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
2691
|
+
} | {
|
|
2692
|
+
message: string;
|
|
2693
|
+
is_access_code_error: true;
|
|
2694
|
+
created_at?: string | undefined;
|
|
2695
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2696
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
2607
2697
|
} | {
|
|
2608
2698
|
message: string;
|
|
2609
2699
|
is_device_error: false;
|
|
@@ -2708,11 +2798,6 @@ export interface Routes {
|
|
|
2708
2798
|
created_at?: string | undefined;
|
|
2709
2799
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2710
2800
|
warning_code: 'schlage_creation_outage';
|
|
2711
|
-
} | {
|
|
2712
|
-
message: string;
|
|
2713
|
-
created_at?: string | undefined;
|
|
2714
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2715
|
-
warning_code: 'salto_office_mode';
|
|
2716
2801
|
} | {
|
|
2717
2802
|
message: string;
|
|
2718
2803
|
created_at?: string | undefined;
|
|
@@ -2738,6 +2823,11 @@ export interface Routes {
|
|
|
2738
2823
|
created_at?: string | undefined;
|
|
2739
2824
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2740
2825
|
warning_code: 'august_device_programming_delay';
|
|
2826
|
+
} | {
|
|
2827
|
+
message: string;
|
|
2828
|
+
created_at?: string | undefined;
|
|
2829
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2830
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
2741
2831
|
} | {
|
|
2742
2832
|
message: string;
|
|
2743
2833
|
created_at?: string | undefined;
|
|
@@ -2823,6 +2913,12 @@ export interface Routes {
|
|
|
2823
2913
|
created_at?: string | undefined;
|
|
2824
2914
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2825
2915
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
2916
|
+
} | {
|
|
2917
|
+
message: string;
|
|
2918
|
+
is_access_code_error: true;
|
|
2919
|
+
created_at?: string | undefined;
|
|
2920
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2921
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
2826
2922
|
} | {
|
|
2827
2923
|
message: string;
|
|
2828
2924
|
is_access_code_error: true;
|
|
@@ -2912,7 +3008,13 @@ export interface Routes {
|
|
|
2912
3008
|
is_access_code_error: true;
|
|
2913
3009
|
created_at?: string | undefined;
|
|
2914
3010
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2915
|
-
error_code: '
|
|
3011
|
+
error_code: 'august_lock_temporarily_offline';
|
|
3012
|
+
} | {
|
|
3013
|
+
message: string;
|
|
3014
|
+
is_access_code_error: true;
|
|
3015
|
+
created_at?: string | undefined;
|
|
3016
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3017
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
2916
3018
|
} | {
|
|
2917
3019
|
message: string;
|
|
2918
3020
|
is_access_code_error: true;
|
|
@@ -2925,6 +3027,24 @@ export interface Routes {
|
|
|
2925
3027
|
created_at?: string | undefined;
|
|
2926
3028
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2927
3029
|
error_code: 'hubitat_no_free_positions_available';
|
|
3030
|
+
} | {
|
|
3031
|
+
message: string;
|
|
3032
|
+
is_access_code_error: true;
|
|
3033
|
+
created_at?: string | undefined;
|
|
3034
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3035
|
+
error_code: 'wyze_duplicate_code_name';
|
|
3036
|
+
} | {
|
|
3037
|
+
message: string;
|
|
3038
|
+
is_access_code_error: true;
|
|
3039
|
+
created_at?: string | undefined;
|
|
3040
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3041
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
3042
|
+
} | {
|
|
3043
|
+
message: string;
|
|
3044
|
+
is_access_code_error: true;
|
|
3045
|
+
created_at?: string | undefined;
|
|
3046
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3047
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
2928
3048
|
} | {
|
|
2929
3049
|
message: string;
|
|
2930
3050
|
is_device_error: false;
|
|
@@ -3029,11 +3149,6 @@ export interface Routes {
|
|
|
3029
3149
|
created_at?: string | undefined;
|
|
3030
3150
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3031
3151
|
warning_code: 'schlage_creation_outage';
|
|
3032
|
-
} | {
|
|
3033
|
-
message: string;
|
|
3034
|
-
created_at?: string | undefined;
|
|
3035
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3036
|
-
warning_code: 'salto_office_mode';
|
|
3037
3152
|
} | {
|
|
3038
3153
|
message: string;
|
|
3039
3154
|
created_at?: string | undefined;
|
|
@@ -3059,6 +3174,11 @@ export interface Routes {
|
|
|
3059
3174
|
created_at?: string | undefined;
|
|
3060
3175
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3061
3176
|
warning_code: 'august_device_programming_delay';
|
|
3177
|
+
} | {
|
|
3178
|
+
message: string;
|
|
3179
|
+
created_at?: string | undefined;
|
|
3180
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3181
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
3062
3182
|
} | {
|
|
3063
3183
|
message: string;
|
|
3064
3184
|
created_at?: string | undefined;
|
|
@@ -3143,6 +3263,12 @@ export interface Routes {
|
|
|
3143
3263
|
created_at?: string | undefined;
|
|
3144
3264
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3145
3265
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3266
|
+
} | {
|
|
3267
|
+
message: string;
|
|
3268
|
+
is_access_code_error: true;
|
|
3269
|
+
created_at?: string | undefined;
|
|
3270
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3271
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
3146
3272
|
} | {
|
|
3147
3273
|
message: string;
|
|
3148
3274
|
is_access_code_error: true;
|
|
@@ -3232,7 +3358,13 @@ export interface Routes {
|
|
|
3232
3358
|
is_access_code_error: true;
|
|
3233
3359
|
created_at?: string | undefined;
|
|
3234
3360
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3235
|
-
error_code: '
|
|
3361
|
+
error_code: 'august_lock_temporarily_offline';
|
|
3362
|
+
} | {
|
|
3363
|
+
message: string;
|
|
3364
|
+
is_access_code_error: true;
|
|
3365
|
+
created_at?: string | undefined;
|
|
3366
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3367
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
3236
3368
|
} | {
|
|
3237
3369
|
message: string;
|
|
3238
3370
|
is_access_code_error: true;
|
|
@@ -3245,6 +3377,24 @@ export interface Routes {
|
|
|
3245
3377
|
created_at?: string | undefined;
|
|
3246
3378
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3247
3379
|
error_code: 'hubitat_no_free_positions_available';
|
|
3380
|
+
} | {
|
|
3381
|
+
message: string;
|
|
3382
|
+
is_access_code_error: true;
|
|
3383
|
+
created_at?: string | undefined;
|
|
3384
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3385
|
+
error_code: 'wyze_duplicate_code_name';
|
|
3386
|
+
} | {
|
|
3387
|
+
message: string;
|
|
3388
|
+
is_access_code_error: true;
|
|
3389
|
+
created_at?: string | undefined;
|
|
3390
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3391
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
3392
|
+
} | {
|
|
3393
|
+
message: string;
|
|
3394
|
+
is_access_code_error: true;
|
|
3395
|
+
created_at?: string | undefined;
|
|
3396
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3397
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3248
3398
|
} | {
|
|
3249
3399
|
message: string;
|
|
3250
3400
|
is_device_error: false;
|
|
@@ -3349,11 +3499,6 @@ export interface Routes {
|
|
|
3349
3499
|
created_at?: string | undefined;
|
|
3350
3500
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3351
3501
|
warning_code: 'schlage_creation_outage';
|
|
3352
|
-
} | {
|
|
3353
|
-
message: string;
|
|
3354
|
-
created_at?: string | undefined;
|
|
3355
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3356
|
-
warning_code: 'salto_office_mode';
|
|
3357
3502
|
} | {
|
|
3358
3503
|
message: string;
|
|
3359
3504
|
created_at?: string | undefined;
|
|
@@ -3379,6 +3524,11 @@ export interface Routes {
|
|
|
3379
3524
|
created_at?: string | undefined;
|
|
3380
3525
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3381
3526
|
warning_code: 'august_device_programming_delay';
|
|
3527
|
+
} | {
|
|
3528
|
+
message: string;
|
|
3529
|
+
created_at?: string | undefined;
|
|
3530
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3531
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
3382
3532
|
} | {
|
|
3383
3533
|
message: string;
|
|
3384
3534
|
created_at?: string | undefined;
|
|
@@ -3451,6 +3601,12 @@ export interface Routes {
|
|
|
3451
3601
|
created_at?: string | undefined;
|
|
3452
3602
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3453
3603
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3604
|
+
} | {
|
|
3605
|
+
message: string;
|
|
3606
|
+
is_access_code_error: true;
|
|
3607
|
+
created_at?: string | undefined;
|
|
3608
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3609
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
3454
3610
|
} | {
|
|
3455
3611
|
message: string;
|
|
3456
3612
|
is_access_code_error: true;
|
|
@@ -3540,7 +3696,13 @@ export interface Routes {
|
|
|
3540
3696
|
is_access_code_error: true;
|
|
3541
3697
|
created_at?: string | undefined;
|
|
3542
3698
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3543
|
-
error_code: '
|
|
3699
|
+
error_code: 'august_lock_temporarily_offline';
|
|
3700
|
+
} | {
|
|
3701
|
+
message: string;
|
|
3702
|
+
is_access_code_error: true;
|
|
3703
|
+
created_at?: string | undefined;
|
|
3704
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3705
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
3544
3706
|
} | {
|
|
3545
3707
|
message: string;
|
|
3546
3708
|
is_access_code_error: true;
|
|
@@ -3553,6 +3715,24 @@ export interface Routes {
|
|
|
3553
3715
|
created_at?: string | undefined;
|
|
3554
3716
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3555
3717
|
error_code: 'hubitat_no_free_positions_available';
|
|
3718
|
+
} | {
|
|
3719
|
+
message: string;
|
|
3720
|
+
is_access_code_error: true;
|
|
3721
|
+
created_at?: string | undefined;
|
|
3722
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3723
|
+
error_code: 'wyze_duplicate_code_name';
|
|
3724
|
+
} | {
|
|
3725
|
+
message: string;
|
|
3726
|
+
is_access_code_error: true;
|
|
3727
|
+
created_at?: string | undefined;
|
|
3728
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3729
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
3730
|
+
} | {
|
|
3731
|
+
message: string;
|
|
3732
|
+
is_access_code_error: true;
|
|
3733
|
+
created_at?: string | undefined;
|
|
3734
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3735
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3556
3736
|
} | {
|
|
3557
3737
|
message: string;
|
|
3558
3738
|
is_device_error: false;
|
|
@@ -3657,11 +3837,6 @@ export interface Routes {
|
|
|
3657
3837
|
created_at?: string | undefined;
|
|
3658
3838
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3659
3839
|
warning_code: 'schlage_creation_outage';
|
|
3660
|
-
} | {
|
|
3661
|
-
message: string;
|
|
3662
|
-
created_at?: string | undefined;
|
|
3663
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3664
|
-
warning_code: 'salto_office_mode';
|
|
3665
3840
|
} | {
|
|
3666
3841
|
message: string;
|
|
3667
3842
|
created_at?: string | undefined;
|
|
@@ -3687,6 +3862,11 @@ export interface Routes {
|
|
|
3687
3862
|
created_at?: string | undefined;
|
|
3688
3863
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3689
3864
|
warning_code: 'august_device_programming_delay';
|
|
3865
|
+
} | {
|
|
3866
|
+
message: string;
|
|
3867
|
+
created_at?: string | undefined;
|
|
3868
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3869
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
3690
3870
|
} | {
|
|
3691
3871
|
message: string;
|
|
3692
3872
|
created_at?: string | undefined;
|
|
@@ -3767,6 +3947,12 @@ export interface Routes {
|
|
|
3767
3947
|
created_at?: string | undefined;
|
|
3768
3948
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3769
3949
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
3950
|
+
} | {
|
|
3951
|
+
message: string;
|
|
3952
|
+
is_access_code_error: true;
|
|
3953
|
+
created_at?: string | undefined;
|
|
3954
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3955
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
3770
3956
|
} | {
|
|
3771
3957
|
message: string;
|
|
3772
3958
|
is_access_code_error: true;
|
|
@@ -3856,7 +4042,13 @@ export interface Routes {
|
|
|
3856
4042
|
is_access_code_error: true;
|
|
3857
4043
|
created_at?: string | undefined;
|
|
3858
4044
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3859
|
-
error_code: '
|
|
4045
|
+
error_code: 'august_lock_temporarily_offline';
|
|
4046
|
+
} | {
|
|
4047
|
+
message: string;
|
|
4048
|
+
is_access_code_error: true;
|
|
4049
|
+
created_at?: string | undefined;
|
|
4050
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4051
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
3860
4052
|
} | {
|
|
3861
4053
|
message: string;
|
|
3862
4054
|
is_access_code_error: true;
|
|
@@ -3869,6 +4061,24 @@ export interface Routes {
|
|
|
3869
4061
|
created_at?: string | undefined;
|
|
3870
4062
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
3871
4063
|
error_code: 'hubitat_no_free_positions_available';
|
|
4064
|
+
} | {
|
|
4065
|
+
message: string;
|
|
4066
|
+
is_access_code_error: true;
|
|
4067
|
+
created_at?: string | undefined;
|
|
4068
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4069
|
+
error_code: 'wyze_duplicate_code_name';
|
|
4070
|
+
} | {
|
|
4071
|
+
message: string;
|
|
4072
|
+
is_access_code_error: true;
|
|
4073
|
+
created_at?: string | undefined;
|
|
4074
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4075
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
4076
|
+
} | {
|
|
4077
|
+
message: string;
|
|
4078
|
+
is_access_code_error: true;
|
|
4079
|
+
created_at?: string | undefined;
|
|
4080
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4081
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
3872
4082
|
} | {
|
|
3873
4083
|
message: string;
|
|
3874
4084
|
is_device_error: false;
|
|
@@ -3973,11 +4183,6 @@ export interface Routes {
|
|
|
3973
4183
|
created_at?: string | undefined;
|
|
3974
4184
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3975
4185
|
warning_code: 'schlage_creation_outage';
|
|
3976
|
-
} | {
|
|
3977
|
-
message: string;
|
|
3978
|
-
created_at?: string | undefined;
|
|
3979
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3980
|
-
warning_code: 'salto_office_mode';
|
|
3981
4186
|
} | {
|
|
3982
4187
|
message: string;
|
|
3983
4188
|
created_at?: string | undefined;
|
|
@@ -4003,6 +4208,11 @@ export interface Routes {
|
|
|
4003
4208
|
created_at?: string | undefined;
|
|
4004
4209
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4005
4210
|
warning_code: 'august_device_programming_delay';
|
|
4211
|
+
} | {
|
|
4212
|
+
message: string;
|
|
4213
|
+
created_at?: string | undefined;
|
|
4214
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4215
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
4006
4216
|
} | {
|
|
4007
4217
|
message: string;
|
|
4008
4218
|
created_at?: string | undefined;
|
|
@@ -4974,6 +5184,12 @@ export interface Routes {
|
|
|
4974
5184
|
created_at?: string | undefined;
|
|
4975
5185
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4976
5186
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
5187
|
+
} | {
|
|
5188
|
+
message: string;
|
|
5189
|
+
is_access_code_error: true;
|
|
5190
|
+
created_at?: string | undefined;
|
|
5191
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5192
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
4977
5193
|
} | {
|
|
4978
5194
|
message: string;
|
|
4979
5195
|
is_access_code_error: true;
|
|
@@ -5063,7 +5279,13 @@ export interface Routes {
|
|
|
5063
5279
|
is_access_code_error: true;
|
|
5064
5280
|
created_at?: string | undefined;
|
|
5065
5281
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5066
|
-
error_code: '
|
|
5282
|
+
error_code: 'august_lock_temporarily_offline';
|
|
5283
|
+
} | {
|
|
5284
|
+
message: string;
|
|
5285
|
+
is_access_code_error: true;
|
|
5286
|
+
created_at?: string | undefined;
|
|
5287
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5288
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
5067
5289
|
} | {
|
|
5068
5290
|
message: string;
|
|
5069
5291
|
is_access_code_error: true;
|
|
@@ -5076,6 +5298,24 @@ export interface Routes {
|
|
|
5076
5298
|
created_at?: string | undefined;
|
|
5077
5299
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5078
5300
|
error_code: 'hubitat_no_free_positions_available';
|
|
5301
|
+
} | {
|
|
5302
|
+
message: string;
|
|
5303
|
+
is_access_code_error: true;
|
|
5304
|
+
created_at?: string | undefined;
|
|
5305
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5306
|
+
error_code: 'wyze_duplicate_code_name';
|
|
5307
|
+
} | {
|
|
5308
|
+
message: string;
|
|
5309
|
+
is_access_code_error: true;
|
|
5310
|
+
created_at?: string | undefined;
|
|
5311
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5312
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
5313
|
+
} | {
|
|
5314
|
+
message: string;
|
|
5315
|
+
is_access_code_error: true;
|
|
5316
|
+
created_at?: string | undefined;
|
|
5317
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5318
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
5079
5319
|
} | {
|
|
5080
5320
|
message: string;
|
|
5081
5321
|
is_device_error: false;
|
|
@@ -5180,11 +5420,6 @@ export interface Routes {
|
|
|
5180
5420
|
created_at?: string | undefined;
|
|
5181
5421
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5182
5422
|
warning_code: 'schlage_creation_outage';
|
|
5183
|
-
} | {
|
|
5184
|
-
message: string;
|
|
5185
|
-
created_at?: string | undefined;
|
|
5186
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5187
|
-
warning_code: 'salto_office_mode';
|
|
5188
5423
|
} | {
|
|
5189
5424
|
message: string;
|
|
5190
5425
|
created_at?: string | undefined;
|
|
@@ -5210,6 +5445,11 @@ export interface Routes {
|
|
|
5210
5445
|
created_at?: string | undefined;
|
|
5211
5446
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5212
5447
|
warning_code: 'august_device_programming_delay';
|
|
5448
|
+
} | {
|
|
5449
|
+
message: string;
|
|
5450
|
+
created_at?: string | undefined;
|
|
5451
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5452
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
5213
5453
|
} | {
|
|
5214
5454
|
message: string;
|
|
5215
5455
|
created_at?: string | undefined;
|
|
@@ -5272,6 +5512,12 @@ export interface Routes {
|
|
|
5272
5512
|
created_at?: string | undefined;
|
|
5273
5513
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5274
5514
|
error_code: 'smartthings_failed_to_set_after_multiple_retries';
|
|
5515
|
+
} | {
|
|
5516
|
+
message: string;
|
|
5517
|
+
is_access_code_error: true;
|
|
5518
|
+
created_at?: string | undefined;
|
|
5519
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5520
|
+
error_code: 'smartthings_no_free_slots_available';
|
|
5275
5521
|
} | {
|
|
5276
5522
|
message: string;
|
|
5277
5523
|
is_access_code_error: true;
|
|
@@ -5361,7 +5607,13 @@ export interface Routes {
|
|
|
5361
5607
|
is_access_code_error: true;
|
|
5362
5608
|
created_at?: string | undefined;
|
|
5363
5609
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5364
|
-
error_code: '
|
|
5610
|
+
error_code: 'august_lock_temporarily_offline';
|
|
5611
|
+
} | {
|
|
5612
|
+
message: string;
|
|
5613
|
+
is_access_code_error: true;
|
|
5614
|
+
created_at?: string | undefined;
|
|
5615
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5616
|
+
error_code: 'salto_ks_user_not_subscribed';
|
|
5365
5617
|
} | {
|
|
5366
5618
|
message: string;
|
|
5367
5619
|
is_access_code_error: true;
|
|
@@ -5374,6 +5626,24 @@ export interface Routes {
|
|
|
5374
5626
|
created_at?: string | undefined;
|
|
5375
5627
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5376
5628
|
error_code: 'hubitat_no_free_positions_available';
|
|
5629
|
+
} | {
|
|
5630
|
+
message: string;
|
|
5631
|
+
is_access_code_error: true;
|
|
5632
|
+
created_at?: string | undefined;
|
|
5633
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5634
|
+
error_code: 'wyze_duplicate_code_name';
|
|
5635
|
+
} | {
|
|
5636
|
+
message: string;
|
|
5637
|
+
is_access_code_error: true;
|
|
5638
|
+
created_at?: string | undefined;
|
|
5639
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5640
|
+
error_code: 'wyze_potential_duplicate_code';
|
|
5641
|
+
} | {
|
|
5642
|
+
message: string;
|
|
5643
|
+
is_access_code_error: true;
|
|
5644
|
+
created_at?: string | undefined;
|
|
5645
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5646
|
+
error_code: 'dormakaba_oracode_no_valid_user_level';
|
|
5377
5647
|
} | {
|
|
5378
5648
|
message: string;
|
|
5379
5649
|
is_device_error: false;
|
|
@@ -5478,11 +5748,6 @@ export interface Routes {
|
|
|
5478
5748
|
created_at?: string | undefined;
|
|
5479
5749
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5480
5750
|
warning_code: 'schlage_creation_outage';
|
|
5481
|
-
} | {
|
|
5482
|
-
message: string;
|
|
5483
|
-
created_at?: string | undefined;
|
|
5484
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5485
|
-
warning_code: 'salto_office_mode';
|
|
5486
5751
|
} | {
|
|
5487
5752
|
message: string;
|
|
5488
5753
|
created_at?: string | undefined;
|
|
@@ -5508,6 +5773,11 @@ export interface Routes {
|
|
|
5508
5773
|
created_at?: string | undefined;
|
|
5509
5774
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5510
5775
|
warning_code: 'august_device_programming_delay';
|
|
5776
|
+
} | {
|
|
5777
|
+
message: string;
|
|
5778
|
+
created_at?: string | undefined;
|
|
5779
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5780
|
+
warning_code: 'august_lock_temporarily_offline';
|
|
5511
5781
|
} | {
|
|
5512
5782
|
message: string;
|
|
5513
5783
|
created_at?: string | undefined;
|
|
@@ -14724,6 +14994,8 @@ export interface Routes {
|
|
|
14724
14994
|
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
14725
14995
|
/** */
|
|
14726
14996
|
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
14997
|
+
/** */
|
|
14998
|
+
unstable_location_id?: (string | null) | undefined;
|
|
14727
14999
|
};
|
|
14728
15000
|
formData: {};
|
|
14729
15001
|
jsonResponse: {
|
|
@@ -15779,6 +16051,8 @@ export interface Routes {
|
|
|
15779
16051
|
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
15780
16052
|
/** */
|
|
15781
16053
|
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
16054
|
+
/** */
|
|
16055
|
+
unstable_location_id?: (string | null) | undefined;
|
|
15782
16056
|
};
|
|
15783
16057
|
formData: {};
|
|
15784
16058
|
jsonResponse: {
|
|
@@ -19994,6 +20268,8 @@ export interface Routes {
|
|
|
19994
20268
|
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
19995
20269
|
/** */
|
|
19996
20270
|
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
20271
|
+
/** */
|
|
20272
|
+
unstable_location_id?: (string | null) | undefined;
|
|
19997
20273
|
};
|
|
19998
20274
|
formData: {};
|
|
19999
20275
|
jsonResponse: {
|
|
@@ -23226,6 +23502,8 @@ export interface Routes {
|
|
|
23226
23502
|
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
23227
23503
|
/** */
|
|
23228
23504
|
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
23505
|
+
/** */
|
|
23506
|
+
unstable_location_id?: (string | null) | undefined;
|
|
23229
23507
|
};
|
|
23230
23508
|
formData: {};
|
|
23231
23509
|
jsonResponse: {
|
|
@@ -32027,6 +32305,8 @@ export interface Routes {
|
|
|
32027
32305
|
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
32028
32306
|
/** */
|
|
32029
32307
|
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
32308
|
+
/** */
|
|
32309
|
+
unstable_location_id?: (string | null) | undefined;
|
|
32030
32310
|
};
|
|
32031
32311
|
formData: {};
|
|
32032
32312
|
jsonResponse: {
|
|
@@ -36419,6 +36699,166 @@ export interface Routes {
|
|
|
36419
36699
|
formData: {};
|
|
36420
36700
|
jsonResponse: {};
|
|
36421
36701
|
};
|
|
36702
|
+
'/unstable_locations/add_devices': {
|
|
36703
|
+
route: '/unstable_locations/add_devices';
|
|
36704
|
+
method: 'POST';
|
|
36705
|
+
queryParams: {};
|
|
36706
|
+
jsonBody: {
|
|
36707
|
+
location_id: string;
|
|
36708
|
+
device_ids: string[];
|
|
36709
|
+
};
|
|
36710
|
+
commonParams: {};
|
|
36711
|
+
formData: {};
|
|
36712
|
+
jsonResponse: {};
|
|
36713
|
+
};
|
|
36714
|
+
'/unstable_locations/create': {
|
|
36715
|
+
route: '/unstable_locations/create';
|
|
36716
|
+
method: 'POST';
|
|
36717
|
+
queryParams: {};
|
|
36718
|
+
jsonBody: {
|
|
36719
|
+
name: string;
|
|
36720
|
+
geolocation?: {
|
|
36721
|
+
latitude: number;
|
|
36722
|
+
longitude: number;
|
|
36723
|
+
} | undefined;
|
|
36724
|
+
time_zone?: string | undefined;
|
|
36725
|
+
};
|
|
36726
|
+
commonParams: {};
|
|
36727
|
+
formData: {};
|
|
36728
|
+
jsonResponse: {
|
|
36729
|
+
location: {
|
|
36730
|
+
/** Unique identifier for the location. */
|
|
36731
|
+
location_id: string;
|
|
36732
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
36733
|
+
workspace_id: string;
|
|
36734
|
+
/** Display name of the location. */
|
|
36735
|
+
display_name: string;
|
|
36736
|
+
/** Geographical location of the location. */
|
|
36737
|
+
geolocation?: {
|
|
36738
|
+
latitude: number;
|
|
36739
|
+
longitude: number;
|
|
36740
|
+
} | undefined;
|
|
36741
|
+
/** Time zone of the location. */
|
|
36742
|
+
time_zone?: string | undefined;
|
|
36743
|
+
/** Date and time at which the location object was created. */
|
|
36744
|
+
created_at: string;
|
|
36745
|
+
};
|
|
36746
|
+
};
|
|
36747
|
+
};
|
|
36748
|
+
'/unstable_locations/delete': {
|
|
36749
|
+
route: '/unstable_locations/delete';
|
|
36750
|
+
method: 'DELETE' | 'POST';
|
|
36751
|
+
queryParams: {};
|
|
36752
|
+
jsonBody: {
|
|
36753
|
+
location_id: string;
|
|
36754
|
+
};
|
|
36755
|
+
commonParams: {};
|
|
36756
|
+
formData: {};
|
|
36757
|
+
jsonResponse: {};
|
|
36758
|
+
};
|
|
36759
|
+
'/unstable_locations/get': {
|
|
36760
|
+
route: '/unstable_locations/get';
|
|
36761
|
+
method: 'GET' | 'POST';
|
|
36762
|
+
queryParams: {};
|
|
36763
|
+
jsonBody: {};
|
|
36764
|
+
commonParams: {
|
|
36765
|
+
location_id: string;
|
|
36766
|
+
};
|
|
36767
|
+
formData: {};
|
|
36768
|
+
jsonResponse: {
|
|
36769
|
+
location: {
|
|
36770
|
+
/** Unique identifier for the location. */
|
|
36771
|
+
location_id: string;
|
|
36772
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
36773
|
+
workspace_id: string;
|
|
36774
|
+
/** Display name of the location. */
|
|
36775
|
+
display_name: string;
|
|
36776
|
+
/** Geographical location of the location. */
|
|
36777
|
+
geolocation?: {
|
|
36778
|
+
latitude: number;
|
|
36779
|
+
longitude: number;
|
|
36780
|
+
} | undefined;
|
|
36781
|
+
/** Time zone of the location. */
|
|
36782
|
+
time_zone?: string | undefined;
|
|
36783
|
+
/** Date and time at which the location object was created. */
|
|
36784
|
+
created_at: string;
|
|
36785
|
+
};
|
|
36786
|
+
};
|
|
36787
|
+
};
|
|
36788
|
+
'/unstable_locations/list': {
|
|
36789
|
+
route: '/unstable_locations/list';
|
|
36790
|
+
method: 'GET' | 'POST';
|
|
36791
|
+
queryParams: {};
|
|
36792
|
+
jsonBody: {};
|
|
36793
|
+
commonParams: {};
|
|
36794
|
+
formData: {};
|
|
36795
|
+
jsonResponse: {
|
|
36796
|
+
locations: Array<{
|
|
36797
|
+
/** Unique identifier for the location. */
|
|
36798
|
+
location_id: string;
|
|
36799
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
36800
|
+
workspace_id: string;
|
|
36801
|
+
/** Display name of the location. */
|
|
36802
|
+
display_name: string;
|
|
36803
|
+
/** Geographical location of the location. */
|
|
36804
|
+
geolocation?: {
|
|
36805
|
+
latitude: number;
|
|
36806
|
+
longitude: number;
|
|
36807
|
+
} | undefined;
|
|
36808
|
+
/** Time zone of the location. */
|
|
36809
|
+
time_zone?: string | undefined;
|
|
36810
|
+
/** Date and time at which the location object was created. */
|
|
36811
|
+
created_at: string;
|
|
36812
|
+
}>;
|
|
36813
|
+
};
|
|
36814
|
+
};
|
|
36815
|
+
'/unstable_locations/remove_devices': {
|
|
36816
|
+
route: '/unstable_locations/remove_devices';
|
|
36817
|
+
method: 'POST';
|
|
36818
|
+
queryParams: {};
|
|
36819
|
+
jsonBody: {
|
|
36820
|
+
location_id: string;
|
|
36821
|
+
device_ids: string[];
|
|
36822
|
+
};
|
|
36823
|
+
commonParams: {};
|
|
36824
|
+
formData: {};
|
|
36825
|
+
jsonResponse: {};
|
|
36826
|
+
};
|
|
36827
|
+
'/unstable_locations/update': {
|
|
36828
|
+
route: '/unstable_locations/update';
|
|
36829
|
+
method: 'POST';
|
|
36830
|
+
queryParams: {};
|
|
36831
|
+
jsonBody: {
|
|
36832
|
+
location_id: string;
|
|
36833
|
+
name?: string | undefined;
|
|
36834
|
+
geolocation?: {
|
|
36835
|
+
latitude: number;
|
|
36836
|
+
longitude: number;
|
|
36837
|
+
} | undefined;
|
|
36838
|
+
time_zone?: string | undefined;
|
|
36839
|
+
};
|
|
36840
|
+
commonParams: {};
|
|
36841
|
+
formData: {};
|
|
36842
|
+
jsonResponse: {
|
|
36843
|
+
location: {
|
|
36844
|
+
/** Unique identifier for the location. */
|
|
36845
|
+
location_id: string;
|
|
36846
|
+
/** Unique identifier for the Seam workspace associated with the location. */
|
|
36847
|
+
workspace_id: string;
|
|
36848
|
+
/** Display name of the location. */
|
|
36849
|
+
display_name: string;
|
|
36850
|
+
/** Geographical location of the location. */
|
|
36851
|
+
geolocation?: {
|
|
36852
|
+
latitude: number;
|
|
36853
|
+
longitude: number;
|
|
36854
|
+
} | undefined;
|
|
36855
|
+
/** Time zone of the location. */
|
|
36856
|
+
time_zone?: string | undefined;
|
|
36857
|
+
/** Date and time at which the location object was created. */
|
|
36858
|
+
created_at: string;
|
|
36859
|
+
};
|
|
36860
|
+
};
|
|
36861
|
+
};
|
|
36422
36862
|
'/user_identities/add_acs_user': {
|
|
36423
36863
|
route: '/user_identities/add_acs_user';
|
|
36424
36864
|
method: 'POST' | 'PUT';
|