@seamapi/types 1.60.0 → 1.61.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 +160 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +561 -269
- package/lib/seam/connect/openapi.d.ts +462 -264
- package/lib/seam/connect/openapi.js +160 -68
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -5
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +1 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +15 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +33 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +3 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +27 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +164 -68
- package/src/lib/seam/connect/route-types.ts +123 -5
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -0
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -0
package/dist/connect.d.cts
CHANGED
|
@@ -493,6 +493,10 @@ declare const _default: {
|
|
|
493
493
|
device_id: {
|
|
494
494
|
type: string;
|
|
495
495
|
};
|
|
496
|
+
errors: {
|
|
497
|
+
description: string;
|
|
498
|
+
nullable: boolean;
|
|
499
|
+
};
|
|
496
500
|
heating_set_point_celsius: {
|
|
497
501
|
type: string;
|
|
498
502
|
};
|
|
@@ -633,6 +637,9 @@ declare const _default: {
|
|
|
633
637
|
account_type_display_name: {
|
|
634
638
|
type: string;
|
|
635
639
|
};
|
|
640
|
+
automatically_manage_new_devices: {
|
|
641
|
+
type: string;
|
|
642
|
+
};
|
|
636
643
|
connected_account_id: {
|
|
637
644
|
format: string;
|
|
638
645
|
type: string;
|
|
@@ -1505,6 +1512,10 @@ declare const _default: {
|
|
|
1505
1512
|
device_id: {
|
|
1506
1513
|
type: string;
|
|
1507
1514
|
};
|
|
1515
|
+
errors: {
|
|
1516
|
+
description: string;
|
|
1517
|
+
nullable: boolean;
|
|
1518
|
+
};
|
|
1508
1519
|
heating_set_point_celsius: {
|
|
1509
1520
|
type: string;
|
|
1510
1521
|
};
|
|
@@ -1707,6 +1718,10 @@ declare const _default: {
|
|
|
1707
1718
|
device_id: {
|
|
1708
1719
|
type: string;
|
|
1709
1720
|
};
|
|
1721
|
+
errors: {
|
|
1722
|
+
description: string;
|
|
1723
|
+
nullable: boolean;
|
|
1724
|
+
};
|
|
1710
1725
|
heating_set_point_celsius: {
|
|
1711
1726
|
type: string;
|
|
1712
1727
|
};
|
|
@@ -1897,6 +1912,10 @@ declare const _default: {
|
|
|
1897
1912
|
device_id: {
|
|
1898
1913
|
type: string;
|
|
1899
1914
|
};
|
|
1915
|
+
errors: {
|
|
1916
|
+
description: string;
|
|
1917
|
+
nullable: boolean;
|
|
1918
|
+
};
|
|
1900
1919
|
heating_set_point_celsius: {
|
|
1901
1920
|
type: string;
|
|
1902
1921
|
};
|
|
@@ -2574,20 +2593,25 @@ declare const _default: {
|
|
|
2574
2593
|
};
|
|
2575
2594
|
};
|
|
2576
2595
|
security: ({
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2596
|
+
client_session: never[];
|
|
2597
|
+
pat_with_workspace?: never;
|
|
2598
|
+
console_session?: never;
|
|
2599
|
+
api_key?: never;
|
|
2581
2600
|
} | {
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2601
|
+
pat_with_workspace: never[];
|
|
2602
|
+
client_session?: never;
|
|
2603
|
+
console_session?: never;
|
|
2604
|
+
api_key?: never;
|
|
2586
2605
|
} | {
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2606
|
+
console_session: never[];
|
|
2607
|
+
client_session?: never;
|
|
2608
|
+
pat_with_workspace?: never;
|
|
2609
|
+
api_key?: never;
|
|
2610
|
+
} | {
|
|
2611
|
+
api_key: never[];
|
|
2612
|
+
client_session?: never;
|
|
2613
|
+
pat_with_workspace?: never;
|
|
2614
|
+
console_session?: never;
|
|
2591
2615
|
})[];
|
|
2592
2616
|
summary: string;
|
|
2593
2617
|
tags: string[];
|
|
@@ -2698,20 +2722,25 @@ declare const _default: {
|
|
|
2698
2722
|
};
|
|
2699
2723
|
};
|
|
2700
2724
|
security: ({
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2725
|
+
client_session: never[];
|
|
2726
|
+
pat_with_workspace?: never;
|
|
2727
|
+
console_session?: never;
|
|
2728
|
+
api_key?: never;
|
|
2705
2729
|
} | {
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2730
|
+
pat_with_workspace: never[];
|
|
2731
|
+
client_session?: never;
|
|
2732
|
+
console_session?: never;
|
|
2733
|
+
api_key?: never;
|
|
2710
2734
|
} | {
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2735
|
+
console_session: never[];
|
|
2736
|
+
client_session?: never;
|
|
2737
|
+
pat_with_workspace?: never;
|
|
2738
|
+
api_key?: never;
|
|
2739
|
+
} | {
|
|
2740
|
+
api_key: never[];
|
|
2741
|
+
client_session?: never;
|
|
2742
|
+
pat_with_workspace?: never;
|
|
2743
|
+
console_session?: never;
|
|
2715
2744
|
})[];
|
|
2716
2745
|
summary: string;
|
|
2717
2746
|
tags: string[];
|
|
@@ -2820,20 +2849,25 @@ declare const _default: {
|
|
|
2820
2849
|
};
|
|
2821
2850
|
};
|
|
2822
2851
|
security: ({
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2852
|
+
client_session: never[];
|
|
2853
|
+
pat_with_workspace?: never;
|
|
2854
|
+
console_session?: never;
|
|
2855
|
+
api_key?: never;
|
|
2827
2856
|
} | {
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2857
|
+
pat_with_workspace: never[];
|
|
2858
|
+
client_session?: never;
|
|
2859
|
+
console_session?: never;
|
|
2860
|
+
api_key?: never;
|
|
2832
2861
|
} | {
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2862
|
+
console_session: never[];
|
|
2863
|
+
client_session?: never;
|
|
2864
|
+
pat_with_workspace?: never;
|
|
2865
|
+
api_key?: never;
|
|
2866
|
+
} | {
|
|
2867
|
+
api_key: never[];
|
|
2868
|
+
client_session?: never;
|
|
2869
|
+
pat_with_workspace?: never;
|
|
2870
|
+
console_session?: never;
|
|
2837
2871
|
})[];
|
|
2838
2872
|
summary: string;
|
|
2839
2873
|
tags: string[];
|
|
@@ -2895,20 +2929,25 @@ declare const _default: {
|
|
|
2895
2929
|
};
|
|
2896
2930
|
};
|
|
2897
2931
|
security: ({
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2932
|
+
client_session: never[];
|
|
2933
|
+
pat_with_workspace?: never;
|
|
2934
|
+
console_session?: never;
|
|
2935
|
+
api_key?: never;
|
|
2902
2936
|
} | {
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2937
|
+
pat_with_workspace: never[];
|
|
2938
|
+
client_session?: never;
|
|
2939
|
+
console_session?: never;
|
|
2940
|
+
api_key?: never;
|
|
2907
2941
|
} | {
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2942
|
+
console_session: never[];
|
|
2943
|
+
client_session?: never;
|
|
2944
|
+
pat_with_workspace?: never;
|
|
2945
|
+
api_key?: never;
|
|
2946
|
+
} | {
|
|
2947
|
+
api_key: never[];
|
|
2948
|
+
client_session?: never;
|
|
2949
|
+
pat_with_workspace?: never;
|
|
2950
|
+
console_session?: never;
|
|
2912
2951
|
})[];
|
|
2913
2952
|
summary: string;
|
|
2914
2953
|
tags: string[];
|
|
@@ -2964,20 +3003,25 @@ declare const _default: {
|
|
|
2964
3003
|
};
|
|
2965
3004
|
};
|
|
2966
3005
|
security: ({
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
3006
|
+
client_session: never[];
|
|
3007
|
+
pat_with_workspace?: never;
|
|
3008
|
+
console_session?: never;
|
|
3009
|
+
api_key?: never;
|
|
2971
3010
|
} | {
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
3011
|
+
pat_with_workspace: never[];
|
|
3012
|
+
client_session?: never;
|
|
3013
|
+
console_session?: never;
|
|
3014
|
+
api_key?: never;
|
|
2976
3015
|
} | {
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
3016
|
+
console_session: never[];
|
|
3017
|
+
client_session?: never;
|
|
3018
|
+
pat_with_workspace?: never;
|
|
3019
|
+
api_key?: never;
|
|
3020
|
+
} | {
|
|
3021
|
+
api_key: never[];
|
|
3022
|
+
client_session?: never;
|
|
3023
|
+
pat_with_workspace?: never;
|
|
3024
|
+
console_session?: never;
|
|
2981
3025
|
})[];
|
|
2982
3026
|
summary: string;
|
|
2983
3027
|
tags: string[];
|
|
@@ -3125,20 +3169,25 @@ declare const _default: {
|
|
|
3125
3169
|
};
|
|
3126
3170
|
};
|
|
3127
3171
|
security: ({
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3172
|
+
client_session: never[];
|
|
3173
|
+
pat_with_workspace?: never;
|
|
3174
|
+
console_session?: never;
|
|
3175
|
+
api_key?: never;
|
|
3132
3176
|
} | {
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3177
|
+
pat_with_workspace: never[];
|
|
3178
|
+
client_session?: never;
|
|
3179
|
+
console_session?: never;
|
|
3180
|
+
api_key?: never;
|
|
3137
3181
|
} | {
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3182
|
+
console_session: never[];
|
|
3183
|
+
client_session?: never;
|
|
3184
|
+
pat_with_workspace?: never;
|
|
3185
|
+
api_key?: never;
|
|
3186
|
+
} | {
|
|
3187
|
+
api_key: never[];
|
|
3188
|
+
client_session?: never;
|
|
3189
|
+
pat_with_workspace?: never;
|
|
3190
|
+
console_session?: never;
|
|
3142
3191
|
})[];
|
|
3143
3192
|
summary: string;
|
|
3144
3193
|
tags: string[];
|
|
@@ -3194,20 +3243,25 @@ declare const _default: {
|
|
|
3194
3243
|
};
|
|
3195
3244
|
};
|
|
3196
3245
|
security: ({
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3246
|
+
client_session: never[];
|
|
3247
|
+
pat_with_workspace?: never;
|
|
3248
|
+
console_session?: never;
|
|
3249
|
+
api_key?: never;
|
|
3201
3250
|
} | {
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3251
|
+
pat_with_workspace: never[];
|
|
3252
|
+
client_session?: never;
|
|
3253
|
+
console_session?: never;
|
|
3254
|
+
api_key?: never;
|
|
3206
3255
|
} | {
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3256
|
+
console_session: never[];
|
|
3257
|
+
client_session?: never;
|
|
3258
|
+
pat_with_workspace?: never;
|
|
3259
|
+
api_key?: never;
|
|
3260
|
+
} | {
|
|
3261
|
+
api_key: never[];
|
|
3262
|
+
client_session?: never;
|
|
3263
|
+
pat_with_workspace?: never;
|
|
3264
|
+
console_session?: never;
|
|
3211
3265
|
})[];
|
|
3212
3266
|
summary: string;
|
|
3213
3267
|
tags: string[];
|
|
@@ -3272,20 +3326,25 @@ declare const _default: {
|
|
|
3272
3326
|
};
|
|
3273
3327
|
};
|
|
3274
3328
|
security: ({
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3329
|
+
client_session: never[];
|
|
3330
|
+
pat_with_workspace?: never;
|
|
3331
|
+
console_session?: never;
|
|
3332
|
+
api_key?: never;
|
|
3279
3333
|
} | {
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3334
|
+
pat_with_workspace: never[];
|
|
3335
|
+
client_session?: never;
|
|
3336
|
+
console_session?: never;
|
|
3337
|
+
api_key?: never;
|
|
3284
3338
|
} | {
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3339
|
+
console_session: never[];
|
|
3340
|
+
client_session?: never;
|
|
3341
|
+
pat_with_workspace?: never;
|
|
3342
|
+
api_key?: never;
|
|
3343
|
+
} | {
|
|
3344
|
+
api_key: never[];
|
|
3345
|
+
client_session?: never;
|
|
3346
|
+
pat_with_workspace?: never;
|
|
3347
|
+
console_session?: never;
|
|
3289
3348
|
})[];
|
|
3290
3349
|
summary: string;
|
|
3291
3350
|
tags: string[];
|
|
@@ -3351,20 +3410,25 @@ declare const _default: {
|
|
|
3351
3410
|
};
|
|
3352
3411
|
};
|
|
3353
3412
|
security: ({
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3413
|
+
client_session: never[];
|
|
3414
|
+
pat_with_workspace?: never;
|
|
3415
|
+
console_session?: never;
|
|
3416
|
+
api_key?: never;
|
|
3358
3417
|
} | {
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3418
|
+
pat_with_workspace: never[];
|
|
3419
|
+
client_session?: never;
|
|
3420
|
+
console_session?: never;
|
|
3421
|
+
api_key?: never;
|
|
3363
3422
|
} | {
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3423
|
+
console_session: never[];
|
|
3424
|
+
client_session?: never;
|
|
3425
|
+
pat_with_workspace?: never;
|
|
3426
|
+
api_key?: never;
|
|
3427
|
+
} | {
|
|
3428
|
+
api_key: never[];
|
|
3429
|
+
client_session?: never;
|
|
3430
|
+
pat_with_workspace?: never;
|
|
3431
|
+
console_session?: never;
|
|
3368
3432
|
})[];
|
|
3369
3433
|
summary: string;
|
|
3370
3434
|
tags: string[];
|
|
@@ -3426,20 +3490,25 @@ declare const _default: {
|
|
|
3426
3490
|
};
|
|
3427
3491
|
};
|
|
3428
3492
|
security: ({
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3493
|
+
client_session: never[];
|
|
3494
|
+
pat_with_workspace?: never;
|
|
3495
|
+
console_session?: never;
|
|
3496
|
+
api_key?: never;
|
|
3433
3497
|
} | {
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3498
|
+
pat_with_workspace: never[];
|
|
3499
|
+
client_session?: never;
|
|
3500
|
+
console_session?: never;
|
|
3501
|
+
api_key?: never;
|
|
3438
3502
|
} | {
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3503
|
+
console_session: never[];
|
|
3504
|
+
client_session?: never;
|
|
3505
|
+
pat_with_workspace?: never;
|
|
3506
|
+
api_key?: never;
|
|
3507
|
+
} | {
|
|
3508
|
+
api_key: never[];
|
|
3509
|
+
client_session?: never;
|
|
3510
|
+
pat_with_workspace?: never;
|
|
3511
|
+
console_session?: never;
|
|
3443
3512
|
})[];
|
|
3444
3513
|
summary: string;
|
|
3445
3514
|
tags: string[];
|
|
@@ -3498,20 +3567,25 @@ declare const _default: {
|
|
|
3498
3567
|
};
|
|
3499
3568
|
};
|
|
3500
3569
|
security: ({
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3570
|
+
client_session: never[];
|
|
3571
|
+
pat_with_workspace?: never;
|
|
3572
|
+
console_session?: never;
|
|
3573
|
+
api_key?: never;
|
|
3505
3574
|
} | {
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3575
|
+
pat_with_workspace: never[];
|
|
3576
|
+
client_session?: never;
|
|
3577
|
+
console_session?: never;
|
|
3578
|
+
api_key?: never;
|
|
3510
3579
|
} | {
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3580
|
+
console_session: never[];
|
|
3581
|
+
client_session?: never;
|
|
3582
|
+
pat_with_workspace?: never;
|
|
3583
|
+
api_key?: never;
|
|
3584
|
+
} | {
|
|
3585
|
+
api_key: never[];
|
|
3586
|
+
client_session?: never;
|
|
3587
|
+
pat_with_workspace?: never;
|
|
3588
|
+
console_session?: never;
|
|
3515
3589
|
})[];
|
|
3516
3590
|
summary: string;
|
|
3517
3591
|
tags: string[];
|
|
@@ -3573,20 +3647,25 @@ declare const _default: {
|
|
|
3573
3647
|
};
|
|
3574
3648
|
};
|
|
3575
3649
|
security: ({
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3650
|
+
client_session: never[];
|
|
3651
|
+
pat_with_workspace?: never;
|
|
3652
|
+
console_session?: never;
|
|
3653
|
+
api_key?: never;
|
|
3580
3654
|
} | {
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3655
|
+
pat_with_workspace: never[];
|
|
3656
|
+
client_session?: never;
|
|
3657
|
+
console_session?: never;
|
|
3658
|
+
api_key?: never;
|
|
3585
3659
|
} | {
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3660
|
+
console_session: never[];
|
|
3661
|
+
client_session?: never;
|
|
3662
|
+
pat_with_workspace?: never;
|
|
3663
|
+
api_key?: never;
|
|
3664
|
+
} | {
|
|
3665
|
+
api_key: never[];
|
|
3666
|
+
client_session?: never;
|
|
3667
|
+
pat_with_workspace?: never;
|
|
3668
|
+
console_session?: never;
|
|
3590
3669
|
})[];
|
|
3591
3670
|
summary: string;
|
|
3592
3671
|
tags: string[];
|
|
@@ -3648,20 +3727,25 @@ declare const _default: {
|
|
|
3648
3727
|
};
|
|
3649
3728
|
};
|
|
3650
3729
|
security: ({
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3730
|
+
client_session: never[];
|
|
3731
|
+
pat_with_workspace?: never;
|
|
3732
|
+
console_session?: never;
|
|
3733
|
+
api_key?: never;
|
|
3655
3734
|
} | {
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3735
|
+
pat_with_workspace: never[];
|
|
3736
|
+
client_session?: never;
|
|
3737
|
+
console_session?: never;
|
|
3738
|
+
api_key?: never;
|
|
3660
3739
|
} | {
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3740
|
+
console_session: never[];
|
|
3741
|
+
client_session?: never;
|
|
3742
|
+
pat_with_workspace?: never;
|
|
3743
|
+
api_key?: never;
|
|
3744
|
+
} | {
|
|
3745
|
+
api_key: never[];
|
|
3746
|
+
client_session?: never;
|
|
3747
|
+
pat_with_workspace?: never;
|
|
3748
|
+
console_session?: never;
|
|
3665
3749
|
})[];
|
|
3666
3750
|
summary: string;
|
|
3667
3751
|
tags: string[];
|
|
@@ -3726,20 +3810,25 @@ declare const _default: {
|
|
|
3726
3810
|
};
|
|
3727
3811
|
};
|
|
3728
3812
|
security: ({
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3813
|
+
client_session: never[];
|
|
3814
|
+
pat_with_workspace?: never;
|
|
3815
|
+
console_session?: never;
|
|
3816
|
+
api_key?: never;
|
|
3733
3817
|
} | {
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3818
|
+
pat_with_workspace: never[];
|
|
3819
|
+
client_session?: never;
|
|
3820
|
+
console_session?: never;
|
|
3821
|
+
api_key?: never;
|
|
3738
3822
|
} | {
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3823
|
+
console_session: never[];
|
|
3824
|
+
client_session?: never;
|
|
3825
|
+
pat_with_workspace?: never;
|
|
3826
|
+
api_key?: never;
|
|
3827
|
+
} | {
|
|
3828
|
+
api_key: never[];
|
|
3829
|
+
client_session?: never;
|
|
3830
|
+
pat_with_workspace?: never;
|
|
3831
|
+
console_session?: never;
|
|
3743
3832
|
})[];
|
|
3744
3833
|
summary: string;
|
|
3745
3834
|
tags: string[];
|
|
@@ -3800,20 +3889,25 @@ declare const _default: {
|
|
|
3800
3889
|
};
|
|
3801
3890
|
};
|
|
3802
3891
|
security: ({
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
3892
|
+
client_session: never[];
|
|
3893
|
+
pat_with_workspace?: never;
|
|
3894
|
+
console_session?: never;
|
|
3895
|
+
api_key?: never;
|
|
3807
3896
|
} | {
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3897
|
+
pat_with_workspace: never[];
|
|
3898
|
+
client_session?: never;
|
|
3899
|
+
console_session?: never;
|
|
3900
|
+
api_key?: never;
|
|
3812
3901
|
} | {
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3902
|
+
console_session: never[];
|
|
3903
|
+
client_session?: never;
|
|
3904
|
+
pat_with_workspace?: never;
|
|
3905
|
+
api_key?: never;
|
|
3906
|
+
} | {
|
|
3907
|
+
api_key: never[];
|
|
3908
|
+
client_session?: never;
|
|
3909
|
+
pat_with_workspace?: never;
|
|
3910
|
+
console_session?: never;
|
|
3817
3911
|
})[];
|
|
3818
3912
|
summary: string;
|
|
3819
3913
|
tags: string[];
|
|
@@ -3927,20 +4021,25 @@ declare const _default: {
|
|
|
3927
4021
|
};
|
|
3928
4022
|
};
|
|
3929
4023
|
security: ({
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
4024
|
+
client_session: never[];
|
|
4025
|
+
pat_with_workspace?: never;
|
|
4026
|
+
console_session?: never;
|
|
4027
|
+
api_key?: never;
|
|
3934
4028
|
} | {
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
4029
|
+
pat_with_workspace: never[];
|
|
4030
|
+
client_session?: never;
|
|
4031
|
+
console_session?: never;
|
|
4032
|
+
api_key?: never;
|
|
3939
4033
|
} | {
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
4034
|
+
console_session: never[];
|
|
4035
|
+
client_session?: never;
|
|
4036
|
+
pat_with_workspace?: never;
|
|
4037
|
+
api_key?: never;
|
|
4038
|
+
} | {
|
|
4039
|
+
api_key: never[];
|
|
4040
|
+
client_session?: never;
|
|
4041
|
+
pat_with_workspace?: never;
|
|
4042
|
+
console_session?: never;
|
|
3944
4043
|
})[];
|
|
3945
4044
|
summary: string;
|
|
3946
4045
|
tags: string[];
|
|
@@ -4051,20 +4150,25 @@ declare const _default: {
|
|
|
4051
4150
|
};
|
|
4052
4151
|
};
|
|
4053
4152
|
security: ({
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4153
|
+
client_session: never[];
|
|
4154
|
+
pat_with_workspace?: never;
|
|
4155
|
+
console_session?: never;
|
|
4156
|
+
api_key?: never;
|
|
4058
4157
|
} | {
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4158
|
+
pat_with_workspace: never[];
|
|
4159
|
+
client_session?: never;
|
|
4160
|
+
console_session?: never;
|
|
4161
|
+
api_key?: never;
|
|
4063
4162
|
} | {
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4163
|
+
console_session: never[];
|
|
4164
|
+
client_session?: never;
|
|
4165
|
+
pat_with_workspace?: never;
|
|
4166
|
+
api_key?: never;
|
|
4167
|
+
} | {
|
|
4168
|
+
api_key: never[];
|
|
4169
|
+
client_session?: never;
|
|
4170
|
+
pat_with_workspace?: never;
|
|
4171
|
+
console_session?: never;
|
|
4068
4172
|
})[];
|
|
4069
4173
|
summary: string;
|
|
4070
4174
|
tags: string[];
|
|
@@ -4177,20 +4281,25 @@ declare const _default: {
|
|
|
4177
4281
|
};
|
|
4178
4282
|
};
|
|
4179
4283
|
security: ({
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4284
|
+
client_session: never[];
|
|
4285
|
+
pat_with_workspace?: never;
|
|
4286
|
+
console_session?: never;
|
|
4287
|
+
api_key?: never;
|
|
4184
4288
|
} | {
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4289
|
+
pat_with_workspace: never[];
|
|
4290
|
+
client_session?: never;
|
|
4291
|
+
console_session?: never;
|
|
4292
|
+
api_key?: never;
|
|
4189
4293
|
} | {
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4294
|
+
console_session: never[];
|
|
4295
|
+
client_session?: never;
|
|
4296
|
+
pat_with_workspace?: never;
|
|
4297
|
+
api_key?: never;
|
|
4298
|
+
} | {
|
|
4299
|
+
api_key: never[];
|
|
4300
|
+
client_session?: never;
|
|
4301
|
+
pat_with_workspace?: never;
|
|
4302
|
+
console_session?: never;
|
|
4194
4303
|
})[];
|
|
4195
4304
|
summary: string;
|
|
4196
4305
|
tags: string[];
|
|
@@ -4245,20 +4354,25 @@ declare const _default: {
|
|
|
4245
4354
|
};
|
|
4246
4355
|
};
|
|
4247
4356
|
security: ({
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4357
|
+
client_session: never[];
|
|
4358
|
+
pat_with_workspace?: never;
|
|
4359
|
+
console_session?: never;
|
|
4360
|
+
api_key?: never;
|
|
4252
4361
|
} | {
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4362
|
+
pat_with_workspace: never[];
|
|
4363
|
+
client_session?: never;
|
|
4364
|
+
console_session?: never;
|
|
4365
|
+
api_key?: never;
|
|
4257
4366
|
} | {
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4367
|
+
console_session: never[];
|
|
4368
|
+
client_session?: never;
|
|
4369
|
+
pat_with_workspace?: never;
|
|
4370
|
+
api_key?: never;
|
|
4371
|
+
} | {
|
|
4372
|
+
api_key: never[];
|
|
4373
|
+
client_session?: never;
|
|
4374
|
+
pat_with_workspace?: never;
|
|
4375
|
+
console_session?: never;
|
|
4262
4376
|
})[];
|
|
4263
4377
|
summary: string;
|
|
4264
4378
|
tags: never[];
|
|
@@ -4312,20 +4426,25 @@ declare const _default: {
|
|
|
4312
4426
|
};
|
|
4313
4427
|
};
|
|
4314
4428
|
security: ({
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4429
|
+
client_session: never[];
|
|
4430
|
+
pat_with_workspace?: never;
|
|
4431
|
+
console_session?: never;
|
|
4432
|
+
api_key?: never;
|
|
4319
4433
|
} | {
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4434
|
+
pat_with_workspace: never[];
|
|
4435
|
+
client_session?: never;
|
|
4436
|
+
console_session?: never;
|
|
4437
|
+
api_key?: never;
|
|
4324
4438
|
} | {
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4439
|
+
console_session: never[];
|
|
4440
|
+
client_session?: never;
|
|
4441
|
+
pat_with_workspace?: never;
|
|
4442
|
+
api_key?: never;
|
|
4443
|
+
} | {
|
|
4444
|
+
api_key: never[];
|
|
4445
|
+
client_session?: never;
|
|
4446
|
+
pat_with_workspace?: never;
|
|
4447
|
+
console_session?: never;
|
|
4329
4448
|
})[];
|
|
4330
4449
|
summary: string;
|
|
4331
4450
|
tags: never[];
|
|
@@ -4379,20 +4498,25 @@ declare const _default: {
|
|
|
4379
4498
|
};
|
|
4380
4499
|
};
|
|
4381
4500
|
security: ({
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4385
|
-
|
|
4501
|
+
client_session: never[];
|
|
4502
|
+
pat_with_workspace?: never;
|
|
4503
|
+
console_session?: never;
|
|
4504
|
+
api_key?: never;
|
|
4386
4505
|
} | {
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4506
|
+
pat_with_workspace: never[];
|
|
4507
|
+
client_session?: never;
|
|
4508
|
+
console_session?: never;
|
|
4509
|
+
api_key?: never;
|
|
4391
4510
|
} | {
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4511
|
+
console_session: never[];
|
|
4512
|
+
client_session?: never;
|
|
4513
|
+
pat_with_workspace?: never;
|
|
4514
|
+
api_key?: never;
|
|
4515
|
+
} | {
|
|
4516
|
+
api_key: never[];
|
|
4517
|
+
client_session?: never;
|
|
4518
|
+
pat_with_workspace?: never;
|
|
4519
|
+
console_session?: never;
|
|
4396
4520
|
})[];
|
|
4397
4521
|
summary: string;
|
|
4398
4522
|
tags: never[];
|
|
@@ -4524,20 +4648,25 @@ declare const _default: {
|
|
|
4524
4648
|
};
|
|
4525
4649
|
};
|
|
4526
4650
|
security: ({
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4651
|
+
client_session: never[];
|
|
4652
|
+
pat_with_workspace?: never;
|
|
4653
|
+
console_session?: never;
|
|
4654
|
+
api_key?: never;
|
|
4531
4655
|
} | {
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4656
|
+
pat_with_workspace: never[];
|
|
4657
|
+
client_session?: never;
|
|
4658
|
+
console_session?: never;
|
|
4659
|
+
api_key?: never;
|
|
4536
4660
|
} | {
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4661
|
+
console_session: never[];
|
|
4662
|
+
client_session?: never;
|
|
4663
|
+
pat_with_workspace?: never;
|
|
4664
|
+
api_key?: never;
|
|
4665
|
+
} | {
|
|
4666
|
+
api_key: never[];
|
|
4667
|
+
client_session?: never;
|
|
4668
|
+
pat_with_workspace?: never;
|
|
4669
|
+
console_session?: never;
|
|
4541
4670
|
})[];
|
|
4542
4671
|
summary: string;
|
|
4543
4672
|
tags: never[];
|
|
@@ -8551,6 +8680,75 @@ declare const _default: {
|
|
|
8551
8680
|
'x-fern-sdk-return-value': string;
|
|
8552
8681
|
};
|
|
8553
8682
|
};
|
|
8683
|
+
'/connected_accounts/update': {
|
|
8684
|
+
post: {
|
|
8685
|
+
operationId: string;
|
|
8686
|
+
requestBody: {
|
|
8687
|
+
content: {
|
|
8688
|
+
'application/json': {
|
|
8689
|
+
schema: {
|
|
8690
|
+
properties: {
|
|
8691
|
+
automatically_manage_new_devices: {
|
|
8692
|
+
type: string;
|
|
8693
|
+
};
|
|
8694
|
+
connected_account_id: {
|
|
8695
|
+
format: string;
|
|
8696
|
+
type: string;
|
|
8697
|
+
};
|
|
8698
|
+
};
|
|
8699
|
+
required: string[];
|
|
8700
|
+
type: string;
|
|
8701
|
+
};
|
|
8702
|
+
};
|
|
8703
|
+
};
|
|
8704
|
+
};
|
|
8705
|
+
responses: {
|
|
8706
|
+
200: {
|
|
8707
|
+
content: {
|
|
8708
|
+
'application/json': {
|
|
8709
|
+
schema: {
|
|
8710
|
+
properties: {
|
|
8711
|
+
connected_account: {
|
|
8712
|
+
$ref: string;
|
|
8713
|
+
};
|
|
8714
|
+
ok: {
|
|
8715
|
+
type: string;
|
|
8716
|
+
};
|
|
8717
|
+
};
|
|
8718
|
+
required: string[];
|
|
8719
|
+
type: string;
|
|
8720
|
+
};
|
|
8721
|
+
};
|
|
8722
|
+
};
|
|
8723
|
+
description: string;
|
|
8724
|
+
};
|
|
8725
|
+
400: {
|
|
8726
|
+
description: string;
|
|
8727
|
+
};
|
|
8728
|
+
401: {
|
|
8729
|
+
description: string;
|
|
8730
|
+
};
|
|
8731
|
+
};
|
|
8732
|
+
security: ({
|
|
8733
|
+
pat_with_workspace: never[];
|
|
8734
|
+
console_session?: never;
|
|
8735
|
+
api_key?: never;
|
|
8736
|
+
} | {
|
|
8737
|
+
console_session: never[];
|
|
8738
|
+
pat_with_workspace?: never;
|
|
8739
|
+
api_key?: never;
|
|
8740
|
+
} | {
|
|
8741
|
+
api_key: never[];
|
|
8742
|
+
pat_with_workspace?: never;
|
|
8743
|
+
console_session?: never;
|
|
8744
|
+
})[];
|
|
8745
|
+
summary: string;
|
|
8746
|
+
tags: string[];
|
|
8747
|
+
'x-fern-sdk-group-name': string[];
|
|
8748
|
+
'x-fern-sdk-method-name': string;
|
|
8749
|
+
'x-fern-sdk-return-value': string;
|
|
8750
|
+
};
|
|
8751
|
+
};
|
|
8554
8752
|
'/devices/delete': {
|
|
8555
8753
|
post: {
|
|
8556
8754
|
operationId: string;
|
|
@@ -14546,7 +14744,7 @@ interface Routes {
|
|
|
14546
14744
|
workspace_id: string;
|
|
14547
14745
|
created_at: string;
|
|
14548
14746
|
display_name: string;
|
|
14549
|
-
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user';
|
|
14747
|
+
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user';
|
|
14550
14748
|
external_type_display_name: string;
|
|
14551
14749
|
is_suspended: boolean;
|
|
14552
14750
|
full_name?: string | undefined;
|
|
@@ -14905,7 +15103,7 @@ interface Routes {
|
|
|
14905
15103
|
workspace_id: string;
|
|
14906
15104
|
created_at: string;
|
|
14907
15105
|
display_name: string;
|
|
14908
|
-
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user';
|
|
15106
|
+
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user';
|
|
14909
15107
|
external_type_display_name: string;
|
|
14910
15108
|
is_suspended: boolean;
|
|
14911
15109
|
full_name?: string | undefined;
|
|
@@ -14944,7 +15142,7 @@ interface Routes {
|
|
|
14944
15142
|
workspace_id: string;
|
|
14945
15143
|
created_at: string;
|
|
14946
15144
|
display_name: string;
|
|
14947
|
-
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user';
|
|
15145
|
+
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user';
|
|
14948
15146
|
external_type_display_name: string;
|
|
14949
15147
|
is_suspended: boolean;
|
|
14950
15148
|
full_name?: string | undefined;
|
|
@@ -14972,7 +15170,7 @@ interface Routes {
|
|
|
14972
15170
|
workspace_id: string;
|
|
14973
15171
|
created_at: string;
|
|
14974
15172
|
display_name: string;
|
|
14975
|
-
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user';
|
|
15173
|
+
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user';
|
|
14976
15174
|
external_type_display_name: string;
|
|
14977
15175
|
is_suspended: boolean;
|
|
14978
15176
|
full_name?: string | undefined;
|
|
@@ -15414,6 +15612,7 @@ interface Routes {
|
|
|
15414
15612
|
errors?: any;
|
|
15415
15613
|
warnings?: any;
|
|
15416
15614
|
custom_metadata?: Record<string, string | number | boolean | null> | undefined;
|
|
15615
|
+
automatically_manage_new_devices: boolean;
|
|
15417
15616
|
};
|
|
15418
15617
|
};
|
|
15419
15618
|
};
|
|
@@ -15440,9 +15639,40 @@ interface Routes {
|
|
|
15440
15639
|
errors?: any;
|
|
15441
15640
|
warnings?: any;
|
|
15442
15641
|
custom_metadata?: Record<string, string | number | boolean | null> | undefined;
|
|
15642
|
+
automatically_manage_new_devices: boolean;
|
|
15443
15643
|
}>;
|
|
15444
15644
|
};
|
|
15445
15645
|
};
|
|
15646
|
+
'/connected_accounts/update': {
|
|
15647
|
+
route: '/connected_accounts/update';
|
|
15648
|
+
method: 'POST';
|
|
15649
|
+
queryParams: {};
|
|
15650
|
+
jsonBody: {
|
|
15651
|
+
connected_account_id: string;
|
|
15652
|
+
automatically_manage_new_devices?: boolean | undefined;
|
|
15653
|
+
};
|
|
15654
|
+
commonParams: {};
|
|
15655
|
+
formData: {};
|
|
15656
|
+
jsonResponse: {
|
|
15657
|
+
connected_account: {
|
|
15658
|
+
connected_account_id?: string | undefined;
|
|
15659
|
+
created_at?: string | undefined;
|
|
15660
|
+
user_identifier?: {
|
|
15661
|
+
username?: string | undefined;
|
|
15662
|
+
api_url?: string | undefined;
|
|
15663
|
+
email?: string | undefined;
|
|
15664
|
+
phone?: string | undefined;
|
|
15665
|
+
exclusive?: boolean | undefined;
|
|
15666
|
+
} | undefined;
|
|
15667
|
+
account_type?: string | undefined;
|
|
15668
|
+
account_type_display_name: string;
|
|
15669
|
+
errors?: any;
|
|
15670
|
+
warnings?: any;
|
|
15671
|
+
custom_metadata?: Record<string, string | number | boolean | null> | undefined;
|
|
15672
|
+
automatically_manage_new_devices: boolean;
|
|
15673
|
+
};
|
|
15674
|
+
};
|
|
15675
|
+
};
|
|
15446
15676
|
'/devices/delete': {
|
|
15447
15677
|
route: '/devices/delete';
|
|
15448
15678
|
method: 'DELETE' | 'POST';
|
|
@@ -15744,6 +15974,8 @@ interface Routes {
|
|
|
15744
15974
|
schedule_starts_at: string;
|
|
15745
15975
|
schedule_ends_at: string;
|
|
15746
15976
|
created_at: string;
|
|
15977
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
15978
|
+
errors?: any;
|
|
15747
15979
|
automatic_heating_enabled?: boolean | undefined;
|
|
15748
15980
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15749
15981
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15806,6 +16038,8 @@ interface Routes {
|
|
|
15806
16038
|
schedule_starts_at: string;
|
|
15807
16039
|
schedule_ends_at: string;
|
|
15808
16040
|
created_at: string;
|
|
16041
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
16042
|
+
errors?: any;
|
|
15809
16043
|
automatic_heating_enabled?: boolean | undefined;
|
|
15810
16044
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15811
16045
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -15862,6 +16096,8 @@ interface Routes {
|
|
|
15862
16096
|
schedule_starts_at: string;
|
|
15863
16097
|
schedule_ends_at: string;
|
|
15864
16098
|
created_at: string;
|
|
16099
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
16100
|
+
errors?: any;
|
|
15865
16101
|
automatic_heating_enabled?: boolean | undefined;
|
|
15866
16102
|
automatic_cooling_enabled?: boolean | undefined;
|
|
15867
16103
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16203,6 +16439,8 @@ interface Routes {
|
|
|
16203
16439
|
schedule_starts_at: string;
|
|
16204
16440
|
schedule_ends_at: string;
|
|
16205
16441
|
created_at: string;
|
|
16442
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
16443
|
+
errors?: any;
|
|
16206
16444
|
automatic_heating_enabled?: boolean | undefined;
|
|
16207
16445
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16208
16446
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16265,6 +16503,8 @@ interface Routes {
|
|
|
16265
16503
|
schedule_starts_at: string;
|
|
16266
16504
|
schedule_ends_at: string;
|
|
16267
16505
|
created_at: string;
|
|
16506
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
16507
|
+
errors?: any;
|
|
16268
16508
|
automatic_heating_enabled?: boolean | undefined;
|
|
16269
16509
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16270
16510
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16321,6 +16561,8 @@ interface Routes {
|
|
|
16321
16561
|
schedule_starts_at: string;
|
|
16322
16562
|
schedule_ends_at: string;
|
|
16323
16563
|
created_at: string;
|
|
16564
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
16565
|
+
errors?: any;
|
|
16324
16566
|
automatic_heating_enabled?: boolean | undefined;
|
|
16325
16567
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16326
16568
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -16941,6 +17183,8 @@ interface Routes {
|
|
|
16941
17183
|
schedule_starts_at: string;
|
|
16942
17184
|
schedule_ends_at: string;
|
|
16943
17185
|
created_at: string;
|
|
17186
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
17187
|
+
errors?: any;
|
|
16944
17188
|
automatic_heating_enabled?: boolean | undefined;
|
|
16945
17189
|
automatic_cooling_enabled?: boolean | undefined;
|
|
16946
17190
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17003,6 +17247,8 @@ interface Routes {
|
|
|
17003
17247
|
schedule_starts_at: string;
|
|
17004
17248
|
schedule_ends_at: string;
|
|
17005
17249
|
created_at: string;
|
|
17250
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
17251
|
+
errors?: any;
|
|
17006
17252
|
automatic_heating_enabled?: boolean | undefined;
|
|
17007
17253
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17008
17254
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17059,6 +17305,8 @@ interface Routes {
|
|
|
17059
17305
|
schedule_starts_at: string;
|
|
17060
17306
|
schedule_ends_at: string;
|
|
17061
17307
|
created_at: string;
|
|
17308
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
17309
|
+
errors?: any;
|
|
17062
17310
|
automatic_heating_enabled?: boolean | undefined;
|
|
17063
17311
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17064
17312
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17378,6 +17626,8 @@ interface Routes {
|
|
|
17378
17626
|
schedule_starts_at: string;
|
|
17379
17627
|
schedule_ends_at: string;
|
|
17380
17628
|
created_at: string;
|
|
17629
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
17630
|
+
errors?: any;
|
|
17381
17631
|
automatic_heating_enabled?: boolean | undefined;
|
|
17382
17632
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17383
17633
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17440,6 +17690,8 @@ interface Routes {
|
|
|
17440
17690
|
schedule_starts_at: string;
|
|
17441
17691
|
schedule_ends_at: string;
|
|
17442
17692
|
created_at: string;
|
|
17693
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
17694
|
+
errors?: any;
|
|
17443
17695
|
automatic_heating_enabled?: boolean | undefined;
|
|
17444
17696
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17445
17697
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17496,6 +17748,8 @@ interface Routes {
|
|
|
17496
17748
|
schedule_starts_at: string;
|
|
17497
17749
|
schedule_ends_at: string;
|
|
17498
17750
|
created_at: string;
|
|
17751
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
17752
|
+
errors?: any;
|
|
17499
17753
|
automatic_heating_enabled?: boolean | undefined;
|
|
17500
17754
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17501
17755
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17837,6 +18091,8 @@ interface Routes {
|
|
|
17837
18091
|
schedule_starts_at: string;
|
|
17838
18092
|
schedule_ends_at: string;
|
|
17839
18093
|
created_at: string;
|
|
18094
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18095
|
+
errors?: any;
|
|
17840
18096
|
automatic_heating_enabled?: boolean | undefined;
|
|
17841
18097
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17842
18098
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17899,6 +18155,8 @@ interface Routes {
|
|
|
17899
18155
|
schedule_starts_at: string;
|
|
17900
18156
|
schedule_ends_at: string;
|
|
17901
18157
|
created_at: string;
|
|
18158
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18159
|
+
errors?: any;
|
|
17902
18160
|
automatic_heating_enabled?: boolean | undefined;
|
|
17903
18161
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17904
18162
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -17955,6 +18213,8 @@ interface Routes {
|
|
|
17955
18213
|
schedule_starts_at: string;
|
|
17956
18214
|
schedule_ends_at: string;
|
|
17957
18215
|
created_at: string;
|
|
18216
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18217
|
+
errors?: any;
|
|
17958
18218
|
automatic_heating_enabled?: boolean | undefined;
|
|
17959
18219
|
automatic_cooling_enabled?: boolean | undefined;
|
|
17960
18220
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18274,6 +18534,8 @@ interface Routes {
|
|
|
18274
18534
|
schedule_starts_at: string;
|
|
18275
18535
|
schedule_ends_at: string;
|
|
18276
18536
|
created_at: string;
|
|
18537
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18538
|
+
errors?: any;
|
|
18277
18539
|
automatic_heating_enabled?: boolean | undefined;
|
|
18278
18540
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18279
18541
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18336,6 +18598,8 @@ interface Routes {
|
|
|
18336
18598
|
schedule_starts_at: string;
|
|
18337
18599
|
schedule_ends_at: string;
|
|
18338
18600
|
created_at: string;
|
|
18601
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18602
|
+
errors?: any;
|
|
18339
18603
|
automatic_heating_enabled?: boolean | undefined;
|
|
18340
18604
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18341
18605
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18392,6 +18656,8 @@ interface Routes {
|
|
|
18392
18656
|
schedule_starts_at: string;
|
|
18393
18657
|
schedule_ends_at: string;
|
|
18394
18658
|
created_at: string;
|
|
18659
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18660
|
+
errors?: any;
|
|
18395
18661
|
automatic_heating_enabled?: boolean | undefined;
|
|
18396
18662
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18397
18663
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18714,6 +18980,8 @@ interface Routes {
|
|
|
18714
18980
|
schedule_starts_at: string;
|
|
18715
18981
|
schedule_ends_at: string;
|
|
18716
18982
|
created_at: string;
|
|
18983
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
18984
|
+
errors?: any;
|
|
18717
18985
|
automatic_heating_enabled?: boolean | undefined;
|
|
18718
18986
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18719
18987
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18755,6 +19023,8 @@ interface Routes {
|
|
|
18755
19023
|
schedule_starts_at: string;
|
|
18756
19024
|
schedule_ends_at: string;
|
|
18757
19025
|
created_at: string;
|
|
19026
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19027
|
+
errors?: any;
|
|
18758
19028
|
automatic_heating_enabled?: boolean | undefined;
|
|
18759
19029
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18760
19030
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18785,6 +19055,8 @@ interface Routes {
|
|
|
18785
19055
|
schedule_starts_at: string;
|
|
18786
19056
|
schedule_ends_at: string;
|
|
18787
19057
|
created_at: string;
|
|
19058
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19059
|
+
errors?: any;
|
|
18788
19060
|
automatic_heating_enabled?: boolean | undefined;
|
|
18789
19061
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18790
19062
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -18826,6 +19098,8 @@ interface Routes {
|
|
|
18826
19098
|
schedule_starts_at: string;
|
|
18827
19099
|
schedule_ends_at: string;
|
|
18828
19100
|
created_at: string;
|
|
19101
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19102
|
+
errors?: any;
|
|
18829
19103
|
automatic_heating_enabled?: boolean | undefined;
|
|
18830
19104
|
automatic_cooling_enabled?: boolean | undefined;
|
|
18831
19105
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19141,6 +19415,8 @@ interface Routes {
|
|
|
19141
19415
|
schedule_starts_at: string;
|
|
19142
19416
|
schedule_ends_at: string;
|
|
19143
19417
|
created_at: string;
|
|
19418
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19419
|
+
errors?: any;
|
|
19144
19420
|
automatic_heating_enabled?: boolean | undefined;
|
|
19145
19421
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19146
19422
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19203,6 +19479,8 @@ interface Routes {
|
|
|
19203
19479
|
schedule_starts_at: string;
|
|
19204
19480
|
schedule_ends_at: string;
|
|
19205
19481
|
created_at: string;
|
|
19482
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19483
|
+
errors?: any;
|
|
19206
19484
|
automatic_heating_enabled?: boolean | undefined;
|
|
19207
19485
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19208
19486
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19259,6 +19537,8 @@ interface Routes {
|
|
|
19259
19537
|
schedule_starts_at: string;
|
|
19260
19538
|
schedule_ends_at: string;
|
|
19261
19539
|
created_at: string;
|
|
19540
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19541
|
+
errors?: any;
|
|
19262
19542
|
automatic_heating_enabled?: boolean | undefined;
|
|
19263
19543
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19264
19544
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19630,6 +19910,8 @@ interface Routes {
|
|
|
19630
19910
|
schedule_starts_at: string;
|
|
19631
19911
|
schedule_ends_at: string;
|
|
19632
19912
|
created_at: string;
|
|
19913
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19914
|
+
errors?: any;
|
|
19633
19915
|
automatic_heating_enabled?: boolean | undefined;
|
|
19634
19916
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19635
19917
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19692,6 +19974,8 @@ interface Routes {
|
|
|
19692
19974
|
schedule_starts_at: string;
|
|
19693
19975
|
schedule_ends_at: string;
|
|
19694
19976
|
created_at: string;
|
|
19977
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
19978
|
+
errors?: any;
|
|
19695
19979
|
automatic_heating_enabled?: boolean | undefined;
|
|
19696
19980
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19697
19981
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -19748,6 +20032,8 @@ interface Routes {
|
|
|
19748
20032
|
schedule_starts_at: string;
|
|
19749
20033
|
schedule_ends_at: string;
|
|
19750
20034
|
created_at: string;
|
|
20035
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
20036
|
+
errors?: any;
|
|
19751
20037
|
automatic_heating_enabled?: boolean | undefined;
|
|
19752
20038
|
automatic_cooling_enabled?: boolean | undefined;
|
|
19753
20039
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20216,6 +20502,8 @@ interface Routes {
|
|
|
20216
20502
|
schedule_starts_at: string;
|
|
20217
20503
|
schedule_ends_at: string;
|
|
20218
20504
|
created_at: string;
|
|
20505
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
20506
|
+
errors?: any;
|
|
20219
20507
|
automatic_heating_enabled?: boolean | undefined;
|
|
20220
20508
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20221
20509
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20278,6 +20566,8 @@ interface Routes {
|
|
|
20278
20566
|
schedule_starts_at: string;
|
|
20279
20567
|
schedule_ends_at: string;
|
|
20280
20568
|
created_at: string;
|
|
20569
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
20570
|
+
errors?: any;
|
|
20281
20571
|
automatic_heating_enabled?: boolean | undefined;
|
|
20282
20572
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20283
20573
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20334,6 +20624,8 @@ interface Routes {
|
|
|
20334
20624
|
schedule_starts_at: string;
|
|
20335
20625
|
schedule_ends_at: string;
|
|
20336
20626
|
created_at: string;
|
|
20627
|
+
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
20628
|
+
errors?: any;
|
|
20337
20629
|
automatic_heating_enabled?: boolean | undefined;
|
|
20338
20630
|
automatic_cooling_enabled?: boolean | undefined;
|
|
20339
20631
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
@@ -20393,7 +20685,7 @@ interface Routes {
|
|
|
20393
20685
|
workspace_id: string;
|
|
20394
20686
|
created_at: string;
|
|
20395
20687
|
display_name: string;
|
|
20396
|
-
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user';
|
|
20688
|
+
external_type: 'pti_user' | 'brivo_user' | 'hid_cm_user' | 'salto_site_user';
|
|
20397
20689
|
external_type_display_name: string;
|
|
20398
20690
|
is_suspended: boolean;
|
|
20399
20691
|
full_name?: string | undefined;
|