@seamapi/types 1.193.0 → 1.195.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.
Files changed (27) hide show
  1. package/dist/connect.cjs +763 -418
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1232 -5023
  4. package/lib/seam/connect/models/events/access-codes.d.ts +102 -0
  5. package/lib/seam/connect/models/events/acs/common.d.ts +3 -0
  6. package/lib/seam/connect/models/events/acs/credentials.d.ts +6 -0
  7. package/lib/seam/connect/models/events/acs/index.d.ts +9 -0
  8. package/lib/seam/connect/models/events/acs/systems.d.ts +6 -0
  9. package/lib/seam/connect/models/events/acs/users.d.ts +6 -0
  10. package/lib/seam/connect/models/events/action-attempts.d.ts +6 -0
  11. package/lib/seam/connect/models/events/client-sessions.d.ts +6 -0
  12. package/lib/seam/connect/models/events/common.d.ts +3 -0
  13. package/lib/seam/connect/models/events/common.js +6 -0
  14. package/lib/seam/connect/models/events/common.js.map +1 -1
  15. package/lib/seam/connect/models/events/connected-accounts.d.ts +42 -0
  16. package/lib/seam/connect/models/events/devices.d.ts +150 -0
  17. package/lib/seam/connect/models/events/enrollment-automations.d.ts +6 -0
  18. package/lib/seam/connect/models/events/phones.d.ts +6 -0
  19. package/lib/seam/connect/models/events/seam-event.d.ts +165 -0
  20. package/lib/seam/connect/openapi.d.ts +215 -109
  21. package/lib/seam/connect/openapi.js +680 -341
  22. package/lib/seam/connect/openapi.js.map +1 -1
  23. package/lib/seam/connect/route-types.d.ts +852 -4914
  24. package/package.json +1 -1
  25. package/src/lib/seam/connect/models/events/common.ts +6 -0
  26. package/src/lib/seam/connect/openapi.ts +683 -406
  27. package/src/lib/seam/connect/route-types.ts +857 -4919
package/dist/connect.cjs CHANGED
@@ -1555,6 +1555,12 @@ var unmanaged_device = device.pick({
1555
1555
  })
1556
1556
  }).merge(device_capability_flags2);
1557
1557
  var common_event = zod.z.object({
1558
+ event_id: zod.z.string().uuid().describe(`
1559
+ ---
1560
+ title: Event ID
1561
+ ---
1562
+ The ID of the event.
1563
+ `),
1558
1564
  workspace_id: zod.z.string().uuid().describe(`
1559
1565
  ---
1560
1566
  title: Workspace ID
@@ -2110,8 +2116,7 @@ var openapi_default = {
2110
2116
  type: "string"
2111
2117
  },
2112
2118
  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
2119
+ 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
2120
  },
2116
2121
  is_backup: {
2117
2122
  description: "Indicates whether the access code is a backup code.",
@@ -2174,8 +2179,7 @@ var openapi_default = {
2174
2179
  type: "string"
2175
2180
  },
2176
2181
  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
2182
+ 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
2183
  }
2180
2184
  },
2181
2185
  required: [
@@ -2198,18 +2202,20 @@ var openapi_default = {
2198
2202
  acs_access_group: {
2199
2203
  properties: {
2200
2204
  access_group_type: {
2201
- description: "\n ---\n deprecated: use external_type\n ---\n ",
2205
+ deprecated: true,
2202
2206
  enum: [
2203
2207
  "pti_unit",
2204
2208
  "pti_access_level",
2205
2209
  "salto_access_group",
2206
2210
  "brivo_group"
2207
2211
  ],
2208
- type: "string"
2212
+ type: "string",
2213
+ "x-deprecated": "use external_type"
2209
2214
  },
2210
2215
  access_group_type_display_name: {
2211
- description: "\n ---\n deprecated: use external_type_display_name\n ---\n ",
2212
- type: "string"
2216
+ deprecated: true,
2217
+ type: "string",
2218
+ "x-deprecated": "use external_type_display_name"
2213
2219
  },
2214
2220
  acs_access_group_id: { format: "uuid", type: "string" },
2215
2221
  acs_system_id: { format: "uuid", type: "string" },
@@ -2507,7 +2513,7 @@ var openapi_default = {
2507
2513
  image_url: { type: "string" },
2508
2514
  name: { type: "string" },
2509
2515
  system_type: {
2510
- description: "\n ---\n deprecated: use external_type\n ---\n ",
2516
+ deprecated: true,
2511
2517
  enum: [
2512
2518
  "pti_site",
2513
2519
  "alta_org",
@@ -2518,11 +2524,13 @@ var openapi_default = {
2518
2524
  "assa_abloy_credential_service",
2519
2525
  "latch_building"
2520
2526
  ],
2521
- type: "string"
2527
+ type: "string",
2528
+ "x-deprecated": "use external_type"
2522
2529
  },
2523
2530
  system_type_display_name: {
2524
- description: "\n ---\n deprecated: use external_type_display_name\n ---\n ",
2525
- type: "string"
2531
+ deprecated: true,
2532
+ type: "string",
2533
+ "x-deprecated": "use external_type_display_name"
2526
2534
  },
2527
2535
  warnings: {
2528
2536
  items: { properties: {}, type: "object" },
@@ -2558,9 +2566,10 @@ var openapi_default = {
2558
2566
  created_at: { format: "date-time", type: "string" },
2559
2567
  display_name: { type: "string" },
2560
2568
  email: {
2561
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
2569
+ deprecated: true,
2562
2570
  format: "email",
2563
- type: "string"
2571
+ type: "string",
2572
+ "x-deprecated": "use email_address."
2564
2573
  },
2565
2574
  email_address: { format: "email", type: "string" },
2566
2575
  external_type: {
@@ -2577,7 +2586,7 @@ var openapi_default = {
2577
2586
  full_name: { type: "string" },
2578
2587
  hid_acs_system_id: { format: "uuid", type: "string" },
2579
2588
  is_suspended: { type: "boolean" },
2580
- phone_number: { nullable: true, type: "string" },
2589
+ phone_number: { type: "string" },
2581
2590
  user_identity_email_address: { nullable: true, type: "string" },
2582
2591
  user_identity_full_name: { nullable: true, type: "string" },
2583
2592
  user_identity_id: { type: "string" },
@@ -2600,13 +2609,14 @@ var openapi_default = {
2600
2609
  description: "Locking door.",
2601
2610
  properties: {
2602
2611
  action_attempt_id: {
2603
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2612
+ description: "The ID of the action attempt.",
2604
2613
  format: "uuid",
2605
- type: "string"
2614
+ type: "string",
2615
+ "x-title": "Action Attempt ID"
2606
2616
  },
2607
2617
  action_type: { enum: ["LOCK_DOOR"], type: "string" },
2608
- error: { format: "null", nullable: true, type: "string" },
2609
- result: { format: "null", nullable: true, type: "string" },
2618
+ error: { nullable: true },
2619
+ result: { nullable: true },
2610
2620
  status: { enum: ["pending"], type: "string" }
2611
2621
  },
2612
2622
  required: [
@@ -2622,12 +2632,13 @@ var openapi_default = {
2622
2632
  description: "Locking door succeeded.",
2623
2633
  properties: {
2624
2634
  action_attempt_id: {
2625
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2635
+ description: "The ID of the action attempt.",
2626
2636
  format: "uuid",
2627
- type: "string"
2637
+ type: "string",
2638
+ "x-title": "Action Attempt ID"
2628
2639
  },
2629
2640
  action_type: { enum: ["LOCK_DOOR"], type: "string" },
2630
- error: { format: "null", nullable: true, type: "string" },
2641
+ error: { nullable: true },
2631
2642
  result: { properties: {}, type: "object" },
2632
2643
  status: { enum: ["success"], type: "string" }
2633
2644
  },
@@ -2644,9 +2655,10 @@ var openapi_default = {
2644
2655
  description: "Locking door failed.",
2645
2656
  properties: {
2646
2657
  action_attempt_id: {
2647
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2658
+ description: "The ID of the action attempt.",
2648
2659
  format: "uuid",
2649
- type: "string"
2660
+ type: "string",
2661
+ "x-title": "Action Attempt ID"
2650
2662
  },
2651
2663
  action_type: { enum: ["LOCK_DOOR"], type: "string" },
2652
2664
  error: {
@@ -2657,7 +2669,7 @@ var openapi_default = {
2657
2669
  required: ["type", "message"],
2658
2670
  type: "object"
2659
2671
  },
2660
- result: { format: "null", nullable: true, type: "string" },
2672
+ result: { nullable: true },
2661
2673
  status: { enum: ["error"], type: "string" }
2662
2674
  },
2663
2675
  required: [
@@ -2673,13 +2685,14 @@ var openapi_default = {
2673
2685
  description: "Unlocking door.",
2674
2686
  properties: {
2675
2687
  action_attempt_id: {
2676
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2688
+ description: "The ID of the action attempt.",
2677
2689
  format: "uuid",
2678
- type: "string"
2690
+ type: "string",
2691
+ "x-title": "Action Attempt ID"
2679
2692
  },
2680
2693
  action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
2681
- error: { format: "null", nullable: true, type: "string" },
2682
- result: { format: "null", nullable: true, type: "string" },
2694
+ error: { nullable: true },
2695
+ result: { nullable: true },
2683
2696
  status: { enum: ["pending"], type: "string" }
2684
2697
  },
2685
2698
  required: [
@@ -2695,12 +2708,13 @@ var openapi_default = {
2695
2708
  description: "Unlocking door succeeded.",
2696
2709
  properties: {
2697
2710
  action_attempt_id: {
2698
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2711
+ description: "The ID of the action attempt.",
2699
2712
  format: "uuid",
2700
- type: "string"
2713
+ type: "string",
2714
+ "x-title": "Action Attempt ID"
2701
2715
  },
2702
2716
  action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
2703
- error: { format: "null", nullable: true, type: "string" },
2717
+ error: { nullable: true },
2704
2718
  result: { properties: {}, type: "object" },
2705
2719
  status: { enum: ["success"], type: "string" }
2706
2720
  },
@@ -2717,9 +2731,10 @@ var openapi_default = {
2717
2731
  description: "Unlocking door failed.",
2718
2732
  properties: {
2719
2733
  action_attempt_id: {
2720
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2734
+ description: "The ID of the action attempt.",
2721
2735
  format: "uuid",
2722
- type: "string"
2736
+ type: "string",
2737
+ "x-title": "Action Attempt ID"
2723
2738
  },
2724
2739
  action_type: { enum: ["UNLOCK_DOOR"], type: "string" },
2725
2740
  error: {
@@ -2730,7 +2745,7 @@ var openapi_default = {
2730
2745
  required: ["type", "message"],
2731
2746
  type: "object"
2732
2747
  },
2733
- result: { format: "null", nullable: true, type: "string" },
2748
+ result: { nullable: true },
2734
2749
  status: { enum: ["error"], type: "string" }
2735
2750
  },
2736
2751
  required: [
@@ -2746,16 +2761,17 @@ var openapi_default = {
2746
2761
  description: "Resetting sandbox workspace.",
2747
2762
  properties: {
2748
2763
  action_attempt_id: {
2749
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2764
+ description: "The ID of the action attempt.",
2750
2765
  format: "uuid",
2751
- type: "string"
2766
+ type: "string",
2767
+ "x-title": "Action Attempt ID"
2752
2768
  },
2753
2769
  action_type: {
2754
2770
  enum: ["RESET_SANDBOX_WORKSPACE"],
2755
2771
  type: "string"
2756
2772
  },
2757
- error: { format: "null", nullable: true, type: "string" },
2758
- result: { format: "null", nullable: true, type: "string" },
2773
+ error: { nullable: true },
2774
+ result: { nullable: true },
2759
2775
  status: { enum: ["pending"], type: "string" }
2760
2776
  },
2761
2777
  required: [
@@ -2771,15 +2787,16 @@ var openapi_default = {
2771
2787
  description: "Resetting sandbox workspace succeeded.",
2772
2788
  properties: {
2773
2789
  action_attempt_id: {
2774
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2790
+ description: "The ID of the action attempt.",
2775
2791
  format: "uuid",
2776
- type: "string"
2792
+ type: "string",
2793
+ "x-title": "Action Attempt ID"
2777
2794
  },
2778
2795
  action_type: {
2779
2796
  enum: ["RESET_SANDBOX_WORKSPACE"],
2780
2797
  type: "string"
2781
2798
  },
2782
- error: { format: "null", nullable: true, type: "string" },
2799
+ error: { nullable: true },
2783
2800
  result: { properties: {}, type: "object" },
2784
2801
  status: { enum: ["success"], type: "string" }
2785
2802
  },
@@ -2796,9 +2813,10 @@ var openapi_default = {
2796
2813
  description: "Resetting sandbox workspace failed.",
2797
2814
  properties: {
2798
2815
  action_attempt_id: {
2799
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2816
+ description: "The ID of the action attempt.",
2800
2817
  format: "uuid",
2801
- type: "string"
2818
+ type: "string",
2819
+ "x-title": "Action Attempt ID"
2802
2820
  },
2803
2821
  action_type: {
2804
2822
  enum: ["RESET_SANDBOX_WORKSPACE"],
@@ -2812,7 +2830,7 @@ var openapi_default = {
2812
2830
  required: ["type", "message"],
2813
2831
  type: "object"
2814
2832
  },
2815
- result: { format: "null", nullable: true, type: "string" },
2833
+ result: { nullable: true },
2816
2834
  status: { enum: ["error"], type: "string" }
2817
2835
  },
2818
2836
  required: [
@@ -2828,13 +2846,14 @@ var openapi_default = {
2828
2846
  description: "Setting HVAC to cool.",
2829
2847
  properties: {
2830
2848
  action_attempt_id: {
2831
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2849
+ description: "The ID of the action attempt.",
2832
2850
  format: "uuid",
2833
- type: "string"
2851
+ type: "string",
2852
+ "x-title": "Action Attempt ID"
2834
2853
  },
2835
2854
  action_type: { enum: ["SET_COOL"], type: "string" },
2836
- error: { format: "null", nullable: true, type: "string" },
2837
- result: { format: "null", nullable: true, type: "string" },
2855
+ error: { nullable: true },
2856
+ result: { nullable: true },
2838
2857
  status: { enum: ["pending"], type: "string" }
2839
2858
  },
2840
2859
  required: [
@@ -2850,12 +2869,13 @@ var openapi_default = {
2850
2869
  description: "Setting HVAC to cool succeeded.",
2851
2870
  properties: {
2852
2871
  action_attempt_id: {
2853
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2872
+ description: "The ID of the action attempt.",
2854
2873
  format: "uuid",
2855
- type: "string"
2874
+ type: "string",
2875
+ "x-title": "Action Attempt ID"
2856
2876
  },
2857
2877
  action_type: { enum: ["SET_COOL"], type: "string" },
2858
- error: { format: "null", nullable: true, type: "string" },
2878
+ error: { nullable: true },
2859
2879
  result: { properties: {}, type: "object" },
2860
2880
  status: { enum: ["success"], type: "string" }
2861
2881
  },
@@ -2872,9 +2892,10 @@ var openapi_default = {
2872
2892
  description: "Setting HVAC to cool failed.",
2873
2893
  properties: {
2874
2894
  action_attempt_id: {
2875
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2895
+ description: "The ID of the action attempt.",
2876
2896
  format: "uuid",
2877
- type: "string"
2897
+ type: "string",
2898
+ "x-title": "Action Attempt ID"
2878
2899
  },
2879
2900
  action_type: { enum: ["SET_COOL"], type: "string" },
2880
2901
  error: {
@@ -2885,7 +2906,7 @@ var openapi_default = {
2885
2906
  required: ["type", "message"],
2886
2907
  type: "object"
2887
2908
  },
2888
- result: { format: "null", nullable: true, type: "string" },
2909
+ result: { nullable: true },
2889
2910
  status: { enum: ["error"], type: "string" }
2890
2911
  },
2891
2912
  required: [
@@ -2901,13 +2922,14 @@ var openapi_default = {
2901
2922
  description: "Setting HVAC to heat mode.",
2902
2923
  properties: {
2903
2924
  action_attempt_id: {
2904
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2925
+ description: "The ID of the action attempt.",
2905
2926
  format: "uuid",
2906
- type: "string"
2927
+ type: "string",
2928
+ "x-title": "Action Attempt ID"
2907
2929
  },
2908
2930
  action_type: { enum: ["SET_HEAT"], type: "string" },
2909
- error: { format: "null", nullable: true, type: "string" },
2910
- result: { format: "null", nullable: true, type: "string" },
2931
+ error: { nullable: true },
2932
+ result: { nullable: true },
2911
2933
  status: { enum: ["pending"], type: "string" }
2912
2934
  },
2913
2935
  required: [
@@ -2923,12 +2945,13 @@ var openapi_default = {
2923
2945
  description: "Setting HVAC to heat mode succeeded.",
2924
2946
  properties: {
2925
2947
  action_attempt_id: {
2926
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2948
+ description: "The ID of the action attempt.",
2927
2949
  format: "uuid",
2928
- type: "string"
2950
+ type: "string",
2951
+ "x-title": "Action Attempt ID"
2929
2952
  },
2930
2953
  action_type: { enum: ["SET_HEAT"], type: "string" },
2931
- error: { format: "null", nullable: true, type: "string" },
2954
+ error: { nullable: true },
2932
2955
  result: { properties: {}, type: "object" },
2933
2956
  status: { enum: ["success"], type: "string" }
2934
2957
  },
@@ -2945,9 +2968,10 @@ var openapi_default = {
2945
2968
  description: "Setting HVAC to heat mode failed.",
2946
2969
  properties: {
2947
2970
  action_attempt_id: {
2948
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
2971
+ description: "The ID of the action attempt.",
2949
2972
  format: "uuid",
2950
- type: "string"
2973
+ type: "string",
2974
+ "x-title": "Action Attempt ID"
2951
2975
  },
2952
2976
  action_type: { enum: ["SET_HEAT"], type: "string" },
2953
2977
  error: {
@@ -2958,7 +2982,7 @@ var openapi_default = {
2958
2982
  required: ["type", "message"],
2959
2983
  type: "object"
2960
2984
  },
2961
- result: { format: "null", nullable: true, type: "string" },
2985
+ result: { nullable: true },
2962
2986
  status: { enum: ["error"], type: "string" }
2963
2987
  },
2964
2988
  required: [
@@ -2974,13 +2998,14 @@ var openapi_default = {
2974
2998
  description: "Setting HVAC to heat-cool mode.",
2975
2999
  properties: {
2976
3000
  action_attempt_id: {
2977
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3001
+ description: "The ID of the action attempt.",
2978
3002
  format: "uuid",
2979
- type: "string"
3003
+ type: "string",
3004
+ "x-title": "Action Attempt ID"
2980
3005
  },
2981
3006
  action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
2982
- error: { format: "null", nullable: true, type: "string" },
2983
- result: { format: "null", nullable: true, type: "string" },
3007
+ error: { nullable: true },
3008
+ result: { nullable: true },
2984
3009
  status: { enum: ["pending"], type: "string" }
2985
3010
  },
2986
3011
  required: [
@@ -2996,12 +3021,13 @@ var openapi_default = {
2996
3021
  description: "Setting HVAC to heat-cool mode succeeded.",
2997
3022
  properties: {
2998
3023
  action_attempt_id: {
2999
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3024
+ description: "The ID of the action attempt.",
3000
3025
  format: "uuid",
3001
- type: "string"
3026
+ type: "string",
3027
+ "x-title": "Action Attempt ID"
3002
3028
  },
3003
3029
  action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
3004
- error: { format: "null", nullable: true, type: "string" },
3030
+ error: { nullable: true },
3005
3031
  result: { properties: {}, type: "object" },
3006
3032
  status: { enum: ["success"], type: "string" }
3007
3033
  },
@@ -3018,9 +3044,10 @@ var openapi_default = {
3018
3044
  description: "Setting heat-cool mode failed.",
3019
3045
  properties: {
3020
3046
  action_attempt_id: {
3021
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3047
+ description: "The ID of the action attempt.",
3022
3048
  format: "uuid",
3023
- type: "string"
3049
+ type: "string",
3050
+ "x-title": "Action Attempt ID"
3024
3051
  },
3025
3052
  action_type: { enum: ["SET_HEAT_COOL"], type: "string" },
3026
3053
  error: {
@@ -3031,7 +3058,7 @@ var openapi_default = {
3031
3058
  required: ["type", "message"],
3032
3059
  type: "object"
3033
3060
  },
3034
- result: { format: "null", nullable: true, type: "string" },
3061
+ result: { nullable: true },
3035
3062
  status: { enum: ["error"], type: "string" }
3036
3063
  },
3037
3064
  required: [
@@ -3047,13 +3074,14 @@ var openapi_default = {
3047
3074
  description: "Setting fan mode.",
3048
3075
  properties: {
3049
3076
  action_attempt_id: {
3050
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3077
+ description: "The ID of the action attempt.",
3051
3078
  format: "uuid",
3052
- type: "string"
3079
+ type: "string",
3080
+ "x-title": "Action Attempt ID"
3053
3081
  },
3054
3082
  action_type: { enum: ["SET_FAN_MODE"], type: "string" },
3055
- error: { format: "null", nullable: true, type: "string" },
3056
- result: { format: "null", nullable: true, type: "string" },
3083
+ error: { nullable: true },
3084
+ result: { nullable: true },
3057
3085
  status: { enum: ["pending"], type: "string" }
3058
3086
  },
3059
3087
  required: [
@@ -3069,12 +3097,13 @@ var openapi_default = {
3069
3097
  description: "Setting fan mode succeeded.",
3070
3098
  properties: {
3071
3099
  action_attempt_id: {
3072
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3100
+ description: "The ID of the action attempt.",
3073
3101
  format: "uuid",
3074
- type: "string"
3102
+ type: "string",
3103
+ "x-title": "Action Attempt ID"
3075
3104
  },
3076
3105
  action_type: { enum: ["SET_FAN_MODE"], type: "string" },
3077
- error: { format: "null", nullable: true, type: "string" },
3106
+ error: { nullable: true },
3078
3107
  result: { properties: {}, type: "object" },
3079
3108
  status: { enum: ["success"], type: "string" }
3080
3109
  },
@@ -3091,9 +3120,10 @@ var openapi_default = {
3091
3120
  description: "Setting fan mode failed.",
3092
3121
  properties: {
3093
3122
  action_attempt_id: {
3094
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3123
+ description: "The ID of the action attempt.",
3095
3124
  format: "uuid",
3096
- type: "string"
3125
+ type: "string",
3126
+ "x-title": "Action Attempt ID"
3097
3127
  },
3098
3128
  action_type: { enum: ["SET_FAN_MODE"], type: "string" },
3099
3129
  error: {
@@ -3104,7 +3134,7 @@ var openapi_default = {
3104
3134
  required: ["type", "message"],
3105
3135
  type: "object"
3106
3136
  },
3107
- result: { format: "null", nullable: true, type: "string" },
3137
+ result: { nullable: true },
3108
3138
  status: { enum: ["error"], type: "string" }
3109
3139
  },
3110
3140
  required: [
@@ -3120,13 +3150,14 @@ var openapi_default = {
3120
3150
  description: "Turning HVAC off.",
3121
3151
  properties: {
3122
3152
  action_attempt_id: {
3123
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3153
+ description: "The ID of the action attempt.",
3124
3154
  format: "uuid",
3125
- type: "string"
3155
+ type: "string",
3156
+ "x-title": "Action Attempt ID"
3126
3157
  },
3127
3158
  action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
3128
- error: { format: "null", nullable: true, type: "string" },
3129
- result: { format: "null", nullable: true, type: "string" },
3159
+ error: { nullable: true },
3160
+ result: { nullable: true },
3130
3161
  status: { enum: ["pending"], type: "string" }
3131
3162
  },
3132
3163
  required: [
@@ -3142,12 +3173,13 @@ var openapi_default = {
3142
3173
  description: "Turning HVAC off succeeded.",
3143
3174
  properties: {
3144
3175
  action_attempt_id: {
3145
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3176
+ description: "The ID of the action attempt.",
3146
3177
  format: "uuid",
3147
- type: "string"
3178
+ type: "string",
3179
+ "x-title": "Action Attempt ID"
3148
3180
  },
3149
3181
  action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
3150
- error: { format: "null", nullable: true, type: "string" },
3182
+ error: { nullable: true },
3151
3183
  result: { properties: {}, type: "object" },
3152
3184
  status: { enum: ["success"], type: "string" }
3153
3185
  },
@@ -3164,9 +3196,10 @@ var openapi_default = {
3164
3196
  description: "Turning HVAC off failed.",
3165
3197
  properties: {
3166
3198
  action_attempt_id: {
3167
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3199
+ description: "The ID of the action attempt.",
3168
3200
  format: "uuid",
3169
- type: "string"
3201
+ type: "string",
3202
+ "x-title": "Action Attempt ID"
3170
3203
  },
3171
3204
  action_type: { enum: ["SET_THERMOSTAT_OFF"], type: "string" },
3172
3205
  error: {
@@ -3177,7 +3210,7 @@ var openapi_default = {
3177
3210
  required: ["type", "message"],
3178
3211
  type: "object"
3179
3212
  },
3180
- result: { format: "null", nullable: true, type: "string" },
3213
+ result: { nullable: true },
3181
3214
  status: { enum: ["error"], type: "string" }
3182
3215
  },
3183
3216
  required: [
@@ -3192,13 +3225,14 @@ var openapi_default = {
3192
3225
  {
3193
3226
  properties: {
3194
3227
  action_attempt_id: {
3195
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3228
+ description: "The ID of the action attempt.",
3196
3229
  format: "uuid",
3197
- type: "string"
3230
+ type: "string",
3231
+ "x-title": "Action Attempt ID"
3198
3232
  },
3199
3233
  action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
3200
- error: { format: "null", nullable: true, type: "string" },
3201
- result: { format: "null", nullable: true, type: "string" },
3234
+ error: { nullable: true },
3235
+ result: { nullable: true },
3202
3236
  status: { enum: ["pending"], type: "string" }
3203
3237
  },
3204
3238
  required: [
@@ -3213,13 +3247,14 @@ var openapi_default = {
3213
3247
  {
3214
3248
  properties: {
3215
3249
  action_attempt_id: {
3216
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3250
+ description: "The ID of the action attempt.",
3217
3251
  format: "uuid",
3218
- type: "string"
3252
+ type: "string",
3253
+ "x-title": "Action Attempt ID"
3219
3254
  },
3220
3255
  action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
3221
- error: { format: "null", nullable: true, type: "string" },
3222
- result: { nullable: true },
3256
+ error: { nullable: true },
3257
+ result: {},
3223
3258
  status: { enum: ["success"], type: "string" }
3224
3259
  },
3225
3260
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3228,9 +3263,10 @@ var openapi_default = {
3228
3263
  {
3229
3264
  properties: {
3230
3265
  action_attempt_id: {
3231
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3266
+ description: "The ID of the action attempt.",
3232
3267
  format: "uuid",
3233
- type: "string"
3268
+ type: "string",
3269
+ "x-title": "Action Attempt ID"
3234
3270
  },
3235
3271
  action_type: { enum: ["SYNC_ACCESS_CODES"], type: "string" },
3236
3272
  error: {
@@ -3241,7 +3277,7 @@ var openapi_default = {
3241
3277
  required: ["type", "message"],
3242
3278
  type: "object"
3243
3279
  },
3244
- result: { format: "null", nullable: true, type: "string" },
3280
+ result: { nullable: true },
3245
3281
  status: { enum: ["error"], type: "string" }
3246
3282
  },
3247
3283
  required: [
@@ -3256,13 +3292,14 @@ var openapi_default = {
3256
3292
  {
3257
3293
  properties: {
3258
3294
  action_attempt_id: {
3259
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3295
+ description: "The ID of the action attempt.",
3260
3296
  format: "uuid",
3261
- type: "string"
3297
+ type: "string",
3298
+ "x-title": "Action Attempt ID"
3262
3299
  },
3263
3300
  action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
3264
- error: { format: "null", nullable: true, type: "string" },
3265
- result: { format: "null", nullable: true, type: "string" },
3301
+ error: { nullable: true },
3302
+ result: { nullable: true },
3266
3303
  status: { enum: ["pending"], type: "string" }
3267
3304
  },
3268
3305
  required: [
@@ -3277,13 +3314,14 @@ var openapi_default = {
3277
3314
  {
3278
3315
  properties: {
3279
3316
  action_attempt_id: {
3280
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3317
+ description: "The ID of the action attempt.",
3281
3318
  format: "uuid",
3282
- type: "string"
3319
+ type: "string",
3320
+ "x-title": "Action Attempt ID"
3283
3321
  },
3284
3322
  action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
3285
- error: { format: "null", nullable: true, type: "string" },
3286
- result: { nullable: true },
3323
+ error: { nullable: true },
3324
+ result: {},
3287
3325
  status: { enum: ["success"], type: "string" }
3288
3326
  },
3289
3327
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3292,9 +3330,10 @@ var openapi_default = {
3292
3330
  {
3293
3331
  properties: {
3294
3332
  action_attempt_id: {
3295
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3333
+ description: "The ID of the action attempt.",
3296
3334
  format: "uuid",
3297
- type: "string"
3335
+ type: "string",
3336
+ "x-title": "Action Attempt ID"
3298
3337
  },
3299
3338
  action_type: { enum: ["CREATE_ACCESS_CODE"], type: "string" },
3300
3339
  error: {
@@ -3305,7 +3344,7 @@ var openapi_default = {
3305
3344
  required: ["type", "message"],
3306
3345
  type: "object"
3307
3346
  },
3308
- result: { format: "null", nullable: true, type: "string" },
3347
+ result: { nullable: true },
3309
3348
  status: { enum: ["error"], type: "string" }
3310
3349
  },
3311
3350
  required: [
@@ -3320,13 +3359,14 @@ var openapi_default = {
3320
3359
  {
3321
3360
  properties: {
3322
3361
  action_attempt_id: {
3323
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3362
+ description: "The ID of the action attempt.",
3324
3363
  format: "uuid",
3325
- type: "string"
3364
+ type: "string",
3365
+ "x-title": "Action Attempt ID"
3326
3366
  },
3327
3367
  action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
3328
- error: { format: "null", nullable: true, type: "string" },
3329
- result: { format: "null", nullable: true, type: "string" },
3368
+ error: { nullable: true },
3369
+ result: { nullable: true },
3330
3370
  status: { enum: ["pending"], type: "string" }
3331
3371
  },
3332
3372
  required: [
@@ -3341,13 +3381,14 @@ var openapi_default = {
3341
3381
  {
3342
3382
  properties: {
3343
3383
  action_attempt_id: {
3344
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3384
+ description: "The ID of the action attempt.",
3345
3385
  format: "uuid",
3346
- type: "string"
3386
+ type: "string",
3387
+ "x-title": "Action Attempt ID"
3347
3388
  },
3348
3389
  action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
3349
- error: { format: "null", nullable: true, type: "string" },
3350
- result: { nullable: true },
3390
+ error: { nullable: true },
3391
+ result: {},
3351
3392
  status: { enum: ["success"], type: "string" }
3352
3393
  },
3353
3394
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3356,9 +3397,10 @@ var openapi_default = {
3356
3397
  {
3357
3398
  properties: {
3358
3399
  action_attempt_id: {
3359
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3400
+ description: "The ID of the action attempt.",
3360
3401
  format: "uuid",
3361
- type: "string"
3402
+ type: "string",
3403
+ "x-title": "Action Attempt ID"
3362
3404
  },
3363
3405
  action_type: { enum: ["DELETE_ACCESS_CODE"], type: "string" },
3364
3406
  error: {
@@ -3369,7 +3411,7 @@ var openapi_default = {
3369
3411
  required: ["type", "message"],
3370
3412
  type: "object"
3371
3413
  },
3372
- result: { format: "null", nullable: true, type: "string" },
3414
+ result: { nullable: true },
3373
3415
  status: { enum: ["error"], type: "string" }
3374
3416
  },
3375
3417
  required: [
@@ -3384,13 +3426,14 @@ var openapi_default = {
3384
3426
  {
3385
3427
  properties: {
3386
3428
  action_attempt_id: {
3387
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3429
+ description: "The ID of the action attempt.",
3388
3430
  format: "uuid",
3389
- type: "string"
3431
+ type: "string",
3432
+ "x-title": "Action Attempt ID"
3390
3433
  },
3391
3434
  action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
3392
- error: { format: "null", nullable: true, type: "string" },
3393
- result: { format: "null", nullable: true, type: "string" },
3435
+ error: { nullable: true },
3436
+ result: { nullable: true },
3394
3437
  status: { enum: ["pending"], type: "string" }
3395
3438
  },
3396
3439
  required: [
@@ -3405,13 +3448,14 @@ var openapi_default = {
3405
3448
  {
3406
3449
  properties: {
3407
3450
  action_attempt_id: {
3408
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3451
+ description: "The ID of the action attempt.",
3409
3452
  format: "uuid",
3410
- type: "string"
3453
+ type: "string",
3454
+ "x-title": "Action Attempt ID"
3411
3455
  },
3412
3456
  action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
3413
- error: { format: "null", nullable: true, type: "string" },
3414
- result: { nullable: true },
3457
+ error: { nullable: true },
3458
+ result: {},
3415
3459
  status: { enum: ["success"], type: "string" }
3416
3460
  },
3417
3461
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3420,9 +3464,10 @@ var openapi_default = {
3420
3464
  {
3421
3465
  properties: {
3422
3466
  action_attempt_id: {
3423
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3467
+ description: "The ID of the action attempt.",
3424
3468
  format: "uuid",
3425
- type: "string"
3469
+ type: "string",
3470
+ "x-title": "Action Attempt ID"
3426
3471
  },
3427
3472
  action_type: { enum: ["UPDATE_ACCESS_CODE"], type: "string" },
3428
3473
  error: {
@@ -3433,7 +3478,7 @@ var openapi_default = {
3433
3478
  required: ["type", "message"],
3434
3479
  type: "object"
3435
3480
  },
3436
- result: { format: "null", nullable: true, type: "string" },
3481
+ result: { nullable: true },
3437
3482
  status: { enum: ["error"], type: "string" }
3438
3483
  },
3439
3484
  required: [
@@ -3448,13 +3493,14 @@ var openapi_default = {
3448
3493
  {
3449
3494
  properties: {
3450
3495
  action_attempt_id: {
3451
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3496
+ description: "The ID of the action attempt.",
3452
3497
  format: "uuid",
3453
- type: "string"
3498
+ type: "string",
3499
+ "x-title": "Action Attempt ID"
3454
3500
  },
3455
3501
  action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
3456
- error: { format: "null", nullable: true, type: "string" },
3457
- result: { format: "null", nullable: true, type: "string" },
3502
+ error: { nullable: true },
3503
+ result: { nullable: true },
3458
3504
  status: { enum: ["pending"], type: "string" }
3459
3505
  },
3460
3506
  required: [
@@ -3469,13 +3515,14 @@ var openapi_default = {
3469
3515
  {
3470
3516
  properties: {
3471
3517
  action_attempt_id: {
3472
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3518
+ description: "The ID of the action attempt.",
3473
3519
  format: "uuid",
3474
- type: "string"
3520
+ type: "string",
3521
+ "x-title": "Action Attempt ID"
3475
3522
  },
3476
3523
  action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
3477
- error: { format: "null", nullable: true, type: "string" },
3478
- result: { nullable: true },
3524
+ error: { nullable: true },
3525
+ result: {},
3479
3526
  status: { enum: ["success"], type: "string" }
3480
3527
  },
3481
3528
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3484,9 +3531,10 @@ var openapi_default = {
3484
3531
  {
3485
3532
  properties: {
3486
3533
  action_attempt_id: {
3487
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3534
+ description: "The ID of the action attempt.",
3488
3535
  format: "uuid",
3489
- type: "string"
3536
+ type: "string",
3537
+ "x-title": "Action Attempt ID"
3490
3538
  },
3491
3539
  action_type: { enum: ["CREATE_NOISE_THRESHOLD"], type: "string" },
3492
3540
  error: {
@@ -3497,7 +3545,7 @@ var openapi_default = {
3497
3545
  required: ["type", "message"],
3498
3546
  type: "object"
3499
3547
  },
3500
- result: { format: "null", nullable: true, type: "string" },
3548
+ result: { nullable: true },
3501
3549
  status: { enum: ["error"], type: "string" }
3502
3550
  },
3503
3551
  required: [
@@ -3512,13 +3560,14 @@ var openapi_default = {
3512
3560
  {
3513
3561
  properties: {
3514
3562
  action_attempt_id: {
3515
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3563
+ description: "The ID of the action attempt.",
3516
3564
  format: "uuid",
3517
- type: "string"
3565
+ type: "string",
3566
+ "x-title": "Action Attempt ID"
3518
3567
  },
3519
3568
  action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
3520
- error: { format: "null", nullable: true, type: "string" },
3521
- result: { format: "null", nullable: true, type: "string" },
3569
+ error: { nullable: true },
3570
+ result: { nullable: true },
3522
3571
  status: { enum: ["pending"], type: "string" }
3523
3572
  },
3524
3573
  required: [
@@ -3533,13 +3582,14 @@ var openapi_default = {
3533
3582
  {
3534
3583
  properties: {
3535
3584
  action_attempt_id: {
3536
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3585
+ description: "The ID of the action attempt.",
3537
3586
  format: "uuid",
3538
- type: "string"
3587
+ type: "string",
3588
+ "x-title": "Action Attempt ID"
3539
3589
  },
3540
3590
  action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
3541
- error: { format: "null", nullable: true, type: "string" },
3542
- result: { nullable: true },
3591
+ error: { nullable: true },
3592
+ result: {},
3543
3593
  status: { enum: ["success"], type: "string" }
3544
3594
  },
3545
3595
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3548,9 +3598,10 @@ var openapi_default = {
3548
3598
  {
3549
3599
  properties: {
3550
3600
  action_attempt_id: {
3551
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3601
+ description: "The ID of the action attempt.",
3552
3602
  format: "uuid",
3553
- type: "string"
3603
+ type: "string",
3604
+ "x-title": "Action Attempt ID"
3554
3605
  },
3555
3606
  action_type: { enum: ["DELETE_NOISE_THRESHOLD"], type: "string" },
3556
3607
  error: {
@@ -3561,7 +3612,7 @@ var openapi_default = {
3561
3612
  required: ["type", "message"],
3562
3613
  type: "object"
3563
3614
  },
3564
- result: { format: "null", nullable: true, type: "string" },
3615
+ result: { nullable: true },
3565
3616
  status: { enum: ["error"], type: "string" }
3566
3617
  },
3567
3618
  required: [
@@ -3576,13 +3627,14 @@ var openapi_default = {
3576
3627
  {
3577
3628
  properties: {
3578
3629
  action_attempt_id: {
3579
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3630
+ description: "The ID of the action attempt.",
3580
3631
  format: "uuid",
3581
- type: "string"
3632
+ type: "string",
3633
+ "x-title": "Action Attempt ID"
3582
3634
  },
3583
3635
  action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
3584
- error: { format: "null", nullable: true, type: "string" },
3585
- result: { format: "null", nullable: true, type: "string" },
3636
+ error: { nullable: true },
3637
+ result: { nullable: true },
3586
3638
  status: { enum: ["pending"], type: "string" }
3587
3639
  },
3588
3640
  required: [
@@ -3597,13 +3649,14 @@ var openapi_default = {
3597
3649
  {
3598
3650
  properties: {
3599
3651
  action_attempt_id: {
3600
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3652
+ description: "The ID of the action attempt.",
3601
3653
  format: "uuid",
3602
- type: "string"
3654
+ type: "string",
3655
+ "x-title": "Action Attempt ID"
3603
3656
  },
3604
3657
  action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
3605
- error: { format: "null", nullable: true, type: "string" },
3606
- result: { nullable: true },
3658
+ error: { nullable: true },
3659
+ result: {},
3607
3660
  status: { enum: ["success"], type: "string" }
3608
3661
  },
3609
3662
  required: ["action_attempt_id", "status", "error", "action_type"],
@@ -3612,9 +3665,10 @@ var openapi_default = {
3612
3665
  {
3613
3666
  properties: {
3614
3667
  action_attempt_id: {
3615
- description: "\n ---\n title: Action Attempt ID\n ---\n The ID of the action attempt.\n ",
3668
+ description: "The ID of the action attempt.",
3616
3669
  format: "uuid",
3617
- type: "string"
3670
+ type: "string",
3671
+ "x-title": "Action Attempt ID"
3618
3672
  },
3619
3673
  action_type: { enum: ["UPDATE_NOISE_THRESHOLD"], type: "string" },
3620
3674
  error: {
@@ -3625,7 +3679,7 @@ var openapi_default = {
3625
3679
  required: ["type", "message"],
3626
3680
  type: "object"
3627
3681
  },
3628
- result: { format: "null", nullable: true, type: "string" },
3682
+ result: { nullable: true },
3629
3683
  status: { enum: ["error"], type: "string" }
3630
3684
  },
3631
3685
  required: [
@@ -3651,7 +3705,7 @@ var openapi_default = {
3651
3705
  type: "array"
3652
3706
  },
3653
3707
  created_at: { format: "date-time", type: "string" },
3654
- device_count: { type: "number" },
3708
+ device_count: { format: "float", type: "number" },
3655
3709
  token: { type: "string" },
3656
3710
  user_identifier_key: { nullable: true, type: "string" },
3657
3711
  user_identity_ids: {
@@ -3678,16 +3732,15 @@ var openapi_default = {
3678
3732
  automatic_cooling_enabled: { type: "boolean" },
3679
3733
  automatic_heating_enabled: { type: "boolean" },
3680
3734
  climate_setting_schedule_id: { format: "uuid", type: "string" },
3681
- cooling_set_point_celsius: { type: "number" },
3682
- cooling_set_point_fahrenheit: { type: "number" },
3735
+ cooling_set_point_celsius: { format: "float", type: "number" },
3736
+ cooling_set_point_fahrenheit: { format: "float", type: "number" },
3683
3737
  created_at: { format: "date-time", type: "string" },
3684
3738
  device_id: { format: "uuid", type: "string" },
3685
3739
  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
3740
+ 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
3741
  },
3689
- heating_set_point_celsius: { type: "number" },
3690
- heating_set_point_fahrenheit: { type: "number" },
3742
+ heating_set_point_celsius: { format: "float", type: "number" },
3743
+ heating_set_point_fahrenheit: { format: "float", type: "number" },
3691
3744
  hvac_mode_setting: {
3692
3745
  enum: ["off", "heat", "cool", "heat_cool"],
3693
3746
  type: "string"
@@ -3711,14 +3764,16 @@ var openapi_default = {
3711
3764
  connect_webview: {
3712
3765
  properties: {
3713
3766
  accepted_devices: {
3714
- description: "\n ---\n deprecated: Unused. Will be removed.\n ---\n ",
3767
+ deprecated: true,
3715
3768
  items: { type: "string" },
3716
- type: "array"
3769
+ type: "array",
3770
+ "x-deprecated": "Unused. Will be removed."
3717
3771
  },
3718
3772
  accepted_providers: { items: { type: "string" }, type: "array" },
3719
3773
  any_device_allowed: {
3720
- description: "\n ---\n deprecated: Unused. Will be removed.\n ---\n ",
3721
- type: "boolean"
3774
+ deprecated: true,
3775
+ type: "boolean",
3776
+ "x-deprecated": "Unused. Will be removed."
3722
3777
  },
3723
3778
  any_provider_allowed: { type: "boolean" },
3724
3779
  authorized_at: {
@@ -3797,7 +3852,7 @@ var openapi_default = {
3797
3852
  },
3798
3853
  type: "object"
3799
3854
  },
3800
- errors: { nullable: true },
3855
+ errors: {},
3801
3856
  user_identifier: {
3802
3857
  properties: {
3803
3858
  api_url: { type: "string" },
@@ -3808,7 +3863,7 @@ var openapi_default = {
3808
3863
  },
3809
3864
  type: "object"
3810
3865
  },
3811
- warnings: { nullable: true }
3866
+ warnings: {}
3812
3867
  },
3813
3868
  required: [
3814
3869
  "account_type_display_name",
@@ -3966,6 +4021,7 @@ var openapi_default = {
3966
4021
  description: "Indicates if the keypad battery properties.",
3967
4022
  properties: {
3968
4023
  level: {
4024
+ format: "float",
3969
4025
  maximum: 1,
3970
4026
  minimum: 0,
3971
4027
  type: "number"
@@ -3995,7 +4051,12 @@ var openapi_default = {
3995
4051
  battery: {
3996
4052
  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
4053
  properties: {
3998
- level: { maximum: 1, minimum: 0, type: "number" },
4054
+ level: {
4055
+ format: "float",
4056
+ maximum: 1,
4057
+ minimum: 0,
4058
+ type: "number"
4059
+ },
3999
4060
  status: {
4000
4061
  enum: ["critical", "low", "good", "full"],
4001
4062
  type: "string"
@@ -4006,6 +4067,7 @@ var openapi_default = {
4006
4067
  },
4007
4068
  battery_level: {
4008
4069
  description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
4070
+ format: "float",
4009
4071
  maximum: 1,
4010
4072
  minimum: 0,
4011
4073
  type: "number"
@@ -4035,8 +4097,9 @@ var openapi_default = {
4035
4097
  model: {
4036
4098
  properties: {
4037
4099
  accessory_keypad_supported: {
4038
- description: "\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ",
4039
- type: "boolean"
4100
+ deprecated: true,
4101
+ type: "boolean",
4102
+ "x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
4040
4103
  },
4041
4104
  can_connect_accessory_keypad: {
4042
4105
  description: "Indicates whether the device can connect a accessory keypad.",
@@ -4070,11 +4133,14 @@ var openapi_default = {
4070
4133
  type: "object"
4071
4134
  },
4072
4135
  name: {
4073
- description: "\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ",
4074
- type: "string"
4136
+ deprecated: true,
4137
+ description: "Name of the device.",
4138
+ type: "string",
4139
+ "x-deprecated": "use device.display_name instead"
4075
4140
  },
4076
4141
  noise_level_decibels: {
4077
4142
  description: "Indicates current noise level in decibels, if the device supports noise detection.",
4143
+ format: "float",
4078
4144
  type: "number"
4079
4145
  },
4080
4146
  offline_access_codes_enabled: {
@@ -4094,12 +4160,14 @@ var openapi_default = {
4094
4160
  type: "string"
4095
4161
  },
4096
4162
  supports_accessory_keypad: {
4097
- description: "\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ",
4098
- type: "boolean"
4163
+ deprecated: true,
4164
+ type: "boolean",
4165
+ "x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
4099
4166
  },
4100
4167
  supports_offline_access_codes: {
4101
- description: "\n ---\n deprecated: use offline_access_codes_enabled\n ---\n ",
4102
- type: "boolean"
4168
+ deprecated: true,
4169
+ type: "boolean",
4170
+ "x-deprecated": "use offline_access_codes_enabled"
4103
4171
  }
4104
4172
  },
4105
4173
  required: ["online", "name", "appearance", "model"],
@@ -4153,11 +4221,14 @@ var openapi_default = {
4153
4221
  avigilon_alta_metadata: {
4154
4222
  properties: {
4155
4223
  entry_name: { type: "string" },
4156
- entry_relays_total_count: { type: "number" },
4224
+ entry_relays_total_count: {
4225
+ format: "float",
4226
+ type: "number"
4227
+ },
4157
4228
  org_name: { type: "string" },
4158
- site_id: { type: "number" },
4229
+ site_id: { format: "float", type: "number" },
4159
4230
  site_name: { type: "string" },
4160
- zone_id: { type: "number" },
4231
+ zone_id: { format: "float", type: "number" },
4161
4232
  zone_name: { type: "string" }
4162
4233
  },
4163
4234
  required: [
@@ -4187,8 +4258,8 @@ var openapi_default = {
4187
4258
  },
4188
4259
  dormakaba_oracode_metadata: {
4189
4260
  properties: {
4190
- device_id: { type: "number" },
4191
- door_id: { type: "number" },
4261
+ device_id: { format: "float", type: "number" },
4262
+ door_id: { format: "float", type: "number" },
4192
4263
  door_is_wireless: { type: "boolean" },
4193
4264
  door_name: { type: "string" },
4194
4265
  iana_timezone: { type: "string" },
@@ -4202,6 +4273,7 @@ var openapi_default = {
4202
4273
  type: "string"
4203
4274
  },
4204
4275
  ext_dormakaba_oracode_user_level_prefix: {
4276
+ format: "float",
4205
4277
  type: "number"
4206
4278
  },
4207
4279
  is_24_hour: { type: "boolean" },
@@ -4209,7 +4281,7 @@ var openapi_default = {
4209
4281
  is_master: { type: "boolean" },
4210
4282
  is_one_shot: { type: "boolean" },
4211
4283
  name: { type: "string" },
4212
- prefix: { type: "number" }
4284
+ prefix: { format: "float", type: "number" }
4213
4285
  },
4214
4286
  required: [
4215
4287
  "name",
@@ -4227,7 +4299,7 @@ var openapi_default = {
4227
4299
  },
4228
4300
  type: "array"
4229
4301
  },
4230
- site_id: { type: "number" },
4302
+ site_id: { format: "float", type: "number" },
4231
4303
  site_name: { type: "string" }
4232
4304
  },
4233
4305
  required: [
@@ -4249,9 +4321,12 @@ var openapi_default = {
4249
4321
  },
4250
4322
  four_suites_metadata: {
4251
4323
  properties: {
4252
- device_id: { type: "number" },
4324
+ device_id: { format: "float", type: "number" },
4253
4325
  device_name: { type: "string" },
4254
- reclose_delay_in_seconds: { type: "number" }
4326
+ reclose_delay_in_seconds: {
4327
+ format: "float",
4328
+ type: "number"
4329
+ }
4255
4330
  },
4256
4331
  required: [
4257
4332
  "device_id",
@@ -4335,7 +4410,7 @@ var openapi_default = {
4335
4410
  accelerometer_z: {
4336
4411
  properties: {
4337
4412
  time: { type: "string" },
4338
- value: { type: "number" }
4413
+ value: { format: "float", type: "number" }
4339
4414
  },
4340
4415
  required: ["time", "value"],
4341
4416
  type: "object"
@@ -4343,7 +4418,7 @@ var openapi_default = {
4343
4418
  humidity: {
4344
4419
  properties: {
4345
4420
  time: { type: "string" },
4346
- value: { type: "number" }
4421
+ value: { format: "float", type: "number" }
4347
4422
  },
4348
4423
  required: ["time", "value"],
4349
4424
  type: "object"
@@ -4351,7 +4426,7 @@ var openapi_default = {
4351
4426
  pressure: {
4352
4427
  properties: {
4353
4428
  time: { type: "string" },
4354
- value: { type: "number" }
4429
+ value: { format: "float", type: "number" }
4355
4430
  },
4356
4431
  required: ["time", "value"],
4357
4432
  type: "object"
@@ -4359,7 +4434,7 @@ var openapi_default = {
4359
4434
  sound: {
4360
4435
  properties: {
4361
4436
  time: { type: "string" },
4362
- value: { type: "number" }
4437
+ value: { format: "float", type: "number" }
4363
4438
  },
4364
4439
  required: ["time", "value"],
4365
4440
  type: "object"
@@ -4367,7 +4442,7 @@ var openapi_default = {
4367
4442
  temperature: {
4368
4443
  properties: {
4369
4444
  time: { type: "string" },
4370
- value: { type: "number" }
4445
+ value: { format: "float", type: "number" }
4371
4446
  },
4372
4447
  required: ["time", "value"],
4373
4448
  type: "object"
@@ -4411,8 +4486,11 @@ var openapi_default = {
4411
4486
  type: "string"
4412
4487
  },
4413
4488
  device_name: { type: "string" },
4414
- noise_level_decibel: { type: "number" },
4415
- noise_level_nrs: { type: "number" }
4489
+ noise_level_decibel: {
4490
+ format: "float",
4491
+ type: "number"
4492
+ },
4493
+ noise_level_nrs: { format: "float", type: "number" }
4416
4494
  },
4417
4495
  required: [
4418
4496
  "device_model",
@@ -4455,6 +4533,7 @@ var openapi_default = {
4455
4533
  schlage_metadata: {
4456
4534
  properties: {
4457
4535
  access_code_length: {
4536
+ format: "float",
4458
4537
  nullable: true,
4459
4538
  type: "number"
4460
4539
  },
@@ -4471,7 +4550,7 @@ var openapi_default = {
4471
4550
  },
4472
4551
  seam_bridge_metadata: {
4473
4552
  properties: {
4474
- device_num: { type: "number" },
4553
+ device_num: { format: "float", type: "number" },
4475
4554
  name: { type: "string" },
4476
4555
  unlock_method: {
4477
4556
  enum: ["bridge", "doorking"],
@@ -4493,12 +4572,12 @@ var openapi_default = {
4493
4572
  },
4494
4573
  tedee_metadata: {
4495
4574
  properties: {
4496
- bridge_id: { type: "number" },
4575
+ bridge_id: { format: "float", type: "number" },
4497
4576
  bridge_name: { type: "string" },
4498
- device_id: { type: "number" },
4577
+ device_id: { format: "float", type: "number" },
4499
4578
  device_model: { type: "string" },
4500
4579
  device_name: { type: "string" },
4501
- keypad_id: { type: "number" },
4580
+ keypad_id: { format: "float", type: "number" },
4502
4581
  serial_number: { type: "string" }
4503
4582
  },
4504
4583
  required: [
@@ -4515,14 +4594,14 @@ var openapi_default = {
4515
4594
  properties: {
4516
4595
  feature_value: { type: "string" },
4517
4596
  lock_alias: { type: "string" },
4518
- lock_id: { type: "number" }
4597
+ lock_id: { format: "float", type: "number" }
4519
4598
  },
4520
4599
  required: ["lock_id", "lock_alias", "feature_value"],
4521
4600
  type: "object"
4522
4601
  },
4523
4602
  two_n_metadata: {
4524
4603
  properties: {
4525
- device_id: { type: "number" },
4604
+ device_id: { format: "float", type: "number" },
4526
4605
  device_name: { type: "string" }
4527
4606
  },
4528
4607
  required: ["device_id", "device_name"],
@@ -4534,7 +4613,10 @@ var openapi_default = {
4534
4613
  device_info_model: { type: "string" },
4535
4614
  device_name: { type: "string" },
4536
4615
  keypad_uuid: { type: "string" },
4537
- locker_status_hardlock: { type: "number" },
4616
+ locker_status_hardlock: {
4617
+ format: "float",
4618
+ type: "number"
4619
+ },
4538
4620
  product_model: { type: "string" },
4539
4621
  product_name: { type: "string" },
4540
4622
  product_type: { type: "string" }
@@ -4559,7 +4641,7 @@ var openapi_default = {
4559
4641
  {
4560
4642
  properties: {
4561
4643
  _experimental_supported_code_from_access_codes_lengths: {
4562
- items: { type: "number" },
4644
+ items: { format: "float", type: "number" },
4563
4645
  type: "array"
4564
4646
  },
4565
4647
  code_constraints: {
@@ -4591,8 +4673,8 @@ var openapi_default = {
4591
4673
  enum: ["name_length", "name_must_be_unique"],
4592
4674
  type: "string"
4593
4675
  },
4594
- max_length: { type: "number" },
4595
- min_length: { type: "number" }
4676
+ max_length: { format: "float", type: "number" },
4677
+ min_length: { format: "float", type: "number" }
4596
4678
  },
4597
4679
  required: ["constraint_type"],
4598
4680
  type: "object"
@@ -4604,14 +4686,19 @@ var openapi_default = {
4604
4686
  door_open: { type: "boolean" },
4605
4687
  has_native_entry_events: { type: "boolean" },
4606
4688
  keypad_battery: {
4607
- properties: { level: { type: "number" } },
4689
+ properties: {
4690
+ level: { format: "float", type: "number" }
4691
+ },
4608
4692
  required: ["level"],
4609
4693
  type: "object"
4610
4694
  },
4611
4695
  locked: { type: "boolean" },
4612
- max_active_codes_supported: { type: "number" },
4696
+ max_active_codes_supported: {
4697
+ format: "float",
4698
+ type: "number"
4699
+ },
4613
4700
  supported_code_lengths: {
4614
- items: { type: "number" },
4701
+ items: { format: "float", type: "number" },
4615
4702
  type: "array"
4616
4703
  },
4617
4704
  supports_backup_access_code_pool: { type: "boolean" }
@@ -4630,19 +4717,30 @@ var openapi_default = {
4630
4717
  format: "uuid",
4631
4718
  type: "string"
4632
4719
  },
4633
- cooling_set_point_celsius: { type: "number" },
4634
- cooling_set_point_fahrenheit: { type: "number" },
4720
+ cooling_set_point_celsius: {
4721
+ format: "float",
4722
+ type: "number"
4723
+ },
4724
+ cooling_set_point_fahrenheit: {
4725
+ format: "float",
4726
+ type: "number"
4727
+ },
4635
4728
  created_at: {
4636
4729
  format: "date-time",
4637
4730
  type: "string"
4638
4731
  },
4639
4732
  device_id: { format: "uuid", type: "string" },
4640
4733
  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
4734
+ 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.'
4735
+ },
4736
+ heating_set_point_celsius: {
4737
+ format: "float",
4738
+ type: "number"
4739
+ },
4740
+ heating_set_point_fahrenheit: {
4741
+ format: "float",
4742
+ type: "number"
4643
4743
  },
4644
- heating_set_point_celsius: { type: "number" },
4645
- heating_set_point_fahrenheit: { type: "number" },
4646
4744
  hvac_mode_setting: {
4647
4745
  enum: ["off", "heat", "cool", "heat_cool"],
4648
4746
  type: "string"
@@ -4679,10 +4777,22 @@ var openapi_default = {
4679
4777
  properties: {
4680
4778
  automatic_cooling_enabled: { type: "boolean" },
4681
4779
  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" },
4780
+ cooling_set_point_celsius: {
4781
+ format: "float",
4782
+ type: "number"
4783
+ },
4784
+ cooling_set_point_fahrenheit: {
4785
+ format: "float",
4786
+ type: "number"
4787
+ },
4788
+ heating_set_point_celsius: {
4789
+ format: "float",
4790
+ type: "number"
4791
+ },
4792
+ heating_set_point_fahrenheit: {
4793
+ format: "float",
4794
+ type: "number"
4795
+ },
4686
4796
  hvac_mode_setting: {
4687
4797
  enum: ["off", "heat", "cool", "heat_cool"],
4688
4798
  type: "string"
@@ -4701,10 +4811,22 @@ var openapi_default = {
4701
4811
  properties: {
4702
4812
  automatic_cooling_enabled: { type: "boolean" },
4703
4813
  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" },
4814
+ cooling_set_point_celsius: {
4815
+ format: "float",
4816
+ type: "number"
4817
+ },
4818
+ cooling_set_point_fahrenheit: {
4819
+ format: "float",
4820
+ type: "number"
4821
+ },
4822
+ heating_set_point_celsius: {
4823
+ format: "float",
4824
+ type: "number"
4825
+ },
4826
+ heating_set_point_fahrenheit: {
4827
+ format: "float",
4828
+ type: "number"
4829
+ },
4708
4830
  hvac_mode_setting: {
4709
4831
  enum: ["off", "heat", "cool", "heat_cool"],
4710
4832
  type: "string"
@@ -4740,25 +4862,60 @@ var openapi_default = {
4740
4862
  is_temporary_manual_override_active: {
4741
4863
  type: "boolean"
4742
4864
  },
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" },
4865
+ max_cooling_set_point_celsius: {
4866
+ format: "float",
4867
+ type: "number"
4868
+ },
4869
+ max_cooling_set_point_fahrenheit: {
4870
+ format: "float",
4871
+ type: "number"
4872
+ },
4873
+ max_heating_set_point_celsius: {
4874
+ format: "float",
4875
+ type: "number"
4876
+ },
4877
+ max_heating_set_point_fahrenheit: {
4878
+ format: "float",
4879
+ type: "number"
4880
+ },
4881
+ min_cooling_set_point_celsius: {
4882
+ format: "float",
4883
+ type: "number"
4884
+ },
4885
+ min_cooling_set_point_fahrenheit: {
4886
+ format: "float",
4887
+ type: "number"
4888
+ },
4889
+ min_heating_cooling_delta_celsius: {
4890
+ format: "float",
4891
+ type: "number"
4892
+ },
4750
4893
  min_heating_cooling_delta_fahrenheit: {
4894
+ format: "float",
4895
+ type: "number"
4896
+ },
4897
+ min_heating_set_point_celsius: {
4898
+ format: "float",
4899
+ type: "number"
4900
+ },
4901
+ min_heating_set_point_fahrenheit: {
4902
+ format: "float",
4751
4903
  type: "number"
4752
4904
  },
4753
- min_heating_set_point_celsius: { type: "number" },
4754
- min_heating_set_point_fahrenheit: { type: "number" },
4755
4905
  relative_humidity: {
4906
+ format: "float",
4756
4907
  maximum: 1,
4757
4908
  minimum: 0,
4758
4909
  type: "number"
4759
4910
  },
4760
- temperature_celsius: { type: "number" },
4761
- temperature_fahrenheit: { type: "number" }
4911
+ temperature_celsius: {
4912
+ format: "float",
4913
+ type: "number"
4914
+ },
4915
+ temperature_fahrenheit: {
4916
+ format: "float",
4917
+ type: "number"
4918
+ }
4762
4919
  },
4763
4920
  type: "object"
4764
4921
  },
@@ -4772,19 +4929,30 @@ var openapi_default = {
4772
4929
  format: "uuid",
4773
4930
  type: "string"
4774
4931
  },
4775
- cooling_set_point_celsius: { type: "number" },
4776
- cooling_set_point_fahrenheit: { type: "number" },
4932
+ cooling_set_point_celsius: {
4933
+ format: "float",
4934
+ type: "number"
4935
+ },
4936
+ cooling_set_point_fahrenheit: {
4937
+ format: "float",
4938
+ type: "number"
4939
+ },
4777
4940
  created_at: {
4778
4941
  format: "date-time",
4779
4942
  type: "string"
4780
4943
  },
4781
4944
  device_id: { format: "uuid", type: "string" },
4782
4945
  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
4946
+ 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.'
4947
+ },
4948
+ heating_set_point_celsius: {
4949
+ format: "float",
4950
+ type: "number"
4951
+ },
4952
+ heating_set_point_fahrenheit: {
4953
+ format: "float",
4954
+ type: "number"
4785
4955
  },
4786
- heating_set_point_celsius: { type: "number" },
4787
- heating_set_point_fahrenheit: { type: "number" },
4788
4956
  hvac_mode_setting: {
4789
4957
  enum: ["off", "heat", "cool", "heat_cool"],
4790
4958
  type: "string"
@@ -4821,10 +4989,22 @@ var openapi_default = {
4821
4989
  properties: {
4822
4990
  automatic_cooling_enabled: { type: "boolean" },
4823
4991
  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" },
4992
+ cooling_set_point_celsius: {
4993
+ format: "float",
4994
+ type: "number"
4995
+ },
4996
+ cooling_set_point_fahrenheit: {
4997
+ format: "float",
4998
+ type: "number"
4999
+ },
5000
+ heating_set_point_celsius: {
5001
+ format: "float",
5002
+ type: "number"
5003
+ },
5004
+ heating_set_point_fahrenheit: {
5005
+ format: "float",
5006
+ type: "number"
5007
+ },
4828
5008
  hvac_mode_setting: {
4829
5009
  enum: ["off", "heat", "cool", "heat_cool"],
4830
5010
  type: "string"
@@ -4843,10 +5023,22 @@ var openapi_default = {
4843
5023
  properties: {
4844
5024
  automatic_cooling_enabled: { type: "boolean" },
4845
5025
  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" },
5026
+ cooling_set_point_celsius: {
5027
+ format: "float",
5028
+ type: "number"
5029
+ },
5030
+ cooling_set_point_fahrenheit: {
5031
+ format: "float",
5032
+ type: "number"
5033
+ },
5034
+ heating_set_point_celsius: {
5035
+ format: "float",
5036
+ type: "number"
5037
+ },
5038
+ heating_set_point_fahrenheit: {
5039
+ format: "float",
5040
+ type: "number"
5041
+ },
4850
5042
  hvac_mode_setting: {
4851
5043
  enum: ["off", "heat", "cool", "heat_cool"],
4852
5044
  type: "string"
@@ -4882,17 +5074,36 @@ var openapi_default = {
4882
5074
  is_temporary_manual_override_active: {
4883
5075
  type: "boolean"
4884
5076
  },
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" },
5077
+ max_heating_set_point_celsius: {
5078
+ format: "float",
5079
+ type: "number"
5080
+ },
5081
+ max_heating_set_point_fahrenheit: {
5082
+ format: "float",
5083
+ type: "number"
5084
+ },
5085
+ min_heating_set_point_celsius: {
5086
+ format: "float",
5087
+ type: "number"
5088
+ },
5089
+ min_heating_set_point_fahrenheit: {
5090
+ format: "float",
5091
+ type: "number"
5092
+ },
4889
5093
  relative_humidity: {
5094
+ format: "float",
4890
5095
  maximum: 1,
4891
5096
  minimum: 0,
4892
5097
  type: "number"
4893
5098
  },
4894
- temperature_celsius: { type: "number" },
4895
- temperature_fahrenheit: { type: "number" }
5099
+ temperature_celsius: {
5100
+ format: "float",
5101
+ type: "number"
5102
+ },
5103
+ temperature_fahrenheit: {
5104
+ format: "float",
5105
+ type: "number"
5106
+ }
4896
5107
  },
4897
5108
  type: "object"
4898
5109
  },
@@ -4906,19 +5117,30 @@ var openapi_default = {
4906
5117
  format: "uuid",
4907
5118
  type: "string"
4908
5119
  },
4909
- cooling_set_point_celsius: { type: "number" },
4910
- cooling_set_point_fahrenheit: { type: "number" },
5120
+ cooling_set_point_celsius: {
5121
+ format: "float",
5122
+ type: "number"
5123
+ },
5124
+ cooling_set_point_fahrenheit: {
5125
+ format: "float",
5126
+ type: "number"
5127
+ },
4911
5128
  created_at: {
4912
5129
  format: "date-time",
4913
5130
  type: "string"
4914
5131
  },
4915
5132
  device_id: { format: "uuid", type: "string" },
4916
5133
  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
5134
+ 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.'
5135
+ },
5136
+ heating_set_point_celsius: {
5137
+ format: "float",
5138
+ type: "number"
5139
+ },
5140
+ heating_set_point_fahrenheit: {
5141
+ format: "float",
5142
+ type: "number"
4919
5143
  },
4920
- heating_set_point_celsius: { type: "number" },
4921
- heating_set_point_fahrenheit: { type: "number" },
4922
5144
  hvac_mode_setting: {
4923
5145
  enum: ["off", "heat", "cool", "heat_cool"],
4924
5146
  type: "string"
@@ -4955,10 +5177,22 @@ var openapi_default = {
4955
5177
  properties: {
4956
5178
  automatic_cooling_enabled: { type: "boolean" },
4957
5179
  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" },
5180
+ cooling_set_point_celsius: {
5181
+ format: "float",
5182
+ type: "number"
5183
+ },
5184
+ cooling_set_point_fahrenheit: {
5185
+ format: "float",
5186
+ type: "number"
5187
+ },
5188
+ heating_set_point_celsius: {
5189
+ format: "float",
5190
+ type: "number"
5191
+ },
5192
+ heating_set_point_fahrenheit: {
5193
+ format: "float",
5194
+ type: "number"
5195
+ },
4962
5196
  hvac_mode_setting: {
4963
5197
  enum: ["off", "heat", "cool", "heat_cool"],
4964
5198
  type: "string"
@@ -4977,10 +5211,22 @@ var openapi_default = {
4977
5211
  properties: {
4978
5212
  automatic_cooling_enabled: { type: "boolean" },
4979
5213
  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" },
5214
+ cooling_set_point_celsius: {
5215
+ format: "float",
5216
+ type: "number"
5217
+ },
5218
+ cooling_set_point_fahrenheit: {
5219
+ format: "float",
5220
+ type: "number"
5221
+ },
5222
+ heating_set_point_celsius: {
5223
+ format: "float",
5224
+ type: "number"
5225
+ },
5226
+ heating_set_point_fahrenheit: {
5227
+ format: "float",
5228
+ type: "number"
5229
+ },
4984
5230
  hvac_mode_setting: {
4985
5231
  enum: ["off", "heat", "cool", "heat_cool"],
4986
5232
  type: "string"
@@ -5016,17 +5262,36 @@ var openapi_default = {
5016
5262
  is_temporary_manual_override_active: {
5017
5263
  type: "boolean"
5018
5264
  },
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" },
5265
+ max_cooling_set_point_celsius: {
5266
+ format: "float",
5267
+ type: "number"
5268
+ },
5269
+ max_cooling_set_point_fahrenheit: {
5270
+ format: "float",
5271
+ type: "number"
5272
+ },
5273
+ min_cooling_set_point_celsius: {
5274
+ format: "float",
5275
+ type: "number"
5276
+ },
5277
+ min_cooling_set_point_fahrenheit: {
5278
+ format: "float",
5279
+ type: "number"
5280
+ },
5023
5281
  relative_humidity: {
5282
+ format: "float",
5024
5283
  maximum: 1,
5025
5284
  minimum: 0,
5026
5285
  type: "number"
5027
5286
  },
5028
- temperature_celsius: { type: "number" },
5029
- temperature_fahrenheit: { type: "number" }
5287
+ temperature_celsius: {
5288
+ format: "float",
5289
+ type: "number"
5290
+ },
5291
+ temperature_fahrenheit: {
5292
+ format: "float",
5293
+ type: "number"
5294
+ }
5030
5295
  },
5031
5296
  type: "object"
5032
5297
  }
@@ -5196,9 +5461,9 @@ var openapi_default = {
5196
5461
  device_id: { format: "uuid", type: "string" },
5197
5462
  ends_daily_at: { type: "string" },
5198
5463
  name: { type: "string" },
5199
- noise_threshold_decibels: { type: "number" },
5464
+ noise_threshold_decibels: { format: "float", type: "number" },
5200
5465
  noise_threshold_id: { format: "uuid", type: "string" },
5201
- noise_threshold_nrs: { type: "number" },
5466
+ noise_threshold_nrs: { format: "float", type: "number" },
5202
5467
  starts_daily_at: { type: "string" }
5203
5468
  },
5204
5469
  required: [
@@ -5387,8 +5652,7 @@ var openapi_default = {
5387
5652
  type: "string"
5388
5653
  },
5389
5654
  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
5655
+ 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
5656
  },
5393
5657
  is_managed: { enum: [false], type: "boolean" },
5394
5658
  name: {
@@ -5409,8 +5673,7 @@ var openapi_default = {
5409
5673
  type: "string"
5410
5674
  },
5411
5675
  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
5676
+ 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
5677
  }
5415
5678
  },
5416
5679
  required: [
@@ -5534,7 +5797,12 @@ var openapi_default = {
5534
5797
  battery: {
5535
5798
  description: "Indicates if the keypad battery properties.",
5536
5799
  properties: {
5537
- level: { maximum: 1, minimum: 0, type: "number" }
5800
+ level: {
5801
+ format: "float",
5802
+ maximum: 1,
5803
+ minimum: 0,
5804
+ type: "number"
5805
+ }
5538
5806
  },
5539
5807
  required: ["level"],
5540
5808
  type: "object"
@@ -5550,7 +5818,12 @@ var openapi_default = {
5550
5818
  battery: {
5551
5819
  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
5820
  properties: {
5553
- level: { maximum: 1, minimum: 0, type: "number" },
5821
+ level: {
5822
+ format: "float",
5823
+ maximum: 1,
5824
+ minimum: 0,
5825
+ type: "number"
5826
+ },
5554
5827
  status: {
5555
5828
  enum: ["critical", "low", "good", "full"],
5556
5829
  type: "string"
@@ -5561,6 +5834,7 @@ var openapi_default = {
5561
5834
  },
5562
5835
  battery_level: {
5563
5836
  description: "Indicates the battery level of the device as a decimal value between 0 and 1, inclusive.",
5837
+ format: "float",
5564
5838
  maximum: 1,
5565
5839
  minimum: 0,
5566
5840
  type: "number"
@@ -5581,8 +5855,9 @@ var openapi_default = {
5581
5855
  model: {
5582
5856
  properties: {
5583
5857
  accessory_keypad_supported: {
5584
- description: "\n ---\n deprecated: use device.properties.model.can_connect_accessory_keypad\n ---\n ",
5585
- type: "boolean"
5858
+ deprecated: true,
5859
+ type: "boolean",
5860
+ "x-deprecated": "use device.properties.model.can_connect_accessory_keypad"
5586
5861
  },
5587
5862
  can_connect_accessory_keypad: {
5588
5863
  description: "Indicates whether the device can connect a accessory keypad.",
@@ -5613,8 +5888,10 @@ var openapi_default = {
5613
5888
  type: "object"
5614
5889
  },
5615
5890
  name: {
5616
- description: "\n ---\n deprecated: use device.display_name instead\n ---\n Name of the device.\n ",
5617
- type: "string"
5891
+ deprecated: true,
5892
+ description: "Name of the device.",
5893
+ type: "string",
5894
+ "x-deprecated": "use device.display_name instead"
5618
5895
  },
5619
5896
  offline_access_codes_enabled: {
5620
5897
  description: "Indicates whether it is currently possible to use offline access codes for the device.",
@@ -5701,9 +5978,10 @@ var openapi_default = {
5701
5978
  properties: {
5702
5979
  company_name: { type: "string" },
5703
5980
  connect_partner_name: {
5704
- description: "\n ---\n deprecated: use company_name\n ---\n ",
5981
+ deprecated: true,
5705
5982
  nullable: true,
5706
- type: "string"
5983
+ type: "string",
5984
+ "x-deprecated": "use company_name"
5707
5985
  },
5708
5986
  is_sandbox: { type: "boolean" },
5709
5987
  name: { type: "string" },
@@ -5889,7 +6167,7 @@ var openapi_default = {
5889
6167
  },
5890
6168
  name: { type: "string" },
5891
6169
  prefer_native_scheduling: { type: "boolean" },
5892
- preferred_code_length: { type: "number" },
6170
+ preferred_code_length: { format: "float", type: "number" },
5893
6171
  starts_at: { type: "string" },
5894
6172
  use_backup_access_code_pool: { type: "boolean" },
5895
6173
  use_offline_access_code: { type: "boolean" }
@@ -5972,7 +6250,7 @@ var openapi_default = {
5972
6250
  },
5973
6251
  name: { type: "string" },
5974
6252
  prefer_native_scheduling: { type: "boolean" },
5975
- preferred_code_length: { type: "number" },
6253
+ preferred_code_length: { format: "float", type: "number" },
5976
6254
  starts_at: { type: "string" },
5977
6255
  use_backup_access_code_pool: { type: "boolean" },
5978
6256
  use_offline_access_code: { type: "boolean" }
@@ -7427,8 +7705,9 @@ var openapi_default = {
7427
7705
  type: "string"
7428
7706
  },
7429
7707
  is_override_key: {
7430
- description: "\n ---\n deprecated: use override.\n ---\n ",
7431
- type: "boolean"
7708
+ deprecated: true,
7709
+ type: "boolean",
7710
+ "x-deprecated": "use override."
7432
7711
  },
7433
7712
  joiner_acs_credential_ids: {
7434
7713
  items: { format: "uuid", type: "string" },
@@ -8355,13 +8634,14 @@ var openapi_default = {
8355
8634
  },
8356
8635
  acs_system_id: { format: "uuid", type: "string" },
8357
8636
  email: {
8358
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
8637
+ deprecated: true,
8359
8638
  format: "email",
8360
- type: "string"
8639
+ type: "string",
8640
+ "x-deprecated": "use email_address."
8361
8641
  },
8362
8642
  email_address: { format: "email", type: "string" },
8363
8643
  full_name: { type: "string" },
8364
- phone_number: { nullable: true, type: "string" },
8644
+ phone_number: { type: "string" },
8365
8645
  user_identity_id: { format: "uuid", type: "string" }
8366
8646
  },
8367
8647
  required: ["acs_system_id"],
@@ -8498,10 +8778,7 @@ var openapi_default = {
8498
8778
  acs_system_id: { format: "uuid", type: "string" },
8499
8779
  user_identity_email_address: { type: "string" },
8500
8780
  user_identity_id: { format: "uuid", type: "string" },
8501
- user_identity_phone_number: {
8502
- nullable: true,
8503
- type: "string"
8504
- }
8781
+ user_identity_phone_number: { type: "string" }
8505
8782
  },
8506
8783
  type: "object"
8507
8784
  }
@@ -8777,14 +9054,15 @@ var openapi_default = {
8777
9054
  },
8778
9055
  acs_user_id: { format: "uuid", type: "string" },
8779
9056
  email: {
8780
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
9057
+ deprecated: true,
8781
9058
  format: "email",
8782
- type: "string"
9059
+ type: "string",
9060
+ "x-deprecated": "use email_address."
8783
9061
  },
8784
9062
  email_address: { format: "email", type: "string" },
8785
9063
  full_name: { type: "string" },
8786
9064
  hid_acs_system_id: { format: "uuid", type: "string" },
8787
- phone_number: { nullable: true, type: "string" }
9065
+ phone_number: { type: "string" }
8788
9066
  },
8789
9067
  required: ["acs_user_id"],
8790
9068
  type: "object"
@@ -8834,14 +9112,15 @@ var openapi_default = {
8834
9112
  },
8835
9113
  acs_user_id: { format: "uuid", type: "string" },
8836
9114
  email: {
8837
- description: "\n ---\n deprecated: use email_address.\n ---\n ",
9115
+ deprecated: true,
8838
9116
  format: "email",
8839
- type: "string"
9117
+ type: "string",
9118
+ "x-deprecated": "use email_address."
8840
9119
  },
8841
9120
  email_address: { format: "email", type: "string" },
8842
9121
  full_name: { type: "string" },
8843
9122
  hid_acs_system_id: { format: "uuid", type: "string" },
8844
- phone_number: { nullable: true, type: "string" }
9123
+ phone_number: { type: "string" }
8845
9124
  },
8846
9125
  required: ["acs_user_id"],
8847
9126
  type: "object"
@@ -8995,11 +9274,7 @@ var openapi_default = {
8995
9274
  items: { type: "string" },
8996
9275
  type: "array"
8997
9276
  },
8998
- expires_at: {
8999
- format: "date-time",
9000
- nullable: true,
9001
- type: "string"
9002
- },
9277
+ expires_at: { format: "date-time", type: "string" },
9003
9278
  user_identifier_key: { minLength: 1, type: "string" },
9004
9279
  user_identity_ids: {
9005
9280
  items: { type: "string" },
@@ -9053,11 +9328,7 @@ var openapi_default = {
9053
9328
  items: { type: "string" },
9054
9329
  type: "array"
9055
9330
  },
9056
- expires_at: {
9057
- format: "date-time",
9058
- nullable: true,
9059
- type: "string"
9060
- },
9331
+ expires_at: { format: "date-time", type: "string" },
9061
9332
  user_identifier_key: { minLength: 1, type: "string" },
9062
9333
  user_identity_ids: {
9063
9334
  items: { type: "string" },
@@ -9204,11 +9475,7 @@ var openapi_default = {
9204
9475
  items: { type: "string" },
9205
9476
  type: "array"
9206
9477
  },
9207
- expires_at: {
9208
- format: "date-time",
9209
- nullable: true,
9210
- type: "string"
9211
- },
9478
+ expires_at: { format: "date-time", type: "string" },
9212
9479
  user_identifier_key: { minLength: 1, type: "string" },
9213
9480
  user_identity_ids: {
9214
9481
  items: { type: "string" },
@@ -9262,11 +9529,7 @@ var openapi_default = {
9262
9529
  items: { type: "string" },
9263
9530
  type: "array"
9264
9531
  },
9265
- expires_at: {
9266
- format: "date-time",
9267
- nullable: true,
9268
- type: "string"
9269
- },
9532
+ expires_at: { format: "date-time", type: "string" },
9270
9533
  user_identifier_key: { minLength: 1, type: "string" },
9271
9534
  user_identity_ids: {
9272
9535
  items: { type: "string" },
@@ -9582,8 +9845,7 @@ var openapi_default = {
9582
9845
  nullable: true,
9583
9846
  oneOf: [
9584
9847
  { maxLength: 500, type: "string" },
9585
- { type: "boolean" },
9586
- { format: "null", nullable: true, type: "string" }
9848
+ { type: "boolean" }
9587
9849
  ]
9588
9850
  },
9589
9851
  type: "object"
@@ -9754,7 +10016,7 @@ var openapi_default = {
9754
10016
  description: "Returns devices where the webview's custom_metadata contains all of the provided key/value pairs.",
9755
10017
  type: "object"
9756
10018
  },
9757
- limit: { default: 500, nullable: true, type: "number" },
10019
+ limit: { default: 500, format: "float", type: "number" },
9758
10020
  user_identifier_key: { type: "string" }
9759
10021
  },
9760
10022
  type: "object"
@@ -9970,8 +10232,7 @@ var openapi_default = {
9970
10232
  nullable: true,
9971
10233
  oneOf: [
9972
10234
  { maxLength: 500, type: "string" },
9973
- { type: "boolean" },
9974
- { format: "null", nullable: true, type: "string" }
10235
+ { type: "boolean" }
9975
10236
  ]
9976
10237
  },
9977
10238
  type: "object"
@@ -10123,11 +10384,7 @@ var openapi_default = {
10123
10384
  items: { format: "uuid", type: "string" },
10124
10385
  type: "array"
10125
10386
  },
10126
- created_before: {
10127
- format: "date-time",
10128
- nullable: true,
10129
- type: "string"
10130
- },
10387
+ created_before: { format: "date-time", type: "string" },
10131
10388
  custom_metadata_has: {
10132
10389
  additionalProperties: {
10133
10390
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -10270,7 +10527,7 @@ var openapi_default = {
10270
10527
  },
10271
10528
  type: "array"
10272
10529
  },
10273
- limit: { default: 500, nullable: true, type: "number" },
10530
+ limit: { default: 500, format: "float", type: "number" },
10274
10531
  manufacturer: {
10275
10532
  enum: [
10276
10533
  "akuvox",
@@ -10600,11 +10857,7 @@ var openapi_default = {
10600
10857
  items: { format: "uuid", type: "string" },
10601
10858
  type: "array"
10602
10859
  },
10603
- created_before: {
10604
- format: "date-time",
10605
- nullable: true,
10606
- type: "string"
10607
- },
10860
+ created_before: { format: "date-time", type: "string" },
10608
10861
  custom_metadata_has: {
10609
10862
  additionalProperties: {
10610
10863
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -10747,7 +11000,7 @@ var openapi_default = {
10747
11000
  },
10748
11001
  type: "array"
10749
11002
  },
10750
- limit: { default: 500, nullable: true, type: "number" },
11003
+ limit: { default: 500, format: "float", type: "number" },
10751
11004
  manufacturer: {
10752
11005
  enum: [
10753
11006
  "akuvox",
@@ -10926,8 +11179,7 @@ var openapi_default = {
10926
11179
  nullable: true,
10927
11180
  oneOf: [
10928
11181
  { maxLength: 500, type: "string" },
10929
- { type: "boolean" },
10930
- { format: "null", nullable: true, type: "string" }
11182
+ { type: "boolean" }
10931
11183
  ]
10932
11184
  },
10933
11185
  type: "object"
@@ -10983,8 +11235,7 @@ var openapi_default = {
10983
11235
  nullable: true,
10984
11236
  oneOf: [
10985
11237
  { maxLength: 500, type: "string" },
10986
- { type: "boolean" },
10987
- { format: "null", nullable: true, type: "string" }
11238
+ { type: "boolean" }
10988
11239
  ]
10989
11240
  },
10990
11241
  type: "object"
@@ -11241,7 +11492,7 @@ var openapi_default = {
11241
11492
  },
11242
11493
  type: "array"
11243
11494
  },
11244
- limit: { default: 500, nullable: true, type: "number" },
11495
+ limit: { default: 500, format: "float", type: "number" },
11245
11496
  since: { type: "string" }
11246
11497
  },
11247
11498
  type: "object"
@@ -11351,11 +11602,7 @@ var openapi_default = {
11351
11602
  items: { format: "uuid", type: "string" },
11352
11603
  type: "array"
11353
11604
  },
11354
- created_before: {
11355
- format: "date-time",
11356
- nullable: true,
11357
- type: "string"
11358
- },
11605
+ created_before: { format: "date-time", type: "string" },
11359
11606
  custom_metadata_has: {
11360
11607
  additionalProperties: {
11361
11608
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -11498,7 +11745,7 @@ var openapi_default = {
11498
11745
  },
11499
11746
  type: "array"
11500
11747
  },
11501
- limit: { default: 500, nullable: true, type: "number" },
11748
+ limit: { default: 500, format: "float", type: "number" },
11502
11749
  manufacturer: {
11503
11750
  enum: [
11504
11751
  "akuvox",
@@ -11784,8 +12031,8 @@ var openapi_default = {
11784
12031
  device_id: { format: "uuid", type: "string" },
11785
12032
  ends_daily_at: { type: "string" },
11786
12033
  name: { type: "string" },
11787
- noise_threshold_decibels: { type: "number" },
11788
- noise_threshold_nrs: { type: "number" },
12034
+ noise_threshold_decibels: { format: "float", type: "number" },
12035
+ noise_threshold_nrs: { format: "float", type: "number" },
11789
12036
  starts_daily_at: { type: "string" },
11790
12037
  sync: { default: false, type: "boolean" }
11791
12038
  },
@@ -11993,9 +12240,9 @@ var openapi_default = {
11993
12240
  device_id: { format: "uuid", type: "string" },
11994
12241
  ends_daily_at: { type: "string" },
11995
12242
  name: { type: "string" },
11996
- noise_threshold_decibels: { type: "number" },
12243
+ noise_threshold_decibels: { format: "float", type: "number" },
11997
12244
  noise_threshold_id: { format: "uuid", type: "string" },
11998
- noise_threshold_nrs: { type: "number" },
12245
+ noise_threshold_nrs: { format: "float", type: "number" },
11999
12246
  starts_daily_at: { type: "string" },
12000
12247
  sync: { default: false, type: "boolean" }
12001
12248
  },
@@ -12045,9 +12292,9 @@ var openapi_default = {
12045
12292
  device_id: { format: "uuid", type: "string" },
12046
12293
  ends_daily_at: { type: "string" },
12047
12294
  name: { type: "string" },
12048
- noise_threshold_decibels: { type: "number" },
12295
+ noise_threshold_decibels: { format: "float", type: "number" },
12049
12296
  noise_threshold_id: { format: "uuid", type: "string" },
12050
- noise_threshold_nrs: { type: "number" },
12297
+ noise_threshold_nrs: { format: "float", type: "number" },
12051
12298
  starts_daily_at: { type: "string" },
12052
12299
  sync: { default: false, type: "boolean" }
12053
12300
  },
@@ -12098,9 +12345,9 @@ var openapi_default = {
12098
12345
  device_id: { format: "uuid", type: "string" },
12099
12346
  ends_daily_at: { type: "string" },
12100
12347
  name: { type: "string" },
12101
- noise_threshold_decibels: { type: "number" },
12348
+ noise_threshold_decibels: { format: "float", type: "number" },
12102
12349
  noise_threshold_id: { format: "uuid", type: "string" },
12103
- noise_threshold_nrs: { type: "number" },
12350
+ noise_threshold_nrs: { format: "float", type: "number" },
12104
12351
  starts_daily_at: { type: "string" },
12105
12352
  sync: { default: false, type: "boolean" }
12106
12353
  },
@@ -12289,7 +12536,11 @@ var openapi_default = {
12289
12536
  hce_capability: { default: false, type: "boolean" },
12290
12537
  nfc_capability: { default: false, type: "boolean" },
12291
12538
  seos_applet_version: { default: "1.0.0", type: "string" },
12292
- seos_tsm_endpoint_id: { default: 1, type: "number" }
12539
+ seos_tsm_endpoint_id: {
12540
+ default: 1,
12541
+ format: "float",
12542
+ type: "number"
12543
+ }
12293
12544
  },
12294
12545
  type: "object"
12295
12546
  },
@@ -12363,11 +12614,23 @@ var openapi_default = {
12363
12614
  properties: {
12364
12615
  automatic_cooling_enabled: { type: "boolean" },
12365
12616
  automatic_heating_enabled: { type: "boolean" },
12366
- cooling_set_point_celsius: { type: "number" },
12367
- cooling_set_point_fahrenheit: { type: "number" },
12617
+ cooling_set_point_celsius: {
12618
+ format: "float",
12619
+ type: "number"
12620
+ },
12621
+ cooling_set_point_fahrenheit: {
12622
+ format: "float",
12623
+ type: "number"
12624
+ },
12368
12625
  device_id: { type: "string" },
12369
- heating_set_point_celsius: { type: "number" },
12370
- heating_set_point_fahrenheit: { type: "number" },
12626
+ heating_set_point_celsius: {
12627
+ format: "float",
12628
+ type: "number"
12629
+ },
12630
+ heating_set_point_fahrenheit: {
12631
+ format: "float",
12632
+ type: "number"
12633
+ },
12371
12634
  hvac_mode_setting: {
12372
12635
  enum: ["off", "heat", "cool", "heat_cool"],
12373
12636
  type: "string"
@@ -12638,10 +12901,22 @@ var openapi_default = {
12638
12901
  format: "uuid",
12639
12902
  type: "string"
12640
12903
  },
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" },
12904
+ cooling_set_point_celsius: {
12905
+ format: "float",
12906
+ type: "number"
12907
+ },
12908
+ cooling_set_point_fahrenheit: {
12909
+ format: "float",
12910
+ type: "number"
12911
+ },
12912
+ heating_set_point_celsius: {
12913
+ format: "float",
12914
+ type: "number"
12915
+ },
12916
+ heating_set_point_fahrenheit: {
12917
+ format: "float",
12918
+ type: "number"
12919
+ },
12645
12920
  hvac_mode_setting: {
12646
12921
  enum: ["off", "heat", "cool", "heat_cool"],
12647
12922
  type: "string"
@@ -12706,10 +12981,22 @@ var openapi_default = {
12706
12981
  format: "uuid",
12707
12982
  type: "string"
12708
12983
  },
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" },
12984
+ cooling_set_point_celsius: {
12985
+ format: "float",
12986
+ type: "number"
12987
+ },
12988
+ cooling_set_point_fahrenheit: {
12989
+ format: "float",
12990
+ type: "number"
12991
+ },
12992
+ heating_set_point_celsius: {
12993
+ format: "float",
12994
+ type: "number"
12995
+ },
12996
+ heating_set_point_fahrenheit: {
12997
+ format: "float",
12998
+ type: "number"
12999
+ },
12713
13000
  hvac_mode_setting: {
12714
13001
  enum: ["off", "heat", "cool", "heat_cool"],
12715
13002
  type: "string"
@@ -12775,10 +13062,22 @@ var openapi_default = {
12775
13062
  format: "uuid",
12776
13063
  type: "string"
12777
13064
  },
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" },
13065
+ cooling_set_point_celsius: {
13066
+ format: "float",
13067
+ type: "number"
13068
+ },
13069
+ cooling_set_point_fahrenheit: {
13070
+ format: "float",
13071
+ type: "number"
13072
+ },
13073
+ heating_set_point_celsius: {
13074
+ format: "float",
13075
+ type: "number"
13076
+ },
13077
+ heating_set_point_fahrenheit: {
13078
+ format: "float",
13079
+ type: "number"
13080
+ },
12782
13081
  hvac_mode_setting: {
12783
13082
  enum: ["off", "heat", "cool", "heat_cool"],
12784
13083
  type: "string"
@@ -12839,8 +13138,14 @@ var openapi_default = {
12839
13138
  "application/json": {
12840
13139
  schema: {
12841
13140
  properties: {
12842
- cooling_set_point_celsius: { type: "number" },
12843
- cooling_set_point_fahrenheit: { type: "number" },
13141
+ cooling_set_point_celsius: {
13142
+ format: "float",
13143
+ type: "number"
13144
+ },
13145
+ cooling_set_point_fahrenheit: {
13146
+ format: "float",
13147
+ type: "number"
13148
+ },
12844
13149
  device_id: { format: "uuid", type: "string" },
12845
13150
  sync: { default: false, type: "boolean" }
12846
13151
  },
@@ -12941,8 +13246,14 @@ var openapi_default = {
12941
13246
  schema: {
12942
13247
  properties: {
12943
13248
  device_id: { format: "uuid", type: "string" },
12944
- heating_set_point_celsius: { type: "number" },
12945
- heating_set_point_fahrenheit: { type: "number" },
13249
+ heating_set_point_celsius: {
13250
+ format: "float",
13251
+ type: "number"
13252
+ },
13253
+ heating_set_point_fahrenheit: {
13254
+ format: "float",
13255
+ type: "number"
13256
+ },
12946
13257
  sync: { default: false, type: "boolean" }
12947
13258
  },
12948
13259
  required: ["device_id"],
@@ -12993,11 +13304,23 @@ var openapi_default = {
12993
13304
  "application/json": {
12994
13305
  schema: {
12995
13306
  properties: {
12996
- cooling_set_point_celsius: { type: "number" },
12997
- cooling_set_point_fahrenheit: { type: "number" },
13307
+ cooling_set_point_celsius: {
13308
+ format: "float",
13309
+ type: "number"
13310
+ },
13311
+ cooling_set_point_fahrenheit: {
13312
+ format: "float",
13313
+ type: "number"
13314
+ },
12998
13315
  device_id: { format: "uuid", type: "string" },
12999
- heating_set_point_celsius: { type: "number" },
13000
- heating_set_point_fahrenheit: { type: "number" },
13316
+ heating_set_point_celsius: {
13317
+ format: "float",
13318
+ type: "number"
13319
+ },
13320
+ heating_set_point_fahrenheit: {
13321
+ format: "float",
13322
+ type: "number"
13323
+ },
13001
13324
  sync: { default: false, type: "boolean" }
13002
13325
  },
13003
13326
  required: ["device_id"],
@@ -13058,11 +13381,7 @@ var openapi_default = {
13058
13381
  items: { format: "uuid", type: "string" },
13059
13382
  type: "array"
13060
13383
  },
13061
- created_before: {
13062
- format: "date-time",
13063
- nullable: true,
13064
- type: "string"
13065
- },
13384
+ created_before: { format: "date-time", type: "string" },
13066
13385
  custom_metadata_has: {
13067
13386
  additionalProperties: {
13068
13387
  oneOf: [{ type: "string" }, { type: "boolean" }]
@@ -13205,7 +13524,7 @@ var openapi_default = {
13205
13524
  },
13206
13525
  type: "array"
13207
13526
  },
13208
- limit: { default: 500, nullable: true, type: "number" },
13527
+ limit: { default: 500, format: "float", type: "number" },
13209
13528
  manufacturer: {
13210
13529
  enum: [
13211
13530
  "akuvox",
@@ -13403,10 +13722,22 @@ var openapi_default = {
13403
13722
  properties: {
13404
13723
  automatic_cooling_enabled: { type: "boolean" },
13405
13724
  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" },
13725
+ cooling_set_point_celsius: {
13726
+ format: "float",
13727
+ type: "number"
13728
+ },
13729
+ cooling_set_point_fahrenheit: {
13730
+ format: "float",
13731
+ type: "number"
13732
+ },
13733
+ heating_set_point_celsius: {
13734
+ format: "float",
13735
+ type: "number"
13736
+ },
13737
+ heating_set_point_fahrenheit: {
13738
+ format: "float",
13739
+ type: "number"
13740
+ },
13410
13741
  hvac_mode_setting: {
13411
13742
  enum: ["off", "heat", "cool", "heat_cool"],
13412
13743
  type: "string"
@@ -13460,10 +13791,22 @@ var openapi_default = {
13460
13791
  properties: {
13461
13792
  automatic_cooling_enabled: { type: "boolean" },
13462
13793
  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" },
13794
+ cooling_set_point_celsius: {
13795
+ format: "float",
13796
+ type: "number"
13797
+ },
13798
+ cooling_set_point_fahrenheit: {
13799
+ format: "float",
13800
+ type: "number"
13801
+ },
13802
+ heating_set_point_celsius: {
13803
+ format: "float",
13804
+ type: "number"
13805
+ },
13806
+ heating_set_point_fahrenheit: {
13807
+ format: "float",
13808
+ type: "number"
13809
+ },
13467
13810
  hvac_mode_setting: {
13468
13811
  enum: ["off", "heat", "cool", "heat_cool"],
13469
13812
  type: "string"
@@ -14147,9 +14490,10 @@ var openapi_default = {
14147
14490
  schema: {
14148
14491
  properties: {
14149
14492
  accessible_devices: {
14150
- description: "\n ---\n deprecated: use devices.\n ---\n ",
14493
+ deprecated: true,
14151
14494
  items: { $ref: "#/components/schemas/device" },
14152
- type: "array"
14495
+ type: "array",
14496
+ "x-deprecated": "use devices."
14153
14497
  },
14154
14498
  devices: {
14155
14499
  items: { $ref: "#/components/schemas/device" },
@@ -14778,9 +15122,10 @@ var openapi_default = {
14778
15122
  properties: {
14779
15123
  company_name: { type: "string" },
14780
15124
  connect_partner_name: {
14781
- description: "\n ---\n deprecated: use company_name\n ---\n ",
15125
+ deprecated: true,
14782
15126
  nullable: true,
14783
- type: "string"
15127
+ type: "string",
15128
+ "x-deprecated": "use company_name"
14784
15129
  },
14785
15130
  is_sandbox: { default: false, type: "boolean" },
14786
15131
  name: { type: "string" },