@seamapi/types 1.192.0 → 1.194.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 +767 -419
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1093 -5025
- package/lib/seam/connect/models/events/devices.d.ts +50 -0
- package/lib/seam/connect/models/events/devices.js +7 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +24 -0
- package/lib/seam/connect/openapi.d.ts +215 -109
- package/lib/seam/connect/openapi.js +682 -341
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +854 -4916
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/devices.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +685 -406
- package/src/lib/seam/connect/route-types.ts +859 -4919
package/dist/connect.cjs
CHANGED
|
@@ -1961,6 +1961,12 @@ var lock_unlocked_event = device_event.extend({
|
|
|
1961
1961
|
action_attempt_id: zod.z.string().uuid().optional(),
|
|
1962
1962
|
method: lock_method
|
|
1963
1963
|
}).describe("A lock was unlocked.");
|
|
1964
|
+
var lock_access_denied_event = device_event.extend({
|
|
1965
|
+
event_type: zod.z.literal("lock.access_denied"),
|
|
1966
|
+
access_code_id: zod.z.string().uuid().optional()
|
|
1967
|
+
}).describe(
|
|
1968
|
+
"The lock denied access to a user after one or more consecutive invalid attempts to unlock the device."
|
|
1969
|
+
);
|
|
1964
1970
|
var device_events = [
|
|
1965
1971
|
device_connected_event,
|
|
1966
1972
|
device_converted_to_unmanaged_event,
|
|
@@ -1985,7 +1991,8 @@ var device_events = [
|
|
|
1985
1991
|
device_accessory_keypad_disconnected_event,
|
|
1986
1992
|
noise_sensor_noise_threshold_triggered_event,
|
|
1987
1993
|
lock_locked_event,
|
|
1988
|
-
lock_unlocked_event
|
|
1994
|
+
lock_unlocked_event,
|
|
1995
|
+
lock_access_denied_event
|
|
1989
1996
|
];
|
|
1990
1997
|
var enrollment_automation_event = common_event.extend({
|
|
1991
1998
|
enrollment_automation_id: zod.z.string().uuid().describe(`
|
|
@@ -2103,8 +2110,7 @@ var openapi_default = {
|
|
|
2103
2110
|
type: "string"
|
|
2104
2111
|
},
|
|
2105
2112
|
errors: {
|
|
2106
|
-
description: '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.'
|
|
2107
|
-
nullable: true
|
|
2113
|
+
description: '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.'
|
|
2108
2114
|
},
|
|
2109
2115
|
is_backup: {
|
|
2110
2116
|
description: "Indicates whether the access code is a backup code.",
|
|
@@ -2167,8 +2173,7 @@ var openapi_default = {
|
|
|
2167
2173
|
type: "string"
|
|
2168
2174
|
},
|
|
2169
2175
|
warnings: {
|
|
2170
|
-
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.'
|
|
2171
|
-
nullable: true
|
|
2176
|
+
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.'
|
|
2172
2177
|
}
|
|
2173
2178
|
},
|
|
2174
2179
|
required: [
|
|
@@ -2191,18 +2196,20 @@ var openapi_default = {
|
|
|
2191
2196
|
acs_access_group: {
|
|
2192
2197
|
properties: {
|
|
2193
2198
|
access_group_type: {
|
|
2194
|
-
|
|
2199
|
+
deprecated: true,
|
|
2195
2200
|
enum: [
|
|
2196
2201
|
"pti_unit",
|
|
2197
2202
|
"pti_access_level",
|
|
2198
2203
|
"salto_access_group",
|
|
2199
2204
|
"brivo_group"
|
|
2200
2205
|
],
|
|
2201
|
-
type: "string"
|
|
2206
|
+
type: "string",
|
|
2207
|
+
"x-deprecated": "use external_type"
|
|
2202
2208
|
},
|
|
2203
2209
|
access_group_type_display_name: {
|
|
2204
|
-
|
|
2205
|
-
type: "string"
|
|
2210
|
+
deprecated: true,
|
|
2211
|
+
type: "string",
|
|
2212
|
+
"x-deprecated": "use external_type_display_name"
|
|
2206
2213
|
},
|
|
2207
2214
|
acs_access_group_id: { format: "uuid", type: "string" },
|
|
2208
2215
|
acs_system_id: { format: "uuid", type: "string" },
|
|
@@ -2500,7 +2507,7 @@ var openapi_default = {
|
|
|
2500
2507
|
image_url: { type: "string" },
|
|
2501
2508
|
name: { type: "string" },
|
|
2502
2509
|
system_type: {
|
|
2503
|
-
|
|
2510
|
+
deprecated: true,
|
|
2504
2511
|
enum: [
|
|
2505
2512
|
"pti_site",
|
|
2506
2513
|
"alta_org",
|
|
@@ -2511,11 +2518,13 @@ var openapi_default = {
|
|
|
2511
2518
|
"assa_abloy_credential_service",
|
|
2512
2519
|
"latch_building"
|
|
2513
2520
|
],
|
|
2514
|
-
type: "string"
|
|
2521
|
+
type: "string",
|
|
2522
|
+
"x-deprecated": "use external_type"
|
|
2515
2523
|
},
|
|
2516
2524
|
system_type_display_name: {
|
|
2517
|
-
|
|
2518
|
-
type: "string"
|
|
2525
|
+
deprecated: true,
|
|
2526
|
+
type: "string",
|
|
2527
|
+
"x-deprecated": "use external_type_display_name"
|
|
2519
2528
|
},
|
|
2520
2529
|
warnings: {
|
|
2521
2530
|
items: { properties: {}, type: "object" },
|
|
@@ -2551,9 +2560,10 @@ var openapi_default = {
|
|
|
2551
2560
|
created_at: { format: "date-time", type: "string" },
|
|
2552
2561
|
display_name: { type: "string" },
|
|
2553
2562
|
email: {
|
|
2554
|
-
|
|
2563
|
+
deprecated: true,
|
|
2555
2564
|
format: "email",
|
|
2556
|
-
type: "string"
|
|
2565
|
+
type: "string",
|
|
2566
|
+
"x-deprecated": "use email_address."
|
|
2557
2567
|
},
|
|
2558
2568
|
email_address: { format: "email", type: "string" },
|
|
2559
2569
|
external_type: {
|
|
@@ -2570,7 +2580,7 @@ var openapi_default = {
|
|
|
2570
2580
|
full_name: { type: "string" },
|
|
2571
2581
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
2572
2582
|
is_suspended: { type: "boolean" },
|
|
2573
|
-
phone_number: {
|
|
2583
|
+
phone_number: { type: "string" },
|
|
2574
2584
|
user_identity_email_address: { nullable: true, type: "string" },
|
|
2575
2585
|
user_identity_full_name: { nullable: true, type: "string" },
|
|
2576
2586
|
user_identity_id: { type: "string" },
|
|
@@ -2593,13 +2603,14 @@ var openapi_default = {
|
|
|
2593
2603
|
description: "Locking door.",
|
|
2594
2604
|
properties: {
|
|
2595
2605
|
action_attempt_id: {
|
|
2596
|
-
description: "
|
|
2606
|
+
description: "The ID of the action attempt.",
|
|
2597
2607
|
format: "uuid",
|
|
2598
|
-
type: "string"
|
|
2608
|
+
type: "string",
|
|
2609
|
+
"x-title": "Action Attempt ID"
|
|
2599
2610
|
},
|
|
2600
2611
|
action_type: { enum: ["LOCK_DOOR"], type: "string" },
|
|
2601
|
-
error: {
|
|
2602
|
-
result: {
|
|
2612
|
+
error: { nullable: true },
|
|
2613
|
+
result: { nullable: true },
|
|
2603
2614
|
status: { enum: ["pending"], type: "string" }
|
|
2604
2615
|
},
|
|
2605
2616
|
required: [
|
|
@@ -2615,12 +2626,13 @@ var openapi_default = {
|
|
|
2615
2626
|
description: "Locking door succeeded.",
|
|
2616
2627
|
properties: {
|
|
2617
2628
|
action_attempt_id: {
|
|
2618
|
-
description: "
|
|
2629
|
+
description: "The ID of the action attempt.",
|
|
2619
2630
|
format: "uuid",
|
|
2620
|
-
type: "string"
|
|
2631
|
+
type: "string",
|
|
2632
|
+
"x-title": "Action Attempt ID"
|
|
2621
2633
|
},
|
|
2622
2634
|
action_type: { enum: ["LOCK_DOOR"], type: "string" },
|
|
2623
|
-
error: {
|
|
2635
|
+
error: { nullable: true },
|
|
2624
2636
|
result: { properties: {}, type: "object" },
|
|
2625
2637
|
status: { enum: ["success"], type: "string" }
|
|
2626
2638
|
},
|
|
@@ -2637,9 +2649,10 @@ var openapi_default = {
|
|
|
2637
2649
|
description: "Locking door failed.",
|
|
2638
2650
|
properties: {
|
|
2639
2651
|
action_attempt_id: {
|
|
2640
|
-
description: "
|
|
2652
|
+
description: "The ID of the action attempt.",
|
|
2641
2653
|
format: "uuid",
|
|
2642
|
-
type: "string"
|
|
2654
|
+
type: "string",
|
|
2655
|
+
"x-title": "Action Attempt ID"
|
|
2643
2656
|
},
|
|
2644
2657
|
action_type: { enum: ["LOCK_DOOR"], type: "string" },
|
|
2645
2658
|
error: {
|
|
@@ -2650,7 +2663,7 @@ var openapi_default = {
|
|
|
2650
2663
|
required: ["type", "message"],
|
|
2651
2664
|
type: "object"
|
|
2652
2665
|
},
|
|
2653
|
-
result: {
|
|
2666
|
+
result: { nullable: true },
|
|
2654
2667
|
status: { enum: ["error"], type: "string" }
|
|
2655
2668
|
},
|
|
2656
2669
|
required: [
|
|
@@ -2666,13 +2679,14 @@ var openapi_default = {
|
|
|
2666
2679
|
description: "Unlocking door.",
|
|
2667
2680
|
properties: {
|
|
2668
2681
|
action_attempt_id: {
|
|
2669
|
-
description: "
|
|
2682
|
+
description: "The ID of the action attempt.",
|
|
2670
2683
|
format: "uuid",
|
|
2671
|
-
type: "string"
|
|
2684
|
+
type: "string",
|
|
2685
|
+
"x-title": "Action Attempt ID"
|
|
2672
2686
|
},
|
|
2673
2687
|
action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
|
|
2674
|
-
error: {
|
|
2675
|
-
result: {
|
|
2688
|
+
error: { nullable: true },
|
|
2689
|
+
result: { nullable: true },
|
|
2676
2690
|
status: { enum: ["pending"], type: "string" }
|
|
2677
2691
|
},
|
|
2678
2692
|
required: [
|
|
@@ -2688,12 +2702,13 @@ var openapi_default = {
|
|
|
2688
2702
|
description: "Unlocking door succeeded.",
|
|
2689
2703
|
properties: {
|
|
2690
2704
|
action_attempt_id: {
|
|
2691
|
-
description: "
|
|
2705
|
+
description: "The ID of the action attempt.",
|
|
2692
2706
|
format: "uuid",
|
|
2693
|
-
type: "string"
|
|
2707
|
+
type: "string",
|
|
2708
|
+
"x-title": "Action Attempt ID"
|
|
2694
2709
|
},
|
|
2695
2710
|
action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
|
|
2696
|
-
error: {
|
|
2711
|
+
error: { nullable: true },
|
|
2697
2712
|
result: { properties: {}, type: "object" },
|
|
2698
2713
|
status: { enum: ["success"], type: "string" }
|
|
2699
2714
|
},
|
|
@@ -2710,9 +2725,10 @@ var openapi_default = {
|
|
|
2710
2725
|
description: "Unlocking door failed.",
|
|
2711
2726
|
properties: {
|
|
2712
2727
|
action_attempt_id: {
|
|
2713
|
-
description: "
|
|
2728
|
+
description: "The ID of the action attempt.",
|
|
2714
2729
|
format: "uuid",
|
|
2715
|
-
type: "string"
|
|
2730
|
+
type: "string",
|
|
2731
|
+
"x-title": "Action Attempt ID"
|
|
2716
2732
|
},
|
|
2717
2733
|
action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
|
|
2718
2734
|
error: {
|
|
@@ -2723,7 +2739,7 @@ var openapi_default = {
|
|
|
2723
2739
|
required: ["type", "message"],
|
|
2724
2740
|
type: "object"
|
|
2725
2741
|
},
|
|
2726
|
-
result: {
|
|
2742
|
+
result: { nullable: true },
|
|
2727
2743
|
status: { enum: ["error"], type: "string" }
|
|
2728
2744
|
},
|
|
2729
2745
|
required: [
|
|
@@ -2739,16 +2755,17 @@ var openapi_default = {
|
|
|
2739
2755
|
description: "Resetting sandbox workspace.",
|
|
2740
2756
|
properties: {
|
|
2741
2757
|
action_attempt_id: {
|
|
2742
|
-
description: "
|
|
2758
|
+
description: "The ID of the action attempt.",
|
|
2743
2759
|
format: "uuid",
|
|
2744
|
-
type: "string"
|
|
2760
|
+
type: "string",
|
|
2761
|
+
"x-title": "Action Attempt ID"
|
|
2745
2762
|
},
|
|
2746
2763
|
action_type: {
|
|
2747
2764
|
enum: ["RESET_SANDBOX_WORKSPACE"],
|
|
2748
2765
|
type: "string"
|
|
2749
2766
|
},
|
|
2750
|
-
error: {
|
|
2751
|
-
result: {
|
|
2767
|
+
error: { nullable: true },
|
|
2768
|
+
result: { nullable: true },
|
|
2752
2769
|
status: { enum: ["pending"], type: "string" }
|
|
2753
2770
|
},
|
|
2754
2771
|
required: [
|
|
@@ -2764,15 +2781,16 @@ var openapi_default = {
|
|
|
2764
2781
|
description: "Resetting sandbox workspace succeeded.",
|
|
2765
2782
|
properties: {
|
|
2766
2783
|
action_attempt_id: {
|
|
2767
|
-
description: "
|
|
2784
|
+
description: "The ID of the action attempt.",
|
|
2768
2785
|
format: "uuid",
|
|
2769
|
-
type: "string"
|
|
2786
|
+
type: "string",
|
|
2787
|
+
"x-title": "Action Attempt ID"
|
|
2770
2788
|
},
|
|
2771
2789
|
action_type: {
|
|
2772
2790
|
enum: ["RESET_SANDBOX_WORKSPACE"],
|
|
2773
2791
|
type: "string"
|
|
2774
2792
|
},
|
|
2775
|
-
error: {
|
|
2793
|
+
error: { nullable: true },
|
|
2776
2794
|
result: { properties: {}, type: "object" },
|
|
2777
2795
|
status: { enum: ["success"], type: "string" }
|
|
2778
2796
|
},
|
|
@@ -2789,9 +2807,10 @@ var openapi_default = {
|
|
|
2789
2807
|
description: "Resetting sandbox workspace failed.",
|
|
2790
2808
|
properties: {
|
|
2791
2809
|
action_attempt_id: {
|
|
2792
|
-
description: "
|
|
2810
|
+
description: "The ID of the action attempt.",
|
|
2793
2811
|
format: "uuid",
|
|
2794
|
-
type: "string"
|
|
2812
|
+
type: "string",
|
|
2813
|
+
"x-title": "Action Attempt ID"
|
|
2795
2814
|
},
|
|
2796
2815
|
action_type: {
|
|
2797
2816
|
enum: ["RESET_SANDBOX_WORKSPACE"],
|
|
@@ -2805,7 +2824,7 @@ var openapi_default = {
|
|
|
2805
2824
|
required: ["type", "message"],
|
|
2806
2825
|
type: "object"
|
|
2807
2826
|
},
|
|
2808
|
-
result: {
|
|
2827
|
+
result: { nullable: true },
|
|
2809
2828
|
status: { enum: ["error"], type: "string" }
|
|
2810
2829
|
},
|
|
2811
2830
|
required: [
|
|
@@ -2821,13 +2840,14 @@ var openapi_default = {
|
|
|
2821
2840
|
description: "Setting HVAC to cool.",
|
|
2822
2841
|
properties: {
|
|
2823
2842
|
action_attempt_id: {
|
|
2824
|
-
description: "
|
|
2843
|
+
description: "The ID of the action attempt.",
|
|
2825
2844
|
format: "uuid",
|
|
2826
|
-
type: "string"
|
|
2845
|
+
type: "string",
|
|
2846
|
+
"x-title": "Action Attempt ID"
|
|
2827
2847
|
},
|
|
2828
2848
|
action_type: { enum: ["SET_COOL"], type: "string" },
|
|
2829
|
-
error: {
|
|
2830
|
-
result: {
|
|
2849
|
+
error: { nullable: true },
|
|
2850
|
+
result: { nullable: true },
|
|
2831
2851
|
status: { enum: ["pending"], type: "string" }
|
|
2832
2852
|
},
|
|
2833
2853
|
required: [
|
|
@@ -2843,12 +2863,13 @@ var openapi_default = {
|
|
|
2843
2863
|
description: "Setting HVAC to cool succeeded.",
|
|
2844
2864
|
properties: {
|
|
2845
2865
|
action_attempt_id: {
|
|
2846
|
-
description: "
|
|
2866
|
+
description: "The ID of the action attempt.",
|
|
2847
2867
|
format: "uuid",
|
|
2848
|
-
type: "string"
|
|
2868
|
+
type: "string",
|
|
2869
|
+
"x-title": "Action Attempt ID"
|
|
2849
2870
|
},
|
|
2850
2871
|
action_type: { enum: ["SET_COOL"], type: "string" },
|
|
2851
|
-
error: {
|
|
2872
|
+
error: { nullable: true },
|
|
2852
2873
|
result: { properties: {}, type: "object" },
|
|
2853
2874
|
status: { enum: ["success"], type: "string" }
|
|
2854
2875
|
},
|
|
@@ -2865,9 +2886,10 @@ var openapi_default = {
|
|
|
2865
2886
|
description: "Setting HVAC to cool failed.",
|
|
2866
2887
|
properties: {
|
|
2867
2888
|
action_attempt_id: {
|
|
2868
|
-
description: "
|
|
2889
|
+
description: "The ID of the action attempt.",
|
|
2869
2890
|
format: "uuid",
|
|
2870
|
-
type: "string"
|
|
2891
|
+
type: "string",
|
|
2892
|
+
"x-title": "Action Attempt ID"
|
|
2871
2893
|
},
|
|
2872
2894
|
action_type: { enum: ["SET_COOL"], type: "string" },
|
|
2873
2895
|
error: {
|
|
@@ -2878,7 +2900,7 @@ var openapi_default = {
|
|
|
2878
2900
|
required: ["type", "message"],
|
|
2879
2901
|
type: "object"
|
|
2880
2902
|
},
|
|
2881
|
-
result: {
|
|
2903
|
+
result: { nullable: true },
|
|
2882
2904
|
status: { enum: ["error"], type: "string" }
|
|
2883
2905
|
},
|
|
2884
2906
|
required: [
|
|
@@ -2894,13 +2916,14 @@ var openapi_default = {
|
|
|
2894
2916
|
description: "Setting HVAC to heat mode.",
|
|
2895
2917
|
properties: {
|
|
2896
2918
|
action_attempt_id: {
|
|
2897
|
-
description: "
|
|
2919
|
+
description: "The ID of the action attempt.",
|
|
2898
2920
|
format: "uuid",
|
|
2899
|
-
type: "string"
|
|
2921
|
+
type: "string",
|
|
2922
|
+
"x-title": "Action Attempt ID"
|
|
2900
2923
|
},
|
|
2901
2924
|
action_type: { enum: ["SET_HEAT"], type: "string" },
|
|
2902
|
-
error: {
|
|
2903
|
-
result: {
|
|
2925
|
+
error: { nullable: true },
|
|
2926
|
+
result: { nullable: true },
|
|
2904
2927
|
status: { enum: ["pending"], type: "string" }
|
|
2905
2928
|
},
|
|
2906
2929
|
required: [
|
|
@@ -2916,12 +2939,13 @@ var openapi_default = {
|
|
|
2916
2939
|
description: "Setting HVAC to heat mode succeeded.",
|
|
2917
2940
|
properties: {
|
|
2918
2941
|
action_attempt_id: {
|
|
2919
|
-
description: "
|
|
2942
|
+
description: "The ID of the action attempt.",
|
|
2920
2943
|
format: "uuid",
|
|
2921
|
-
type: "string"
|
|
2944
|
+
type: "string",
|
|
2945
|
+
"x-title": "Action Attempt ID"
|
|
2922
2946
|
},
|
|
2923
2947
|
action_type: { enum: ["SET_HEAT"], type: "string" },
|
|
2924
|
-
error: {
|
|
2948
|
+
error: { nullable: true },
|
|
2925
2949
|
result: { properties: {}, type: "object" },
|
|
2926
2950
|
status: { enum: ["success"], type: "string" }
|
|
2927
2951
|
},
|
|
@@ -2938,9 +2962,10 @@ var openapi_default = {
|
|
|
2938
2962
|
description: "Setting HVAC to heat mode failed.",
|
|
2939
2963
|
properties: {
|
|
2940
2964
|
action_attempt_id: {
|
|
2941
|
-
description: "
|
|
2965
|
+
description: "The ID of the action attempt.",
|
|
2942
2966
|
format: "uuid",
|
|
2943
|
-
type: "string"
|
|
2967
|
+
type: "string",
|
|
2968
|
+
"x-title": "Action Attempt ID"
|
|
2944
2969
|
},
|
|
2945
2970
|
action_type: { enum: ["SET_HEAT"], type: "string" },
|
|
2946
2971
|
error: {
|
|
@@ -2951,7 +2976,7 @@ var openapi_default = {
|
|
|
2951
2976
|
required: ["type", "message"],
|
|
2952
2977
|
type: "object"
|
|
2953
2978
|
},
|
|
2954
|
-
result: {
|
|
2979
|
+
result: { nullable: true },
|
|
2955
2980
|
status: { enum: ["error"], type: "string" }
|
|
2956
2981
|
},
|
|
2957
2982
|
required: [
|
|
@@ -2967,13 +2992,14 @@ var openapi_default = {
|
|
|
2967
2992
|
description: "Setting HVAC to heat-cool mode.",
|
|
2968
2993
|
properties: {
|
|
2969
2994
|
action_attempt_id: {
|
|
2970
|
-
description: "
|
|
2995
|
+
description: "The ID of the action attempt.",
|
|
2971
2996
|
format: "uuid",
|
|
2972
|
-
type: "string"
|
|
2997
|
+
type: "string",
|
|
2998
|
+
"x-title": "Action Attempt ID"
|
|
2973
2999
|
},
|
|
2974
3000
|
action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
|
|
2975
|
-
error: {
|
|
2976
|
-
result: {
|
|
3001
|
+
error: { nullable: true },
|
|
3002
|
+
result: { nullable: true },
|
|
2977
3003
|
status: { enum: ["pending"], type: "string" }
|
|
2978
3004
|
},
|
|
2979
3005
|
required: [
|
|
@@ -2989,12 +3015,13 @@ var openapi_default = {
|
|
|
2989
3015
|
description: "Setting HVAC to heat-cool mode succeeded.",
|
|
2990
3016
|
properties: {
|
|
2991
3017
|
action_attempt_id: {
|
|
2992
|
-
description: "
|
|
3018
|
+
description: "The ID of the action attempt.",
|
|
2993
3019
|
format: "uuid",
|
|
2994
|
-
type: "string"
|
|
3020
|
+
type: "string",
|
|
3021
|
+
"x-title": "Action Attempt ID"
|
|
2995
3022
|
},
|
|
2996
3023
|
action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
|
|
2997
|
-
error: {
|
|
3024
|
+
error: { nullable: true },
|
|
2998
3025
|
result: { properties: {}, type: "object" },
|
|
2999
3026
|
status: { enum: ["success"], type: "string" }
|
|
3000
3027
|
},
|
|
@@ -3011,9 +3038,10 @@ var openapi_default = {
|
|
|
3011
3038
|
description: "Setting heat-cool mode failed.",
|
|
3012
3039
|
properties: {
|
|
3013
3040
|
action_attempt_id: {
|
|
3014
|
-
description: "
|
|
3041
|
+
description: "The ID of the action attempt.",
|
|
3015
3042
|
format: "uuid",
|
|
3016
|
-
type: "string"
|
|
3043
|
+
type: "string",
|
|
3044
|
+
"x-title": "Action Attempt ID"
|
|
3017
3045
|
},
|
|
3018
3046
|
action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
|
|
3019
3047
|
error: {
|
|
@@ -3024,7 +3052,7 @@ var openapi_default = {
|
|
|
3024
3052
|
required: ["type", "message"],
|
|
3025
3053
|
type: "object"
|
|
3026
3054
|
},
|
|
3027
|
-
result: {
|
|
3055
|
+
result: { nullable: true },
|
|
3028
3056
|
status: { enum: ["error"], type: "string" }
|
|
3029
3057
|
},
|
|
3030
3058
|
required: [
|
|
@@ -3040,13 +3068,14 @@ var openapi_default = {
|
|
|
3040
3068
|
description: "Setting fan mode.",
|
|
3041
3069
|
properties: {
|
|
3042
3070
|
action_attempt_id: {
|
|
3043
|
-
description: "
|
|
3071
|
+
description: "The ID of the action attempt.",
|
|
3044
3072
|
format: "uuid",
|
|
3045
|
-
type: "string"
|
|
3073
|
+
type: "string",
|
|
3074
|
+
"x-title": "Action Attempt ID"
|
|
3046
3075
|
},
|
|
3047
3076
|
action_type: { enum: ["SET_FAN_MODE"], type: "string" },
|
|
3048
|
-
error: {
|
|
3049
|
-
result: {
|
|
3077
|
+
error: { nullable: true },
|
|
3078
|
+
result: { nullable: true },
|
|
3050
3079
|
status: { enum: ["pending"], type: "string" }
|
|
3051
3080
|
},
|
|
3052
3081
|
required: [
|
|
@@ -3062,12 +3091,13 @@ var openapi_default = {
|
|
|
3062
3091
|
description: "Setting fan mode succeeded.",
|
|
3063
3092
|
properties: {
|
|
3064
3093
|
action_attempt_id: {
|
|
3065
|
-
description: "
|
|
3094
|
+
description: "The ID of the action attempt.",
|
|
3066
3095
|
format: "uuid",
|
|
3067
|
-
type: "string"
|
|
3096
|
+
type: "string",
|
|
3097
|
+
"x-title": "Action Attempt ID"
|
|
3068
3098
|
},
|
|
3069
3099
|
action_type: { enum: ["SET_FAN_MODE"], type: "string" },
|
|
3070
|
-
error: {
|
|
3100
|
+
error: { nullable: true },
|
|
3071
3101
|
result: { properties: {}, type: "object" },
|
|
3072
3102
|
status: { enum: ["success"], type: "string" }
|
|
3073
3103
|
},
|
|
@@ -3084,9 +3114,10 @@ var openapi_default = {
|
|
|
3084
3114
|
description: "Setting fan mode failed.",
|
|
3085
3115
|
properties: {
|
|
3086
3116
|
action_attempt_id: {
|
|
3087
|
-
description: "
|
|
3117
|
+
description: "The ID of the action attempt.",
|
|
3088
3118
|
format: "uuid",
|
|
3089
|
-
type: "string"
|
|
3119
|
+
type: "string",
|
|
3120
|
+
"x-title": "Action Attempt ID"
|
|
3090
3121
|
},
|
|
3091
3122
|
action_type: { enum: ["SET_FAN_MODE"], type: "string" },
|
|
3092
3123
|
error: {
|
|
@@ -3097,7 +3128,7 @@ var openapi_default = {
|
|
|
3097
3128
|
required: ["type", "message"],
|
|
3098
3129
|
type: "object"
|
|
3099
3130
|
},
|
|
3100
|
-
result: {
|
|
3131
|
+
result: { nullable: true },
|
|
3101
3132
|
status: { enum: ["error"], type: "string" }
|
|
3102
3133
|
},
|
|
3103
3134
|
required: [
|
|
@@ -3113,13 +3144,14 @@ var openapi_default = {
|
|
|
3113
3144
|
description: "Turning HVAC off.",
|
|
3114
3145
|
properties: {
|
|
3115
3146
|
action_attempt_id: {
|
|
3116
|
-
description: "
|
|
3147
|
+
description: "The ID of the action attempt.",
|
|
3117
3148
|
format: "uuid",
|
|
3118
|
-
type: "string"
|
|
3149
|
+
type: "string",
|
|
3150
|
+
"x-title": "Action Attempt ID"
|
|
3119
3151
|
},
|
|
3120
3152
|
action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
|
|
3121
|
-
error: {
|
|
3122
|
-
result: {
|
|
3153
|
+
error: { nullable: true },
|
|
3154
|
+
result: { nullable: true },
|
|
3123
3155
|
status: { enum: ["pending"], type: "string" }
|
|
3124
3156
|
},
|
|
3125
3157
|
required: [
|
|
@@ -3135,12 +3167,13 @@ var openapi_default = {
|
|
|
3135
3167
|
description: "Turning HVAC off succeeded.",
|
|
3136
3168
|
properties: {
|
|
3137
3169
|
action_attempt_id: {
|
|
3138
|
-
description: "
|
|
3170
|
+
description: "The ID of the action attempt.",
|
|
3139
3171
|
format: "uuid",
|
|
3140
|
-
type: "string"
|
|
3172
|
+
type: "string",
|
|
3173
|
+
"x-title": "Action Attempt ID"
|
|
3141
3174
|
},
|
|
3142
3175
|
action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
|
|
3143
|
-
error: {
|
|
3176
|
+
error: { nullable: true },
|
|
3144
3177
|
result: { properties: {}, type: "object" },
|
|
3145
3178
|
status: { enum: ["success"], type: "string" }
|
|
3146
3179
|
},
|
|
@@ -3157,9 +3190,10 @@ var openapi_default = {
|
|
|
3157
3190
|
description: "Turning HVAC off failed.",
|
|
3158
3191
|
properties: {
|
|
3159
3192
|
action_attempt_id: {
|
|
3160
|
-
description: "
|
|
3193
|
+
description: "The ID of the action attempt.",
|
|
3161
3194
|
format: "uuid",
|
|
3162
|
-
type: "string"
|
|
3195
|
+
type: "string",
|
|
3196
|
+
"x-title": "Action Attempt ID"
|
|
3163
3197
|
},
|
|
3164
3198
|
action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
|
|
3165
3199
|
error: {
|
|
@@ -3170,7 +3204,7 @@ var openapi_default = {
|
|
|
3170
3204
|
required: ["type", "message"],
|
|
3171
3205
|
type: "object"
|
|
3172
3206
|
},
|
|
3173
|
-
result: {
|
|
3207
|
+
result: { nullable: true },
|
|
3174
3208
|
status: { enum: ["error"], type: "string" }
|
|
3175
3209
|
},
|
|
3176
3210
|
required: [
|
|
@@ -3185,13 +3219,14 @@ var openapi_default = {
|
|
|
3185
3219
|
{
|
|
3186
3220
|
properties: {
|
|
3187
3221
|
action_attempt_id: {
|
|
3188
|
-
description: "
|
|
3222
|
+
description: "The ID of the action attempt.",
|
|
3189
3223
|
format: "uuid",
|
|
3190
|
-
type: "string"
|
|
3224
|
+
type: "string",
|
|
3225
|
+
"x-title": "Action Attempt ID"
|
|
3191
3226
|
},
|
|
3192
3227
|
action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
|
|
3193
|
-
error: {
|
|
3194
|
-
result: {
|
|
3228
|
+
error: { nullable: true },
|
|
3229
|
+
result: { nullable: true },
|
|
3195
3230
|
status: { enum: ["pending"], type: "string" }
|
|
3196
3231
|
},
|
|
3197
3232
|
required: [
|
|
@@ -3206,13 +3241,14 @@ var openapi_default = {
|
|
|
3206
3241
|
{
|
|
3207
3242
|
properties: {
|
|
3208
3243
|
action_attempt_id: {
|
|
3209
|
-
description: "
|
|
3244
|
+
description: "The ID of the action attempt.",
|
|
3210
3245
|
format: "uuid",
|
|
3211
|
-
type: "string"
|
|
3246
|
+
type: "string",
|
|
3247
|
+
"x-title": "Action Attempt ID"
|
|
3212
3248
|
},
|
|
3213
3249
|
action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
|
|
3214
|
-
error: {
|
|
3215
|
-
result: {
|
|
3250
|
+
error: { nullable: true },
|
|
3251
|
+
result: {},
|
|
3216
3252
|
status: { enum: ["success"], type: "string" }
|
|
3217
3253
|
},
|
|
3218
3254
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3221,9 +3257,10 @@ var openapi_default = {
|
|
|
3221
3257
|
{
|
|
3222
3258
|
properties: {
|
|
3223
3259
|
action_attempt_id: {
|
|
3224
|
-
description: "
|
|
3260
|
+
description: "The ID of the action attempt.",
|
|
3225
3261
|
format: "uuid",
|
|
3226
|
-
type: "string"
|
|
3262
|
+
type: "string",
|
|
3263
|
+
"x-title": "Action Attempt ID"
|
|
3227
3264
|
},
|
|
3228
3265
|
action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
|
|
3229
3266
|
error: {
|
|
@@ -3234,7 +3271,7 @@ var openapi_default = {
|
|
|
3234
3271
|
required: ["type", "message"],
|
|
3235
3272
|
type: "object"
|
|
3236
3273
|
},
|
|
3237
|
-
result: {
|
|
3274
|
+
result: { nullable: true },
|
|
3238
3275
|
status: { enum: ["error"], type: "string" }
|
|
3239
3276
|
},
|
|
3240
3277
|
required: [
|
|
@@ -3249,13 +3286,14 @@ var openapi_default = {
|
|
|
3249
3286
|
{
|
|
3250
3287
|
properties: {
|
|
3251
3288
|
action_attempt_id: {
|
|
3252
|
-
description: "
|
|
3289
|
+
description: "The ID of the action attempt.",
|
|
3253
3290
|
format: "uuid",
|
|
3254
|
-
type: "string"
|
|
3291
|
+
type: "string",
|
|
3292
|
+
"x-title": "Action Attempt ID"
|
|
3255
3293
|
},
|
|
3256
3294
|
action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
|
|
3257
|
-
error: {
|
|
3258
|
-
result: {
|
|
3295
|
+
error: { nullable: true },
|
|
3296
|
+
result: { nullable: true },
|
|
3259
3297
|
status: { enum: ["pending"], type: "string" }
|
|
3260
3298
|
},
|
|
3261
3299
|
required: [
|
|
@@ -3270,13 +3308,14 @@ var openapi_default = {
|
|
|
3270
3308
|
{
|
|
3271
3309
|
properties: {
|
|
3272
3310
|
action_attempt_id: {
|
|
3273
|
-
description: "
|
|
3311
|
+
description: "The ID of the action attempt.",
|
|
3274
3312
|
format: "uuid",
|
|
3275
|
-
type: "string"
|
|
3313
|
+
type: "string",
|
|
3314
|
+
"x-title": "Action Attempt ID"
|
|
3276
3315
|
},
|
|
3277
3316
|
action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
|
|
3278
|
-
error: {
|
|
3279
|
-
result: {
|
|
3317
|
+
error: { nullable: true },
|
|
3318
|
+
result: {},
|
|
3280
3319
|
status: { enum: ["success"], type: "string" }
|
|
3281
3320
|
},
|
|
3282
3321
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3285,9 +3324,10 @@ var openapi_default = {
|
|
|
3285
3324
|
{
|
|
3286
3325
|
properties: {
|
|
3287
3326
|
action_attempt_id: {
|
|
3288
|
-
description: "
|
|
3327
|
+
description: "The ID of the action attempt.",
|
|
3289
3328
|
format: "uuid",
|
|
3290
|
-
type: "string"
|
|
3329
|
+
type: "string",
|
|
3330
|
+
"x-title": "Action Attempt ID"
|
|
3291
3331
|
},
|
|
3292
3332
|
action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
|
|
3293
3333
|
error: {
|
|
@@ -3298,7 +3338,7 @@ var openapi_default = {
|
|
|
3298
3338
|
required: ["type", "message"],
|
|
3299
3339
|
type: "object"
|
|
3300
3340
|
},
|
|
3301
|
-
result: {
|
|
3341
|
+
result: { nullable: true },
|
|
3302
3342
|
status: { enum: ["error"], type: "string" }
|
|
3303
3343
|
},
|
|
3304
3344
|
required: [
|
|
@@ -3313,13 +3353,14 @@ var openapi_default = {
|
|
|
3313
3353
|
{
|
|
3314
3354
|
properties: {
|
|
3315
3355
|
action_attempt_id: {
|
|
3316
|
-
description: "
|
|
3356
|
+
description: "The ID of the action attempt.",
|
|
3317
3357
|
format: "uuid",
|
|
3318
|
-
type: "string"
|
|
3358
|
+
type: "string",
|
|
3359
|
+
"x-title": "Action Attempt ID"
|
|
3319
3360
|
},
|
|
3320
3361
|
action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
|
|
3321
|
-
error: {
|
|
3322
|
-
result: {
|
|
3362
|
+
error: { nullable: true },
|
|
3363
|
+
result: { nullable: true },
|
|
3323
3364
|
status: { enum: ["pending"], type: "string" }
|
|
3324
3365
|
},
|
|
3325
3366
|
required: [
|
|
@@ -3334,13 +3375,14 @@ var openapi_default = {
|
|
|
3334
3375
|
{
|
|
3335
3376
|
properties: {
|
|
3336
3377
|
action_attempt_id: {
|
|
3337
|
-
description: "
|
|
3378
|
+
description: "The ID of the action attempt.",
|
|
3338
3379
|
format: "uuid",
|
|
3339
|
-
type: "string"
|
|
3380
|
+
type: "string",
|
|
3381
|
+
"x-title": "Action Attempt ID"
|
|
3340
3382
|
},
|
|
3341
3383
|
action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
|
|
3342
|
-
error: {
|
|
3343
|
-
result: {
|
|
3384
|
+
error: { nullable: true },
|
|
3385
|
+
result: {},
|
|
3344
3386
|
status: { enum: ["success"], type: "string" }
|
|
3345
3387
|
},
|
|
3346
3388
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3349,9 +3391,10 @@ var openapi_default = {
|
|
|
3349
3391
|
{
|
|
3350
3392
|
properties: {
|
|
3351
3393
|
action_attempt_id: {
|
|
3352
|
-
description: "
|
|
3394
|
+
description: "The ID of the action attempt.",
|
|
3353
3395
|
format: "uuid",
|
|
3354
|
-
type: "string"
|
|
3396
|
+
type: "string",
|
|
3397
|
+
"x-title": "Action Attempt ID"
|
|
3355
3398
|
},
|
|
3356
3399
|
action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
|
|
3357
3400
|
error: {
|
|
@@ -3362,7 +3405,7 @@ var openapi_default = {
|
|
|
3362
3405
|
required: ["type", "message"],
|
|
3363
3406
|
type: "object"
|
|
3364
3407
|
},
|
|
3365
|
-
result: {
|
|
3408
|
+
result: { nullable: true },
|
|
3366
3409
|
status: { enum: ["error"], type: "string" }
|
|
3367
3410
|
},
|
|
3368
3411
|
required: [
|
|
@@ -3377,13 +3420,14 @@ var openapi_default = {
|
|
|
3377
3420
|
{
|
|
3378
3421
|
properties: {
|
|
3379
3422
|
action_attempt_id: {
|
|
3380
|
-
description: "
|
|
3423
|
+
description: "The ID of the action attempt.",
|
|
3381
3424
|
format: "uuid",
|
|
3382
|
-
type: "string"
|
|
3425
|
+
type: "string",
|
|
3426
|
+
"x-title": "Action Attempt ID"
|
|
3383
3427
|
},
|
|
3384
3428
|
action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
|
|
3385
|
-
error: {
|
|
3386
|
-
result: {
|
|
3429
|
+
error: { nullable: true },
|
|
3430
|
+
result: { nullable: true },
|
|
3387
3431
|
status: { enum: ["pending"], type: "string" }
|
|
3388
3432
|
},
|
|
3389
3433
|
required: [
|
|
@@ -3398,13 +3442,14 @@ var openapi_default = {
|
|
|
3398
3442
|
{
|
|
3399
3443
|
properties: {
|
|
3400
3444
|
action_attempt_id: {
|
|
3401
|
-
description: "
|
|
3445
|
+
description: "The ID of the action attempt.",
|
|
3402
3446
|
format: "uuid",
|
|
3403
|
-
type: "string"
|
|
3447
|
+
type: "string",
|
|
3448
|
+
"x-title": "Action Attempt ID"
|
|
3404
3449
|
},
|
|
3405
3450
|
action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
|
|
3406
|
-
error: {
|
|
3407
|
-
result: {
|
|
3451
|
+
error: { nullable: true },
|
|
3452
|
+
result: {},
|
|
3408
3453
|
status: { enum: ["success"], type: "string" }
|
|
3409
3454
|
},
|
|
3410
3455
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3413,9 +3458,10 @@ var openapi_default = {
|
|
|
3413
3458
|
{
|
|
3414
3459
|
properties: {
|
|
3415
3460
|
action_attempt_id: {
|
|
3416
|
-
description: "
|
|
3461
|
+
description: "The ID of the action attempt.",
|
|
3417
3462
|
format: "uuid",
|
|
3418
|
-
type: "string"
|
|
3463
|
+
type: "string",
|
|
3464
|
+
"x-title": "Action Attempt ID"
|
|
3419
3465
|
},
|
|
3420
3466
|
action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
|
|
3421
3467
|
error: {
|
|
@@ -3426,7 +3472,7 @@ var openapi_default = {
|
|
|
3426
3472
|
required: ["type", "message"],
|
|
3427
3473
|
type: "object"
|
|
3428
3474
|
},
|
|
3429
|
-
result: {
|
|
3475
|
+
result: { nullable: true },
|
|
3430
3476
|
status: { enum: ["error"], type: "string" }
|
|
3431
3477
|
},
|
|
3432
3478
|
required: [
|
|
@@ -3441,13 +3487,14 @@ var openapi_default = {
|
|
|
3441
3487
|
{
|
|
3442
3488
|
properties: {
|
|
3443
3489
|
action_attempt_id: {
|
|
3444
|
-
description: "
|
|
3490
|
+
description: "The ID of the action attempt.",
|
|
3445
3491
|
format: "uuid",
|
|
3446
|
-
type: "string"
|
|
3492
|
+
type: "string",
|
|
3493
|
+
"x-title": "Action Attempt ID"
|
|
3447
3494
|
},
|
|
3448
3495
|
action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
|
|
3449
|
-
error: {
|
|
3450
|
-
result: {
|
|
3496
|
+
error: { nullable: true },
|
|
3497
|
+
result: { nullable: true },
|
|
3451
3498
|
status: { enum: ["pending"], type: "string" }
|
|
3452
3499
|
},
|
|
3453
3500
|
required: [
|
|
@@ -3462,13 +3509,14 @@ var openapi_default = {
|
|
|
3462
3509
|
{
|
|
3463
3510
|
properties: {
|
|
3464
3511
|
action_attempt_id: {
|
|
3465
|
-
description: "
|
|
3512
|
+
description: "The ID of the action attempt.",
|
|
3466
3513
|
format: "uuid",
|
|
3467
|
-
type: "string"
|
|
3514
|
+
type: "string",
|
|
3515
|
+
"x-title": "Action Attempt ID"
|
|
3468
3516
|
},
|
|
3469
3517
|
action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
|
|
3470
|
-
error: {
|
|
3471
|
-
result: {
|
|
3518
|
+
error: { nullable: true },
|
|
3519
|
+
result: {},
|
|
3472
3520
|
status: { enum: ["success"], type: "string" }
|
|
3473
3521
|
},
|
|
3474
3522
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3477,9 +3525,10 @@ var openapi_default = {
|
|
|
3477
3525
|
{
|
|
3478
3526
|
properties: {
|
|
3479
3527
|
action_attempt_id: {
|
|
3480
|
-
description: "
|
|
3528
|
+
description: "The ID of the action attempt.",
|
|
3481
3529
|
format: "uuid",
|
|
3482
|
-
type: "string"
|
|
3530
|
+
type: "string",
|
|
3531
|
+
"x-title": "Action Attempt ID"
|
|
3483
3532
|
},
|
|
3484
3533
|
action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
|
|
3485
3534
|
error: {
|
|
@@ -3490,7 +3539,7 @@ var openapi_default = {
|
|
|
3490
3539
|
required: ["type", "message"],
|
|
3491
3540
|
type: "object"
|
|
3492
3541
|
},
|
|
3493
|
-
result: {
|
|
3542
|
+
result: { nullable: true },
|
|
3494
3543
|
status: { enum: ["error"], type: "string" }
|
|
3495
3544
|
},
|
|
3496
3545
|
required: [
|
|
@@ -3505,13 +3554,14 @@ var openapi_default = {
|
|
|
3505
3554
|
{
|
|
3506
3555
|
properties: {
|
|
3507
3556
|
action_attempt_id: {
|
|
3508
|
-
description: "
|
|
3557
|
+
description: "The ID of the action attempt.",
|
|
3509
3558
|
format: "uuid",
|
|
3510
|
-
type: "string"
|
|
3559
|
+
type: "string",
|
|
3560
|
+
"x-title": "Action Attempt ID"
|
|
3511
3561
|
},
|
|
3512
3562
|
action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
|
|
3513
|
-
error: {
|
|
3514
|
-
result: {
|
|
3563
|
+
error: { nullable: true },
|
|
3564
|
+
result: { nullable: true },
|
|
3515
3565
|
status: { enum: ["pending"], type: "string" }
|
|
3516
3566
|
},
|
|
3517
3567
|
required: [
|
|
@@ -3526,13 +3576,14 @@ var openapi_default = {
|
|
|
3526
3576
|
{
|
|
3527
3577
|
properties: {
|
|
3528
3578
|
action_attempt_id: {
|
|
3529
|
-
description: "
|
|
3579
|
+
description: "The ID of the action attempt.",
|
|
3530
3580
|
format: "uuid",
|
|
3531
|
-
type: "string"
|
|
3581
|
+
type: "string",
|
|
3582
|
+
"x-title": "Action Attempt ID"
|
|
3532
3583
|
},
|
|
3533
3584
|
action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
|
|
3534
|
-
error: {
|
|
3535
|
-
result: {
|
|
3585
|
+
error: { nullable: true },
|
|
3586
|
+
result: {},
|
|
3536
3587
|
status: { enum: ["success"], type: "string" }
|
|
3537
3588
|
},
|
|
3538
3589
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3541,9 +3592,10 @@ var openapi_default = {
|
|
|
3541
3592
|
{
|
|
3542
3593
|
properties: {
|
|
3543
3594
|
action_attempt_id: {
|
|
3544
|
-
description: "
|
|
3595
|
+
description: "The ID of the action attempt.",
|
|
3545
3596
|
format: "uuid",
|
|
3546
|
-
type: "string"
|
|
3597
|
+
type: "string",
|
|
3598
|
+
"x-title": "Action Attempt ID"
|
|
3547
3599
|
},
|
|
3548
3600
|
action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
|
|
3549
3601
|
error: {
|
|
@@ -3554,7 +3606,7 @@ var openapi_default = {
|
|
|
3554
3606
|
required: ["type", "message"],
|
|
3555
3607
|
type: "object"
|
|
3556
3608
|
},
|
|
3557
|
-
result: {
|
|
3609
|
+
result: { nullable: true },
|
|
3558
3610
|
status: { enum: ["error"], type: "string" }
|
|
3559
3611
|
},
|
|
3560
3612
|
required: [
|
|
@@ -3569,13 +3621,14 @@ var openapi_default = {
|
|
|
3569
3621
|
{
|
|
3570
3622
|
properties: {
|
|
3571
3623
|
action_attempt_id: {
|
|
3572
|
-
description: "
|
|
3624
|
+
description: "The ID of the action attempt.",
|
|
3573
3625
|
format: "uuid",
|
|
3574
|
-
type: "string"
|
|
3626
|
+
type: "string",
|
|
3627
|
+
"x-title": "Action Attempt ID"
|
|
3575
3628
|
},
|
|
3576
3629
|
action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
|
|
3577
|
-
error: {
|
|
3578
|
-
result: {
|
|
3630
|
+
error: { nullable: true },
|
|
3631
|
+
result: { nullable: true },
|
|
3579
3632
|
status: { enum: ["pending"], type: "string" }
|
|
3580
3633
|
},
|
|
3581
3634
|
required: [
|
|
@@ -3590,13 +3643,14 @@ var openapi_default = {
|
|
|
3590
3643
|
{
|
|
3591
3644
|
properties: {
|
|
3592
3645
|
action_attempt_id: {
|
|
3593
|
-
description: "
|
|
3646
|
+
description: "The ID of the action attempt.",
|
|
3594
3647
|
format: "uuid",
|
|
3595
|
-
type: "string"
|
|
3648
|
+
type: "string",
|
|
3649
|
+
"x-title": "Action Attempt ID"
|
|
3596
3650
|
},
|
|
3597
3651
|
action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
|
|
3598
|
-
error: {
|
|
3599
|
-
result: {
|
|
3652
|
+
error: { nullable: true },
|
|
3653
|
+
result: {},
|
|
3600
3654
|
status: { enum: ["success"], type: "string" }
|
|
3601
3655
|
},
|
|
3602
3656
|
required: ["action_attempt_id", "status", "error", "action_type"],
|
|
@@ -3605,9 +3659,10 @@ var openapi_default = {
|
|
|
3605
3659
|
{
|
|
3606
3660
|
properties: {
|
|
3607
3661
|
action_attempt_id: {
|
|
3608
|
-
description: "
|
|
3662
|
+
description: "The ID of the action attempt.",
|
|
3609
3663
|
format: "uuid",
|
|
3610
|
-
type: "string"
|
|
3664
|
+
type: "string",
|
|
3665
|
+
"x-title": "Action Attempt ID"
|
|
3611
3666
|
},
|
|
3612
3667
|
action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
|
|
3613
3668
|
error: {
|
|
@@ -3618,7 +3673,7 @@ var openapi_default = {
|
|
|
3618
3673
|
required: ["type", "message"],
|
|
3619
3674
|
type: "object"
|
|
3620
3675
|
},
|
|
3621
|
-
result: {
|
|
3676
|
+
result: { nullable: true },
|
|
3622
3677
|
status: { enum: ["error"], type: "string" }
|
|
3623
3678
|
},
|
|
3624
3679
|
required: [
|
|
@@ -3644,7 +3699,7 @@ var openapi_default = {
|
|
|
3644
3699
|
type: "array"
|
|
3645
3700
|
},
|
|
3646
3701
|
created_at: { format: "date-time", type: "string" },
|
|
3647
|
-
device_count: { type: "number" },
|
|
3702
|
+
device_count: { format: "float", type: "number" },
|
|
3648
3703
|
token: { type: "string" },
|
|
3649
3704
|
user_identifier_key: { nullable: true, type: "string" },
|
|
3650
3705
|
user_identity_ids: {
|
|
@@ -3671,16 +3726,15 @@ var openapi_default = {
|
|
|
3671
3726
|
automatic_cooling_enabled: { type: "boolean" },
|
|
3672
3727
|
automatic_heating_enabled: { type: "boolean" },
|
|
3673
3728
|
climate_setting_schedule_id: { format: "uuid", type: "string" },
|
|
3674
|
-
cooling_set_point_celsius: { type: "number" },
|
|
3675
|
-
cooling_set_point_fahrenheit: { type: "number" },
|
|
3729
|
+
cooling_set_point_celsius: { format: "float", type: "number" },
|
|
3730
|
+
cooling_set_point_fahrenheit: { format: "float", type: "number" },
|
|
3676
3731
|
created_at: { format: "date-time", type: "string" },
|
|
3677
3732
|
device_id: { format: "uuid", type: "string" },
|
|
3678
3733
|
errors: {
|
|
3679
|
-
description: '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.'
|
|
3680
|
-
nullable: true
|
|
3734
|
+
description: '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.'
|
|
3681
3735
|
},
|
|
3682
|
-
heating_set_point_celsius: { type: "number" },
|
|
3683
|
-
heating_set_point_fahrenheit: { type: "number" },
|
|
3736
|
+
heating_set_point_celsius: { format: "float", type: "number" },
|
|
3737
|
+
heating_set_point_fahrenheit: { format: "float", type: "number" },
|
|
3684
3738
|
hvac_mode_setting: {
|
|
3685
3739
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
3686
3740
|
type: "string"
|
|
@@ -3704,14 +3758,16 @@ var openapi_default = {
|
|
|
3704
3758
|
connect_webview: {
|
|
3705
3759
|
properties: {
|
|
3706
3760
|
accepted_devices: {
|
|
3707
|
-
|
|
3761
|
+
deprecated: true,
|
|
3708
3762
|
items: { type: "string" },
|
|
3709
|
-
type: "array"
|
|
3763
|
+
type: "array",
|
|
3764
|
+
"x-deprecated": "Unused. Will be removed."
|
|
3710
3765
|
},
|
|
3711
3766
|
accepted_providers: { items: { type: "string" }, type: "array" },
|
|
3712
3767
|
any_device_allowed: {
|
|
3713
|
-
|
|
3714
|
-
type: "boolean"
|
|
3768
|
+
deprecated: true,
|
|
3769
|
+
type: "boolean",
|
|
3770
|
+
"x-deprecated": "Unused. Will be removed."
|
|
3715
3771
|
},
|
|
3716
3772
|
any_provider_allowed: { type: "boolean" },
|
|
3717
3773
|
authorized_at: {
|
|
@@ -3790,7 +3846,7 @@ var openapi_default = {
|
|
|
3790
3846
|
},
|
|
3791
3847
|
type: "object"
|
|
3792
3848
|
},
|
|
3793
|
-
errors: {
|
|
3849
|
+
errors: {},
|
|
3794
3850
|
user_identifier: {
|
|
3795
3851
|
properties: {
|
|
3796
3852
|
api_url: { type: "string" },
|
|
@@ -3801,7 +3857,7 @@ var openapi_default = {
|
|
|
3801
3857
|
},
|
|
3802
3858
|
type: "object"
|
|
3803
3859
|
},
|
|
3804
|
-
warnings: {
|
|
3860
|
+
warnings: {}
|
|
3805
3861
|
},
|
|
3806
3862
|
required: [
|
|
3807
3863
|
"account_type_display_name",
|
|
@@ -3959,6 +4015,7 @@ var openapi_default = {
|
|
|
3959
4015
|
description: "Indicates if the keypad battery properties.",
|
|
3960
4016
|
properties: {
|
|
3961
4017
|
level: {
|
|
4018
|
+
format: "float",
|
|
3962
4019
|
maximum: 1,
|
|
3963
4020
|
minimum: 0,
|
|
3964
4021
|
type: "number"
|
|
@@ -3988,7 +4045,12 @@ var openapi_default = {
|
|
|
3988
4045
|
battery: {
|
|
3989
4046
|
description: 'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
|
|
3990
4047
|
properties: {
|
|
3991
|
-
level: {
|
|
4048
|
+
level: {
|
|
4049
|
+
format: "float",
|
|
4050
|
+
maximum: 1,
|
|
4051
|
+
minimum: 0,
|
|
4052
|
+
type: "number"
|
|
4053
|
+
},
|
|
3992
4054
|
status: {
|
|
3993
4055
|
enum: ["critical", "low", "good", "full"],
|
|
3994
4056
|
type: "string"
|
|
@@ -3999,6 +4061,7 @@ var openapi_default = {
|
|
|
3999
4061
|
},
|
|
4000
4062
|
battery_level: {
|
|
4001
4063
|
description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
|
|
4064
|
+
format: "float",
|
|
4002
4065
|
maximum: 1,
|
|
4003
4066
|
minimum: 0,
|
|
4004
4067
|
type: "number"
|
|
@@ -4028,8 +4091,9 @@ var openapi_default = {
|
|
|
4028
4091
|
model: {
|
|
4029
4092
|
properties: {
|
|
4030
4093
|
accessory_keypad_supported: {
|
|
4031
|
-
|
|
4032
|
-
type: "boolean"
|
|
4094
|
+
deprecated: true,
|
|
4095
|
+
type: "boolean",
|
|
4096
|
+
"x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
|
|
4033
4097
|
},
|
|
4034
4098
|
can_connect_accessory_keypad: {
|
|
4035
4099
|
description: "Indicates whether the device can connect a accessory keypad.",
|
|
@@ -4063,11 +4127,14 @@ var openapi_default = {
|
|
|
4063
4127
|
type: "object"
|
|
4064
4128
|
},
|
|
4065
4129
|
name: {
|
|
4066
|
-
|
|
4067
|
-
|
|
4130
|
+
deprecated: true,
|
|
4131
|
+
description: "Name of the device.",
|
|
4132
|
+
type: "string",
|
|
4133
|
+
"x-deprecated": "use device.display_name instead"
|
|
4068
4134
|
},
|
|
4069
4135
|
noise_level_decibels: {
|
|
4070
4136
|
description: "Indicates current noise level in decibels, if the device supports noise detection.",
|
|
4137
|
+
format: "float",
|
|
4071
4138
|
type: "number"
|
|
4072
4139
|
},
|
|
4073
4140
|
offline_access_codes_enabled: {
|
|
@@ -4087,12 +4154,14 @@ var openapi_default = {
|
|
|
4087
4154
|
type: "string"
|
|
4088
4155
|
},
|
|
4089
4156
|
supports_accessory_keypad: {
|
|
4090
|
-
|
|
4091
|
-
type: "boolean"
|
|
4157
|
+
deprecated: true,
|
|
4158
|
+
type: "boolean",
|
|
4159
|
+
"x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
|
|
4092
4160
|
},
|
|
4093
4161
|
supports_offline_access_codes: {
|
|
4094
|
-
|
|
4095
|
-
type: "boolean"
|
|
4162
|
+
deprecated: true,
|
|
4163
|
+
type: "boolean",
|
|
4164
|
+
"x-deprecated": "use offline_access_codes_enabled"
|
|
4096
4165
|
}
|
|
4097
4166
|
},
|
|
4098
4167
|
required: ["online", "name", "appearance", "model"],
|
|
@@ -4146,11 +4215,14 @@ var openapi_default = {
|
|
|
4146
4215
|
avigilon_alta_metadata: {
|
|
4147
4216
|
properties: {
|
|
4148
4217
|
entry_name: { type: "string" },
|
|
4149
|
-
entry_relays_total_count: {
|
|
4218
|
+
entry_relays_total_count: {
|
|
4219
|
+
format: "float",
|
|
4220
|
+
type: "number"
|
|
4221
|
+
},
|
|
4150
4222
|
org_name: { type: "string" },
|
|
4151
|
-
site_id: { type: "number" },
|
|
4223
|
+
site_id: { format: "float", type: "number" },
|
|
4152
4224
|
site_name: { type: "string" },
|
|
4153
|
-
zone_id: { type: "number" },
|
|
4225
|
+
zone_id: { format: "float", type: "number" },
|
|
4154
4226
|
zone_name: { type: "string" }
|
|
4155
4227
|
},
|
|
4156
4228
|
required: [
|
|
@@ -4180,8 +4252,8 @@ var openapi_default = {
|
|
|
4180
4252
|
},
|
|
4181
4253
|
dormakaba_oracode_metadata: {
|
|
4182
4254
|
properties: {
|
|
4183
|
-
device_id: { type: "number" },
|
|
4184
|
-
door_id: { type: "number" },
|
|
4255
|
+
device_id: { format: "float", type: "number" },
|
|
4256
|
+
door_id: { format: "float", type: "number" },
|
|
4185
4257
|
door_is_wireless: { type: "boolean" },
|
|
4186
4258
|
door_name: { type: "string" },
|
|
4187
4259
|
iana_timezone: { type: "string" },
|
|
@@ -4195,6 +4267,7 @@ var openapi_default = {
|
|
|
4195
4267
|
type: "string"
|
|
4196
4268
|
},
|
|
4197
4269
|
ext_dormakaba_oracode_user_level_prefix: {
|
|
4270
|
+
format: "float",
|
|
4198
4271
|
type: "number"
|
|
4199
4272
|
},
|
|
4200
4273
|
is_24_hour: { type: "boolean" },
|
|
@@ -4202,7 +4275,7 @@ var openapi_default = {
|
|
|
4202
4275
|
is_master: { type: "boolean" },
|
|
4203
4276
|
is_one_shot: { type: "boolean" },
|
|
4204
4277
|
name: { type: "string" },
|
|
4205
|
-
prefix: { type: "number" }
|
|
4278
|
+
prefix: { format: "float", type: "number" }
|
|
4206
4279
|
},
|
|
4207
4280
|
required: [
|
|
4208
4281
|
"name",
|
|
@@ -4220,7 +4293,7 @@ var openapi_default = {
|
|
|
4220
4293
|
},
|
|
4221
4294
|
type: "array"
|
|
4222
4295
|
},
|
|
4223
|
-
site_id: { type: "number" },
|
|
4296
|
+
site_id: { format: "float", type: "number" },
|
|
4224
4297
|
site_name: { type: "string" }
|
|
4225
4298
|
},
|
|
4226
4299
|
required: [
|
|
@@ -4242,9 +4315,12 @@ var openapi_default = {
|
|
|
4242
4315
|
},
|
|
4243
4316
|
four_suites_metadata: {
|
|
4244
4317
|
properties: {
|
|
4245
|
-
device_id: { type: "number" },
|
|
4318
|
+
device_id: { format: "float", type: "number" },
|
|
4246
4319
|
device_name: { type: "string" },
|
|
4247
|
-
reclose_delay_in_seconds: {
|
|
4320
|
+
reclose_delay_in_seconds: {
|
|
4321
|
+
format: "float",
|
|
4322
|
+
type: "number"
|
|
4323
|
+
}
|
|
4248
4324
|
},
|
|
4249
4325
|
required: [
|
|
4250
4326
|
"device_id",
|
|
@@ -4328,7 +4404,7 @@ var openapi_default = {
|
|
|
4328
4404
|
accelerometer_z: {
|
|
4329
4405
|
properties: {
|
|
4330
4406
|
time: { type: "string" },
|
|
4331
|
-
value: { type: "number" }
|
|
4407
|
+
value: { format: "float", type: "number" }
|
|
4332
4408
|
},
|
|
4333
4409
|
required: ["time", "value"],
|
|
4334
4410
|
type: "object"
|
|
@@ -4336,7 +4412,7 @@ var openapi_default = {
|
|
|
4336
4412
|
humidity: {
|
|
4337
4413
|
properties: {
|
|
4338
4414
|
time: { type: "string" },
|
|
4339
|
-
value: { type: "number" }
|
|
4415
|
+
value: { format: "float", type: "number" }
|
|
4340
4416
|
},
|
|
4341
4417
|
required: ["time", "value"],
|
|
4342
4418
|
type: "object"
|
|
@@ -4344,7 +4420,7 @@ var openapi_default = {
|
|
|
4344
4420
|
pressure: {
|
|
4345
4421
|
properties: {
|
|
4346
4422
|
time: { type: "string" },
|
|
4347
|
-
value: { type: "number" }
|
|
4423
|
+
value: { format: "float", type: "number" }
|
|
4348
4424
|
},
|
|
4349
4425
|
required: ["time", "value"],
|
|
4350
4426
|
type: "object"
|
|
@@ -4352,7 +4428,7 @@ var openapi_default = {
|
|
|
4352
4428
|
sound: {
|
|
4353
4429
|
properties: {
|
|
4354
4430
|
time: { type: "string" },
|
|
4355
|
-
value: { type: "number" }
|
|
4431
|
+
value: { format: "float", type: "number" }
|
|
4356
4432
|
},
|
|
4357
4433
|
required: ["time", "value"],
|
|
4358
4434
|
type: "object"
|
|
@@ -4360,7 +4436,7 @@ var openapi_default = {
|
|
|
4360
4436
|
temperature: {
|
|
4361
4437
|
properties: {
|
|
4362
4438
|
time: { type: "string" },
|
|
4363
|
-
value: { type: "number" }
|
|
4439
|
+
value: { format: "float", type: "number" }
|
|
4364
4440
|
},
|
|
4365
4441
|
required: ["time", "value"],
|
|
4366
4442
|
type: "object"
|
|
@@ -4404,8 +4480,11 @@ var openapi_default = {
|
|
|
4404
4480
|
type: "string"
|
|
4405
4481
|
},
|
|
4406
4482
|
device_name: { type: "string" },
|
|
4407
|
-
noise_level_decibel: {
|
|
4408
|
-
|
|
4483
|
+
noise_level_decibel: {
|
|
4484
|
+
format: "float",
|
|
4485
|
+
type: "number"
|
|
4486
|
+
},
|
|
4487
|
+
noise_level_nrs: { format: "float", type: "number" }
|
|
4409
4488
|
},
|
|
4410
4489
|
required: [
|
|
4411
4490
|
"device_model",
|
|
@@ -4448,6 +4527,7 @@ var openapi_default = {
|
|
|
4448
4527
|
schlage_metadata: {
|
|
4449
4528
|
properties: {
|
|
4450
4529
|
access_code_length: {
|
|
4530
|
+
format: "float",
|
|
4451
4531
|
nullable: true,
|
|
4452
4532
|
type: "number"
|
|
4453
4533
|
},
|
|
@@ -4464,7 +4544,7 @@ var openapi_default = {
|
|
|
4464
4544
|
},
|
|
4465
4545
|
seam_bridge_metadata: {
|
|
4466
4546
|
properties: {
|
|
4467
|
-
device_num: { type: "number" },
|
|
4547
|
+
device_num: { format: "float", type: "number" },
|
|
4468
4548
|
name: { type: "string" },
|
|
4469
4549
|
unlock_method: {
|
|
4470
4550
|
enum: ["bridge", "doorking"],
|
|
@@ -4486,12 +4566,12 @@ var openapi_default = {
|
|
|
4486
4566
|
},
|
|
4487
4567
|
tedee_metadata: {
|
|
4488
4568
|
properties: {
|
|
4489
|
-
bridge_id: { type: "number" },
|
|
4569
|
+
bridge_id: { format: "float", type: "number" },
|
|
4490
4570
|
bridge_name: { type: "string" },
|
|
4491
|
-
device_id: { type: "number" },
|
|
4571
|
+
device_id: { format: "float", type: "number" },
|
|
4492
4572
|
device_model: { type: "string" },
|
|
4493
4573
|
device_name: { type: "string" },
|
|
4494
|
-
keypad_id: { type: "number" },
|
|
4574
|
+
keypad_id: { format: "float", type: "number" },
|
|
4495
4575
|
serial_number: { type: "string" }
|
|
4496
4576
|
},
|
|
4497
4577
|
required: [
|
|
@@ -4508,14 +4588,14 @@ var openapi_default = {
|
|
|
4508
4588
|
properties: {
|
|
4509
4589
|
feature_value: { type: "string" },
|
|
4510
4590
|
lock_alias: { type: "string" },
|
|
4511
|
-
lock_id: { type: "number" }
|
|
4591
|
+
lock_id: { format: "float", type: "number" }
|
|
4512
4592
|
},
|
|
4513
4593
|
required: ["lock_id", "lock_alias", "feature_value"],
|
|
4514
4594
|
type: "object"
|
|
4515
4595
|
},
|
|
4516
4596
|
two_n_metadata: {
|
|
4517
4597
|
properties: {
|
|
4518
|
-
device_id: { type: "number" },
|
|
4598
|
+
device_id: { format: "float", type: "number" },
|
|
4519
4599
|
device_name: { type: "string" }
|
|
4520
4600
|
},
|
|
4521
4601
|
required: ["device_id", "device_name"],
|
|
@@ -4527,7 +4607,10 @@ var openapi_default = {
|
|
|
4527
4607
|
device_info_model: { type: "string" },
|
|
4528
4608
|
device_name: { type: "string" },
|
|
4529
4609
|
keypad_uuid: { type: "string" },
|
|
4530
|
-
locker_status_hardlock: {
|
|
4610
|
+
locker_status_hardlock: {
|
|
4611
|
+
format: "float",
|
|
4612
|
+
type: "number"
|
|
4613
|
+
},
|
|
4531
4614
|
product_model: { type: "string" },
|
|
4532
4615
|
product_name: { type: "string" },
|
|
4533
4616
|
product_type: { type: "string" }
|
|
@@ -4552,7 +4635,7 @@ var openapi_default = {
|
|
|
4552
4635
|
{
|
|
4553
4636
|
properties: {
|
|
4554
4637
|
_experimental_supported_code_from_access_codes_lengths: {
|
|
4555
|
-
items: { type: "number" },
|
|
4638
|
+
items: { format: "float", type: "number" },
|
|
4556
4639
|
type: "array"
|
|
4557
4640
|
},
|
|
4558
4641
|
code_constraints: {
|
|
@@ -4584,8 +4667,8 @@ var openapi_default = {
|
|
|
4584
4667
|
enum: ["name_length", "name_must_be_unique"],
|
|
4585
4668
|
type: "string"
|
|
4586
4669
|
},
|
|
4587
|
-
max_length: { type: "number" },
|
|
4588
|
-
min_length: { type: "number" }
|
|
4670
|
+
max_length: { format: "float", type: "number" },
|
|
4671
|
+
min_length: { format: "float", type: "number" }
|
|
4589
4672
|
},
|
|
4590
4673
|
required: ["constraint_type"],
|
|
4591
4674
|
type: "object"
|
|
@@ -4597,14 +4680,19 @@ var openapi_default = {
|
|
|
4597
4680
|
door_open: { type: "boolean" },
|
|
4598
4681
|
has_native_entry_events: { type: "boolean" },
|
|
4599
4682
|
keypad_battery: {
|
|
4600
|
-
properties: {
|
|
4683
|
+
properties: {
|
|
4684
|
+
level: { format: "float", type: "number" }
|
|
4685
|
+
},
|
|
4601
4686
|
required: ["level"],
|
|
4602
4687
|
type: "object"
|
|
4603
4688
|
},
|
|
4604
4689
|
locked: { type: "boolean" },
|
|
4605
|
-
max_active_codes_supported: {
|
|
4690
|
+
max_active_codes_supported: {
|
|
4691
|
+
format: "float",
|
|
4692
|
+
type: "number"
|
|
4693
|
+
},
|
|
4606
4694
|
supported_code_lengths: {
|
|
4607
|
-
items: { type: "number" },
|
|
4695
|
+
items: { format: "float", type: "number" },
|
|
4608
4696
|
type: "array"
|
|
4609
4697
|
},
|
|
4610
4698
|
supports_backup_access_code_pool: { type: "boolean" }
|
|
@@ -4623,19 +4711,30 @@ var openapi_default = {
|
|
|
4623
4711
|
format: "uuid",
|
|
4624
4712
|
type: "string"
|
|
4625
4713
|
},
|
|
4626
|
-
cooling_set_point_celsius: {
|
|
4627
|
-
|
|
4714
|
+
cooling_set_point_celsius: {
|
|
4715
|
+
format: "float",
|
|
4716
|
+
type: "number"
|
|
4717
|
+
},
|
|
4718
|
+
cooling_set_point_fahrenheit: {
|
|
4719
|
+
format: "float",
|
|
4720
|
+
type: "number"
|
|
4721
|
+
},
|
|
4628
4722
|
created_at: {
|
|
4629
4723
|
format: "date-time",
|
|
4630
4724
|
type: "string"
|
|
4631
4725
|
},
|
|
4632
4726
|
device_id: { format: "uuid", type: "string" },
|
|
4633
4727
|
errors: {
|
|
4634
|
-
description: '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.'
|
|
4635
|
-
|
|
4728
|
+
description: '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.'
|
|
4729
|
+
},
|
|
4730
|
+
heating_set_point_celsius: {
|
|
4731
|
+
format: "float",
|
|
4732
|
+
type: "number"
|
|
4733
|
+
},
|
|
4734
|
+
heating_set_point_fahrenheit: {
|
|
4735
|
+
format: "float",
|
|
4736
|
+
type: "number"
|
|
4636
4737
|
},
|
|
4637
|
-
heating_set_point_celsius: { type: "number" },
|
|
4638
|
-
heating_set_point_fahrenheit: { type: "number" },
|
|
4639
4738
|
hvac_mode_setting: {
|
|
4640
4739
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4641
4740
|
type: "string"
|
|
@@ -4672,10 +4771,22 @@ var openapi_default = {
|
|
|
4672
4771
|
properties: {
|
|
4673
4772
|
automatic_cooling_enabled: { type: "boolean" },
|
|
4674
4773
|
automatic_heating_enabled: { type: "boolean" },
|
|
4675
|
-
cooling_set_point_celsius: {
|
|
4676
|
-
|
|
4677
|
-
|
|
4678
|
-
|
|
4774
|
+
cooling_set_point_celsius: {
|
|
4775
|
+
format: "float",
|
|
4776
|
+
type: "number"
|
|
4777
|
+
},
|
|
4778
|
+
cooling_set_point_fahrenheit: {
|
|
4779
|
+
format: "float",
|
|
4780
|
+
type: "number"
|
|
4781
|
+
},
|
|
4782
|
+
heating_set_point_celsius: {
|
|
4783
|
+
format: "float",
|
|
4784
|
+
type: "number"
|
|
4785
|
+
},
|
|
4786
|
+
heating_set_point_fahrenheit: {
|
|
4787
|
+
format: "float",
|
|
4788
|
+
type: "number"
|
|
4789
|
+
},
|
|
4679
4790
|
hvac_mode_setting: {
|
|
4680
4791
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4681
4792
|
type: "string"
|
|
@@ -4694,10 +4805,22 @@ var openapi_default = {
|
|
|
4694
4805
|
properties: {
|
|
4695
4806
|
automatic_cooling_enabled: { type: "boolean" },
|
|
4696
4807
|
automatic_heating_enabled: { type: "boolean" },
|
|
4697
|
-
cooling_set_point_celsius: {
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4808
|
+
cooling_set_point_celsius: {
|
|
4809
|
+
format: "float",
|
|
4810
|
+
type: "number"
|
|
4811
|
+
},
|
|
4812
|
+
cooling_set_point_fahrenheit: {
|
|
4813
|
+
format: "float",
|
|
4814
|
+
type: "number"
|
|
4815
|
+
},
|
|
4816
|
+
heating_set_point_celsius: {
|
|
4817
|
+
format: "float",
|
|
4818
|
+
type: "number"
|
|
4819
|
+
},
|
|
4820
|
+
heating_set_point_fahrenheit: {
|
|
4821
|
+
format: "float",
|
|
4822
|
+
type: "number"
|
|
4823
|
+
},
|
|
4701
4824
|
hvac_mode_setting: {
|
|
4702
4825
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4703
4826
|
type: "string"
|
|
@@ -4733,25 +4856,60 @@ var openapi_default = {
|
|
|
4733
4856
|
is_temporary_manual_override_active: {
|
|
4734
4857
|
type: "boolean"
|
|
4735
4858
|
},
|
|
4736
|
-
max_cooling_set_point_celsius: {
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4859
|
+
max_cooling_set_point_celsius: {
|
|
4860
|
+
format: "float",
|
|
4861
|
+
type: "number"
|
|
4862
|
+
},
|
|
4863
|
+
max_cooling_set_point_fahrenheit: {
|
|
4864
|
+
format: "float",
|
|
4865
|
+
type: "number"
|
|
4866
|
+
},
|
|
4867
|
+
max_heating_set_point_celsius: {
|
|
4868
|
+
format: "float",
|
|
4869
|
+
type: "number"
|
|
4870
|
+
},
|
|
4871
|
+
max_heating_set_point_fahrenheit: {
|
|
4872
|
+
format: "float",
|
|
4873
|
+
type: "number"
|
|
4874
|
+
},
|
|
4875
|
+
min_cooling_set_point_celsius: {
|
|
4876
|
+
format: "float",
|
|
4877
|
+
type: "number"
|
|
4878
|
+
},
|
|
4879
|
+
min_cooling_set_point_fahrenheit: {
|
|
4880
|
+
format: "float",
|
|
4881
|
+
type: "number"
|
|
4882
|
+
},
|
|
4883
|
+
min_heating_cooling_delta_celsius: {
|
|
4884
|
+
format: "float",
|
|
4885
|
+
type: "number"
|
|
4886
|
+
},
|
|
4743
4887
|
min_heating_cooling_delta_fahrenheit: {
|
|
4888
|
+
format: "float",
|
|
4889
|
+
type: "number"
|
|
4890
|
+
},
|
|
4891
|
+
min_heating_set_point_celsius: {
|
|
4892
|
+
format: "float",
|
|
4893
|
+
type: "number"
|
|
4894
|
+
},
|
|
4895
|
+
min_heating_set_point_fahrenheit: {
|
|
4896
|
+
format: "float",
|
|
4744
4897
|
type: "number"
|
|
4745
4898
|
},
|
|
4746
|
-
min_heating_set_point_celsius: { type: "number" },
|
|
4747
|
-
min_heating_set_point_fahrenheit: { type: "number" },
|
|
4748
4899
|
relative_humidity: {
|
|
4900
|
+
format: "float",
|
|
4749
4901
|
maximum: 1,
|
|
4750
4902
|
minimum: 0,
|
|
4751
4903
|
type: "number"
|
|
4752
4904
|
},
|
|
4753
|
-
temperature_celsius: {
|
|
4754
|
-
|
|
4905
|
+
temperature_celsius: {
|
|
4906
|
+
format: "float",
|
|
4907
|
+
type: "number"
|
|
4908
|
+
},
|
|
4909
|
+
temperature_fahrenheit: {
|
|
4910
|
+
format: "float",
|
|
4911
|
+
type: "number"
|
|
4912
|
+
}
|
|
4755
4913
|
},
|
|
4756
4914
|
type: "object"
|
|
4757
4915
|
},
|
|
@@ -4765,19 +4923,30 @@ var openapi_default = {
|
|
|
4765
4923
|
format: "uuid",
|
|
4766
4924
|
type: "string"
|
|
4767
4925
|
},
|
|
4768
|
-
cooling_set_point_celsius: {
|
|
4769
|
-
|
|
4926
|
+
cooling_set_point_celsius: {
|
|
4927
|
+
format: "float",
|
|
4928
|
+
type: "number"
|
|
4929
|
+
},
|
|
4930
|
+
cooling_set_point_fahrenheit: {
|
|
4931
|
+
format: "float",
|
|
4932
|
+
type: "number"
|
|
4933
|
+
},
|
|
4770
4934
|
created_at: {
|
|
4771
4935
|
format: "date-time",
|
|
4772
4936
|
type: "string"
|
|
4773
4937
|
},
|
|
4774
4938
|
device_id: { format: "uuid", type: "string" },
|
|
4775
4939
|
errors: {
|
|
4776
|
-
description: '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.'
|
|
4777
|
-
|
|
4940
|
+
description: '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.'
|
|
4941
|
+
},
|
|
4942
|
+
heating_set_point_celsius: {
|
|
4943
|
+
format: "float",
|
|
4944
|
+
type: "number"
|
|
4945
|
+
},
|
|
4946
|
+
heating_set_point_fahrenheit: {
|
|
4947
|
+
format: "float",
|
|
4948
|
+
type: "number"
|
|
4778
4949
|
},
|
|
4779
|
-
heating_set_point_celsius: { type: "number" },
|
|
4780
|
-
heating_set_point_fahrenheit: { type: "number" },
|
|
4781
4950
|
hvac_mode_setting: {
|
|
4782
4951
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4783
4952
|
type: "string"
|
|
@@ -4814,10 +4983,22 @@ var openapi_default = {
|
|
|
4814
4983
|
properties: {
|
|
4815
4984
|
automatic_cooling_enabled: { type: "boolean" },
|
|
4816
4985
|
automatic_heating_enabled: { type: "boolean" },
|
|
4817
|
-
cooling_set_point_celsius: {
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4986
|
+
cooling_set_point_celsius: {
|
|
4987
|
+
format: "float",
|
|
4988
|
+
type: "number"
|
|
4989
|
+
},
|
|
4990
|
+
cooling_set_point_fahrenheit: {
|
|
4991
|
+
format: "float",
|
|
4992
|
+
type: "number"
|
|
4993
|
+
},
|
|
4994
|
+
heating_set_point_celsius: {
|
|
4995
|
+
format: "float",
|
|
4996
|
+
type: "number"
|
|
4997
|
+
},
|
|
4998
|
+
heating_set_point_fahrenheit: {
|
|
4999
|
+
format: "float",
|
|
5000
|
+
type: "number"
|
|
5001
|
+
},
|
|
4821
5002
|
hvac_mode_setting: {
|
|
4822
5003
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4823
5004
|
type: "string"
|
|
@@ -4836,10 +5017,22 @@ var openapi_default = {
|
|
|
4836
5017
|
properties: {
|
|
4837
5018
|
automatic_cooling_enabled: { type: "boolean" },
|
|
4838
5019
|
automatic_heating_enabled: { type: "boolean" },
|
|
4839
|
-
cooling_set_point_celsius: {
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
5020
|
+
cooling_set_point_celsius: {
|
|
5021
|
+
format: "float",
|
|
5022
|
+
type: "number"
|
|
5023
|
+
},
|
|
5024
|
+
cooling_set_point_fahrenheit: {
|
|
5025
|
+
format: "float",
|
|
5026
|
+
type: "number"
|
|
5027
|
+
},
|
|
5028
|
+
heating_set_point_celsius: {
|
|
5029
|
+
format: "float",
|
|
5030
|
+
type: "number"
|
|
5031
|
+
},
|
|
5032
|
+
heating_set_point_fahrenheit: {
|
|
5033
|
+
format: "float",
|
|
5034
|
+
type: "number"
|
|
5035
|
+
},
|
|
4843
5036
|
hvac_mode_setting: {
|
|
4844
5037
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4845
5038
|
type: "string"
|
|
@@ -4875,17 +5068,36 @@ var openapi_default = {
|
|
|
4875
5068
|
is_temporary_manual_override_active: {
|
|
4876
5069
|
type: "boolean"
|
|
4877
5070
|
},
|
|
4878
|
-
max_heating_set_point_celsius: {
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
|
|
5071
|
+
max_heating_set_point_celsius: {
|
|
5072
|
+
format: "float",
|
|
5073
|
+
type: "number"
|
|
5074
|
+
},
|
|
5075
|
+
max_heating_set_point_fahrenheit: {
|
|
5076
|
+
format: "float",
|
|
5077
|
+
type: "number"
|
|
5078
|
+
},
|
|
5079
|
+
min_heating_set_point_celsius: {
|
|
5080
|
+
format: "float",
|
|
5081
|
+
type: "number"
|
|
5082
|
+
},
|
|
5083
|
+
min_heating_set_point_fahrenheit: {
|
|
5084
|
+
format: "float",
|
|
5085
|
+
type: "number"
|
|
5086
|
+
},
|
|
4882
5087
|
relative_humidity: {
|
|
5088
|
+
format: "float",
|
|
4883
5089
|
maximum: 1,
|
|
4884
5090
|
minimum: 0,
|
|
4885
5091
|
type: "number"
|
|
4886
5092
|
},
|
|
4887
|
-
temperature_celsius: {
|
|
4888
|
-
|
|
5093
|
+
temperature_celsius: {
|
|
5094
|
+
format: "float",
|
|
5095
|
+
type: "number"
|
|
5096
|
+
},
|
|
5097
|
+
temperature_fahrenheit: {
|
|
5098
|
+
format: "float",
|
|
5099
|
+
type: "number"
|
|
5100
|
+
}
|
|
4889
5101
|
},
|
|
4890
5102
|
type: "object"
|
|
4891
5103
|
},
|
|
@@ -4899,19 +5111,30 @@ var openapi_default = {
|
|
|
4899
5111
|
format: "uuid",
|
|
4900
5112
|
type: "string"
|
|
4901
5113
|
},
|
|
4902
|
-
cooling_set_point_celsius: {
|
|
4903
|
-
|
|
5114
|
+
cooling_set_point_celsius: {
|
|
5115
|
+
format: "float",
|
|
5116
|
+
type: "number"
|
|
5117
|
+
},
|
|
5118
|
+
cooling_set_point_fahrenheit: {
|
|
5119
|
+
format: "float",
|
|
5120
|
+
type: "number"
|
|
5121
|
+
},
|
|
4904
5122
|
created_at: {
|
|
4905
5123
|
format: "date-time",
|
|
4906
5124
|
type: "string"
|
|
4907
5125
|
},
|
|
4908
5126
|
device_id: { format: "uuid", type: "string" },
|
|
4909
5127
|
errors: {
|
|
4910
|
-
description: '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.'
|
|
4911
|
-
|
|
5128
|
+
description: '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.'
|
|
5129
|
+
},
|
|
5130
|
+
heating_set_point_celsius: {
|
|
5131
|
+
format: "float",
|
|
5132
|
+
type: "number"
|
|
5133
|
+
},
|
|
5134
|
+
heating_set_point_fahrenheit: {
|
|
5135
|
+
format: "float",
|
|
5136
|
+
type: "number"
|
|
4912
5137
|
},
|
|
4913
|
-
heating_set_point_celsius: { type: "number" },
|
|
4914
|
-
heating_set_point_fahrenheit: { type: "number" },
|
|
4915
5138
|
hvac_mode_setting: {
|
|
4916
5139
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4917
5140
|
type: "string"
|
|
@@ -4948,10 +5171,22 @@ var openapi_default = {
|
|
|
4948
5171
|
properties: {
|
|
4949
5172
|
automatic_cooling_enabled: { type: "boolean" },
|
|
4950
5173
|
automatic_heating_enabled: { type: "boolean" },
|
|
4951
|
-
cooling_set_point_celsius: {
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
5174
|
+
cooling_set_point_celsius: {
|
|
5175
|
+
format: "float",
|
|
5176
|
+
type: "number"
|
|
5177
|
+
},
|
|
5178
|
+
cooling_set_point_fahrenheit: {
|
|
5179
|
+
format: "float",
|
|
5180
|
+
type: "number"
|
|
5181
|
+
},
|
|
5182
|
+
heating_set_point_celsius: {
|
|
5183
|
+
format: "float",
|
|
5184
|
+
type: "number"
|
|
5185
|
+
},
|
|
5186
|
+
heating_set_point_fahrenheit: {
|
|
5187
|
+
format: "float",
|
|
5188
|
+
type: "number"
|
|
5189
|
+
},
|
|
4955
5190
|
hvac_mode_setting: {
|
|
4956
5191
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4957
5192
|
type: "string"
|
|
@@ -4970,10 +5205,22 @@ var openapi_default = {
|
|
|
4970
5205
|
properties: {
|
|
4971
5206
|
automatic_cooling_enabled: { type: "boolean" },
|
|
4972
5207
|
automatic_heating_enabled: { type: "boolean" },
|
|
4973
|
-
cooling_set_point_celsius: {
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
5208
|
+
cooling_set_point_celsius: {
|
|
5209
|
+
format: "float",
|
|
5210
|
+
type: "number"
|
|
5211
|
+
},
|
|
5212
|
+
cooling_set_point_fahrenheit: {
|
|
5213
|
+
format: "float",
|
|
5214
|
+
type: "number"
|
|
5215
|
+
},
|
|
5216
|
+
heating_set_point_celsius: {
|
|
5217
|
+
format: "float",
|
|
5218
|
+
type: "number"
|
|
5219
|
+
},
|
|
5220
|
+
heating_set_point_fahrenheit: {
|
|
5221
|
+
format: "float",
|
|
5222
|
+
type: "number"
|
|
5223
|
+
},
|
|
4977
5224
|
hvac_mode_setting: {
|
|
4978
5225
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4979
5226
|
type: "string"
|
|
@@ -5009,17 +5256,36 @@ var openapi_default = {
|
|
|
5009
5256
|
is_temporary_manual_override_active: {
|
|
5010
5257
|
type: "boolean"
|
|
5011
5258
|
},
|
|
5012
|
-
max_cooling_set_point_celsius: {
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5259
|
+
max_cooling_set_point_celsius: {
|
|
5260
|
+
format: "float",
|
|
5261
|
+
type: "number"
|
|
5262
|
+
},
|
|
5263
|
+
max_cooling_set_point_fahrenheit: {
|
|
5264
|
+
format: "float",
|
|
5265
|
+
type: "number"
|
|
5266
|
+
},
|
|
5267
|
+
min_cooling_set_point_celsius: {
|
|
5268
|
+
format: "float",
|
|
5269
|
+
type: "number"
|
|
5270
|
+
},
|
|
5271
|
+
min_cooling_set_point_fahrenheit: {
|
|
5272
|
+
format: "float",
|
|
5273
|
+
type: "number"
|
|
5274
|
+
},
|
|
5016
5275
|
relative_humidity: {
|
|
5276
|
+
format: "float",
|
|
5017
5277
|
maximum: 1,
|
|
5018
5278
|
minimum: 0,
|
|
5019
5279
|
type: "number"
|
|
5020
5280
|
},
|
|
5021
|
-
temperature_celsius: {
|
|
5022
|
-
|
|
5281
|
+
temperature_celsius: {
|
|
5282
|
+
format: "float",
|
|
5283
|
+
type: "number"
|
|
5284
|
+
},
|
|
5285
|
+
temperature_fahrenheit: {
|
|
5286
|
+
format: "float",
|
|
5287
|
+
type: "number"
|
|
5288
|
+
}
|
|
5023
5289
|
},
|
|
5024
5290
|
type: "object"
|
|
5025
5291
|
}
|
|
@@ -5189,9 +5455,9 @@ var openapi_default = {
|
|
|
5189
5455
|
device_id: { format: "uuid", type: "string" },
|
|
5190
5456
|
ends_daily_at: { type: "string" },
|
|
5191
5457
|
name: { type: "string" },
|
|
5192
|
-
noise_threshold_decibels: { type: "number" },
|
|
5458
|
+
noise_threshold_decibels: { format: "float", type: "number" },
|
|
5193
5459
|
noise_threshold_id: { format: "uuid", type: "string" },
|
|
5194
|
-
noise_threshold_nrs: { type: "number" },
|
|
5460
|
+
noise_threshold_nrs: { format: "float", type: "number" },
|
|
5195
5461
|
starts_daily_at: { type: "string" }
|
|
5196
5462
|
},
|
|
5197
5463
|
required: [
|
|
@@ -5380,8 +5646,7 @@ var openapi_default = {
|
|
|
5380
5646
|
type: "string"
|
|
5381
5647
|
},
|
|
5382
5648
|
errors: {
|
|
5383
|
-
description: '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.'
|
|
5384
|
-
nullable: true
|
|
5649
|
+
description: '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.'
|
|
5385
5650
|
},
|
|
5386
5651
|
is_managed: { enum: [false], type: "boolean" },
|
|
5387
5652
|
name: {
|
|
@@ -5402,8 +5667,7 @@ var openapi_default = {
|
|
|
5402
5667
|
type: "string"
|
|
5403
5668
|
},
|
|
5404
5669
|
warnings: {
|
|
5405
|
-
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.'
|
|
5406
|
-
nullable: true
|
|
5670
|
+
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.'
|
|
5407
5671
|
}
|
|
5408
5672
|
},
|
|
5409
5673
|
required: [
|
|
@@ -5527,7 +5791,12 @@ var openapi_default = {
|
|
|
5527
5791
|
battery: {
|
|
5528
5792
|
description: "Indicates if the keypad battery properties.",
|
|
5529
5793
|
properties: {
|
|
5530
|
-
level: {
|
|
5794
|
+
level: {
|
|
5795
|
+
format: "float",
|
|
5796
|
+
maximum: 1,
|
|
5797
|
+
minimum: 0,
|
|
5798
|
+
type: "number"
|
|
5799
|
+
}
|
|
5531
5800
|
},
|
|
5532
5801
|
required: ["level"],
|
|
5533
5802
|
type: "object"
|
|
@@ -5543,7 +5812,12 @@ var openapi_default = {
|
|
|
5543
5812
|
battery: {
|
|
5544
5813
|
description: 'Represents the current status of the battery charge level. Values are "critical," which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; "low," which signifies that the battery is under the preferred threshold and should be charged soon; "good," which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and "full," which represents a battery that is fully charged, providing the maximum duration of usage.',
|
|
5545
5814
|
properties: {
|
|
5546
|
-
level: {
|
|
5815
|
+
level: {
|
|
5816
|
+
format: "float",
|
|
5817
|
+
maximum: 1,
|
|
5818
|
+
minimum: 0,
|
|
5819
|
+
type: "number"
|
|
5820
|
+
},
|
|
5547
5821
|
status: {
|
|
5548
5822
|
enum: ["critical", "low", "good", "full"],
|
|
5549
5823
|
type: "string"
|
|
@@ -5554,6 +5828,7 @@ var openapi_default = {
|
|
|
5554
5828
|
},
|
|
5555
5829
|
battery_level: {
|
|
5556
5830
|
description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
|
|
5831
|
+
format: "float",
|
|
5557
5832
|
maximum: 1,
|
|
5558
5833
|
minimum: 0,
|
|
5559
5834
|
type: "number"
|
|
@@ -5574,8 +5849,9 @@ var openapi_default = {
|
|
|
5574
5849
|
model: {
|
|
5575
5850
|
properties: {
|
|
5576
5851
|
accessory_keypad_supported: {
|
|
5577
|
-
|
|
5578
|
-
type: "boolean"
|
|
5852
|
+
deprecated: true,
|
|
5853
|
+
type: "boolean",
|
|
5854
|
+
"x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
|
|
5579
5855
|
},
|
|
5580
5856
|
can_connect_accessory_keypad: {
|
|
5581
5857
|
description: "Indicates whether the device can connect a accessory keypad.",
|
|
@@ -5606,8 +5882,10 @@ var openapi_default = {
|
|
|
5606
5882
|
type: "object"
|
|
5607
5883
|
},
|
|
5608
5884
|
name: {
|
|
5609
|
-
|
|
5610
|
-
|
|
5885
|
+
deprecated: true,
|
|
5886
|
+
description: "Name of the device.",
|
|
5887
|
+
type: "string",
|
|
5888
|
+
"x-deprecated": "use device.display_name instead"
|
|
5611
5889
|
},
|
|
5612
5890
|
offline_access_codes_enabled: {
|
|
5613
5891
|
description: "Indicates whether it is currently possible to use offline access codes for the device.",
|
|
@@ -5694,9 +5972,10 @@ var openapi_default = {
|
|
|
5694
5972
|
properties: {
|
|
5695
5973
|
company_name: { type: "string" },
|
|
5696
5974
|
connect_partner_name: {
|
|
5697
|
-
|
|
5975
|
+
deprecated: true,
|
|
5698
5976
|
nullable: true,
|
|
5699
|
-
type: "string"
|
|
5977
|
+
type: "string",
|
|
5978
|
+
"x-deprecated": "use company_name"
|
|
5700
5979
|
},
|
|
5701
5980
|
is_sandbox: { type: "boolean" },
|
|
5702
5981
|
name: { type: "string" },
|
|
@@ -5882,7 +6161,7 @@ var openapi_default = {
|
|
|
5882
6161
|
},
|
|
5883
6162
|
name: { type: "string" },
|
|
5884
6163
|
prefer_native_scheduling: { type: "boolean" },
|
|
5885
|
-
preferred_code_length: { type: "number" },
|
|
6164
|
+
preferred_code_length: { format: "float", type: "number" },
|
|
5886
6165
|
starts_at: { type: "string" },
|
|
5887
6166
|
use_backup_access_code_pool: { type: "boolean" },
|
|
5888
6167
|
use_offline_access_code: { type: "boolean" }
|
|
@@ -5965,7 +6244,7 @@ var openapi_default = {
|
|
|
5965
6244
|
},
|
|
5966
6245
|
name: { type: "string" },
|
|
5967
6246
|
prefer_native_scheduling: { type: "boolean" },
|
|
5968
|
-
preferred_code_length: { type: "number" },
|
|
6247
|
+
preferred_code_length: { format: "float", type: "number" },
|
|
5969
6248
|
starts_at: { type: "string" },
|
|
5970
6249
|
use_backup_access_code_pool: { type: "boolean" },
|
|
5971
6250
|
use_offline_access_code: { type: "boolean" }
|
|
@@ -7420,8 +7699,9 @@ var openapi_default = {
|
|
|
7420
7699
|
type: "string"
|
|
7421
7700
|
},
|
|
7422
7701
|
is_override_key: {
|
|
7423
|
-
|
|
7424
|
-
type: "boolean"
|
|
7702
|
+
deprecated: true,
|
|
7703
|
+
type: "boolean",
|
|
7704
|
+
"x-deprecated": "use override."
|
|
7425
7705
|
},
|
|
7426
7706
|
joiner_acs_credential_ids: {
|
|
7427
7707
|
items: { format: "uuid", type: "string" },
|
|
@@ -8348,13 +8628,14 @@ var openapi_default = {
|
|
|
8348
8628
|
},
|
|
8349
8629
|
acs_system_id: { format: "uuid", type: "string" },
|
|
8350
8630
|
email: {
|
|
8351
|
-
|
|
8631
|
+
deprecated: true,
|
|
8352
8632
|
format: "email",
|
|
8353
|
-
type: "string"
|
|
8633
|
+
type: "string",
|
|
8634
|
+
"x-deprecated": "use email_address."
|
|
8354
8635
|
},
|
|
8355
8636
|
email_address: { format: "email", type: "string" },
|
|
8356
8637
|
full_name: { type: "string" },
|
|
8357
|
-
phone_number: {
|
|
8638
|
+
phone_number: { type: "string" },
|
|
8358
8639
|
user_identity_id: { format: "uuid", type: "string" }
|
|
8359
8640
|
},
|
|
8360
8641
|
required: ["acs_system_id"],
|
|
@@ -8491,10 +8772,7 @@ var openapi_default = {
|
|
|
8491
8772
|
acs_system_id: { format: "uuid", type: "string" },
|
|
8492
8773
|
user_identity_email_address: { type: "string" },
|
|
8493
8774
|
user_identity_id: { format: "uuid", type: "string" },
|
|
8494
|
-
user_identity_phone_number: {
|
|
8495
|
-
nullable: true,
|
|
8496
|
-
type: "string"
|
|
8497
|
-
}
|
|
8775
|
+
user_identity_phone_number: { type: "string" }
|
|
8498
8776
|
},
|
|
8499
8777
|
type: "object"
|
|
8500
8778
|
}
|
|
@@ -8770,14 +9048,15 @@ var openapi_default = {
|
|
|
8770
9048
|
},
|
|
8771
9049
|
acs_user_id: { format: "uuid", type: "string" },
|
|
8772
9050
|
email: {
|
|
8773
|
-
|
|
9051
|
+
deprecated: true,
|
|
8774
9052
|
format: "email",
|
|
8775
|
-
type: "string"
|
|
9053
|
+
type: "string",
|
|
9054
|
+
"x-deprecated": "use email_address."
|
|
8776
9055
|
},
|
|
8777
9056
|
email_address: { format: "email", type: "string" },
|
|
8778
9057
|
full_name: { type: "string" },
|
|
8779
9058
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
8780
|
-
phone_number: {
|
|
9059
|
+
phone_number: { type: "string" }
|
|
8781
9060
|
},
|
|
8782
9061
|
required: ["acs_user_id"],
|
|
8783
9062
|
type: "object"
|
|
@@ -8827,14 +9106,15 @@ var openapi_default = {
|
|
|
8827
9106
|
},
|
|
8828
9107
|
acs_user_id: { format: "uuid", type: "string" },
|
|
8829
9108
|
email: {
|
|
8830
|
-
|
|
9109
|
+
deprecated: true,
|
|
8831
9110
|
format: "email",
|
|
8832
|
-
type: "string"
|
|
9111
|
+
type: "string",
|
|
9112
|
+
"x-deprecated": "use email_address."
|
|
8833
9113
|
},
|
|
8834
9114
|
email_address: { format: "email", type: "string" },
|
|
8835
9115
|
full_name: { type: "string" },
|
|
8836
9116
|
hid_acs_system_id: { format: "uuid", type: "string" },
|
|
8837
|
-
phone_number: {
|
|
9117
|
+
phone_number: { type: "string" }
|
|
8838
9118
|
},
|
|
8839
9119
|
required: ["acs_user_id"],
|
|
8840
9120
|
type: "object"
|
|
@@ -8988,11 +9268,7 @@ var openapi_default = {
|
|
|
8988
9268
|
items: { type: "string" },
|
|
8989
9269
|
type: "array"
|
|
8990
9270
|
},
|
|
8991
|
-
expires_at: {
|
|
8992
|
-
format: "date-time",
|
|
8993
|
-
nullable: true,
|
|
8994
|
-
type: "string"
|
|
8995
|
-
},
|
|
9271
|
+
expires_at: { format: "date-time", type: "string" },
|
|
8996
9272
|
user_identifier_key: { minLength: 1, type: "string" },
|
|
8997
9273
|
user_identity_ids: {
|
|
8998
9274
|
items: { type: "string" },
|
|
@@ -9046,11 +9322,7 @@ var openapi_default = {
|
|
|
9046
9322
|
items: { type: "string" },
|
|
9047
9323
|
type: "array"
|
|
9048
9324
|
},
|
|
9049
|
-
expires_at: {
|
|
9050
|
-
format: "date-time",
|
|
9051
|
-
nullable: true,
|
|
9052
|
-
type: "string"
|
|
9053
|
-
},
|
|
9325
|
+
expires_at: { format: "date-time", type: "string" },
|
|
9054
9326
|
user_identifier_key: { minLength: 1, type: "string" },
|
|
9055
9327
|
user_identity_ids: {
|
|
9056
9328
|
items: { type: "string" },
|
|
@@ -9197,11 +9469,7 @@ var openapi_default = {
|
|
|
9197
9469
|
items: { type: "string" },
|
|
9198
9470
|
type: "array"
|
|
9199
9471
|
},
|
|
9200
|
-
expires_at: {
|
|
9201
|
-
format: "date-time",
|
|
9202
|
-
nullable: true,
|
|
9203
|
-
type: "string"
|
|
9204
|
-
},
|
|
9472
|
+
expires_at: { format: "date-time", type: "string" },
|
|
9205
9473
|
user_identifier_key: { minLength: 1, type: "string" },
|
|
9206
9474
|
user_identity_ids: {
|
|
9207
9475
|
items: { type: "string" },
|
|
@@ -9255,11 +9523,7 @@ var openapi_default = {
|
|
|
9255
9523
|
items: { type: "string" },
|
|
9256
9524
|
type: "array"
|
|
9257
9525
|
},
|
|
9258
|
-
expires_at: {
|
|
9259
|
-
format: "date-time",
|
|
9260
|
-
nullable: true,
|
|
9261
|
-
type: "string"
|
|
9262
|
-
},
|
|
9526
|
+
expires_at: { format: "date-time", type: "string" },
|
|
9263
9527
|
user_identifier_key: { minLength: 1, type: "string" },
|
|
9264
9528
|
user_identity_ids: {
|
|
9265
9529
|
items: { type: "string" },
|
|
@@ -9575,8 +9839,7 @@ var openapi_default = {
|
|
|
9575
9839
|
nullable: true,
|
|
9576
9840
|
oneOf: [
|
|
9577
9841
|
{ maxLength: 500, type: "string" },
|
|
9578
|
-
{ type: "boolean" }
|
|
9579
|
-
{ format: "null", nullable: true, type: "string" }
|
|
9842
|
+
{ type: "boolean" }
|
|
9580
9843
|
]
|
|
9581
9844
|
},
|
|
9582
9845
|
type: "object"
|
|
@@ -9747,7 +10010,7 @@ var openapi_default = {
|
|
|
9747
10010
|
description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
|
|
9748
10011
|
type: "object"
|
|
9749
10012
|
},
|
|
9750
|
-
limit: { default: 500,
|
|
10013
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
9751
10014
|
user_identifier_key: { type: "string" }
|
|
9752
10015
|
},
|
|
9753
10016
|
type: "object"
|
|
@@ -9963,8 +10226,7 @@ var openapi_default = {
|
|
|
9963
10226
|
nullable: true,
|
|
9964
10227
|
oneOf: [
|
|
9965
10228
|
{ maxLength: 500, type: "string" },
|
|
9966
|
-
{ type: "boolean" }
|
|
9967
|
-
{ format: "null", nullable: true, type: "string" }
|
|
10229
|
+
{ type: "boolean" }
|
|
9968
10230
|
]
|
|
9969
10231
|
},
|
|
9970
10232
|
type: "object"
|
|
@@ -10116,11 +10378,7 @@ var openapi_default = {
|
|
|
10116
10378
|
items: { format: "uuid", type: "string" },
|
|
10117
10379
|
type: "array"
|
|
10118
10380
|
},
|
|
10119
|
-
created_before: {
|
|
10120
|
-
format: "date-time",
|
|
10121
|
-
nullable: true,
|
|
10122
|
-
type: "string"
|
|
10123
|
-
},
|
|
10381
|
+
created_before: { format: "date-time", type: "string" },
|
|
10124
10382
|
custom_metadata_has: {
|
|
10125
10383
|
additionalProperties: {
|
|
10126
10384
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
@@ -10263,7 +10521,7 @@ var openapi_default = {
|
|
|
10263
10521
|
},
|
|
10264
10522
|
type: "array"
|
|
10265
10523
|
},
|
|
10266
|
-
limit: { default: 500,
|
|
10524
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
10267
10525
|
manufacturer: {
|
|
10268
10526
|
enum: [
|
|
10269
10527
|
"akuvox",
|
|
@@ -10593,11 +10851,7 @@ var openapi_default = {
|
|
|
10593
10851
|
items: { format: "uuid", type: "string" },
|
|
10594
10852
|
type: "array"
|
|
10595
10853
|
},
|
|
10596
|
-
created_before: {
|
|
10597
|
-
format: "date-time",
|
|
10598
|
-
nullable: true,
|
|
10599
|
-
type: "string"
|
|
10600
|
-
},
|
|
10854
|
+
created_before: { format: "date-time", type: "string" },
|
|
10601
10855
|
custom_metadata_has: {
|
|
10602
10856
|
additionalProperties: {
|
|
10603
10857
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
@@ -10740,7 +10994,7 @@ var openapi_default = {
|
|
|
10740
10994
|
},
|
|
10741
10995
|
type: "array"
|
|
10742
10996
|
},
|
|
10743
|
-
limit: { default: 500,
|
|
10997
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
10744
10998
|
manufacturer: {
|
|
10745
10999
|
enum: [
|
|
10746
11000
|
"akuvox",
|
|
@@ -10919,8 +11173,7 @@ var openapi_default = {
|
|
|
10919
11173
|
nullable: true,
|
|
10920
11174
|
oneOf: [
|
|
10921
11175
|
{ maxLength: 500, type: "string" },
|
|
10922
|
-
{ type: "boolean" }
|
|
10923
|
-
{ format: "null", nullable: true, type: "string" }
|
|
11176
|
+
{ type: "boolean" }
|
|
10924
11177
|
]
|
|
10925
11178
|
},
|
|
10926
11179
|
type: "object"
|
|
@@ -10976,8 +11229,7 @@ var openapi_default = {
|
|
|
10976
11229
|
nullable: true,
|
|
10977
11230
|
oneOf: [
|
|
10978
11231
|
{ maxLength: 500, type: "string" },
|
|
10979
|
-
{ type: "boolean" }
|
|
10980
|
-
{ format: "null", nullable: true, type: "string" }
|
|
11232
|
+
{ type: "boolean" }
|
|
10981
11233
|
]
|
|
10982
11234
|
},
|
|
10983
11235
|
type: "object"
|
|
@@ -11144,6 +11396,7 @@ var openapi_default = {
|
|
|
11144
11396
|
"access_code.unmanaged.removed",
|
|
11145
11397
|
"lock.locked",
|
|
11146
11398
|
"lock.unlocked",
|
|
11399
|
+
"lock.access_denied",
|
|
11147
11400
|
"phone.deactivated",
|
|
11148
11401
|
"connected_account.connected",
|
|
11149
11402
|
"connected_account.successful_login",
|
|
@@ -11208,6 +11461,7 @@ var openapi_default = {
|
|
|
11208
11461
|
"access_code.unmanaged.removed",
|
|
11209
11462
|
"lock.locked",
|
|
11210
11463
|
"lock.unlocked",
|
|
11464
|
+
"lock.access_denied",
|
|
11211
11465
|
"phone.deactivated",
|
|
11212
11466
|
"connected_account.connected",
|
|
11213
11467
|
"connected_account.successful_login",
|
|
@@ -11232,7 +11486,7 @@ var openapi_default = {
|
|
|
11232
11486
|
},
|
|
11233
11487
|
type: "array"
|
|
11234
11488
|
},
|
|
11235
|
-
limit: { default: 500,
|
|
11489
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
11236
11490
|
since: { type: "string" }
|
|
11237
11491
|
},
|
|
11238
11492
|
type: "object"
|
|
@@ -11342,11 +11596,7 @@ var openapi_default = {
|
|
|
11342
11596
|
items: { format: "uuid", type: "string" },
|
|
11343
11597
|
type: "array"
|
|
11344
11598
|
},
|
|
11345
|
-
created_before: {
|
|
11346
|
-
format: "date-time",
|
|
11347
|
-
nullable: true,
|
|
11348
|
-
type: "string"
|
|
11349
|
-
},
|
|
11599
|
+
created_before: { format: "date-time", type: "string" },
|
|
11350
11600
|
custom_metadata_has: {
|
|
11351
11601
|
additionalProperties: {
|
|
11352
11602
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
@@ -11489,7 +11739,7 @@ var openapi_default = {
|
|
|
11489
11739
|
},
|
|
11490
11740
|
type: "array"
|
|
11491
11741
|
},
|
|
11492
|
-
limit: { default: 500,
|
|
11742
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
11493
11743
|
manufacturer: {
|
|
11494
11744
|
enum: [
|
|
11495
11745
|
"akuvox",
|
|
@@ -11775,8 +12025,8 @@ var openapi_default = {
|
|
|
11775
12025
|
device_id: { format: "uuid", type: "string" },
|
|
11776
12026
|
ends_daily_at: { type: "string" },
|
|
11777
12027
|
name: { type: "string" },
|
|
11778
|
-
noise_threshold_decibels: { type: "number" },
|
|
11779
|
-
noise_threshold_nrs: { type: "number" },
|
|
12028
|
+
noise_threshold_decibels: { format: "float", type: "number" },
|
|
12029
|
+
noise_threshold_nrs: { format: "float", type: "number" },
|
|
11780
12030
|
starts_daily_at: { type: "string" },
|
|
11781
12031
|
sync: { default: false, type: "boolean" }
|
|
11782
12032
|
},
|
|
@@ -11984,9 +12234,9 @@ var openapi_default = {
|
|
|
11984
12234
|
device_id: { format: "uuid", type: "string" },
|
|
11985
12235
|
ends_daily_at: { type: "string" },
|
|
11986
12236
|
name: { type: "string" },
|
|
11987
|
-
noise_threshold_decibels: { type: "number" },
|
|
12237
|
+
noise_threshold_decibels: { format: "float", type: "number" },
|
|
11988
12238
|
noise_threshold_id: { format: "uuid", type: "string" },
|
|
11989
|
-
noise_threshold_nrs: { type: "number" },
|
|
12239
|
+
noise_threshold_nrs: { format: "float", type: "number" },
|
|
11990
12240
|
starts_daily_at: { type: "string" },
|
|
11991
12241
|
sync: { default: false, type: "boolean" }
|
|
11992
12242
|
},
|
|
@@ -12036,9 +12286,9 @@ var openapi_default = {
|
|
|
12036
12286
|
device_id: { format: "uuid", type: "string" },
|
|
12037
12287
|
ends_daily_at: { type: "string" },
|
|
12038
12288
|
name: { type: "string" },
|
|
12039
|
-
noise_threshold_decibels: { type: "number" },
|
|
12289
|
+
noise_threshold_decibels: { format: "float", type: "number" },
|
|
12040
12290
|
noise_threshold_id: { format: "uuid", type: "string" },
|
|
12041
|
-
noise_threshold_nrs: { type: "number" },
|
|
12291
|
+
noise_threshold_nrs: { format: "float", type: "number" },
|
|
12042
12292
|
starts_daily_at: { type: "string" },
|
|
12043
12293
|
sync: { default: false, type: "boolean" }
|
|
12044
12294
|
},
|
|
@@ -12089,9 +12339,9 @@ var openapi_default = {
|
|
|
12089
12339
|
device_id: { format: "uuid", type: "string" },
|
|
12090
12340
|
ends_daily_at: { type: "string" },
|
|
12091
12341
|
name: { type: "string" },
|
|
12092
|
-
noise_threshold_decibels: { type: "number" },
|
|
12342
|
+
noise_threshold_decibels: { format: "float", type: "number" },
|
|
12093
12343
|
noise_threshold_id: { format: "uuid", type: "string" },
|
|
12094
|
-
noise_threshold_nrs: { type: "number" },
|
|
12344
|
+
noise_threshold_nrs: { format: "float", type: "number" },
|
|
12095
12345
|
starts_daily_at: { type: "string" },
|
|
12096
12346
|
sync: { default: false, type: "boolean" }
|
|
12097
12347
|
},
|
|
@@ -12280,7 +12530,11 @@ var openapi_default = {
|
|
|
12280
12530
|
hce_capability: { default: false, type: "boolean" },
|
|
12281
12531
|
nfc_capability: { default: false, type: "boolean" },
|
|
12282
12532
|
seos_applet_version: { default: "1.0.0", type: "string" },
|
|
12283
|
-
seos_tsm_endpoint_id: {
|
|
12533
|
+
seos_tsm_endpoint_id: {
|
|
12534
|
+
default: 1,
|
|
12535
|
+
format: "float",
|
|
12536
|
+
type: "number"
|
|
12537
|
+
}
|
|
12284
12538
|
},
|
|
12285
12539
|
type: "object"
|
|
12286
12540
|
},
|
|
@@ -12354,11 +12608,23 @@ var openapi_default = {
|
|
|
12354
12608
|
properties: {
|
|
12355
12609
|
automatic_cooling_enabled: { type: "boolean" },
|
|
12356
12610
|
automatic_heating_enabled: { type: "boolean" },
|
|
12357
|
-
cooling_set_point_celsius: {
|
|
12358
|
-
|
|
12611
|
+
cooling_set_point_celsius: {
|
|
12612
|
+
format: "float",
|
|
12613
|
+
type: "number"
|
|
12614
|
+
},
|
|
12615
|
+
cooling_set_point_fahrenheit: {
|
|
12616
|
+
format: "float",
|
|
12617
|
+
type: "number"
|
|
12618
|
+
},
|
|
12359
12619
|
device_id: { type: "string" },
|
|
12360
|
-
heating_set_point_celsius: {
|
|
12361
|
-
|
|
12620
|
+
heating_set_point_celsius: {
|
|
12621
|
+
format: "float",
|
|
12622
|
+
type: "number"
|
|
12623
|
+
},
|
|
12624
|
+
heating_set_point_fahrenheit: {
|
|
12625
|
+
format: "float",
|
|
12626
|
+
type: "number"
|
|
12627
|
+
},
|
|
12362
12628
|
hvac_mode_setting: {
|
|
12363
12629
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
12364
12630
|
type: "string"
|
|
@@ -12629,10 +12895,22 @@ var openapi_default = {
|
|
|
12629
12895
|
format: "uuid",
|
|
12630
12896
|
type: "string"
|
|
12631
12897
|
},
|
|
12632
|
-
cooling_set_point_celsius: {
|
|
12633
|
-
|
|
12634
|
-
|
|
12635
|
-
|
|
12898
|
+
cooling_set_point_celsius: {
|
|
12899
|
+
format: "float",
|
|
12900
|
+
type: "number"
|
|
12901
|
+
},
|
|
12902
|
+
cooling_set_point_fahrenheit: {
|
|
12903
|
+
format: "float",
|
|
12904
|
+
type: "number"
|
|
12905
|
+
},
|
|
12906
|
+
heating_set_point_celsius: {
|
|
12907
|
+
format: "float",
|
|
12908
|
+
type: "number"
|
|
12909
|
+
},
|
|
12910
|
+
heating_set_point_fahrenheit: {
|
|
12911
|
+
format: "float",
|
|
12912
|
+
type: "number"
|
|
12913
|
+
},
|
|
12636
12914
|
hvac_mode_setting: {
|
|
12637
12915
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
12638
12916
|
type: "string"
|
|
@@ -12697,10 +12975,22 @@ var openapi_default = {
|
|
|
12697
12975
|
format: "uuid",
|
|
12698
12976
|
type: "string"
|
|
12699
12977
|
},
|
|
12700
|
-
cooling_set_point_celsius: {
|
|
12701
|
-
|
|
12702
|
-
|
|
12703
|
-
|
|
12978
|
+
cooling_set_point_celsius: {
|
|
12979
|
+
format: "float",
|
|
12980
|
+
type: "number"
|
|
12981
|
+
},
|
|
12982
|
+
cooling_set_point_fahrenheit: {
|
|
12983
|
+
format: "float",
|
|
12984
|
+
type: "number"
|
|
12985
|
+
},
|
|
12986
|
+
heating_set_point_celsius: {
|
|
12987
|
+
format: "float",
|
|
12988
|
+
type: "number"
|
|
12989
|
+
},
|
|
12990
|
+
heating_set_point_fahrenheit: {
|
|
12991
|
+
format: "float",
|
|
12992
|
+
type: "number"
|
|
12993
|
+
},
|
|
12704
12994
|
hvac_mode_setting: {
|
|
12705
12995
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
12706
12996
|
type: "string"
|
|
@@ -12766,10 +13056,22 @@ var openapi_default = {
|
|
|
12766
13056
|
format: "uuid",
|
|
12767
13057
|
type: "string"
|
|
12768
13058
|
},
|
|
12769
|
-
cooling_set_point_celsius: {
|
|
12770
|
-
|
|
12771
|
-
|
|
12772
|
-
|
|
13059
|
+
cooling_set_point_celsius: {
|
|
13060
|
+
format: "float",
|
|
13061
|
+
type: "number"
|
|
13062
|
+
},
|
|
13063
|
+
cooling_set_point_fahrenheit: {
|
|
13064
|
+
format: "float",
|
|
13065
|
+
type: "number"
|
|
13066
|
+
},
|
|
13067
|
+
heating_set_point_celsius: {
|
|
13068
|
+
format: "float",
|
|
13069
|
+
type: "number"
|
|
13070
|
+
},
|
|
13071
|
+
heating_set_point_fahrenheit: {
|
|
13072
|
+
format: "float",
|
|
13073
|
+
type: "number"
|
|
13074
|
+
},
|
|
12773
13075
|
hvac_mode_setting: {
|
|
12774
13076
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
12775
13077
|
type: "string"
|
|
@@ -12830,8 +13132,14 @@ var openapi_default = {
|
|
|
12830
13132
|
"application/json": {
|
|
12831
13133
|
schema: {
|
|
12832
13134
|
properties: {
|
|
12833
|
-
cooling_set_point_celsius: {
|
|
12834
|
-
|
|
13135
|
+
cooling_set_point_celsius: {
|
|
13136
|
+
format: "float",
|
|
13137
|
+
type: "number"
|
|
13138
|
+
},
|
|
13139
|
+
cooling_set_point_fahrenheit: {
|
|
13140
|
+
format: "float",
|
|
13141
|
+
type: "number"
|
|
13142
|
+
},
|
|
12835
13143
|
device_id: { format: "uuid", type: "string" },
|
|
12836
13144
|
sync: { default: false, type: "boolean" }
|
|
12837
13145
|
},
|
|
@@ -12932,8 +13240,14 @@ var openapi_default = {
|
|
|
12932
13240
|
schema: {
|
|
12933
13241
|
properties: {
|
|
12934
13242
|
device_id: { format: "uuid", type: "string" },
|
|
12935
|
-
heating_set_point_celsius: {
|
|
12936
|
-
|
|
13243
|
+
heating_set_point_celsius: {
|
|
13244
|
+
format: "float",
|
|
13245
|
+
type: "number"
|
|
13246
|
+
},
|
|
13247
|
+
heating_set_point_fahrenheit: {
|
|
13248
|
+
format: "float",
|
|
13249
|
+
type: "number"
|
|
13250
|
+
},
|
|
12937
13251
|
sync: { default: false, type: "boolean" }
|
|
12938
13252
|
},
|
|
12939
13253
|
required: ["device_id"],
|
|
@@ -12984,11 +13298,23 @@ var openapi_default = {
|
|
|
12984
13298
|
"application/json": {
|
|
12985
13299
|
schema: {
|
|
12986
13300
|
properties: {
|
|
12987
|
-
cooling_set_point_celsius: {
|
|
12988
|
-
|
|
13301
|
+
cooling_set_point_celsius: {
|
|
13302
|
+
format: "float",
|
|
13303
|
+
type: "number"
|
|
13304
|
+
},
|
|
13305
|
+
cooling_set_point_fahrenheit: {
|
|
13306
|
+
format: "float",
|
|
13307
|
+
type: "number"
|
|
13308
|
+
},
|
|
12989
13309
|
device_id: { format: "uuid", type: "string" },
|
|
12990
|
-
heating_set_point_celsius: {
|
|
12991
|
-
|
|
13310
|
+
heating_set_point_celsius: {
|
|
13311
|
+
format: "float",
|
|
13312
|
+
type: "number"
|
|
13313
|
+
},
|
|
13314
|
+
heating_set_point_fahrenheit: {
|
|
13315
|
+
format: "float",
|
|
13316
|
+
type: "number"
|
|
13317
|
+
},
|
|
12992
13318
|
sync: { default: false, type: "boolean" }
|
|
12993
13319
|
},
|
|
12994
13320
|
required: ["device_id"],
|
|
@@ -13049,11 +13375,7 @@ var openapi_default = {
|
|
|
13049
13375
|
items: { format: "uuid", type: "string" },
|
|
13050
13376
|
type: "array"
|
|
13051
13377
|
},
|
|
13052
|
-
created_before: {
|
|
13053
|
-
format: "date-time",
|
|
13054
|
-
nullable: true,
|
|
13055
|
-
type: "string"
|
|
13056
|
-
},
|
|
13378
|
+
created_before: { format: "date-time", type: "string" },
|
|
13057
13379
|
custom_metadata_has: {
|
|
13058
13380
|
additionalProperties: {
|
|
13059
13381
|
oneOf: [{ type: "string" }, { type: "boolean" }]
|
|
@@ -13196,7 +13518,7 @@ var openapi_default = {
|
|
|
13196
13518
|
},
|
|
13197
13519
|
type: "array"
|
|
13198
13520
|
},
|
|
13199
|
-
limit: { default: 500,
|
|
13521
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
13200
13522
|
manufacturer: {
|
|
13201
13523
|
enum: [
|
|
13202
13524
|
"akuvox",
|
|
@@ -13394,10 +13716,22 @@ var openapi_default = {
|
|
|
13394
13716
|
properties: {
|
|
13395
13717
|
automatic_cooling_enabled: { type: "boolean" },
|
|
13396
13718
|
automatic_heating_enabled: { type: "boolean" },
|
|
13397
|
-
cooling_set_point_celsius: {
|
|
13398
|
-
|
|
13399
|
-
|
|
13400
|
-
|
|
13719
|
+
cooling_set_point_celsius: {
|
|
13720
|
+
format: "float",
|
|
13721
|
+
type: "number"
|
|
13722
|
+
},
|
|
13723
|
+
cooling_set_point_fahrenheit: {
|
|
13724
|
+
format: "float",
|
|
13725
|
+
type: "number"
|
|
13726
|
+
},
|
|
13727
|
+
heating_set_point_celsius: {
|
|
13728
|
+
format: "float",
|
|
13729
|
+
type: "number"
|
|
13730
|
+
},
|
|
13731
|
+
heating_set_point_fahrenheit: {
|
|
13732
|
+
format: "float",
|
|
13733
|
+
type: "number"
|
|
13734
|
+
},
|
|
13401
13735
|
hvac_mode_setting: {
|
|
13402
13736
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
13403
13737
|
type: "string"
|
|
@@ -13451,10 +13785,22 @@ var openapi_default = {
|
|
|
13451
13785
|
properties: {
|
|
13452
13786
|
automatic_cooling_enabled: { type: "boolean" },
|
|
13453
13787
|
automatic_heating_enabled: { type: "boolean" },
|
|
13454
|
-
cooling_set_point_celsius: {
|
|
13455
|
-
|
|
13456
|
-
|
|
13457
|
-
|
|
13788
|
+
cooling_set_point_celsius: {
|
|
13789
|
+
format: "float",
|
|
13790
|
+
type: "number"
|
|
13791
|
+
},
|
|
13792
|
+
cooling_set_point_fahrenheit: {
|
|
13793
|
+
format: "float",
|
|
13794
|
+
type: "number"
|
|
13795
|
+
},
|
|
13796
|
+
heating_set_point_celsius: {
|
|
13797
|
+
format: "float",
|
|
13798
|
+
type: "number"
|
|
13799
|
+
},
|
|
13800
|
+
heating_set_point_fahrenheit: {
|
|
13801
|
+
format: "float",
|
|
13802
|
+
type: "number"
|
|
13803
|
+
},
|
|
13458
13804
|
hvac_mode_setting: {
|
|
13459
13805
|
enum: ["off", "heat", "cool", "heat_cool"],
|
|
13460
13806
|
type: "string"
|
|
@@ -14138,9 +14484,10 @@ var openapi_default = {
|
|
|
14138
14484
|
schema: {
|
|
14139
14485
|
properties: {
|
|
14140
14486
|
accessible_devices: {
|
|
14141
|
-
|
|
14487
|
+
deprecated: true,
|
|
14142
14488
|
items: { $ref: "#/components/schemas/device" },
|
|
14143
|
-
type: "array"
|
|
14489
|
+
type: "array",
|
|
14490
|
+
"x-deprecated": "use devices."
|
|
14144
14491
|
},
|
|
14145
14492
|
devices: {
|
|
14146
14493
|
items: { $ref: "#/components/schemas/device" },
|
|
@@ -14769,9 +15116,10 @@ var openapi_default = {
|
|
|
14769
15116
|
properties: {
|
|
14770
15117
|
company_name: { type: "string" },
|
|
14771
15118
|
connect_partner_name: {
|
|
14772
|
-
|
|
15119
|
+
deprecated: true,
|
|
14773
15120
|
nullable: true,
|
|
14774
|
-
type: "string"
|
|
15121
|
+
type: "string",
|
|
15122
|
+
"x-deprecated": "use company_name"
|
|
14775
15123
|
},
|
|
14776
15124
|
is_sandbox: { default: false, type: "boolean" },
|
|
14777
15125
|
name: { type: "string" },
|