@seamapi/types 1.193.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 CHANGED
@@ -2110,8 +2110,7 @@ var openapi_default = {
2110
2110
  type: "string"
2111
2111
  },
2112
2112
  errors: {
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.',
2114
- 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.'
2115
2114
  },
2116
2115
  is_backup: {
2117
2116
  description: "Indicates whether the access code is a backup code.",
@@ -2174,8 +2173,7 @@ var openapi_default = {
2174
2173
  type: "string"
2175
2174
  },
2176
2175
  warnings: {
2177
- 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.',
2178
- 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.'
2179
2177
  }
2180
2178
  },
2181
2179
  required: [
@@ -2198,18 +2196,20 @@ var openapi_default = {
2198
2196
  acs_access_group: {
2199
2197
  properties: {
2200
2198
  access_group_type: {
2201
- description: "\n ---\n deprecated: use external_type\n ---\n ",
2199
+ deprecated: true,
2202
2200
  enum: [
2203
2201
  "pti_unit",
2204
2202
  "pti_access_level",
2205
2203
  "salto_access_group",
2206
2204
  "brivo_group"
2207
2205
  ],
2208
- type: "string"
2206
+ type: "string",
2207
+ "x-deprecated": "use external_type"
2209
2208
  },
2210
2209
  access_group_type_display_name: {
2211
- description: "\n ---\n deprecated: use external_type_display_name\n ---\n ",
2212
- type: "string"
2210
+ deprecated: true,
2211
+ type: "string",
2212
+ "x-deprecated": "use external_type_display_name"
2213
2213
  },
2214
2214
  acs_access_group_id: { format: "uuid", type: "string" },
2215
2215
  acs_system_id: { format: "uuid", type: "string" },
@@ -2507,7 +2507,7 @@ var openapi_default = {
2507
2507
  image_url: { type: "string" },
2508
2508
  name: { type: "string" },
2509
2509
  system_type: {
2510
- description: "\n ---\n deprecated: use external_type\n ---\n ",
2510
+ deprecated: true,
2511
2511
  enum: [
2512
2512
  "pti_site",
2513
2513
  "alta_org",
@@ -2518,11 +2518,13 @@ var openapi_default = {
2518
2518
  "assa_abloy_credential_service",
2519
2519
  "latch_building"
2520
2520
  ],
2521
- type: "string"
2521
+ type: "string",
2522
+ "x-deprecated": "use external_type"
2522
2523
  },
2523
2524
  system_type_display_name: {
2524
- description: "\n ---\n deprecated: use external_type_display_name\n ---\n ",
2525
- type: "string"
2525
+ deprecated: true,
2526
+ type: "string",
2527
+ "x-deprecated": "use external_type_display_name"
2526
2528
  },
2527
2529
  warnings: {
2528
2530
  items: { properties: {}, type: "object" },
@@ -2558,9 +2560,10 @@ var openapi_default = {
2558
2560
  created_at: { format: "date-time", type: "string" },
2559
2561
  display_name: { type: "string" },
2560
2562
  email: {
2561
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
2563
+ deprecated: true,
2562
2564
  format: "email",
2563
- type: "string"
2565
+ type: "string",
2566
+ "x-deprecated": "use email_address."
2564
2567
  },
2565
2568
  email_address: { format: "email", type: "string" },
2566
2569
  external_type: {
@@ -2577,7 +2580,7 @@ var openapi_default = {
2577
2580
  full_name: { type: "string" },
2578
2581
  hid_acs_system_id: { format: "uuid", type: "string" },
2579
2582
  is_suspended: { type: "boolean" },
2580
- phone_number: { nullable: true, type: "string" },
2583
+ phone_number: { type: "string" },
2581
2584
  user_identity_email_address: { nullable: true, type: "string" },
2582
2585
  user_identity_full_name: { nullable: true, type: "string" },
2583
2586
  user_identity_id: { type: "string" },
@@ -2600,13 +2603,14 @@ var openapi_default = {
2600
2603
  description: "Locking door.",
2601
2604
  properties: {
2602
2605
  action_attempt_id: {
2603
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2606
+ description: "The ID of the action attempt.",
2604
2607
  format: "uuid",
2605
- type: "string"
2608
+ type: "string",
2609
+ "x-title": "Action Attempt ID"
2606
2610
  },
2607
2611
  action_type: { enum: ["LOCK_DOOR"], type: "string" },
2608
- error: { format: "null", nullable: true, type: "string" },
2609
- result: { format: "null", nullable: true, type: "string" },
2612
+ error: { nullable: true },
2613
+ result: { nullable: true },
2610
2614
  status: { enum: ["pending"], type: "string" }
2611
2615
  },
2612
2616
  required: [
@@ -2622,12 +2626,13 @@ var openapi_default = {
2622
2626
  description: "Locking door succeeded.",
2623
2627
  properties: {
2624
2628
  action_attempt_id: {
2625
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2629
+ description: "The ID of the action attempt.",
2626
2630
  format: "uuid",
2627
- type: "string"
2631
+ type: "string",
2632
+ "x-title": "Action Attempt ID"
2628
2633
  },
2629
2634
  action_type: { enum: ["LOCK_DOOR"], type: "string" },
2630
- error: { format: "null", nullable: true, type: "string" },
2635
+ error: { nullable: true },
2631
2636
  result: { properties: {}, type: "object" },
2632
2637
  status: { enum: ["success"], type: "string" }
2633
2638
  },
@@ -2644,9 +2649,10 @@ var openapi_default = {
2644
2649
  description: "Locking door failed.",
2645
2650
  properties: {
2646
2651
  action_attempt_id: {
2647
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2652
+ description: "The ID of the action attempt.",
2648
2653
  format: "uuid",
2649
- type: "string"
2654
+ type: "string",
2655
+ "x-title": "Action Attempt ID"
2650
2656
  },
2651
2657
  action_type: { enum: ["LOCK_DOOR"], type: "string" },
2652
2658
  error: {
@@ -2657,7 +2663,7 @@ var openapi_default = {
2657
2663
  required: ["type", "message"],
2658
2664
  type: "object"
2659
2665
  },
2660
- result: { format: "null", nullable: true, type: "string" },
2666
+ result: { nullable: true },
2661
2667
  status: { enum: ["error"], type: "string" }
2662
2668
  },
2663
2669
  required: [
@@ -2673,13 +2679,14 @@ var openapi_default = {
2673
2679
  description: "Unlocking door.",
2674
2680
  properties: {
2675
2681
  action_attempt_id: {
2676
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2682
+ description: "The ID of the action attempt.",
2677
2683
  format: "uuid",
2678
- type: "string"
2684
+ type: "string",
2685
+ "x-title": "Action Attempt ID"
2679
2686
  },
2680
2687
  action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
2681
- error: { format: "null", nullable: true, type: "string" },
2682
- result: { format: "null", nullable: true, type: "string" },
2688
+ error: { nullable: true },
2689
+ result: { nullable: true },
2683
2690
  status: { enum: ["pending"], type: "string" }
2684
2691
  },
2685
2692
  required: [
@@ -2695,12 +2702,13 @@ var openapi_default = {
2695
2702
  description: "Unlocking door succeeded.",
2696
2703
  properties: {
2697
2704
  action_attempt_id: {
2698
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2705
+ description: "The ID of the action attempt.",
2699
2706
  format: "uuid",
2700
- type: "string"
2707
+ type: "string",
2708
+ "x-title": "Action Attempt ID"
2701
2709
  },
2702
2710
  action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
2703
- error: { format: "null", nullable: true, type: "string" },
2711
+ error: { nullable: true },
2704
2712
  result: { properties: {}, type: "object" },
2705
2713
  status: { enum: ["success"], type: "string" }
2706
2714
  },
@@ -2717,9 +2725,10 @@ var openapi_default = {
2717
2725
  description: "Unlocking door failed.",
2718
2726
  properties: {
2719
2727
  action_attempt_id: {
2720
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2728
+ description: "The ID of the action attempt.",
2721
2729
  format: "uuid",
2722
- type: "string"
2730
+ type: "string",
2731
+ "x-title": "Action Attempt ID"
2723
2732
  },
2724
2733
  action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
2725
2734
  error: {
@@ -2730,7 +2739,7 @@ var openapi_default = {
2730
2739
  required: ["type", "message"],
2731
2740
  type: "object"
2732
2741
  },
2733
- result: { format: "null", nullable: true, type: "string" },
2742
+ result: { nullable: true },
2734
2743
  status: { enum: ["error"], type: "string" }
2735
2744
  },
2736
2745
  required: [
@@ -2746,16 +2755,17 @@ var openapi_default = {
2746
2755
  description: "Resetting sandbox workspace.",
2747
2756
  properties: {
2748
2757
  action_attempt_id: {
2749
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2758
+ description: "The ID of the action attempt.",
2750
2759
  format: "uuid",
2751
- type: "string"
2760
+ type: "string",
2761
+ "x-title": "Action Attempt ID"
2752
2762
  },
2753
2763
  action_type: {
2754
2764
  enum: ["RESET_SANDBOX_WORKSPACE"],
2755
2765
  type: "string"
2756
2766
  },
2757
- error: { format: "null", nullable: true, type: "string" },
2758
- result: { format: "null", nullable: true, type: "string" },
2767
+ error: { nullable: true },
2768
+ result: { nullable: true },
2759
2769
  status: { enum: ["pending"], type: "string" }
2760
2770
  },
2761
2771
  required: [
@@ -2771,15 +2781,16 @@ var openapi_default = {
2771
2781
  description: "Resetting sandbox workspace succeeded.",
2772
2782
  properties: {
2773
2783
  action_attempt_id: {
2774
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2784
+ description: "The ID of the action attempt.",
2775
2785
  format: "uuid",
2776
- type: "string"
2786
+ type: "string",
2787
+ "x-title": "Action Attempt ID"
2777
2788
  },
2778
2789
  action_type: {
2779
2790
  enum: ["RESET_SANDBOX_WORKSPACE"],
2780
2791
  type: "string"
2781
2792
  },
2782
- error: { format: "null", nullable: true, type: "string" },
2793
+ error: { nullable: true },
2783
2794
  result: { properties: {}, type: "object" },
2784
2795
  status: { enum: ["success"], type: "string" }
2785
2796
  },
@@ -2796,9 +2807,10 @@ var openapi_default = {
2796
2807
  description: "Resetting sandbox workspace failed.",
2797
2808
  properties: {
2798
2809
  action_attempt_id: {
2799
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2810
+ description: "The ID of the action attempt.",
2800
2811
  format: "uuid",
2801
- type: "string"
2812
+ type: "string",
2813
+ "x-title": "Action Attempt ID"
2802
2814
  },
2803
2815
  action_type: {
2804
2816
  enum: ["RESET_SANDBOX_WORKSPACE"],
@@ -2812,7 +2824,7 @@ var openapi_default = {
2812
2824
  required: ["type", "message"],
2813
2825
  type: "object"
2814
2826
  },
2815
- result: { format: "null", nullable: true, type: "string" },
2827
+ result: { nullable: true },
2816
2828
  status: { enum: ["error"], type: "string" }
2817
2829
  },
2818
2830
  required: [
@@ -2828,13 +2840,14 @@ var openapi_default = {
2828
2840
  description: "Setting HVAC to cool.",
2829
2841
  properties: {
2830
2842
  action_attempt_id: {
2831
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2843
+ description: "The ID of the action attempt.",
2832
2844
  format: "uuid",
2833
- type: "string"
2845
+ type: "string",
2846
+ "x-title": "Action Attempt ID"
2834
2847
  },
2835
2848
  action_type: { enum: ["SET_COOL"], type: "string" },
2836
- error: { format: "null", nullable: true, type: "string" },
2837
- result: { format: "null", nullable: true, type: "string" },
2849
+ error: { nullable: true },
2850
+ result: { nullable: true },
2838
2851
  status: { enum: ["pending"], type: "string" }
2839
2852
  },
2840
2853
  required: [
@@ -2850,12 +2863,13 @@ var openapi_default = {
2850
2863
  description: "Setting HVAC to cool succeeded.",
2851
2864
  properties: {
2852
2865
  action_attempt_id: {
2853
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2866
+ description: "The ID of the action attempt.",
2854
2867
  format: "uuid",
2855
- type: "string"
2868
+ type: "string",
2869
+ "x-title": "Action Attempt ID"
2856
2870
  },
2857
2871
  action_type: { enum: ["SET_COOL"], type: "string" },
2858
- error: { format: "null", nullable: true, type: "string" },
2872
+ error: { nullable: true },
2859
2873
  result: { properties: {}, type: "object" },
2860
2874
  status: { enum: ["success"], type: "string" }
2861
2875
  },
@@ -2872,9 +2886,10 @@ var openapi_default = {
2872
2886
  description: "Setting HVAC to cool failed.",
2873
2887
  properties: {
2874
2888
  action_attempt_id: {
2875
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2889
+ description: "The ID of the action attempt.",
2876
2890
  format: "uuid",
2877
- type: "string"
2891
+ type: "string",
2892
+ "x-title": "Action Attempt ID"
2878
2893
  },
2879
2894
  action_type: { enum: ["SET_COOL"], type: "string" },
2880
2895
  error: {
@@ -2885,7 +2900,7 @@ var openapi_default = {
2885
2900
  required: ["type", "message"],
2886
2901
  type: "object"
2887
2902
  },
2888
- result: { format: "null", nullable: true, type: "string" },
2903
+ result: { nullable: true },
2889
2904
  status: { enum: ["error"], type: "string" }
2890
2905
  },
2891
2906
  required: [
@@ -2901,13 +2916,14 @@ var openapi_default = {
2901
2916
  description: "Setting HVAC to heat mode.",
2902
2917
  properties: {
2903
2918
  action_attempt_id: {
2904
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2919
+ description: "The ID of the action attempt.",
2905
2920
  format: "uuid",
2906
- type: "string"
2921
+ type: "string",
2922
+ "x-title": "Action Attempt ID"
2907
2923
  },
2908
2924
  action_type: { enum: ["SET_HEAT"], type: "string" },
2909
- error: { format: "null", nullable: true, type: "string" },
2910
- result: { format: "null", nullable: true, type: "string" },
2925
+ error: { nullable: true },
2926
+ result: { nullable: true },
2911
2927
  status: { enum: ["pending"], type: "string" }
2912
2928
  },
2913
2929
  required: [
@@ -2923,12 +2939,13 @@ var openapi_default = {
2923
2939
  description: "Setting HVAC to heat mode succeeded.",
2924
2940
  properties: {
2925
2941
  action_attempt_id: {
2926
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2942
+ description: "The ID of the action attempt.",
2927
2943
  format: "uuid",
2928
- type: "string"
2944
+ type: "string",
2945
+ "x-title": "Action Attempt ID"
2929
2946
  },
2930
2947
  action_type: { enum: ["SET_HEAT"], type: "string" },
2931
- error: { format: "null", nullable: true, type: "string" },
2948
+ error: { nullable: true },
2932
2949
  result: { properties: {}, type: "object" },
2933
2950
  status: { enum: ["success"], type: "string" }
2934
2951
  },
@@ -2945,9 +2962,10 @@ var openapi_default = {
2945
2962
  description: "Setting HVAC to heat mode failed.",
2946
2963
  properties: {
2947
2964
  action_attempt_id: {
2948
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2965
+ description: "The ID of the action attempt.",
2949
2966
  format: "uuid",
2950
- type: "string"
2967
+ type: "string",
2968
+ "x-title": "Action Attempt ID"
2951
2969
  },
2952
2970
  action_type: { enum: ["SET_HEAT"], type: "string" },
2953
2971
  error: {
@@ -2958,7 +2976,7 @@ var openapi_default = {
2958
2976
  required: ["type", "message"],
2959
2977
  type: "object"
2960
2978
  },
2961
- result: { format: "null", nullable: true, type: "string" },
2979
+ result: { nullable: true },
2962
2980
  status: { enum: ["error"], type: "string" }
2963
2981
  },
2964
2982
  required: [
@@ -2974,13 +2992,14 @@ var openapi_default = {
2974
2992
  description: "Setting HVAC to heat-cool mode.",
2975
2993
  properties: {
2976
2994
  action_attempt_id: {
2977
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2995
+ description: "The ID of the action attempt.",
2978
2996
  format: "uuid",
2979
- type: "string"
2997
+ type: "string",
2998
+ "x-title": "Action Attempt ID"
2980
2999
  },
2981
3000
  action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
2982
- error: { format: "null", nullable: true, type: "string" },
2983
- result: { format: "null", nullable: true, type: "string" },
3001
+ error: { nullable: true },
3002
+ result: { nullable: true },
2984
3003
  status: { enum: ["pending"], type: "string" }
2985
3004
  },
2986
3005
  required: [
@@ -2996,12 +3015,13 @@ var openapi_default = {
2996
3015
  description: "Setting HVAC to heat-cool mode succeeded.",
2997
3016
  properties: {
2998
3017
  action_attempt_id: {
2999
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3018
+ description: "The ID of the action attempt.",
3000
3019
  format: "uuid",
3001
- type: "string"
3020
+ type: "string",
3021
+ "x-title": "Action Attempt ID"
3002
3022
  },
3003
3023
  action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
3004
- error: { format: "null", nullable: true, type: "string" },
3024
+ error: { nullable: true },
3005
3025
  result: { properties: {}, type: "object" },
3006
3026
  status: { enum: ["success"], type: "string" }
3007
3027
  },
@@ -3018,9 +3038,10 @@ var openapi_default = {
3018
3038
  description: "Setting heat-cool mode failed.",
3019
3039
  properties: {
3020
3040
  action_attempt_id: {
3021
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3041
+ description: "The ID of the action attempt.",
3022
3042
  format: "uuid",
3023
- type: "string"
3043
+ type: "string",
3044
+ "x-title": "Action Attempt ID"
3024
3045
  },
3025
3046
  action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
3026
3047
  error: {
@@ -3031,7 +3052,7 @@ var openapi_default = {
3031
3052
  required: ["type", "message"],
3032
3053
  type: "object"
3033
3054
  },
3034
- result: { format: "null", nullable: true, type: "string" },
3055
+ result: { nullable: true },
3035
3056
  status: { enum: ["error"], type: "string" }
3036
3057
  },
3037
3058
  required: [
@@ -3047,13 +3068,14 @@ var openapi_default = {
3047
3068
  description: "Setting fan mode.",
3048
3069
  properties: {
3049
3070
  action_attempt_id: {
3050
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3071
+ description: "The ID of the action attempt.",
3051
3072
  format: "uuid",
3052
- type: "string"
3073
+ type: "string",
3074
+ "x-title": "Action Attempt ID"
3053
3075
  },
3054
3076
  action_type: { enum: ["SET_FAN_MODE"], type: "string" },
3055
- error: { format: "null", nullable: true, type: "string" },
3056
- result: { format: "null", nullable: true, type: "string" },
3077
+ error: { nullable: true },
3078
+ result: { nullable: true },
3057
3079
  status: { enum: ["pending"], type: "string" }
3058
3080
  },
3059
3081
  required: [
@@ -3069,12 +3091,13 @@ var openapi_default = {
3069
3091
  description: "Setting fan mode succeeded.",
3070
3092
  properties: {
3071
3093
  action_attempt_id: {
3072
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3094
+ description: "The ID of the action attempt.",
3073
3095
  format: "uuid",
3074
- type: "string"
3096
+ type: "string",
3097
+ "x-title": "Action Attempt ID"
3075
3098
  },
3076
3099
  action_type: { enum: ["SET_FAN_MODE"], type: "string" },
3077
- error: { format: "null", nullable: true, type: "string" },
3100
+ error: { nullable: true },
3078
3101
  result: { properties: {}, type: "object" },
3079
3102
  status: { enum: ["success"], type: "string" }
3080
3103
  },
@@ -3091,9 +3114,10 @@ var openapi_default = {
3091
3114
  description: "Setting fan mode failed.",
3092
3115
  properties: {
3093
3116
  action_attempt_id: {
3094
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3117
+ description: "The ID of the action attempt.",
3095
3118
  format: "uuid",
3096
- type: "string"
3119
+ type: "string",
3120
+ "x-title": "Action Attempt ID"
3097
3121
  },
3098
3122
  action_type: { enum: ["SET_FAN_MODE"], type: "string" },
3099
3123
  error: {
@@ -3104,7 +3128,7 @@ var openapi_default = {
3104
3128
  required: ["type", "message"],
3105
3129
  type: "object"
3106
3130
  },
3107
- result: { format: "null", nullable: true, type: "string" },
3131
+ result: { nullable: true },
3108
3132
  status: { enum: ["error"], type: "string" }
3109
3133
  },
3110
3134
  required: [
@@ -3120,13 +3144,14 @@ var openapi_default = {
3120
3144
  description: "Turning HVAC off.",
3121
3145
  properties: {
3122
3146
  action_attempt_id: {
3123
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3147
+ description: "The ID of the action attempt.",
3124
3148
  format: "uuid",
3125
- type: "string"
3149
+ type: "string",
3150
+ "x-title": "Action Attempt ID"
3126
3151
  },
3127
3152
  action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
3128
- error: { format: "null", nullable: true, type: "string" },
3129
- result: { format: "null", nullable: true, type: "string" },
3153
+ error: { nullable: true },
3154
+ result: { nullable: true },
3130
3155
  status: { enum: ["pending"], type: "string" }
3131
3156
  },
3132
3157
  required: [
@@ -3142,12 +3167,13 @@ var openapi_default = {
3142
3167
  description: "Turning HVAC off succeeded.",
3143
3168
  properties: {
3144
3169
  action_attempt_id: {
3145
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3170
+ description: "The ID of the action attempt.",
3146
3171
  format: "uuid",
3147
- type: "string"
3172
+ type: "string",
3173
+ "x-title": "Action Attempt ID"
3148
3174
  },
3149
3175
  action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
3150
- error: { format: "null", nullable: true, type: "string" },
3176
+ error: { nullable: true },
3151
3177
  result: { properties: {}, type: "object" },
3152
3178
  status: { enum: ["success"], type: "string" }
3153
3179
  },
@@ -3164,9 +3190,10 @@ var openapi_default = {
3164
3190
  description: "Turning HVAC off failed.",
3165
3191
  properties: {
3166
3192
  action_attempt_id: {
3167
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3193
+ description: "The ID of the action attempt.",
3168
3194
  format: "uuid",
3169
- type: "string"
3195
+ type: "string",
3196
+ "x-title": "Action Attempt ID"
3170
3197
  },
3171
3198
  action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
3172
3199
  error: {
@@ -3177,7 +3204,7 @@ var openapi_default = {
3177
3204
  required: ["type", "message"],
3178
3205
  type: "object"
3179
3206
  },
3180
- result: { format: "null", nullable: true, type: "string" },
3207
+ result: { nullable: true },
3181
3208
  status: { enum: ["error"], type: "string" }
3182
3209
  },
3183
3210
  required: [
@@ -3192,13 +3219,14 @@ var openapi_default = {
3192
3219
  {
3193
3220
  properties: {
3194
3221
  action_attempt_id: {
3195
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3222
+ description: "The ID of the action attempt.",
3196
3223
  format: "uuid",
3197
- type: "string"
3224
+ type: "string",
3225
+ "x-title": "Action Attempt ID"
3198
3226
  },
3199
3227
  action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
3200
- error: { format: "null", nullable: true, type: "string" },
3201
- result: { format: "null", nullable: true, type: "string" },
3228
+ error: { nullable: true },
3229
+ result: { nullable: true },
3202
3230
  status: { enum: ["pending"], type: "string" }
3203
3231
  },
3204
3232
  required: [
@@ -3213,13 +3241,14 @@ var openapi_default = {
3213
3241
  {
3214
3242
  properties: {
3215
3243
  action_attempt_id: {
3216
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3244
+ description: "The ID of the action attempt.",
3217
3245
  format: "uuid",
3218
- type: "string"
3246
+ type: "string",
3247
+ "x-title": "Action Attempt ID"
3219
3248
  },
3220
3249
  action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
3221
- error: { format: "null", nullable: true, type: "string" },
3222
- result: { nullable: true },
3250
+ error: { nullable: true },
3251
+ result: {},
3223
3252
  status: { enum: ["success"], type: "string" }
3224
3253
  },
3225
3254
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3228,9 +3257,10 @@ var openapi_default = {
3228
3257
  {
3229
3258
  properties: {
3230
3259
  action_attempt_id: {
3231
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3260
+ description: "The ID of the action attempt.",
3232
3261
  format: "uuid",
3233
- type: "string"
3262
+ type: "string",
3263
+ "x-title": "Action Attempt ID"
3234
3264
  },
3235
3265
  action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
3236
3266
  error: {
@@ -3241,7 +3271,7 @@ var openapi_default = {
3241
3271
  required: ["type", "message"],
3242
3272
  type: "object"
3243
3273
  },
3244
- result: { format: "null", nullable: true, type: "string" },
3274
+ result: { nullable: true },
3245
3275
  status: { enum: ["error"], type: "string" }
3246
3276
  },
3247
3277
  required: [
@@ -3256,13 +3286,14 @@ var openapi_default = {
3256
3286
  {
3257
3287
  properties: {
3258
3288
  action_attempt_id: {
3259
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3289
+ description: "The ID of the action attempt.",
3260
3290
  format: "uuid",
3261
- type: "string"
3291
+ type: "string",
3292
+ "x-title": "Action Attempt ID"
3262
3293
  },
3263
3294
  action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
3264
- error: { format: "null", nullable: true, type: "string" },
3265
- result: { format: "null", nullable: true, type: "string" },
3295
+ error: { nullable: true },
3296
+ result: { nullable: true },
3266
3297
  status: { enum: ["pending"], type: "string" }
3267
3298
  },
3268
3299
  required: [
@@ -3277,13 +3308,14 @@ var openapi_default = {
3277
3308
  {
3278
3309
  properties: {
3279
3310
  action_attempt_id: {
3280
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3311
+ description: "The ID of the action attempt.",
3281
3312
  format: "uuid",
3282
- type: "string"
3313
+ type: "string",
3314
+ "x-title": "Action Attempt ID"
3283
3315
  },
3284
3316
  action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
3285
- error: { format: "null", nullable: true, type: "string" },
3286
- result: { nullable: true },
3317
+ error: { nullable: true },
3318
+ result: {},
3287
3319
  status: { enum: ["success"], type: "string" }
3288
3320
  },
3289
3321
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3292,9 +3324,10 @@ var openapi_default = {
3292
3324
  {
3293
3325
  properties: {
3294
3326
  action_attempt_id: {
3295
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3327
+ description: "The ID of the action attempt.",
3296
3328
  format: "uuid",
3297
- type: "string"
3329
+ type: "string",
3330
+ "x-title": "Action Attempt ID"
3298
3331
  },
3299
3332
  action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
3300
3333
  error: {
@@ -3305,7 +3338,7 @@ var openapi_default = {
3305
3338
  required: ["type", "message"],
3306
3339
  type: "object"
3307
3340
  },
3308
- result: { format: "null", nullable: true, type: "string" },
3341
+ result: { nullable: true },
3309
3342
  status: { enum: ["error"], type: "string" }
3310
3343
  },
3311
3344
  required: [
@@ -3320,13 +3353,14 @@ var openapi_default = {
3320
3353
  {
3321
3354
  properties: {
3322
3355
  action_attempt_id: {
3323
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3356
+ description: "The ID of the action attempt.",
3324
3357
  format: "uuid",
3325
- type: "string"
3358
+ type: "string",
3359
+ "x-title": "Action Attempt ID"
3326
3360
  },
3327
3361
  action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
3328
- error: { format: "null", nullable: true, type: "string" },
3329
- result: { format: "null", nullable: true, type: "string" },
3362
+ error: { nullable: true },
3363
+ result: { nullable: true },
3330
3364
  status: { enum: ["pending"], type: "string" }
3331
3365
  },
3332
3366
  required: [
@@ -3341,13 +3375,14 @@ var openapi_default = {
3341
3375
  {
3342
3376
  properties: {
3343
3377
  action_attempt_id: {
3344
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3378
+ description: "The ID of the action attempt.",
3345
3379
  format: "uuid",
3346
- type: "string"
3380
+ type: "string",
3381
+ "x-title": "Action Attempt ID"
3347
3382
  },
3348
3383
  action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
3349
- error: { format: "null", nullable: true, type: "string" },
3350
- result: { nullable: true },
3384
+ error: { nullable: true },
3385
+ result: {},
3351
3386
  status: { enum: ["success"], type: "string" }
3352
3387
  },
3353
3388
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3356,9 +3391,10 @@ var openapi_default = {
3356
3391
  {
3357
3392
  properties: {
3358
3393
  action_attempt_id: {
3359
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3394
+ description: "The ID of the action attempt.",
3360
3395
  format: "uuid",
3361
- type: "string"
3396
+ type: "string",
3397
+ "x-title": "Action Attempt ID"
3362
3398
  },
3363
3399
  action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
3364
3400
  error: {
@@ -3369,7 +3405,7 @@ var openapi_default = {
3369
3405
  required: ["type", "message"],
3370
3406
  type: "object"
3371
3407
  },
3372
- result: { format: "null", nullable: true, type: "string" },
3408
+ result: { nullable: true },
3373
3409
  status: { enum: ["error"], type: "string" }
3374
3410
  },
3375
3411
  required: [
@@ -3384,13 +3420,14 @@ var openapi_default = {
3384
3420
  {
3385
3421
  properties: {
3386
3422
  action_attempt_id: {
3387
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3423
+ description: "The ID of the action attempt.",
3388
3424
  format: "uuid",
3389
- type: "string"
3425
+ type: "string",
3426
+ "x-title": "Action Attempt ID"
3390
3427
  },
3391
3428
  action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
3392
- error: { format: "null", nullable: true, type: "string" },
3393
- result: { format: "null", nullable: true, type: "string" },
3429
+ error: { nullable: true },
3430
+ result: { nullable: true },
3394
3431
  status: { enum: ["pending"], type: "string" }
3395
3432
  },
3396
3433
  required: [
@@ -3405,13 +3442,14 @@ var openapi_default = {
3405
3442
  {
3406
3443
  properties: {
3407
3444
  action_attempt_id: {
3408
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3445
+ description: "The ID of the action attempt.",
3409
3446
  format: "uuid",
3410
- type: "string"
3447
+ type: "string",
3448
+ "x-title": "Action Attempt ID"
3411
3449
  },
3412
3450
  action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
3413
- error: { format: "null", nullable: true, type: "string" },
3414
- result: { nullable: true },
3451
+ error: { nullable: true },
3452
+ result: {},
3415
3453
  status: { enum: ["success"], type: "string" }
3416
3454
  },
3417
3455
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3420,9 +3458,10 @@ var openapi_default = {
3420
3458
  {
3421
3459
  properties: {
3422
3460
  action_attempt_id: {
3423
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3461
+ description: "The ID of the action attempt.",
3424
3462
  format: "uuid",
3425
- type: "string"
3463
+ type: "string",
3464
+ "x-title": "Action Attempt ID"
3426
3465
  },
3427
3466
  action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
3428
3467
  error: {
@@ -3433,7 +3472,7 @@ var openapi_default = {
3433
3472
  required: ["type", "message"],
3434
3473
  type: "object"
3435
3474
  },
3436
- result: { format: "null", nullable: true, type: "string" },
3475
+ result: { nullable: true },
3437
3476
  status: { enum: ["error"], type: "string" }
3438
3477
  },
3439
3478
  required: [
@@ -3448,13 +3487,14 @@ var openapi_default = {
3448
3487
  {
3449
3488
  properties: {
3450
3489
  action_attempt_id: {
3451
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3490
+ description: "The ID of the action attempt.",
3452
3491
  format: "uuid",
3453
- type: "string"
3492
+ type: "string",
3493
+ "x-title": "Action Attempt ID"
3454
3494
  },
3455
3495
  action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
3456
- error: { format: "null", nullable: true, type: "string" },
3457
- result: { format: "null", nullable: true, type: "string" },
3496
+ error: { nullable: true },
3497
+ result: { nullable: true },
3458
3498
  status: { enum: ["pending"], type: "string" }
3459
3499
  },
3460
3500
  required: [
@@ -3469,13 +3509,14 @@ var openapi_default = {
3469
3509
  {
3470
3510
  properties: {
3471
3511
  action_attempt_id: {
3472
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3512
+ description: "The ID of the action attempt.",
3473
3513
  format: "uuid",
3474
- type: "string"
3514
+ type: "string",
3515
+ "x-title": "Action Attempt ID"
3475
3516
  },
3476
3517
  action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
3477
- error: { format: "null", nullable: true, type: "string" },
3478
- result: { nullable: true },
3518
+ error: { nullable: true },
3519
+ result: {},
3479
3520
  status: { enum: ["success"], type: "string" }
3480
3521
  },
3481
3522
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3484,9 +3525,10 @@ var openapi_default = {
3484
3525
  {
3485
3526
  properties: {
3486
3527
  action_attempt_id: {
3487
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3528
+ description: "The ID of the action attempt.",
3488
3529
  format: "uuid",
3489
- type: "string"
3530
+ type: "string",
3531
+ "x-title": "Action Attempt ID"
3490
3532
  },
3491
3533
  action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
3492
3534
  error: {
@@ -3497,7 +3539,7 @@ var openapi_default = {
3497
3539
  required: ["type", "message"],
3498
3540
  type: "object"
3499
3541
  },
3500
- result: { format: "null", nullable: true, type: "string" },
3542
+ result: { nullable: true },
3501
3543
  status: { enum: ["error"], type: "string" }
3502
3544
  },
3503
3545
  required: [
@@ -3512,13 +3554,14 @@ var openapi_default = {
3512
3554
  {
3513
3555
  properties: {
3514
3556
  action_attempt_id: {
3515
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3557
+ description: "The ID of the action attempt.",
3516
3558
  format: "uuid",
3517
- type: "string"
3559
+ type: "string",
3560
+ "x-title": "Action Attempt ID"
3518
3561
  },
3519
3562
  action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
3520
- error: { format: "null", nullable: true, type: "string" },
3521
- result: { format: "null", nullable: true, type: "string" },
3563
+ error: { nullable: true },
3564
+ result: { nullable: true },
3522
3565
  status: { enum: ["pending"], type: "string" }
3523
3566
  },
3524
3567
  required: [
@@ -3533,13 +3576,14 @@ var openapi_default = {
3533
3576
  {
3534
3577
  properties: {
3535
3578
  action_attempt_id: {
3536
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3579
+ description: "The ID of the action attempt.",
3537
3580
  format: "uuid",
3538
- type: "string"
3581
+ type: "string",
3582
+ "x-title": "Action Attempt ID"
3539
3583
  },
3540
3584
  action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
3541
- error: { format: "null", nullable: true, type: "string" },
3542
- result: { nullable: true },
3585
+ error: { nullable: true },
3586
+ result: {},
3543
3587
  status: { enum: ["success"], type: "string" }
3544
3588
  },
3545
3589
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3548,9 +3592,10 @@ var openapi_default = {
3548
3592
  {
3549
3593
  properties: {
3550
3594
  action_attempt_id: {
3551
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3595
+ description: "The ID of the action attempt.",
3552
3596
  format: "uuid",
3553
- type: "string"
3597
+ type: "string",
3598
+ "x-title": "Action Attempt ID"
3554
3599
  },
3555
3600
  action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
3556
3601
  error: {
@@ -3561,7 +3606,7 @@ var openapi_default = {
3561
3606
  required: ["type", "message"],
3562
3607
  type: "object"
3563
3608
  },
3564
- result: { format: "null", nullable: true, type: "string" },
3609
+ result: { nullable: true },
3565
3610
  status: { enum: ["error"], type: "string" }
3566
3611
  },
3567
3612
  required: [
@@ -3576,13 +3621,14 @@ var openapi_default = {
3576
3621
  {
3577
3622
  properties: {
3578
3623
  action_attempt_id: {
3579
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3624
+ description: "The ID of the action attempt.",
3580
3625
  format: "uuid",
3581
- type: "string"
3626
+ type: "string",
3627
+ "x-title": "Action Attempt ID"
3582
3628
  },
3583
3629
  action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
3584
- error: { format: "null", nullable: true, type: "string" },
3585
- result: { format: "null", nullable: true, type: "string" },
3630
+ error: { nullable: true },
3631
+ result: { nullable: true },
3586
3632
  status: { enum: ["pending"], type: "string" }
3587
3633
  },
3588
3634
  required: [
@@ -3597,13 +3643,14 @@ var openapi_default = {
3597
3643
  {
3598
3644
  properties: {
3599
3645
  action_attempt_id: {
3600
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3646
+ description: "The ID of the action attempt.",
3601
3647
  format: "uuid",
3602
- type: "string"
3648
+ type: "string",
3649
+ "x-title": "Action Attempt ID"
3603
3650
  },
3604
3651
  action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
3605
- error: { format: "null", nullable: true, type: "string" },
3606
- result: { nullable: true },
3652
+ error: { nullable: true },
3653
+ result: {},
3607
3654
  status: { enum: ["success"], type: "string" }
3608
3655
  },
3609
3656
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3612,9 +3659,10 @@ var openapi_default = {
3612
3659
  {
3613
3660
  properties: {
3614
3661
  action_attempt_id: {
3615
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3662
+ description: "The ID of the action attempt.",
3616
3663
  format: "uuid",
3617
- type: "string"
3664
+ type: "string",
3665
+ "x-title": "Action Attempt ID"
3618
3666
  },
3619
3667
  action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
3620
3668
  error: {
@@ -3625,7 +3673,7 @@ var openapi_default = {
3625
3673
  required: ["type", "message"],
3626
3674
  type: "object"
3627
3675
  },
3628
- result: { format: "null", nullable: true, type: "string" },
3676
+ result: { nullable: true },
3629
3677
  status: { enum: ["error"], type: "string" }
3630
3678
  },
3631
3679
  required: [
@@ -3651,7 +3699,7 @@ var openapi_default = {
3651
3699
  type: "array"
3652
3700
  },
3653
3701
  created_at: { format: "date-time", type: "string" },
3654
- device_count: { type: "number" },
3702
+ device_count: { format: "float", type: "number" },
3655
3703
  token: { type: "string" },
3656
3704
  user_identifier_key: { nullable: true, type: "string" },
3657
3705
  user_identity_ids: {
@@ -3678,16 +3726,15 @@ var openapi_default = {
3678
3726
  automatic_cooling_enabled: { type: "boolean" },
3679
3727
  automatic_heating_enabled: { type: "boolean" },
3680
3728
  climate_setting_schedule_id: { format: "uuid", type: "string" },
3681
- cooling_set_point_celsius: { type: "number" },
3682
- cooling_set_point_fahrenheit: { type: "number" },
3729
+ cooling_set_point_celsius: { format: "float", type: "number" },
3730
+ cooling_set_point_fahrenheit: { format: "float", type: "number" },
3683
3731
  created_at: { format: "date-time", type: "string" },
3684
3732
  device_id: { format: "uuid", type: "string" },
3685
3733
  errors: {
3686
- 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.',
3687
- 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.'
3688
3735
  },
3689
- heating_set_point_celsius: { type: "number" },
3690
- heating_set_point_fahrenheit: { type: "number" },
3736
+ heating_set_point_celsius: { format: "float", type: "number" },
3737
+ heating_set_point_fahrenheit: { format: "float", type: "number" },
3691
3738
  hvac_mode_setting: {
3692
3739
  enum: ["off", "heat", "cool", "heat_cool"],
3693
3740
  type: "string"
@@ -3711,14 +3758,16 @@ var openapi_default = {
3711
3758
  connect_webview: {
3712
3759
  properties: {
3713
3760
  accepted_devices: {
3714
- description: "\n ---\n deprecated: Unused. Will be removed.\n ---\n ",
3761
+ deprecated: true,
3715
3762
  items: { type: "string" },
3716
- type: "array"
3763
+ type: "array",
3764
+ "x-deprecated": "Unused. Will be removed."
3717
3765
  },
3718
3766
  accepted_providers: { items: { type: "string" }, type: "array" },
3719
3767
  any_device_allowed: {
3720
- description: "\n ---\n deprecated: Unused. Will be removed.\n ---\n ",
3721
- type: "boolean"
3768
+ deprecated: true,
3769
+ type: "boolean",
3770
+ "x-deprecated": "Unused. Will be removed."
3722
3771
  },
3723
3772
  any_provider_allowed: { type: "boolean" },
3724
3773
  authorized_at: {
@@ -3797,7 +3846,7 @@ var openapi_default = {
3797
3846
  },
3798
3847
  type: "object"
3799
3848
  },
3800
- errors: { nullable: true },
3849
+ errors: {},
3801
3850
  user_identifier: {
3802
3851
  properties: {
3803
3852
  api_url: { type: "string" },
@@ -3808,7 +3857,7 @@ var openapi_default = {
3808
3857
  },
3809
3858
  type: "object"
3810
3859
  },
3811
- warnings: { nullable: true }
3860
+ warnings: {}
3812
3861
  },
3813
3862
  required: [
3814
3863
  "account_type_display_name",
@@ -3966,6 +4015,7 @@ var openapi_default = {
3966
4015
  description: "Indicates if the keypad battery properties.",
3967
4016
  properties: {
3968
4017
  level: {
4018
+ format: "float",
3969
4019
  maximum: 1,
3970
4020
  minimum: 0,
3971
4021
  type: "number"
@@ -3995,7 +4045,12 @@ var openapi_default = {
3995
4045
  battery: {
3996
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.',
3997
4047
  properties: {
3998
- level: { maximum: 1, minimum: 0, type: "number" },
4048
+ level: {
4049
+ format: "float",
4050
+ maximum: 1,
4051
+ minimum: 0,
4052
+ type: "number"
4053
+ },
3999
4054
  status: {
4000
4055
  enum: ["critical", "low", "good", "full"],
4001
4056
  type: "string"
@@ -4006,6 +4061,7 @@ var openapi_default = {
4006
4061
  },
4007
4062
  battery_level: {
4008
4063
  description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
4064
+ format: "float",
4009
4065
  maximum: 1,
4010
4066
  minimum: 0,
4011
4067
  type: "number"
@@ -4035,8 +4091,9 @@ var openapi_default = {
4035
4091
  model: {
4036
4092
  properties: {
4037
4093
  accessory_keypad_supported: {
4038
- description: "\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ",
4039
- type: "boolean"
4094
+ deprecated: true,
4095
+ type: "boolean",
4096
+ "x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
4040
4097
  },
4041
4098
  can_connect_accessory_keypad: {
4042
4099
  description: "Indicates whether the device can connect a accessory keypad.",
@@ -4070,11 +4127,14 @@ var openapi_default = {
4070
4127
  type: "object"
4071
4128
  },
4072
4129
  name: {
4073
- description: "\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ",
4074
- type: "string"
4130
+ deprecated: true,
4131
+ description: "Name of the device.",
4132
+ type: "string",
4133
+ "x-deprecated": "use device.display_name instead"
4075
4134
  },
4076
4135
  noise_level_decibels: {
4077
4136
  description: "Indicates current noise level in decibels, if the device supports noise detection.",
4137
+ format: "float",
4078
4138
  type: "number"
4079
4139
  },
4080
4140
  offline_access_codes_enabled: {
@@ -4094,12 +4154,14 @@ var openapi_default = {
4094
4154
  type: "string"
4095
4155
  },
4096
4156
  supports_accessory_keypad: {
4097
- description: "\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ",
4098
- type: "boolean"
4157
+ deprecated: true,
4158
+ type: "boolean",
4159
+ "x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
4099
4160
  },
4100
4161
  supports_offline_access_codes: {
4101
- description: "\n ---\n deprecated: use offline_access_codes_enabled\n ---\n ",
4102
- type: "boolean"
4162
+ deprecated: true,
4163
+ type: "boolean",
4164
+ "x-deprecated": "use offline_access_codes_enabled"
4103
4165
  }
4104
4166
  },
4105
4167
  required: ["online", "name", "appearance", "model"],
@@ -4153,11 +4215,14 @@ var openapi_default = {
4153
4215
  avigilon_alta_metadata: {
4154
4216
  properties: {
4155
4217
  entry_name: { type: "string" },
4156
- entry_relays_total_count: { type: "number" },
4218
+ entry_relays_total_count: {
4219
+ format: "float",
4220
+ type: "number"
4221
+ },
4157
4222
  org_name: { type: "string" },
4158
- site_id: { type: "number" },
4223
+ site_id: { format: "float", type: "number" },
4159
4224
  site_name: { type: "string" },
4160
- zone_id: { type: "number" },
4225
+ zone_id: { format: "float", type: "number" },
4161
4226
  zone_name: { type: "string" }
4162
4227
  },
4163
4228
  required: [
@@ -4187,8 +4252,8 @@ var openapi_default = {
4187
4252
  },
4188
4253
  dormakaba_oracode_metadata: {
4189
4254
  properties: {
4190
- device_id: { type: "number" },
4191
- door_id: { type: "number" },
4255
+ device_id: { format: "float", type: "number" },
4256
+ door_id: { format: "float", type: "number" },
4192
4257
  door_is_wireless: { type: "boolean" },
4193
4258
  door_name: { type: "string" },
4194
4259
  iana_timezone: { type: "string" },
@@ -4202,6 +4267,7 @@ var openapi_default = {
4202
4267
  type: "string"
4203
4268
  },
4204
4269
  ext_dormakaba_oracode_user_level_prefix: {
4270
+ format: "float",
4205
4271
  type: "number"
4206
4272
  },
4207
4273
  is_24_hour: { type: "boolean" },
@@ -4209,7 +4275,7 @@ var openapi_default = {
4209
4275
  is_master: { type: "boolean" },
4210
4276
  is_one_shot: { type: "boolean" },
4211
4277
  name: { type: "string" },
4212
- prefix: { type: "number" }
4278
+ prefix: { format: "float", type: "number" }
4213
4279
  },
4214
4280
  required: [
4215
4281
  "name",
@@ -4227,7 +4293,7 @@ var openapi_default = {
4227
4293
  },
4228
4294
  type: "array"
4229
4295
  },
4230
- site_id: { type: "number" },
4296
+ site_id: { format: "float", type: "number" },
4231
4297
  site_name: { type: "string" }
4232
4298
  },
4233
4299
  required: [
@@ -4249,9 +4315,12 @@ var openapi_default = {
4249
4315
  },
4250
4316
  four_suites_metadata: {
4251
4317
  properties: {
4252
- device_id: { type: "number" },
4318
+ device_id: { format: "float", type: "number" },
4253
4319
  device_name: { type: "string" },
4254
- reclose_delay_in_seconds: { type: "number" }
4320
+ reclose_delay_in_seconds: {
4321
+ format: "float",
4322
+ type: "number"
4323
+ }
4255
4324
  },
4256
4325
  required: [
4257
4326
  "device_id",
@@ -4335,7 +4404,7 @@ var openapi_default = {
4335
4404
  accelerometer_z: {
4336
4405
  properties: {
4337
4406
  time: { type: "string" },
4338
- value: { type: "number" }
4407
+ value: { format: "float", type: "number" }
4339
4408
  },
4340
4409
  required: ["time", "value"],
4341
4410
  type: "object"
@@ -4343,7 +4412,7 @@ var openapi_default = {
4343
4412
  humidity: {
4344
4413
  properties: {
4345
4414
  time: { type: "string" },
4346
- value: { type: "number" }
4415
+ value: { format: "float", type: "number" }
4347
4416
  },
4348
4417
  required: ["time", "value"],
4349
4418
  type: "object"
@@ -4351,7 +4420,7 @@ var openapi_default = {
4351
4420
  pressure: {
4352
4421
  properties: {
4353
4422
  time: { type: "string" },
4354
- value: { type: "number" }
4423
+ value: { format: "float", type: "number" }
4355
4424
  },
4356
4425
  required: ["time", "value"],
4357
4426
  type: "object"
@@ -4359,7 +4428,7 @@ var openapi_default = {
4359
4428
  sound: {
4360
4429
  properties: {
4361
4430
  time: { type: "string" },
4362
- value: { type: "number" }
4431
+ value: { format: "float", type: "number" }
4363
4432
  },
4364
4433
  required: ["time", "value"],
4365
4434
  type: "object"
@@ -4367,7 +4436,7 @@ var openapi_default = {
4367
4436
  temperature: {
4368
4437
  properties: {
4369
4438
  time: { type: "string" },
4370
- value: { type: "number" }
4439
+ value: { format: "float", type: "number" }
4371
4440
  },
4372
4441
  required: ["time", "value"],
4373
4442
  type: "object"
@@ -4411,8 +4480,11 @@ var openapi_default = {
4411
4480
  type: "string"
4412
4481
  },
4413
4482
  device_name: { type: "string" },
4414
- noise_level_decibel: { type: "number" },
4415
- noise_level_nrs: { type: "number" }
4483
+ noise_level_decibel: {
4484
+ format: "float",
4485
+ type: "number"
4486
+ },
4487
+ noise_level_nrs: { format: "float", type: "number" }
4416
4488
  },
4417
4489
  required: [
4418
4490
  "device_model",
@@ -4455,6 +4527,7 @@ var openapi_default = {
4455
4527
  schlage_metadata: {
4456
4528
  properties: {
4457
4529
  access_code_length: {
4530
+ format: "float",
4458
4531
  nullable: true,
4459
4532
  type: "number"
4460
4533
  },
@@ -4471,7 +4544,7 @@ var openapi_default = {
4471
4544
  },
4472
4545
  seam_bridge_metadata: {
4473
4546
  properties: {
4474
- device_num: { type: "number" },
4547
+ device_num: { format: "float", type: "number" },
4475
4548
  name: { type: "string" },
4476
4549
  unlock_method: {
4477
4550
  enum: ["bridge", "doorking"],
@@ -4493,12 +4566,12 @@ var openapi_default = {
4493
4566
  },
4494
4567
  tedee_metadata: {
4495
4568
  properties: {
4496
- bridge_id: { type: "number" },
4569
+ bridge_id: { format: "float", type: "number" },
4497
4570
  bridge_name: { type: "string" },
4498
- device_id: { type: "number" },
4571
+ device_id: { format: "float", type: "number" },
4499
4572
  device_model: { type: "string" },
4500
4573
  device_name: { type: "string" },
4501
- keypad_id: { type: "number" },
4574
+ keypad_id: { format: "float", type: "number" },
4502
4575
  serial_number: { type: "string" }
4503
4576
  },
4504
4577
  required: [
@@ -4515,14 +4588,14 @@ var openapi_default = {
4515
4588
  properties: {
4516
4589
  feature_value: { type: "string" },
4517
4590
  lock_alias: { type: "string" },
4518
- lock_id: { type: "number" }
4591
+ lock_id: { format: "float", type: "number" }
4519
4592
  },
4520
4593
  required: ["lock_id", "lock_alias", "feature_value"],
4521
4594
  type: "object"
4522
4595
  },
4523
4596
  two_n_metadata: {
4524
4597
  properties: {
4525
- device_id: { type: "number" },
4598
+ device_id: { format: "float", type: "number" },
4526
4599
  device_name: { type: "string" }
4527
4600
  },
4528
4601
  required: ["device_id", "device_name"],
@@ -4534,7 +4607,10 @@ var openapi_default = {
4534
4607
  device_info_model: { type: "string" },
4535
4608
  device_name: { type: "string" },
4536
4609
  keypad_uuid: { type: "string" },
4537
- locker_status_hardlock: { type: "number" },
4610
+ locker_status_hardlock: {
4611
+ format: "float",
4612
+ type: "number"
4613
+ },
4538
4614
  product_model: { type: "string" },
4539
4615
  product_name: { type: "string" },
4540
4616
  product_type: { type: "string" }
@@ -4559,7 +4635,7 @@ var openapi_default = {
4559
4635
  {
4560
4636
  properties: {
4561
4637
  _experimental_supported_code_from_access_codes_lengths: {
4562
- items: { type: "number" },
4638
+ items: { format: "float", type: "number" },
4563
4639
  type: "array"
4564
4640
  },
4565
4641
  code_constraints: {
@@ -4591,8 +4667,8 @@ var openapi_default = {
4591
4667
  enum: ["name_length", "name_must_be_unique"],
4592
4668
  type: "string"
4593
4669
  },
4594
- max_length: { type: "number" },
4595
- min_length: { type: "number" }
4670
+ max_length: { format: "float", type: "number" },
4671
+ min_length: { format: "float", type: "number" }
4596
4672
  },
4597
4673
  required: ["constraint_type"],
4598
4674
  type: "object"
@@ -4604,14 +4680,19 @@ var openapi_default = {
4604
4680
  door_open: { type: "boolean" },
4605
4681
  has_native_entry_events: { type: "boolean" },
4606
4682
  keypad_battery: {
4607
- properties: { level: { type: "number" } },
4683
+ properties: {
4684
+ level: { format: "float", type: "number" }
4685
+ },
4608
4686
  required: ["level"],
4609
4687
  type: "object"
4610
4688
  },
4611
4689
  locked: { type: "boolean" },
4612
- max_active_codes_supported: { type: "number" },
4690
+ max_active_codes_supported: {
4691
+ format: "float",
4692
+ type: "number"
4693
+ },
4613
4694
  supported_code_lengths: {
4614
- items: { type: "number" },
4695
+ items: { format: "float", type: "number" },
4615
4696
  type: "array"
4616
4697
  },
4617
4698
  supports_backup_access_code_pool: { type: "boolean" }
@@ -4630,19 +4711,30 @@ var openapi_default = {
4630
4711
  format: "uuid",
4631
4712
  type: "string"
4632
4713
  },
4633
- cooling_set_point_celsius: { type: "number" },
4634
- cooling_set_point_fahrenheit: { type: "number" },
4714
+ cooling_set_point_celsius: {
4715
+ format: "float",
4716
+ type: "number"
4717
+ },
4718
+ cooling_set_point_fahrenheit: {
4719
+ format: "float",
4720
+ type: "number"
4721
+ },
4635
4722
  created_at: {
4636
4723
  format: "date-time",
4637
4724
  type: "string"
4638
4725
  },
4639
4726
  device_id: { format: "uuid", type: "string" },
4640
4727
  errors: {
4641
- 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.',
4642
- nullable: true
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"
4643
4737
  },
4644
- heating_set_point_celsius: { type: "number" },
4645
- heating_set_point_fahrenheit: { type: "number" },
4646
4738
  hvac_mode_setting: {
4647
4739
  enum: ["off", "heat", "cool", "heat_cool"],
4648
4740
  type: "string"
@@ -4679,10 +4771,22 @@ var openapi_default = {
4679
4771
  properties: {
4680
4772
  automatic_cooling_enabled: { type: "boolean" },
4681
4773
  automatic_heating_enabled: { type: "boolean" },
4682
- cooling_set_point_celsius: { type: "number" },
4683
- cooling_set_point_fahrenheit: { type: "number" },
4684
- heating_set_point_celsius: { type: "number" },
4685
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
4686
4790
  hvac_mode_setting: {
4687
4791
  enum: ["off", "heat", "cool", "heat_cool"],
4688
4792
  type: "string"
@@ -4701,10 +4805,22 @@ var openapi_default = {
4701
4805
  properties: {
4702
4806
  automatic_cooling_enabled: { type: "boolean" },
4703
4807
  automatic_heating_enabled: { type: "boolean" },
4704
- cooling_set_point_celsius: { type: "number" },
4705
- cooling_set_point_fahrenheit: { type: "number" },
4706
- heating_set_point_celsius: { type: "number" },
4707
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
4708
4824
  hvac_mode_setting: {
4709
4825
  enum: ["off", "heat", "cool", "heat_cool"],
4710
4826
  type: "string"
@@ -4740,25 +4856,60 @@ var openapi_default = {
4740
4856
  is_temporary_manual_override_active: {
4741
4857
  type: "boolean"
4742
4858
  },
4743
- max_cooling_set_point_celsius: { type: "number" },
4744
- max_cooling_set_point_fahrenheit: { type: "number" },
4745
- max_heating_set_point_celsius: { type: "number" },
4746
- max_heating_set_point_fahrenheit: { type: "number" },
4747
- min_cooling_set_point_celsius: { type: "number" },
4748
- min_cooling_set_point_fahrenheit: { type: "number" },
4749
- min_heating_cooling_delta_celsius: { type: "number" },
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
+ },
4750
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",
4751
4897
  type: "number"
4752
4898
  },
4753
- min_heating_set_point_celsius: { type: "number" },
4754
- min_heating_set_point_fahrenheit: { type: "number" },
4755
4899
  relative_humidity: {
4900
+ format: "float",
4756
4901
  maximum: 1,
4757
4902
  minimum: 0,
4758
4903
  type: "number"
4759
4904
  },
4760
- temperature_celsius: { type: "number" },
4761
- temperature_fahrenheit: { type: "number" }
4905
+ temperature_celsius: {
4906
+ format: "float",
4907
+ type: "number"
4908
+ },
4909
+ temperature_fahrenheit: {
4910
+ format: "float",
4911
+ type: "number"
4912
+ }
4762
4913
  },
4763
4914
  type: "object"
4764
4915
  },
@@ -4772,19 +4923,30 @@ var openapi_default = {
4772
4923
  format: "uuid",
4773
4924
  type: "string"
4774
4925
  },
4775
- cooling_set_point_celsius: { type: "number" },
4776
- cooling_set_point_fahrenheit: { type: "number" },
4926
+ cooling_set_point_celsius: {
4927
+ format: "float",
4928
+ type: "number"
4929
+ },
4930
+ cooling_set_point_fahrenheit: {
4931
+ format: "float",
4932
+ type: "number"
4933
+ },
4777
4934
  created_at: {
4778
4935
  format: "date-time",
4779
4936
  type: "string"
4780
4937
  },
4781
4938
  device_id: { format: "uuid", type: "string" },
4782
4939
  errors: {
4783
- 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.',
4784
- nullable: true
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"
4785
4949
  },
4786
- heating_set_point_celsius: { type: "number" },
4787
- heating_set_point_fahrenheit: { type: "number" },
4788
4950
  hvac_mode_setting: {
4789
4951
  enum: ["off", "heat", "cool", "heat_cool"],
4790
4952
  type: "string"
@@ -4821,10 +4983,22 @@ var openapi_default = {
4821
4983
  properties: {
4822
4984
  automatic_cooling_enabled: { type: "boolean" },
4823
4985
  automatic_heating_enabled: { type: "boolean" },
4824
- cooling_set_point_celsius: { type: "number" },
4825
- cooling_set_point_fahrenheit: { type: "number" },
4826
- heating_set_point_celsius: { type: "number" },
4827
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
4828
5002
  hvac_mode_setting: {
4829
5003
  enum: ["off", "heat", "cool", "heat_cool"],
4830
5004
  type: "string"
@@ -4843,10 +5017,22 @@ var openapi_default = {
4843
5017
  properties: {
4844
5018
  automatic_cooling_enabled: { type: "boolean" },
4845
5019
  automatic_heating_enabled: { type: "boolean" },
4846
- cooling_set_point_celsius: { type: "number" },
4847
- cooling_set_point_fahrenheit: { type: "number" },
4848
- heating_set_point_celsius: { type: "number" },
4849
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
4850
5036
  hvac_mode_setting: {
4851
5037
  enum: ["off", "heat", "cool", "heat_cool"],
4852
5038
  type: "string"
@@ -4882,17 +5068,36 @@ var openapi_default = {
4882
5068
  is_temporary_manual_override_active: {
4883
5069
  type: "boolean"
4884
5070
  },
4885
- max_heating_set_point_celsius: { type: "number" },
4886
- max_heating_set_point_fahrenheit: { type: "number" },
4887
- min_heating_set_point_celsius: { type: "number" },
4888
- min_heating_set_point_fahrenheit: { type: "number" },
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
+ },
4889
5087
  relative_humidity: {
5088
+ format: "float",
4890
5089
  maximum: 1,
4891
5090
  minimum: 0,
4892
5091
  type: "number"
4893
5092
  },
4894
- temperature_celsius: { type: "number" },
4895
- temperature_fahrenheit: { type: "number" }
5093
+ temperature_celsius: {
5094
+ format: "float",
5095
+ type: "number"
5096
+ },
5097
+ temperature_fahrenheit: {
5098
+ format: "float",
5099
+ type: "number"
5100
+ }
4896
5101
  },
4897
5102
  type: "object"
4898
5103
  },
@@ -4906,19 +5111,30 @@ var openapi_default = {
4906
5111
  format: "uuid",
4907
5112
  type: "string"
4908
5113
  },
4909
- cooling_set_point_celsius: { type: "number" },
4910
- cooling_set_point_fahrenheit: { type: "number" },
5114
+ cooling_set_point_celsius: {
5115
+ format: "float",
5116
+ type: "number"
5117
+ },
5118
+ cooling_set_point_fahrenheit: {
5119
+ format: "float",
5120
+ type: "number"
5121
+ },
4911
5122
  created_at: {
4912
5123
  format: "date-time",
4913
5124
  type: "string"
4914
5125
  },
4915
5126
  device_id: { format: "uuid", type: "string" },
4916
5127
  errors: {
4917
- 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.',
4918
- nullable: true
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"
4919
5137
  },
4920
- heating_set_point_celsius: { type: "number" },
4921
- heating_set_point_fahrenheit: { type: "number" },
4922
5138
  hvac_mode_setting: {
4923
5139
  enum: ["off", "heat", "cool", "heat_cool"],
4924
5140
  type: "string"
@@ -4955,10 +5171,22 @@ var openapi_default = {
4955
5171
  properties: {
4956
5172
  automatic_cooling_enabled: { type: "boolean" },
4957
5173
  automatic_heating_enabled: { type: "boolean" },
4958
- cooling_set_point_celsius: { type: "number" },
4959
- cooling_set_point_fahrenheit: { type: "number" },
4960
- heating_set_point_celsius: { type: "number" },
4961
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
4962
5190
  hvac_mode_setting: {
4963
5191
  enum: ["off", "heat", "cool", "heat_cool"],
4964
5192
  type: "string"
@@ -4977,10 +5205,22 @@ var openapi_default = {
4977
5205
  properties: {
4978
5206
  automatic_cooling_enabled: { type: "boolean" },
4979
5207
  automatic_heating_enabled: { type: "boolean" },
4980
- cooling_set_point_celsius: { type: "number" },
4981
- cooling_set_point_fahrenheit: { type: "number" },
4982
- heating_set_point_celsius: { type: "number" },
4983
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
4984
5224
  hvac_mode_setting: {
4985
5225
  enum: ["off", "heat", "cool", "heat_cool"],
4986
5226
  type: "string"
@@ -5016,17 +5256,36 @@ var openapi_default = {
5016
5256
  is_temporary_manual_override_active: {
5017
5257
  type: "boolean"
5018
5258
  },
5019
- max_cooling_set_point_celsius: { type: "number" },
5020
- max_cooling_set_point_fahrenheit: { type: "number" },
5021
- min_cooling_set_point_celsius: { type: "number" },
5022
- min_cooling_set_point_fahrenheit: { type: "number" },
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
+ },
5023
5275
  relative_humidity: {
5276
+ format: "float",
5024
5277
  maximum: 1,
5025
5278
  minimum: 0,
5026
5279
  type: "number"
5027
5280
  },
5028
- temperature_celsius: { type: "number" },
5029
- temperature_fahrenheit: { type: "number" }
5281
+ temperature_celsius: {
5282
+ format: "float",
5283
+ type: "number"
5284
+ },
5285
+ temperature_fahrenheit: {
5286
+ format: "float",
5287
+ type: "number"
5288
+ }
5030
5289
  },
5031
5290
  type: "object"
5032
5291
  }
@@ -5196,9 +5455,9 @@ var openapi_default = {
5196
5455
  device_id: { format: "uuid", type: "string" },
5197
5456
  ends_daily_at: { type: "string" },
5198
5457
  name: { type: "string" },
5199
- noise_threshold_decibels: { type: "number" },
5458
+ noise_threshold_decibels: { format: "float", type: "number" },
5200
5459
  noise_threshold_id: { format: "uuid", type: "string" },
5201
- noise_threshold_nrs: { type: "number" },
5460
+ noise_threshold_nrs: { format: "float", type: "number" },
5202
5461
  starts_daily_at: { type: "string" }
5203
5462
  },
5204
5463
  required: [
@@ -5387,8 +5646,7 @@ var openapi_default = {
5387
5646
  type: "string"
5388
5647
  },
5389
5648
  errors: {
5390
- 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.',
5391
- 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.'
5392
5650
  },
5393
5651
  is_managed: { enum: [false], type: "boolean" },
5394
5652
  name: {
@@ -5409,8 +5667,7 @@ var openapi_default = {
5409
5667
  type: "string"
5410
5668
  },
5411
5669
  warnings: {
5412
- 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.',
5413
- 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.'
5414
5671
  }
5415
5672
  },
5416
5673
  required: [
@@ -5534,7 +5791,12 @@ var openapi_default = {
5534
5791
  battery: {
5535
5792
  description: "Indicates if the keypad battery properties.",
5536
5793
  properties: {
5537
- level: { maximum: 1, minimum: 0, type: "number" }
5794
+ level: {
5795
+ format: "float",
5796
+ maximum: 1,
5797
+ minimum: 0,
5798
+ type: "number"
5799
+ }
5538
5800
  },
5539
5801
  required: ["level"],
5540
5802
  type: "object"
@@ -5550,7 +5812,12 @@ var openapi_default = {
5550
5812
  battery: {
5551
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.',
5552
5814
  properties: {
5553
- level: { maximum: 1, minimum: 0, type: "number" },
5815
+ level: {
5816
+ format: "float",
5817
+ maximum: 1,
5818
+ minimum: 0,
5819
+ type: "number"
5820
+ },
5554
5821
  status: {
5555
5822
  enum: ["critical", "low", "good", "full"],
5556
5823
  type: "string"
@@ -5561,6 +5828,7 @@ var openapi_default = {
5561
5828
  },
5562
5829
  battery_level: {
5563
5830
  description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
5831
+ format: "float",
5564
5832
  maximum: 1,
5565
5833
  minimum: 0,
5566
5834
  type: "number"
@@ -5581,8 +5849,9 @@ var openapi_default = {
5581
5849
  model: {
5582
5850
  properties: {
5583
5851
  accessory_keypad_supported: {
5584
- description: "\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ",
5585
- type: "boolean"
5852
+ deprecated: true,
5853
+ type: "boolean",
5854
+ "x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
5586
5855
  },
5587
5856
  can_connect_accessory_keypad: {
5588
5857
  description: "Indicates whether the device can connect a accessory keypad.",
@@ -5613,8 +5882,10 @@ var openapi_default = {
5613
5882
  type: "object"
5614
5883
  },
5615
5884
  name: {
5616
- description: "\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ",
5617
- type: "string"
5885
+ deprecated: true,
5886
+ description: "Name of the device.",
5887
+ type: "string",
5888
+ "x-deprecated": "use device.display_name instead"
5618
5889
  },
5619
5890
  offline_access_codes_enabled: {
5620
5891
  description: "Indicates whether it is currently possible to use offline access codes for the device.",
@@ -5701,9 +5972,10 @@ var openapi_default = {
5701
5972
  properties: {
5702
5973
  company_name: { type: "string" },
5703
5974
  connect_partner_name: {
5704
- description: "\n ---\n deprecated: use company_name\n ---\n ",
5975
+ deprecated: true,
5705
5976
  nullable: true,
5706
- type: "string"
5977
+ type: "string",
5978
+ "x-deprecated": "use company_name"
5707
5979
  },
5708
5980
  is_sandbox: { type: "boolean" },
5709
5981
  name: { type: "string" },
@@ -5889,7 +6161,7 @@ var openapi_default = {
5889
6161
  },
5890
6162
  name: { type: "string" },
5891
6163
  prefer_native_scheduling: { type: "boolean" },
5892
- preferred_code_length: { type: "number" },
6164
+ preferred_code_length: { format: "float", type: "number" },
5893
6165
  starts_at: { type: "string" },
5894
6166
  use_backup_access_code_pool: { type: "boolean" },
5895
6167
  use_offline_access_code: { type: "boolean" }
@@ -5972,7 +6244,7 @@ var openapi_default = {
5972
6244
  },
5973
6245
  name: { type: "string" },
5974
6246
  prefer_native_scheduling: { type: "boolean" },
5975
- preferred_code_length: { type: "number" },
6247
+ preferred_code_length: { format: "float", type: "number" },
5976
6248
  starts_at: { type: "string" },
5977
6249
  use_backup_access_code_pool: { type: "boolean" },
5978
6250
  use_offline_access_code: { type: "boolean" }
@@ -7427,8 +7699,9 @@ var openapi_default = {
7427
7699
  type: "string"
7428
7700
  },
7429
7701
  is_override_key: {
7430
- description: "\n ---\n deprecated: use override.\n ---\n ",
7431
- type: "boolean"
7702
+ deprecated: true,
7703
+ type: "boolean",
7704
+ "x-deprecated": "use override."
7432
7705
  },
7433
7706
  joiner_acs_credential_ids: {
7434
7707
  items: { format: "uuid", type: "string" },
@@ -8355,13 +8628,14 @@ var openapi_default = {
8355
8628
  },
8356
8629
  acs_system_id: { format: "uuid", type: "string" },
8357
8630
  email: {
8358
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
8631
+ deprecated: true,
8359
8632
  format: "email",
8360
- type: "string"
8633
+ type: "string",
8634
+ "x-deprecated": "use email_address."
8361
8635
  },
8362
8636
  email_address: { format: "email", type: "string" },
8363
8637
  full_name: { type: "string" },
8364
- phone_number: { nullable: true, type: "string" },
8638
+ phone_number: { type: "string" },
8365
8639
  user_identity_id: { format: "uuid", type: "string" }
8366
8640
  },
8367
8641
  required: ["acs_system_id"],
@@ -8498,10 +8772,7 @@ var openapi_default = {
8498
8772
  acs_system_id: { format: "uuid", type: "string" },
8499
8773
  user_identity_email_address: { type: "string" },
8500
8774
  user_identity_id: { format: "uuid", type: "string" },
8501
- user_identity_phone_number: {
8502
- nullable: true,
8503
- type: "string"
8504
- }
8775
+ user_identity_phone_number: { type: "string" }
8505
8776
  },
8506
8777
  type: "object"
8507
8778
  }
@@ -8777,14 +9048,15 @@ var openapi_default = {
8777
9048
  },
8778
9049
  acs_user_id: { format: "uuid", type: "string" },
8779
9050
  email: {
8780
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
9051
+ deprecated: true,
8781
9052
  format: "email",
8782
- type: "string"
9053
+ type: "string",
9054
+ "x-deprecated": "use email_address."
8783
9055
  },
8784
9056
  email_address: { format: "email", type: "string" },
8785
9057
  full_name: { type: "string" },
8786
9058
  hid_acs_system_id: { format: "uuid", type: "string" },
8787
- phone_number: { nullable: true, type: "string" }
9059
+ phone_number: { type: "string" }
8788
9060
  },
8789
9061
  required: ["acs_user_id"],
8790
9062
  type: "object"
@@ -8834,14 +9106,15 @@ var openapi_default = {
8834
9106
  },
8835
9107
  acs_user_id: { format: "uuid", type: "string" },
8836
9108
  email: {
8837
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
9109
+ deprecated: true,
8838
9110
  format: "email",
8839
- type: "string"
9111
+ type: "string",
9112
+ "x-deprecated": "use email_address."
8840
9113
  },
8841
9114
  email_address: { format: "email", type: "string" },
8842
9115
  full_name: { type: "string" },
8843
9116
  hid_acs_system_id: { format: "uuid", type: "string" },
8844
- phone_number: { nullable: true, type: "string" }
9117
+ phone_number: { type: "string" }
8845
9118
  },
8846
9119
  required: ["acs_user_id"],
8847
9120
  type: "object"
@@ -8995,11 +9268,7 @@ var openapi_default = {
8995
9268
  items: { type: "string" },
8996
9269
  type: "array"
8997
9270
  },
8998
- expires_at: {
8999
- format: "date-time",
9000
- nullable: true,
9001
- type: "string"
9002
- },
9271
+ expires_at: { format: "date-time", type: "string" },
9003
9272
  user_identifier_key: { minLength: 1, type: "string" },
9004
9273
  user_identity_ids: {
9005
9274
  items: { type: "string" },
@@ -9053,11 +9322,7 @@ var openapi_default = {
9053
9322
  items: { type: "string" },
9054
9323
  type: "array"
9055
9324
  },
9056
- expires_at: {
9057
- format: "date-time",
9058
- nullable: true,
9059
- type: "string"
9060
- },
9325
+ expires_at: { format: "date-time", type: "string" },
9061
9326
  user_identifier_key: { minLength: 1, type: "string" },
9062
9327
  user_identity_ids: {
9063
9328
  items: { type: "string" },
@@ -9204,11 +9469,7 @@ var openapi_default = {
9204
9469
  items: { type: "string" },
9205
9470
  type: "array"
9206
9471
  },
9207
- expires_at: {
9208
- format: "date-time",
9209
- nullable: true,
9210
- type: "string"
9211
- },
9472
+ expires_at: { format: "date-time", type: "string" },
9212
9473
  user_identifier_key: { minLength: 1, type: "string" },
9213
9474
  user_identity_ids: {
9214
9475
  items: { type: "string" },
@@ -9262,11 +9523,7 @@ var openapi_default = {
9262
9523
  items: { type: "string" },
9263
9524
  type: "array"
9264
9525
  },
9265
- expires_at: {
9266
- format: "date-time",
9267
- nullable: true,
9268
- type: "string"
9269
- },
9526
+ expires_at: { format: "date-time", type: "string" },
9270
9527
  user_identifier_key: { minLength: 1, type: "string" },
9271
9528
  user_identity_ids: {
9272
9529
  items: { type: "string" },
@@ -9582,8 +9839,7 @@ var openapi_default = {
9582
9839
  nullable: true,
9583
9840
  oneOf: [
9584
9841
  { maxLength: 500, type: "string" },
9585
- { type: "boolean" },
9586
- { format: "null", nullable: true, type: "string" }
9842
+ { type: "boolean" }
9587
9843
  ]
9588
9844
  },
9589
9845
  type: "object"
@@ -9754,7 +10010,7 @@ var openapi_default = {
9754
10010
  description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
9755
10011
  type: "object"
9756
10012
  },
9757
- limit: { default: 500, nullable: true, type: "number" },
10013
+ limit: { default: 500, format: "float", type: "number" },
9758
10014
  user_identifier_key: { type: "string" }
9759
10015
  },
9760
10016
  type: "object"
@@ -9970,8 +10226,7 @@ var openapi_default = {
9970
10226
  nullable: true,
9971
10227
  oneOf: [
9972
10228
  { maxLength: 500, type: "string" },
9973
- { type: "boolean" },
9974
- { format: "null", nullable: true, type: "string" }
10229
+ { type: "boolean" }
9975
10230
  ]
9976
10231
  },
9977
10232
  type: "object"
@@ -10123,11 +10378,7 @@ var openapi_default = {
10123
10378
  items: { format: "uuid", type: "string" },
10124
10379
  type: "array"
10125
10380
  },
10126
- created_before: {
10127
- format: "date-time",
10128
- nullable: true,
10129
- type: "string"
10130
- },
10381
+ created_before: { format: "date-time", type: "string" },
10131
10382
  custom_metadata_has: {
10132
10383
  additionalProperties: {
10133
10384
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -10270,7 +10521,7 @@ var openapi_default = {
10270
10521
  },
10271
10522
  type: "array"
10272
10523
  },
10273
- limit: { default: 500, nullable: true, type: "number" },
10524
+ limit: { default: 500, format: "float", type: "number" },
10274
10525
  manufacturer: {
10275
10526
  enum: [
10276
10527
  "akuvox",
@@ -10600,11 +10851,7 @@ var openapi_default = {
10600
10851
  items: { format: "uuid", type: "string" },
10601
10852
  type: "array"
10602
10853
  },
10603
- created_before: {
10604
- format: "date-time",
10605
- nullable: true,
10606
- type: "string"
10607
- },
10854
+ created_before: { format: "date-time", type: "string" },
10608
10855
  custom_metadata_has: {
10609
10856
  additionalProperties: {
10610
10857
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -10747,7 +10994,7 @@ var openapi_default = {
10747
10994
  },
10748
10995
  type: "array"
10749
10996
  },
10750
- limit: { default: 500, nullable: true, type: "number" },
10997
+ limit: { default: 500, format: "float", type: "number" },
10751
10998
  manufacturer: {
10752
10999
  enum: [
10753
11000
  "akuvox",
@@ -10926,8 +11173,7 @@ var openapi_default = {
10926
11173
  nullable: true,
10927
11174
  oneOf: [
10928
11175
  { maxLength: 500, type: "string" },
10929
- { type: "boolean" },
10930
- { format: "null", nullable: true, type: "string" }
11176
+ { type: "boolean" }
10931
11177
  ]
10932
11178
  },
10933
11179
  type: "object"
@@ -10983,8 +11229,7 @@ var openapi_default = {
10983
11229
  nullable: true,
10984
11230
  oneOf: [
10985
11231
  { maxLength: 500, type: "string" },
10986
- { type: "boolean" },
10987
- { format: "null", nullable: true, type: "string" }
11232
+ { type: "boolean" }
10988
11233
  ]
10989
11234
  },
10990
11235
  type: "object"
@@ -11241,7 +11486,7 @@ var openapi_default = {
11241
11486
  },
11242
11487
  type: "array"
11243
11488
  },
11244
- limit: { default: 500, nullable: true, type: "number" },
11489
+ limit: { default: 500, format: "float", type: "number" },
11245
11490
  since: { type: "string" }
11246
11491
  },
11247
11492
  type: "object"
@@ -11351,11 +11596,7 @@ var openapi_default = {
11351
11596
  items: { format: "uuid", type: "string" },
11352
11597
  type: "array"
11353
11598
  },
11354
- created_before: {
11355
- format: "date-time",
11356
- nullable: true,
11357
- type: "string"
11358
- },
11599
+ created_before: { format: "date-time", type: "string" },
11359
11600
  custom_metadata_has: {
11360
11601
  additionalProperties: {
11361
11602
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -11498,7 +11739,7 @@ var openapi_default = {
11498
11739
  },
11499
11740
  type: "array"
11500
11741
  },
11501
- limit: { default: 500, nullable: true, type: "number" },
11742
+ limit: { default: 500, format: "float", type: "number" },
11502
11743
  manufacturer: {
11503
11744
  enum: [
11504
11745
  "akuvox",
@@ -11784,8 +12025,8 @@ var openapi_default = {
11784
12025
  device_id: { format: "uuid", type: "string" },
11785
12026
  ends_daily_at: { type: "string" },
11786
12027
  name: { type: "string" },
11787
- noise_threshold_decibels: { type: "number" },
11788
- noise_threshold_nrs: { type: "number" },
12028
+ noise_threshold_decibels: { format: "float", type: "number" },
12029
+ noise_threshold_nrs: { format: "float", type: "number" },
11789
12030
  starts_daily_at: { type: "string" },
11790
12031
  sync: { default: false, type: "boolean" }
11791
12032
  },
@@ -11993,9 +12234,9 @@ var openapi_default = {
11993
12234
  device_id: { format: "uuid", type: "string" },
11994
12235
  ends_daily_at: { type: "string" },
11995
12236
  name: { type: "string" },
11996
- noise_threshold_decibels: { type: "number" },
12237
+ noise_threshold_decibels: { format: "float", type: "number" },
11997
12238
  noise_threshold_id: { format: "uuid", type: "string" },
11998
- noise_threshold_nrs: { type: "number" },
12239
+ noise_threshold_nrs: { format: "float", type: "number" },
11999
12240
  starts_daily_at: { type: "string" },
12000
12241
  sync: { default: false, type: "boolean" }
12001
12242
  },
@@ -12045,9 +12286,9 @@ var openapi_default = {
12045
12286
  device_id: { format: "uuid", type: "string" },
12046
12287
  ends_daily_at: { type: "string" },
12047
12288
  name: { type: "string" },
12048
- noise_threshold_decibels: { type: "number" },
12289
+ noise_threshold_decibels: { format: "float", type: "number" },
12049
12290
  noise_threshold_id: { format: "uuid", type: "string" },
12050
- noise_threshold_nrs: { type: "number" },
12291
+ noise_threshold_nrs: { format: "float", type: "number" },
12051
12292
  starts_daily_at: { type: "string" },
12052
12293
  sync: { default: false, type: "boolean" }
12053
12294
  },
@@ -12098,9 +12339,9 @@ var openapi_default = {
12098
12339
  device_id: { format: "uuid", type: "string" },
12099
12340
  ends_daily_at: { type: "string" },
12100
12341
  name: { type: "string" },
12101
- noise_threshold_decibels: { type: "number" },
12342
+ noise_threshold_decibels: { format: "float", type: "number" },
12102
12343
  noise_threshold_id: { format: "uuid", type: "string" },
12103
- noise_threshold_nrs: { type: "number" },
12344
+ noise_threshold_nrs: { format: "float", type: "number" },
12104
12345
  starts_daily_at: { type: "string" },
12105
12346
  sync: { default: false, type: "boolean" }
12106
12347
  },
@@ -12289,7 +12530,11 @@ var openapi_default = {
12289
12530
  hce_capability: { default: false, type: "boolean" },
12290
12531
  nfc_capability: { default: false, type: "boolean" },
12291
12532
  seos_applet_version: { default: "1.0.0", type: "string" },
12292
- seos_tsm_endpoint_id: { default: 1, type: "number" }
12533
+ seos_tsm_endpoint_id: {
12534
+ default: 1,
12535
+ format: "float",
12536
+ type: "number"
12537
+ }
12293
12538
  },
12294
12539
  type: "object"
12295
12540
  },
@@ -12363,11 +12608,23 @@ var openapi_default = {
12363
12608
  properties: {
12364
12609
  automatic_cooling_enabled: { type: "boolean" },
12365
12610
  automatic_heating_enabled: { type: "boolean" },
12366
- cooling_set_point_celsius: { type: "number" },
12367
- cooling_set_point_fahrenheit: { type: "number" },
12611
+ cooling_set_point_celsius: {
12612
+ format: "float",
12613
+ type: "number"
12614
+ },
12615
+ cooling_set_point_fahrenheit: {
12616
+ format: "float",
12617
+ type: "number"
12618
+ },
12368
12619
  device_id: { type: "string" },
12369
- heating_set_point_celsius: { type: "number" },
12370
- heating_set_point_fahrenheit: { type: "number" },
12620
+ heating_set_point_celsius: {
12621
+ format: "float",
12622
+ type: "number"
12623
+ },
12624
+ heating_set_point_fahrenheit: {
12625
+ format: "float",
12626
+ type: "number"
12627
+ },
12371
12628
  hvac_mode_setting: {
12372
12629
  enum: ["off", "heat", "cool", "heat_cool"],
12373
12630
  type: "string"
@@ -12638,10 +12895,22 @@ var openapi_default = {
12638
12895
  format: "uuid",
12639
12896
  type: "string"
12640
12897
  },
12641
- cooling_set_point_celsius: { type: "number" },
12642
- cooling_set_point_fahrenheit: { type: "number" },
12643
- heating_set_point_celsius: { type: "number" },
12644
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
12645
12914
  hvac_mode_setting: {
12646
12915
  enum: ["off", "heat", "cool", "heat_cool"],
12647
12916
  type: "string"
@@ -12706,10 +12975,22 @@ var openapi_default = {
12706
12975
  format: "uuid",
12707
12976
  type: "string"
12708
12977
  },
12709
- cooling_set_point_celsius: { type: "number" },
12710
- cooling_set_point_fahrenheit: { type: "number" },
12711
- heating_set_point_celsius: { type: "number" },
12712
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
12713
12994
  hvac_mode_setting: {
12714
12995
  enum: ["off", "heat", "cool", "heat_cool"],
12715
12996
  type: "string"
@@ -12775,10 +13056,22 @@ var openapi_default = {
12775
13056
  format: "uuid",
12776
13057
  type: "string"
12777
13058
  },
12778
- cooling_set_point_celsius: { type: "number" },
12779
- cooling_set_point_fahrenheit: { type: "number" },
12780
- heating_set_point_celsius: { type: "number" },
12781
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
12782
13075
  hvac_mode_setting: {
12783
13076
  enum: ["off", "heat", "cool", "heat_cool"],
12784
13077
  type: "string"
@@ -12839,8 +13132,14 @@ var openapi_default = {
12839
13132
  "application/json": {
12840
13133
  schema: {
12841
13134
  properties: {
12842
- cooling_set_point_celsius: { type: "number" },
12843
- cooling_set_point_fahrenheit: { type: "number" },
13135
+ cooling_set_point_celsius: {
13136
+ format: "float",
13137
+ type: "number"
13138
+ },
13139
+ cooling_set_point_fahrenheit: {
13140
+ format: "float",
13141
+ type: "number"
13142
+ },
12844
13143
  device_id: { format: "uuid", type: "string" },
12845
13144
  sync: { default: false, type: "boolean" }
12846
13145
  },
@@ -12941,8 +13240,14 @@ var openapi_default = {
12941
13240
  schema: {
12942
13241
  properties: {
12943
13242
  device_id: { format: "uuid", type: "string" },
12944
- heating_set_point_celsius: { type: "number" },
12945
- heating_set_point_fahrenheit: { type: "number" },
13243
+ heating_set_point_celsius: {
13244
+ format: "float",
13245
+ type: "number"
13246
+ },
13247
+ heating_set_point_fahrenheit: {
13248
+ format: "float",
13249
+ type: "number"
13250
+ },
12946
13251
  sync: { default: false, type: "boolean" }
12947
13252
  },
12948
13253
  required: ["device_id"],
@@ -12993,11 +13298,23 @@ var openapi_default = {
12993
13298
  "application/json": {
12994
13299
  schema: {
12995
13300
  properties: {
12996
- cooling_set_point_celsius: { type: "number" },
12997
- cooling_set_point_fahrenheit: { type: "number" },
13301
+ cooling_set_point_celsius: {
13302
+ format: "float",
13303
+ type: "number"
13304
+ },
13305
+ cooling_set_point_fahrenheit: {
13306
+ format: "float",
13307
+ type: "number"
13308
+ },
12998
13309
  device_id: { format: "uuid", type: "string" },
12999
- heating_set_point_celsius: { type: "number" },
13000
- heating_set_point_fahrenheit: { type: "number" },
13310
+ heating_set_point_celsius: {
13311
+ format: "float",
13312
+ type: "number"
13313
+ },
13314
+ heating_set_point_fahrenheit: {
13315
+ format: "float",
13316
+ type: "number"
13317
+ },
13001
13318
  sync: { default: false, type: "boolean" }
13002
13319
  },
13003
13320
  required: ["device_id"],
@@ -13058,11 +13375,7 @@ var openapi_default = {
13058
13375
  items: { format: "uuid", type: "string" },
13059
13376
  type: "array"
13060
13377
  },
13061
- created_before: {
13062
- format: "date-time",
13063
- nullable: true,
13064
- type: "string"
13065
- },
13378
+ created_before: { format: "date-time", type: "string" },
13066
13379
  custom_metadata_has: {
13067
13380
  additionalProperties: {
13068
13381
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -13205,7 +13518,7 @@ var openapi_default = {
13205
13518
  },
13206
13519
  type: "array"
13207
13520
  },
13208
- limit: { default: 500, nullable: true, type: "number" },
13521
+ limit: { default: 500, format: "float", type: "number" },
13209
13522
  manufacturer: {
13210
13523
  enum: [
13211
13524
  "akuvox",
@@ -13403,10 +13716,22 @@ var openapi_default = {
13403
13716
  properties: {
13404
13717
  automatic_cooling_enabled: { type: "boolean" },
13405
13718
  automatic_heating_enabled: { type: "boolean" },
13406
- cooling_set_point_celsius: { type: "number" },
13407
- cooling_set_point_fahrenheit: { type: "number" },
13408
- heating_set_point_celsius: { type: "number" },
13409
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
13410
13735
  hvac_mode_setting: {
13411
13736
  enum: ["off", "heat", "cool", "heat_cool"],
13412
13737
  type: "string"
@@ -13460,10 +13785,22 @@ var openapi_default = {
13460
13785
  properties: {
13461
13786
  automatic_cooling_enabled: { type: "boolean" },
13462
13787
  automatic_heating_enabled: { type: "boolean" },
13463
- cooling_set_point_celsius: { type: "number" },
13464
- cooling_set_point_fahrenheit: { type: "number" },
13465
- heating_set_point_celsius: { type: "number" },
13466
- heating_set_point_fahrenheit: { type: "number" },
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
+ },
13467
13804
  hvac_mode_setting: {
13468
13805
  enum: ["off", "heat", "cool", "heat_cool"],
13469
13806
  type: "string"
@@ -14147,9 +14484,10 @@ var openapi_default = {
14147
14484
  schema: {
14148
14485
  properties: {
14149
14486
  accessible_devices: {
14150
- description: "\n ---\n deprecated: use devices.\n ---\n ",
14487
+ deprecated: true,
14151
14488
  items: { $ref: "#/components/schemas/device" },
14152
- type: "array"
14489
+ type: "array",
14490
+ "x-deprecated": "use devices."
14153
14491
  },
14154
14492
  devices: {
14155
14493
  items: { $ref: "#/components/schemas/device" },
@@ -14778,9 +15116,10 @@ var openapi_default = {
14778
15116
  properties: {
14779
15117
  company_name: { type: "string" },
14780
15118
  connect_partner_name: {
14781
- description: "\n ---\n deprecated: use company_name\n ---\n ",
15119
+ deprecated: true,
14782
15120
  nullable: true,
14783
- type: "string"
15121
+ type: "string",
15122
+ "x-deprecated": "use company_name"
14784
15123
  },
14785
15124
  is_sandbox: { default: false, type: "boolean" },
14786
15125
  name: { type: "string" },