@seamapi/types 1.367.2 → 1.369.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +509 -234
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2801 -1000
- package/lib/seam/connect/models/action-attempts/common.js +36 -19
- package/lib/seam/connect/models/action-attempts/common.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-credential.js +9 -5
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +320 -34
- package/lib/seam/connect/openapi.js +430 -164
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2481 -966
- package/package.json +3 -3
- package/src/lib/seam/connect/models/action-attempts/common.ts +42 -19
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +17 -5
- package/src/lib/seam/connect/openapi.ts +501 -164
- package/src/lib/seam/connect/route-types.ts +2481 -966
|
@@ -2737,14 +2737,21 @@ export default {
|
|
|
2737
2737
|
description: 'Locking door.',
|
|
2738
2738
|
properties: {
|
|
2739
2739
|
action_attempt_id: {
|
|
2740
|
-
description: '
|
|
2740
|
+
description: 'ID of the action attempt.',
|
|
2741
2741
|
format: 'uuid',
|
|
2742
2742
|
type: 'string',
|
|
2743
|
-
'x-title': 'Action Attempt ID',
|
|
2744
2743
|
},
|
|
2745
2744
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
2746
|
-
error: {
|
|
2747
|
-
|
|
2745
|
+
error: {
|
|
2746
|
+
description:
|
|
2747
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
2748
|
+
nullable: true,
|
|
2749
|
+
},
|
|
2750
|
+
result: {
|
|
2751
|
+
description:
|
|
2752
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
2753
|
+
nullable: true,
|
|
2754
|
+
},
|
|
2748
2755
|
status: { enum: ['pending'], type: 'string' },
|
|
2749
2756
|
},
|
|
2750
2757
|
required: [
|
|
@@ -2760,13 +2767,16 @@ export default {
|
|
|
2760
2767
|
description: 'Locking door succeeded.',
|
|
2761
2768
|
properties: {
|
|
2762
2769
|
action_attempt_id: {
|
|
2763
|
-
description: '
|
|
2770
|
+
description: 'ID of the action attempt.',
|
|
2764
2771
|
format: 'uuid',
|
|
2765
2772
|
type: 'string',
|
|
2766
|
-
'x-title': 'Action Attempt ID',
|
|
2767
2773
|
},
|
|
2768
2774
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
2769
|
-
error: {
|
|
2775
|
+
error: {
|
|
2776
|
+
description:
|
|
2777
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
2778
|
+
nullable: true,
|
|
2779
|
+
},
|
|
2770
2780
|
result: { properties: {}, type: 'object' },
|
|
2771
2781
|
status: { enum: ['success'], type: 'string' },
|
|
2772
2782
|
},
|
|
@@ -2783,10 +2793,9 @@ export default {
|
|
|
2783
2793
|
description: 'Locking door failed.',
|
|
2784
2794
|
properties: {
|
|
2785
2795
|
action_attempt_id: {
|
|
2786
|
-
description: '
|
|
2796
|
+
description: 'ID of the action attempt.',
|
|
2787
2797
|
format: 'uuid',
|
|
2788
2798
|
type: 'string',
|
|
2789
|
-
'x-title': 'Action Attempt ID',
|
|
2790
2799
|
},
|
|
2791
2800
|
action_type: { enum: ['LOCK_DOOR'], type: 'string' },
|
|
2792
2801
|
error: {
|
|
@@ -2797,7 +2806,11 @@ export default {
|
|
|
2797
2806
|
required: ['type', 'message'],
|
|
2798
2807
|
type: 'object',
|
|
2799
2808
|
},
|
|
2800
|
-
result: {
|
|
2809
|
+
result: {
|
|
2810
|
+
description:
|
|
2811
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
2812
|
+
nullable: true,
|
|
2813
|
+
},
|
|
2801
2814
|
status: { enum: ['error'], type: 'string' },
|
|
2802
2815
|
},
|
|
2803
2816
|
required: [
|
|
@@ -2813,14 +2826,21 @@ export default {
|
|
|
2813
2826
|
description: 'Unlocking door.',
|
|
2814
2827
|
properties: {
|
|
2815
2828
|
action_attempt_id: {
|
|
2816
|
-
description: '
|
|
2829
|
+
description: 'ID of the action attempt.',
|
|
2817
2830
|
format: 'uuid',
|
|
2818
2831
|
type: 'string',
|
|
2819
|
-
'x-title': 'Action Attempt ID',
|
|
2820
2832
|
},
|
|
2821
2833
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
2822
|
-
error: {
|
|
2823
|
-
|
|
2834
|
+
error: {
|
|
2835
|
+
description:
|
|
2836
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
2837
|
+
nullable: true,
|
|
2838
|
+
},
|
|
2839
|
+
result: {
|
|
2840
|
+
description:
|
|
2841
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
2842
|
+
nullable: true,
|
|
2843
|
+
},
|
|
2824
2844
|
status: { enum: ['pending'], type: 'string' },
|
|
2825
2845
|
},
|
|
2826
2846
|
required: [
|
|
@@ -2836,13 +2856,16 @@ export default {
|
|
|
2836
2856
|
description: 'Unlocking door succeeded.',
|
|
2837
2857
|
properties: {
|
|
2838
2858
|
action_attempt_id: {
|
|
2839
|
-
description: '
|
|
2859
|
+
description: 'ID of the action attempt.',
|
|
2840
2860
|
format: 'uuid',
|
|
2841
2861
|
type: 'string',
|
|
2842
|
-
'x-title': 'Action Attempt ID',
|
|
2843
2862
|
},
|
|
2844
2863
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
2845
|
-
error: {
|
|
2864
|
+
error: {
|
|
2865
|
+
description:
|
|
2866
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
2867
|
+
nullable: true,
|
|
2868
|
+
},
|
|
2846
2869
|
result: { properties: {}, type: 'object' },
|
|
2847
2870
|
status: { enum: ['success'], type: 'string' },
|
|
2848
2871
|
},
|
|
@@ -2859,10 +2882,9 @@ export default {
|
|
|
2859
2882
|
description: 'Unlocking door failed.',
|
|
2860
2883
|
properties: {
|
|
2861
2884
|
action_attempt_id: {
|
|
2862
|
-
description: '
|
|
2885
|
+
description: 'ID of the action attempt.',
|
|
2863
2886
|
format: 'uuid',
|
|
2864
2887
|
type: 'string',
|
|
2865
|
-
'x-title': 'Action Attempt ID',
|
|
2866
2888
|
},
|
|
2867
2889
|
action_type: { enum: ['UNLOCK_DOOR'], type: 'string' },
|
|
2868
2890
|
error: {
|
|
@@ -2873,7 +2895,11 @@ export default {
|
|
|
2873
2895
|
required: ['type', 'message'],
|
|
2874
2896
|
type: 'object',
|
|
2875
2897
|
},
|
|
2876
|
-
result: {
|
|
2898
|
+
result: {
|
|
2899
|
+
description:
|
|
2900
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
2901
|
+
nullable: true,
|
|
2902
|
+
},
|
|
2877
2903
|
status: { enum: ['error'], type: 'string' },
|
|
2878
2904
|
},
|
|
2879
2905
|
required: [
|
|
@@ -2889,14 +2915,21 @@ export default {
|
|
|
2889
2915
|
description: 'Reading credential data from physical encoder.',
|
|
2890
2916
|
properties: {
|
|
2891
2917
|
action_attempt_id: {
|
|
2892
|
-
description: '
|
|
2918
|
+
description: 'ID of the action attempt.',
|
|
2893
2919
|
format: 'uuid',
|
|
2894
2920
|
type: 'string',
|
|
2895
|
-
'x-title': 'Action Attempt ID',
|
|
2896
2921
|
},
|
|
2897
2922
|
action_type: { enum: ['SCAN_CREDENTIAL'], type: 'string' },
|
|
2898
|
-
error: {
|
|
2899
|
-
|
|
2923
|
+
error: {
|
|
2924
|
+
description:
|
|
2925
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
2926
|
+
nullable: true,
|
|
2927
|
+
},
|
|
2928
|
+
result: {
|
|
2929
|
+
description:
|
|
2930
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
2931
|
+
nullable: true,
|
|
2932
|
+
},
|
|
2900
2933
|
status: { enum: ['pending'], type: 'string' },
|
|
2901
2934
|
},
|
|
2902
2935
|
required: [
|
|
@@ -2913,13 +2946,16 @@ export default {
|
|
|
2913
2946
|
'Reading credential data from physical encoder succeeded.',
|
|
2914
2947
|
properties: {
|
|
2915
2948
|
action_attempt_id: {
|
|
2916
|
-
description: '
|
|
2949
|
+
description: 'ID of the action attempt.',
|
|
2917
2950
|
format: 'uuid',
|
|
2918
2951
|
type: 'string',
|
|
2919
|
-
'x-title': 'Action Attempt ID',
|
|
2920
2952
|
},
|
|
2921
2953
|
action_type: { enum: ['SCAN_CREDENTIAL'], type: 'string' },
|
|
2922
|
-
error: {
|
|
2954
|
+
error: {
|
|
2955
|
+
description:
|
|
2956
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
2957
|
+
nullable: true,
|
|
2958
|
+
},
|
|
2923
2959
|
result: {
|
|
2924
2960
|
properties: {
|
|
2925
2961
|
acs_credential_on_encoder: {
|
|
@@ -3885,26 +3921,43 @@ export default {
|
|
|
3885
3921
|
'Reading credential data from physical encoder failed.',
|
|
3886
3922
|
properties: {
|
|
3887
3923
|
action_attempt_id: {
|
|
3888
|
-
description: '
|
|
3924
|
+
description: 'ID of the action attempt.',
|
|
3889
3925
|
format: 'uuid',
|
|
3890
3926
|
type: 'string',
|
|
3891
|
-
'x-title': 'Action Attempt ID',
|
|
3892
3927
|
},
|
|
3893
3928
|
action_type: { enum: ['SCAN_CREDENTIAL'], type: 'string' },
|
|
3894
3929
|
error: {
|
|
3895
3930
|
oneOf: [
|
|
3896
3931
|
{
|
|
3932
|
+
description:
|
|
3933
|
+
"Error that doesn't fit into other specific error categories.",
|
|
3897
3934
|
properties: {
|
|
3898
|
-
message: {
|
|
3899
|
-
|
|
3935
|
+
message: {
|
|
3936
|
+
description:
|
|
3937
|
+
'Message for the error associated with the action attempt.',
|
|
3938
|
+
type: 'string',
|
|
3939
|
+
},
|
|
3940
|
+
type: {
|
|
3941
|
+
description:
|
|
3942
|
+
'Type of the error associated with the action attempt.',
|
|
3943
|
+
enum: ['uncategorized_error'],
|
|
3944
|
+
type: 'string',
|
|
3945
|
+
},
|
|
3900
3946
|
},
|
|
3901
3947
|
required: ['type', 'message'],
|
|
3902
3948
|
type: 'object',
|
|
3903
3949
|
},
|
|
3904
3950
|
{
|
|
3951
|
+
description: 'Error to indicate an expired action attempt.',
|
|
3905
3952
|
properties: {
|
|
3906
|
-
message: {
|
|
3953
|
+
message: {
|
|
3954
|
+
description:
|
|
3955
|
+
'Message for the error associated with the action attempt.',
|
|
3956
|
+
type: 'string',
|
|
3957
|
+
},
|
|
3907
3958
|
type: {
|
|
3959
|
+
description:
|
|
3960
|
+
'Type of the error associated with the action attempt.',
|
|
3908
3961
|
enum: ['action_attempt_expired'],
|
|
3909
3962
|
type: 'string',
|
|
3910
3963
|
},
|
|
@@ -3925,7 +3978,11 @@ export default {
|
|
|
3925
3978
|
},
|
|
3926
3979
|
],
|
|
3927
3980
|
},
|
|
3928
|
-
result: {
|
|
3981
|
+
result: {
|
|
3982
|
+
description:
|
|
3983
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
3984
|
+
nullable: true,
|
|
3985
|
+
},
|
|
3929
3986
|
status: { enum: ['error'], type: 'string' },
|
|
3930
3987
|
},
|
|
3931
3988
|
required: [
|
|
@@ -3938,17 +3995,29 @@ export default {
|
|
|
3938
3995
|
type: 'object',
|
|
3939
3996
|
},
|
|
3940
3997
|
{
|
|
3941
|
-
description:
|
|
3998
|
+
description:
|
|
3999
|
+
'Action attempt to track encoding credential data from the physical encoder onto a card.',
|
|
3942
4000
|
properties: {
|
|
3943
4001
|
action_attempt_id: {
|
|
3944
|
-
description: '
|
|
4002
|
+
description: 'ID of the action attempt.',
|
|
3945
4003
|
format: 'uuid',
|
|
3946
4004
|
type: 'string',
|
|
3947
|
-
'x-title': 'Action Attempt ID',
|
|
3948
4005
|
},
|
|
3949
|
-
action_type: {
|
|
3950
|
-
|
|
3951
|
-
|
|
4006
|
+
action_type: {
|
|
4007
|
+
description: 'Type of action that the action attempt tracks.',
|
|
4008
|
+
enum: ['ENCODE_CREDENTIAL'],
|
|
4009
|
+
type: 'string',
|
|
4010
|
+
},
|
|
4011
|
+
error: {
|
|
4012
|
+
description:
|
|
4013
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4014
|
+
nullable: true,
|
|
4015
|
+
},
|
|
4016
|
+
result: {
|
|
4017
|
+
description:
|
|
4018
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
4019
|
+
nullable: true,
|
|
4020
|
+
},
|
|
3952
4021
|
status: { enum: ['pending'], type: 'string' },
|
|
3953
4022
|
},
|
|
3954
4023
|
required: [
|
|
@@ -3962,19 +4031,26 @@ export default {
|
|
|
3962
4031
|
},
|
|
3963
4032
|
{
|
|
3964
4033
|
description:
|
|
3965
|
-
'
|
|
4034
|
+
'Action attempt to indicate that encoding credential data from the physical encoder onto a card succeeded.',
|
|
3966
4035
|
properties: {
|
|
3967
4036
|
action_attempt_id: {
|
|
3968
|
-
description: '
|
|
4037
|
+
description: 'ID of the action attempt.',
|
|
3969
4038
|
format: 'uuid',
|
|
3970
4039
|
type: 'string',
|
|
3971
|
-
'x-title': 'Action Attempt ID',
|
|
3972
4040
|
},
|
|
3973
|
-
action_type: {
|
|
3974
|
-
|
|
4041
|
+
action_type: {
|
|
4042
|
+
description: 'Type of action that the action attempt tracks.',
|
|
4043
|
+
enum: ['ENCODE_CREDENTIAL'],
|
|
4044
|
+
type: 'string',
|
|
4045
|
+
},
|
|
4046
|
+
error: {
|
|
4047
|
+
description:
|
|
4048
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
4049
|
+
nullable: true,
|
|
4050
|
+
},
|
|
3975
4051
|
result: {
|
|
3976
4052
|
description:
|
|
3977
|
-
'
|
|
4053
|
+
'If an encoding attempt was successful, includes the `acs_credential` data that was encoded onto the card.',
|
|
3978
4054
|
oneOf: [
|
|
3979
4055
|
{
|
|
3980
4056
|
description:
|
|
@@ -4763,7 +4839,6 @@ export default {
|
|
|
4763
4839
|
'x-route-path': '/acs/credentials/unmanaged',
|
|
4764
4840
|
},
|
|
4765
4841
|
],
|
|
4766
|
-
'x-route-path': '/acs/credentials',
|
|
4767
4842
|
},
|
|
4768
4843
|
status: { enum: ['success'], type: 'string' },
|
|
4769
4844
|
},
|
|
@@ -4778,29 +4853,50 @@ export default {
|
|
|
4778
4853
|
},
|
|
4779
4854
|
{
|
|
4780
4855
|
description:
|
|
4781
|
-
'
|
|
4856
|
+
'Action attempt to indicate that encoding credential data from the physical encoder onto a card failed.',
|
|
4782
4857
|
properties: {
|
|
4783
4858
|
action_attempt_id: {
|
|
4784
|
-
description: '
|
|
4859
|
+
description: 'ID of the action attempt.',
|
|
4785
4860
|
format: 'uuid',
|
|
4786
4861
|
type: 'string',
|
|
4787
|
-
'x-title': 'Action Attempt ID',
|
|
4788
4862
|
},
|
|
4789
|
-
action_type: {
|
|
4863
|
+
action_type: {
|
|
4864
|
+
description: 'Type of action that the action attempt tracks.',
|
|
4865
|
+
enum: ['ENCODE_CREDENTIAL'],
|
|
4866
|
+
type: 'string',
|
|
4867
|
+
},
|
|
4790
4868
|
error: {
|
|
4791
4869
|
oneOf: [
|
|
4792
4870
|
{
|
|
4871
|
+
description:
|
|
4872
|
+
"Error that doesn't fit into other specific error categories.",
|
|
4793
4873
|
properties: {
|
|
4794
|
-
message: {
|
|
4795
|
-
|
|
4874
|
+
message: {
|
|
4875
|
+
description:
|
|
4876
|
+
'Message for the error associated with the action attempt.',
|
|
4877
|
+
type: 'string',
|
|
4878
|
+
},
|
|
4879
|
+
type: {
|
|
4880
|
+
description:
|
|
4881
|
+
'Type of the error associated with the action attempt.',
|
|
4882
|
+
enum: ['uncategorized_error'],
|
|
4883
|
+
type: 'string',
|
|
4884
|
+
},
|
|
4796
4885
|
},
|
|
4797
4886
|
required: ['type', 'message'],
|
|
4798
4887
|
type: 'object',
|
|
4799
4888
|
},
|
|
4800
4889
|
{
|
|
4890
|
+
description: 'Error to indicate an expired action attempt.',
|
|
4801
4891
|
properties: {
|
|
4802
|
-
message: {
|
|
4892
|
+
message: {
|
|
4893
|
+
description:
|
|
4894
|
+
'Message for the error associated with the action attempt.',
|
|
4895
|
+
type: 'string',
|
|
4896
|
+
},
|
|
4803
4897
|
type: {
|
|
4898
|
+
description:
|
|
4899
|
+
'Type of the error associated with the action attempt.',
|
|
4804
4900
|
enum: ['action_attempt_expired'],
|
|
4805
4901
|
type: 'string',
|
|
4806
4902
|
},
|
|
@@ -4843,7 +4939,11 @@ export default {
|
|
|
4843
4939
|
},
|
|
4844
4940
|
],
|
|
4845
4941
|
},
|
|
4846
|
-
result: {
|
|
4942
|
+
result: {
|
|
4943
|
+
description:
|
|
4944
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
4945
|
+
nullable: true,
|
|
4946
|
+
},
|
|
4847
4947
|
status: { enum: ['error'], type: 'string' },
|
|
4848
4948
|
},
|
|
4849
4949
|
required: [
|
|
@@ -4859,17 +4959,24 @@ export default {
|
|
|
4859
4959
|
description: 'Resetting sandbox workspace.',
|
|
4860
4960
|
properties: {
|
|
4861
4961
|
action_attempt_id: {
|
|
4862
|
-
description: '
|
|
4962
|
+
description: 'ID of the action attempt.',
|
|
4863
4963
|
format: 'uuid',
|
|
4864
4964
|
type: 'string',
|
|
4865
|
-
'x-title': 'Action Attempt ID',
|
|
4866
4965
|
},
|
|
4867
4966
|
action_type: {
|
|
4868
4967
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
4869
4968
|
type: 'string',
|
|
4870
4969
|
},
|
|
4871
|
-
error: {
|
|
4872
|
-
|
|
4970
|
+
error: {
|
|
4971
|
+
description:
|
|
4972
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
4973
|
+
nullable: true,
|
|
4974
|
+
},
|
|
4975
|
+
result: {
|
|
4976
|
+
description:
|
|
4977
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
4978
|
+
nullable: true,
|
|
4979
|
+
},
|
|
4873
4980
|
status: { enum: ['pending'], type: 'string' },
|
|
4874
4981
|
},
|
|
4875
4982
|
required: [
|
|
@@ -4885,16 +4992,19 @@ export default {
|
|
|
4885
4992
|
description: 'Resetting sandbox workspace succeeded.',
|
|
4886
4993
|
properties: {
|
|
4887
4994
|
action_attempt_id: {
|
|
4888
|
-
description: '
|
|
4995
|
+
description: 'ID of the action attempt.',
|
|
4889
4996
|
format: 'uuid',
|
|
4890
4997
|
type: 'string',
|
|
4891
|
-
'x-title': 'Action Attempt ID',
|
|
4892
4998
|
},
|
|
4893
4999
|
action_type: {
|
|
4894
5000
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
4895
5001
|
type: 'string',
|
|
4896
5002
|
},
|
|
4897
|
-
error: {
|
|
5003
|
+
error: {
|
|
5004
|
+
description:
|
|
5005
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5006
|
+
nullable: true,
|
|
5007
|
+
},
|
|
4898
5008
|
result: { properties: {}, type: 'object' },
|
|
4899
5009
|
status: { enum: ['success'], type: 'string' },
|
|
4900
5010
|
},
|
|
@@ -4911,10 +5021,9 @@ export default {
|
|
|
4911
5021
|
description: 'Resetting sandbox workspace failed.',
|
|
4912
5022
|
properties: {
|
|
4913
5023
|
action_attempt_id: {
|
|
4914
|
-
description: '
|
|
5024
|
+
description: 'ID of the action attempt.',
|
|
4915
5025
|
format: 'uuid',
|
|
4916
5026
|
type: 'string',
|
|
4917
|
-
'x-title': 'Action Attempt ID',
|
|
4918
5027
|
},
|
|
4919
5028
|
action_type: {
|
|
4920
5029
|
enum: ['RESET_SANDBOX_WORKSPACE'],
|
|
@@ -4928,7 +5037,11 @@ export default {
|
|
|
4928
5037
|
required: ['type', 'message'],
|
|
4929
5038
|
type: 'object',
|
|
4930
5039
|
},
|
|
4931
|
-
result: {
|
|
5040
|
+
result: {
|
|
5041
|
+
description:
|
|
5042
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5043
|
+
nullable: true,
|
|
5044
|
+
},
|
|
4932
5045
|
status: { enum: ['error'], type: 'string' },
|
|
4933
5046
|
},
|
|
4934
5047
|
required: [
|
|
@@ -4944,14 +5057,21 @@ export default {
|
|
|
4944
5057
|
description: 'Setting fan mode.',
|
|
4945
5058
|
properties: {
|
|
4946
5059
|
action_attempt_id: {
|
|
4947
|
-
description: '
|
|
5060
|
+
description: 'ID of the action attempt.',
|
|
4948
5061
|
format: 'uuid',
|
|
4949
5062
|
type: 'string',
|
|
4950
|
-
'x-title': 'Action Attempt ID',
|
|
4951
5063
|
},
|
|
4952
5064
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
4953
|
-
error: {
|
|
4954
|
-
|
|
5065
|
+
error: {
|
|
5066
|
+
description:
|
|
5067
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5068
|
+
nullable: true,
|
|
5069
|
+
},
|
|
5070
|
+
result: {
|
|
5071
|
+
description:
|
|
5072
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5073
|
+
nullable: true,
|
|
5074
|
+
},
|
|
4955
5075
|
status: { enum: ['pending'], type: 'string' },
|
|
4956
5076
|
},
|
|
4957
5077
|
required: [
|
|
@@ -4967,13 +5087,16 @@ export default {
|
|
|
4967
5087
|
description: 'Setting fan mode succeeded.',
|
|
4968
5088
|
properties: {
|
|
4969
5089
|
action_attempt_id: {
|
|
4970
|
-
description: '
|
|
5090
|
+
description: 'ID of the action attempt.',
|
|
4971
5091
|
format: 'uuid',
|
|
4972
5092
|
type: 'string',
|
|
4973
|
-
'x-title': 'Action Attempt ID',
|
|
4974
5093
|
},
|
|
4975
5094
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
4976
|
-
error: {
|
|
5095
|
+
error: {
|
|
5096
|
+
description:
|
|
5097
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5098
|
+
nullable: true,
|
|
5099
|
+
},
|
|
4977
5100
|
result: { properties: {}, type: 'object' },
|
|
4978
5101
|
status: { enum: ['success'], type: 'string' },
|
|
4979
5102
|
},
|
|
@@ -4990,10 +5113,9 @@ export default {
|
|
|
4990
5113
|
description: 'Setting fan mode failed.',
|
|
4991
5114
|
properties: {
|
|
4992
5115
|
action_attempt_id: {
|
|
4993
|
-
description: '
|
|
5116
|
+
description: 'ID of the action attempt.',
|
|
4994
5117
|
format: 'uuid',
|
|
4995
5118
|
type: 'string',
|
|
4996
|
-
'x-title': 'Action Attempt ID',
|
|
4997
5119
|
},
|
|
4998
5120
|
action_type: { enum: ['SET_FAN_MODE'], type: 'string' },
|
|
4999
5121
|
error: {
|
|
@@ -5004,7 +5126,11 @@ export default {
|
|
|
5004
5126
|
required: ['type', 'message'],
|
|
5005
5127
|
type: 'object',
|
|
5006
5128
|
},
|
|
5007
|
-
result: {
|
|
5129
|
+
result: {
|
|
5130
|
+
description:
|
|
5131
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5132
|
+
nullable: true,
|
|
5133
|
+
},
|
|
5008
5134
|
status: { enum: ['error'], type: 'string' },
|
|
5009
5135
|
},
|
|
5010
5136
|
required: [
|
|
@@ -5020,14 +5146,21 @@ export default {
|
|
|
5020
5146
|
description: 'Setting HVAC mode.',
|
|
5021
5147
|
properties: {
|
|
5022
5148
|
action_attempt_id: {
|
|
5023
|
-
description: '
|
|
5149
|
+
description: 'ID of the action attempt.',
|
|
5024
5150
|
format: 'uuid',
|
|
5025
5151
|
type: 'string',
|
|
5026
|
-
'x-title': 'Action Attempt ID',
|
|
5027
5152
|
},
|
|
5028
5153
|
action_type: { enum: ['SET_HVAC_MODE'], type: 'string' },
|
|
5029
|
-
error: {
|
|
5030
|
-
|
|
5154
|
+
error: {
|
|
5155
|
+
description:
|
|
5156
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5157
|
+
nullable: true,
|
|
5158
|
+
},
|
|
5159
|
+
result: {
|
|
5160
|
+
description:
|
|
5161
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5162
|
+
nullable: true,
|
|
5163
|
+
},
|
|
5031
5164
|
status: { enum: ['pending'], type: 'string' },
|
|
5032
5165
|
},
|
|
5033
5166
|
required: [
|
|
@@ -5043,13 +5176,16 @@ export default {
|
|
|
5043
5176
|
description: 'Setting HVAC mode succeeded.',
|
|
5044
5177
|
properties: {
|
|
5045
5178
|
action_attempt_id: {
|
|
5046
|
-
description: '
|
|
5179
|
+
description: 'ID of the action attempt.',
|
|
5047
5180
|
format: 'uuid',
|
|
5048
5181
|
type: 'string',
|
|
5049
|
-
'x-title': 'Action Attempt ID',
|
|
5050
5182
|
},
|
|
5051
5183
|
action_type: { enum: ['SET_HVAC_MODE'], type: 'string' },
|
|
5052
|
-
error: {
|
|
5184
|
+
error: {
|
|
5185
|
+
description:
|
|
5186
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5187
|
+
nullable: true,
|
|
5188
|
+
},
|
|
5053
5189
|
result: { properties: {}, type: 'object' },
|
|
5054
5190
|
status: { enum: ['success'], type: 'string' },
|
|
5055
5191
|
},
|
|
@@ -5066,10 +5202,9 @@ export default {
|
|
|
5066
5202
|
description: 'Setting HVAC mode failed.',
|
|
5067
5203
|
properties: {
|
|
5068
5204
|
action_attempt_id: {
|
|
5069
|
-
description: '
|
|
5205
|
+
description: 'ID of the action attempt.',
|
|
5070
5206
|
format: 'uuid',
|
|
5071
5207
|
type: 'string',
|
|
5072
|
-
'x-title': 'Action Attempt ID',
|
|
5073
5208
|
},
|
|
5074
5209
|
action_type: { enum: ['SET_HVAC_MODE'], type: 'string' },
|
|
5075
5210
|
error: {
|
|
@@ -5080,7 +5215,11 @@ export default {
|
|
|
5080
5215
|
required: ['type', 'message'],
|
|
5081
5216
|
type: 'object',
|
|
5082
5217
|
},
|
|
5083
|
-
result: {
|
|
5218
|
+
result: {
|
|
5219
|
+
description:
|
|
5220
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5221
|
+
nullable: true,
|
|
5222
|
+
},
|
|
5084
5223
|
status: { enum: ['error'], type: 'string' },
|
|
5085
5224
|
},
|
|
5086
5225
|
required: [
|
|
@@ -5096,17 +5235,24 @@ export default {
|
|
|
5096
5235
|
description: 'Activating climate preset.',
|
|
5097
5236
|
properties: {
|
|
5098
5237
|
action_attempt_id: {
|
|
5099
|
-
description: '
|
|
5238
|
+
description: 'ID of the action attempt.',
|
|
5100
5239
|
format: 'uuid',
|
|
5101
5240
|
type: 'string',
|
|
5102
|
-
'x-title': 'Action Attempt ID',
|
|
5103
5241
|
},
|
|
5104
5242
|
action_type: {
|
|
5105
5243
|
enum: ['ACTIVATE_CLIMATE_PRESET'],
|
|
5106
5244
|
type: 'string',
|
|
5107
5245
|
},
|
|
5108
|
-
error: {
|
|
5109
|
-
|
|
5246
|
+
error: {
|
|
5247
|
+
description:
|
|
5248
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5249
|
+
nullable: true,
|
|
5250
|
+
},
|
|
5251
|
+
result: {
|
|
5252
|
+
description:
|
|
5253
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5254
|
+
nullable: true,
|
|
5255
|
+
},
|
|
5110
5256
|
status: { enum: ['pending'], type: 'string' },
|
|
5111
5257
|
},
|
|
5112
5258
|
required: [
|
|
@@ -5122,16 +5268,19 @@ export default {
|
|
|
5122
5268
|
description: 'Activating climate preset succeeded.',
|
|
5123
5269
|
properties: {
|
|
5124
5270
|
action_attempt_id: {
|
|
5125
|
-
description: '
|
|
5271
|
+
description: 'ID of the action attempt.',
|
|
5126
5272
|
format: 'uuid',
|
|
5127
5273
|
type: 'string',
|
|
5128
|
-
'x-title': 'Action Attempt ID',
|
|
5129
5274
|
},
|
|
5130
5275
|
action_type: {
|
|
5131
5276
|
enum: ['ACTIVATE_CLIMATE_PRESET'],
|
|
5132
5277
|
type: 'string',
|
|
5133
5278
|
},
|
|
5134
|
-
error: {
|
|
5279
|
+
error: {
|
|
5280
|
+
description:
|
|
5281
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5282
|
+
nullable: true,
|
|
5283
|
+
},
|
|
5135
5284
|
result: { properties: {}, type: 'object' },
|
|
5136
5285
|
status: { enum: ['success'], type: 'string' },
|
|
5137
5286
|
},
|
|
@@ -5148,10 +5297,9 @@ export default {
|
|
|
5148
5297
|
description: 'Activating climate preset failed.',
|
|
5149
5298
|
properties: {
|
|
5150
5299
|
action_attempt_id: {
|
|
5151
|
-
description: '
|
|
5300
|
+
description: 'ID of the action attempt.',
|
|
5152
5301
|
format: 'uuid',
|
|
5153
5302
|
type: 'string',
|
|
5154
|
-
'x-title': 'Action Attempt ID',
|
|
5155
5303
|
},
|
|
5156
5304
|
action_type: {
|
|
5157
5305
|
enum: ['ACTIVATE_CLIMATE_PRESET'],
|
|
@@ -5165,7 +5313,11 @@ export default {
|
|
|
5165
5313
|
required: ['type', 'message'],
|
|
5166
5314
|
type: 'object',
|
|
5167
5315
|
},
|
|
5168
|
-
result: {
|
|
5316
|
+
result: {
|
|
5317
|
+
description:
|
|
5318
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5319
|
+
nullable: true,
|
|
5320
|
+
},
|
|
5169
5321
|
status: { enum: ['error'], type: 'string' },
|
|
5170
5322
|
},
|
|
5171
5323
|
required: [
|
|
@@ -5180,14 +5332,21 @@ export default {
|
|
|
5180
5332
|
{
|
|
5181
5333
|
properties: {
|
|
5182
5334
|
action_attempt_id: {
|
|
5183
|
-
description: '
|
|
5335
|
+
description: 'ID of the action attempt.',
|
|
5184
5336
|
format: 'uuid',
|
|
5185
5337
|
type: 'string',
|
|
5186
|
-
'x-title': 'Action Attempt ID',
|
|
5187
5338
|
},
|
|
5188
5339
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
5189
|
-
error: {
|
|
5190
|
-
|
|
5340
|
+
error: {
|
|
5341
|
+
description:
|
|
5342
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5343
|
+
nullable: true,
|
|
5344
|
+
},
|
|
5345
|
+
result: {
|
|
5346
|
+
description:
|
|
5347
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5348
|
+
nullable: true,
|
|
5349
|
+
},
|
|
5191
5350
|
status: { enum: ['pending'], type: 'string' },
|
|
5192
5351
|
},
|
|
5193
5352
|
required: [
|
|
@@ -5202,13 +5361,16 @@ export default {
|
|
|
5202
5361
|
{
|
|
5203
5362
|
properties: {
|
|
5204
5363
|
action_attempt_id: {
|
|
5205
|
-
description: '
|
|
5364
|
+
description: 'ID of the action attempt.',
|
|
5206
5365
|
format: 'uuid',
|
|
5207
5366
|
type: 'string',
|
|
5208
|
-
'x-title': 'Action Attempt ID',
|
|
5209
5367
|
},
|
|
5210
5368
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
5211
|
-
error: {
|
|
5369
|
+
error: {
|
|
5370
|
+
description:
|
|
5371
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5372
|
+
nullable: true,
|
|
5373
|
+
},
|
|
5212
5374
|
result: { properties: {}, type: 'object' },
|
|
5213
5375
|
status: { enum: ['success'], type: 'string' },
|
|
5214
5376
|
},
|
|
@@ -5224,10 +5386,9 @@ export default {
|
|
|
5224
5386
|
{
|
|
5225
5387
|
properties: {
|
|
5226
5388
|
action_attempt_id: {
|
|
5227
|
-
description: '
|
|
5389
|
+
description: 'ID of the action attempt.',
|
|
5228
5390
|
format: 'uuid',
|
|
5229
5391
|
type: 'string',
|
|
5230
|
-
'x-title': 'Action Attempt ID',
|
|
5231
5392
|
},
|
|
5232
5393
|
action_type: { enum: ['SYNC_ACCESS_CODES'], type: 'string' },
|
|
5233
5394
|
error: {
|
|
@@ -5238,7 +5399,11 @@ export default {
|
|
|
5238
5399
|
required: ['type', 'message'],
|
|
5239
5400
|
type: 'object',
|
|
5240
5401
|
},
|
|
5241
|
-
result: {
|
|
5402
|
+
result: {
|
|
5403
|
+
description:
|
|
5404
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5405
|
+
nullable: true,
|
|
5406
|
+
},
|
|
5242
5407
|
status: { enum: ['error'], type: 'string' },
|
|
5243
5408
|
},
|
|
5244
5409
|
required: [
|
|
@@ -5253,14 +5418,21 @@ export default {
|
|
|
5253
5418
|
{
|
|
5254
5419
|
properties: {
|
|
5255
5420
|
action_attempt_id: {
|
|
5256
|
-
description: '
|
|
5421
|
+
description: 'ID of the action attempt.',
|
|
5257
5422
|
format: 'uuid',
|
|
5258
5423
|
type: 'string',
|
|
5259
|
-
'x-title': 'Action Attempt ID',
|
|
5260
5424
|
},
|
|
5261
5425
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
5262
|
-
error: {
|
|
5263
|
-
|
|
5426
|
+
error: {
|
|
5427
|
+
description:
|
|
5428
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5429
|
+
nullable: true,
|
|
5430
|
+
},
|
|
5431
|
+
result: {
|
|
5432
|
+
description:
|
|
5433
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5434
|
+
nullable: true,
|
|
5435
|
+
},
|
|
5264
5436
|
status: { enum: ['pending'], type: 'string' },
|
|
5265
5437
|
},
|
|
5266
5438
|
required: [
|
|
@@ -5275,13 +5447,16 @@ export default {
|
|
|
5275
5447
|
{
|
|
5276
5448
|
properties: {
|
|
5277
5449
|
action_attempt_id: {
|
|
5278
|
-
description: '
|
|
5450
|
+
description: 'ID of the action attempt.',
|
|
5279
5451
|
format: 'uuid',
|
|
5280
5452
|
type: 'string',
|
|
5281
|
-
'x-title': 'Action Attempt ID',
|
|
5282
5453
|
},
|
|
5283
5454
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
5284
|
-
error: {
|
|
5455
|
+
error: {
|
|
5456
|
+
description:
|
|
5457
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5458
|
+
nullable: true,
|
|
5459
|
+
},
|
|
5285
5460
|
result: { properties: { access_code: {} }, type: 'object' },
|
|
5286
5461
|
status: { enum: ['success'], type: 'string' },
|
|
5287
5462
|
},
|
|
@@ -5297,10 +5472,9 @@ export default {
|
|
|
5297
5472
|
{
|
|
5298
5473
|
properties: {
|
|
5299
5474
|
action_attempt_id: {
|
|
5300
|
-
description: '
|
|
5475
|
+
description: 'ID of the action attempt.',
|
|
5301
5476
|
format: 'uuid',
|
|
5302
5477
|
type: 'string',
|
|
5303
|
-
'x-title': 'Action Attempt ID',
|
|
5304
5478
|
},
|
|
5305
5479
|
action_type: { enum: ['CREATE_ACCESS_CODE'], type: 'string' },
|
|
5306
5480
|
error: {
|
|
@@ -5311,7 +5485,11 @@ export default {
|
|
|
5311
5485
|
required: ['type', 'message'],
|
|
5312
5486
|
type: 'object',
|
|
5313
5487
|
},
|
|
5314
|
-
result: {
|
|
5488
|
+
result: {
|
|
5489
|
+
description:
|
|
5490
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5491
|
+
nullable: true,
|
|
5492
|
+
},
|
|
5315
5493
|
status: { enum: ['error'], type: 'string' },
|
|
5316
5494
|
},
|
|
5317
5495
|
required: [
|
|
@@ -5326,14 +5504,21 @@ export default {
|
|
|
5326
5504
|
{
|
|
5327
5505
|
properties: {
|
|
5328
5506
|
action_attempt_id: {
|
|
5329
|
-
description: '
|
|
5507
|
+
description: 'ID of the action attempt.',
|
|
5330
5508
|
format: 'uuid',
|
|
5331
5509
|
type: 'string',
|
|
5332
|
-
'x-title': 'Action Attempt ID',
|
|
5333
5510
|
},
|
|
5334
5511
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
5335
|
-
error: {
|
|
5336
|
-
|
|
5512
|
+
error: {
|
|
5513
|
+
description:
|
|
5514
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5515
|
+
nullable: true,
|
|
5516
|
+
},
|
|
5517
|
+
result: {
|
|
5518
|
+
description:
|
|
5519
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5520
|
+
nullable: true,
|
|
5521
|
+
},
|
|
5337
5522
|
status: { enum: ['pending'], type: 'string' },
|
|
5338
5523
|
},
|
|
5339
5524
|
required: [
|
|
@@ -5348,13 +5533,16 @@ export default {
|
|
|
5348
5533
|
{
|
|
5349
5534
|
properties: {
|
|
5350
5535
|
action_attempt_id: {
|
|
5351
|
-
description: '
|
|
5536
|
+
description: 'ID of the action attempt.',
|
|
5352
5537
|
format: 'uuid',
|
|
5353
5538
|
type: 'string',
|
|
5354
|
-
'x-title': 'Action Attempt ID',
|
|
5355
5539
|
},
|
|
5356
5540
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
5357
|
-
error: {
|
|
5541
|
+
error: {
|
|
5542
|
+
description:
|
|
5543
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5544
|
+
nullable: true,
|
|
5545
|
+
},
|
|
5358
5546
|
result: { properties: {}, type: 'object' },
|
|
5359
5547
|
status: { enum: ['success'], type: 'string' },
|
|
5360
5548
|
},
|
|
@@ -5370,10 +5558,9 @@ export default {
|
|
|
5370
5558
|
{
|
|
5371
5559
|
properties: {
|
|
5372
5560
|
action_attempt_id: {
|
|
5373
|
-
description: '
|
|
5561
|
+
description: 'ID of the action attempt.',
|
|
5374
5562
|
format: 'uuid',
|
|
5375
5563
|
type: 'string',
|
|
5376
|
-
'x-title': 'Action Attempt ID',
|
|
5377
5564
|
},
|
|
5378
5565
|
action_type: { enum: ['DELETE_ACCESS_CODE'], type: 'string' },
|
|
5379
5566
|
error: {
|
|
@@ -5384,7 +5571,11 @@ export default {
|
|
|
5384
5571
|
required: ['type', 'message'],
|
|
5385
5572
|
type: 'object',
|
|
5386
5573
|
},
|
|
5387
|
-
result: {
|
|
5574
|
+
result: {
|
|
5575
|
+
description:
|
|
5576
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5577
|
+
nullable: true,
|
|
5578
|
+
},
|
|
5388
5579
|
status: { enum: ['error'], type: 'string' },
|
|
5389
5580
|
},
|
|
5390
5581
|
required: [
|
|
@@ -5399,14 +5590,21 @@ export default {
|
|
|
5399
5590
|
{
|
|
5400
5591
|
properties: {
|
|
5401
5592
|
action_attempt_id: {
|
|
5402
|
-
description: '
|
|
5593
|
+
description: 'ID of the action attempt.',
|
|
5403
5594
|
format: 'uuid',
|
|
5404
5595
|
type: 'string',
|
|
5405
|
-
'x-title': 'Action Attempt ID',
|
|
5406
5596
|
},
|
|
5407
5597
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
5408
|
-
error: {
|
|
5409
|
-
|
|
5598
|
+
error: {
|
|
5599
|
+
description:
|
|
5600
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5601
|
+
nullable: true,
|
|
5602
|
+
},
|
|
5603
|
+
result: {
|
|
5604
|
+
description:
|
|
5605
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5606
|
+
nullable: true,
|
|
5607
|
+
},
|
|
5410
5608
|
status: { enum: ['pending'], type: 'string' },
|
|
5411
5609
|
},
|
|
5412
5610
|
required: [
|
|
@@ -5421,13 +5619,16 @@ export default {
|
|
|
5421
5619
|
{
|
|
5422
5620
|
properties: {
|
|
5423
5621
|
action_attempt_id: {
|
|
5424
|
-
description: '
|
|
5622
|
+
description: 'ID of the action attempt.',
|
|
5425
5623
|
format: 'uuid',
|
|
5426
5624
|
type: 'string',
|
|
5427
|
-
'x-title': 'Action Attempt ID',
|
|
5428
5625
|
},
|
|
5429
5626
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
5430
|
-
error: {
|
|
5627
|
+
error: {
|
|
5628
|
+
description:
|
|
5629
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5630
|
+
nullable: true,
|
|
5631
|
+
},
|
|
5431
5632
|
result: { properties: { access_code: {} }, type: 'object' },
|
|
5432
5633
|
status: { enum: ['success'], type: 'string' },
|
|
5433
5634
|
},
|
|
@@ -5443,10 +5644,9 @@ export default {
|
|
|
5443
5644
|
{
|
|
5444
5645
|
properties: {
|
|
5445
5646
|
action_attempt_id: {
|
|
5446
|
-
description: '
|
|
5647
|
+
description: 'ID of the action attempt.',
|
|
5447
5648
|
format: 'uuid',
|
|
5448
5649
|
type: 'string',
|
|
5449
|
-
'x-title': 'Action Attempt ID',
|
|
5450
5650
|
},
|
|
5451
5651
|
action_type: { enum: ['UPDATE_ACCESS_CODE'], type: 'string' },
|
|
5452
5652
|
error: {
|
|
@@ -5457,7 +5657,11 @@ export default {
|
|
|
5457
5657
|
required: ['type', 'message'],
|
|
5458
5658
|
type: 'object',
|
|
5459
5659
|
},
|
|
5460
|
-
result: {
|
|
5660
|
+
result: {
|
|
5661
|
+
description:
|
|
5662
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5663
|
+
nullable: true,
|
|
5664
|
+
},
|
|
5461
5665
|
status: { enum: ['error'], type: 'string' },
|
|
5462
5666
|
},
|
|
5463
5667
|
required: [
|
|
@@ -5472,14 +5676,21 @@ export default {
|
|
|
5472
5676
|
{
|
|
5473
5677
|
properties: {
|
|
5474
5678
|
action_attempt_id: {
|
|
5475
|
-
description: '
|
|
5679
|
+
description: 'ID of the action attempt.',
|
|
5476
5680
|
format: 'uuid',
|
|
5477
5681
|
type: 'string',
|
|
5478
|
-
'x-title': 'Action Attempt ID',
|
|
5479
5682
|
},
|
|
5480
5683
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5481
|
-
error: {
|
|
5482
|
-
|
|
5684
|
+
error: {
|
|
5685
|
+
description:
|
|
5686
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5687
|
+
nullable: true,
|
|
5688
|
+
},
|
|
5689
|
+
result: {
|
|
5690
|
+
description:
|
|
5691
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5692
|
+
nullable: true,
|
|
5693
|
+
},
|
|
5483
5694
|
status: { enum: ['pending'], type: 'string' },
|
|
5484
5695
|
},
|
|
5485
5696
|
required: [
|
|
@@ -5494,13 +5705,16 @@ export default {
|
|
|
5494
5705
|
{
|
|
5495
5706
|
properties: {
|
|
5496
5707
|
action_attempt_id: {
|
|
5497
|
-
description: '
|
|
5708
|
+
description: 'ID of the action attempt.',
|
|
5498
5709
|
format: 'uuid',
|
|
5499
5710
|
type: 'string',
|
|
5500
|
-
'x-title': 'Action Attempt ID',
|
|
5501
5711
|
},
|
|
5502
5712
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5503
|
-
error: {
|
|
5713
|
+
error: {
|
|
5714
|
+
description:
|
|
5715
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5716
|
+
nullable: true,
|
|
5717
|
+
},
|
|
5504
5718
|
result: { properties: { noise_threshold: {} }, type: 'object' },
|
|
5505
5719
|
status: { enum: ['success'], type: 'string' },
|
|
5506
5720
|
},
|
|
@@ -5516,10 +5730,9 @@ export default {
|
|
|
5516
5730
|
{
|
|
5517
5731
|
properties: {
|
|
5518
5732
|
action_attempt_id: {
|
|
5519
|
-
description: '
|
|
5733
|
+
description: 'ID of the action attempt.',
|
|
5520
5734
|
format: 'uuid',
|
|
5521
5735
|
type: 'string',
|
|
5522
|
-
'x-title': 'Action Attempt ID',
|
|
5523
5736
|
},
|
|
5524
5737
|
action_type: { enum: ['CREATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5525
5738
|
error: {
|
|
@@ -5530,7 +5743,11 @@ export default {
|
|
|
5530
5743
|
required: ['type', 'message'],
|
|
5531
5744
|
type: 'object',
|
|
5532
5745
|
},
|
|
5533
|
-
result: {
|
|
5746
|
+
result: {
|
|
5747
|
+
description:
|
|
5748
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5749
|
+
nullable: true,
|
|
5750
|
+
},
|
|
5534
5751
|
status: { enum: ['error'], type: 'string' },
|
|
5535
5752
|
},
|
|
5536
5753
|
required: [
|
|
@@ -5545,14 +5762,21 @@ export default {
|
|
|
5545
5762
|
{
|
|
5546
5763
|
properties: {
|
|
5547
5764
|
action_attempt_id: {
|
|
5548
|
-
description: '
|
|
5765
|
+
description: 'ID of the action attempt.',
|
|
5549
5766
|
format: 'uuid',
|
|
5550
5767
|
type: 'string',
|
|
5551
|
-
'x-title': 'Action Attempt ID',
|
|
5552
5768
|
},
|
|
5553
5769
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
5554
|
-
error: {
|
|
5555
|
-
|
|
5770
|
+
error: {
|
|
5771
|
+
description:
|
|
5772
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5773
|
+
nullable: true,
|
|
5774
|
+
},
|
|
5775
|
+
result: {
|
|
5776
|
+
description:
|
|
5777
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5778
|
+
nullable: true,
|
|
5779
|
+
},
|
|
5556
5780
|
status: { enum: ['pending'], type: 'string' },
|
|
5557
5781
|
},
|
|
5558
5782
|
required: [
|
|
@@ -5567,13 +5791,16 @@ export default {
|
|
|
5567
5791
|
{
|
|
5568
5792
|
properties: {
|
|
5569
5793
|
action_attempt_id: {
|
|
5570
|
-
description: '
|
|
5794
|
+
description: 'ID of the action attempt.',
|
|
5571
5795
|
format: 'uuid',
|
|
5572
5796
|
type: 'string',
|
|
5573
|
-
'x-title': 'Action Attempt ID',
|
|
5574
5797
|
},
|
|
5575
5798
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
5576
|
-
error: {
|
|
5799
|
+
error: {
|
|
5800
|
+
description:
|
|
5801
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5802
|
+
nullable: true,
|
|
5803
|
+
},
|
|
5577
5804
|
result: { properties: {}, type: 'object' },
|
|
5578
5805
|
status: { enum: ['success'], type: 'string' },
|
|
5579
5806
|
},
|
|
@@ -5589,10 +5816,9 @@ export default {
|
|
|
5589
5816
|
{
|
|
5590
5817
|
properties: {
|
|
5591
5818
|
action_attempt_id: {
|
|
5592
|
-
description: '
|
|
5819
|
+
description: 'ID of the action attempt.',
|
|
5593
5820
|
format: 'uuid',
|
|
5594
5821
|
type: 'string',
|
|
5595
|
-
'x-title': 'Action Attempt ID',
|
|
5596
5822
|
},
|
|
5597
5823
|
action_type: { enum: ['DELETE_NOISE_THRESHOLD'], type: 'string' },
|
|
5598
5824
|
error: {
|
|
@@ -5603,7 +5829,11 @@ export default {
|
|
|
5603
5829
|
required: ['type', 'message'],
|
|
5604
5830
|
type: 'object',
|
|
5605
5831
|
},
|
|
5606
|
-
result: {
|
|
5832
|
+
result: {
|
|
5833
|
+
description:
|
|
5834
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5835
|
+
nullable: true,
|
|
5836
|
+
},
|
|
5607
5837
|
status: { enum: ['error'], type: 'string' },
|
|
5608
5838
|
},
|
|
5609
5839
|
required: [
|
|
@@ -5618,14 +5848,21 @@ export default {
|
|
|
5618
5848
|
{
|
|
5619
5849
|
properties: {
|
|
5620
5850
|
action_attempt_id: {
|
|
5621
|
-
description: '
|
|
5851
|
+
description: 'ID of the action attempt.',
|
|
5622
5852
|
format: 'uuid',
|
|
5623
5853
|
type: 'string',
|
|
5624
|
-
'x-title': 'Action Attempt ID',
|
|
5625
5854
|
},
|
|
5626
5855
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5627
|
-
error: {
|
|
5628
|
-
|
|
5856
|
+
error: {
|
|
5857
|
+
description:
|
|
5858
|
+
'Errors associated with the action attempt. Null for pending action attempts.',
|
|
5859
|
+
nullable: true,
|
|
5860
|
+
},
|
|
5861
|
+
result: {
|
|
5862
|
+
description:
|
|
5863
|
+
'Result of the action attempt. Null for pending action attempts.',
|
|
5864
|
+
nullable: true,
|
|
5865
|
+
},
|
|
5629
5866
|
status: { enum: ['pending'], type: 'string' },
|
|
5630
5867
|
},
|
|
5631
5868
|
required: [
|
|
@@ -5640,13 +5877,16 @@ export default {
|
|
|
5640
5877
|
{
|
|
5641
5878
|
properties: {
|
|
5642
5879
|
action_attempt_id: {
|
|
5643
|
-
description: '
|
|
5880
|
+
description: 'ID of the action attempt.',
|
|
5644
5881
|
format: 'uuid',
|
|
5645
5882
|
type: 'string',
|
|
5646
|
-
'x-title': 'Action Attempt ID',
|
|
5647
5883
|
},
|
|
5648
5884
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5649
|
-
error: {
|
|
5885
|
+
error: {
|
|
5886
|
+
description:
|
|
5887
|
+
'Errors associated with the action attempt. Null for successful action attempts.',
|
|
5888
|
+
nullable: true,
|
|
5889
|
+
},
|
|
5650
5890
|
result: { properties: { noise_threshold: {} }, type: 'object' },
|
|
5651
5891
|
status: { enum: ['success'], type: 'string' },
|
|
5652
5892
|
},
|
|
@@ -5662,10 +5902,9 @@ export default {
|
|
|
5662
5902
|
{
|
|
5663
5903
|
properties: {
|
|
5664
5904
|
action_attempt_id: {
|
|
5665
|
-
description: '
|
|
5905
|
+
description: 'ID of the action attempt.',
|
|
5666
5906
|
format: 'uuid',
|
|
5667
5907
|
type: 'string',
|
|
5668
|
-
'x-title': 'Action Attempt ID',
|
|
5669
5908
|
},
|
|
5670
5909
|
action_type: { enum: ['UPDATE_NOISE_THRESHOLD'], type: 'string' },
|
|
5671
5910
|
error: {
|
|
@@ -5676,7 +5915,11 @@ export default {
|
|
|
5676
5915
|
required: ['type', 'message'],
|
|
5677
5916
|
type: 'object',
|
|
5678
5917
|
},
|
|
5679
|
-
result: {
|
|
5918
|
+
result: {
|
|
5919
|
+
description:
|
|
5920
|
+
'Result of the action attempt. Null for failed action attempts.',
|
|
5921
|
+
nullable: true,
|
|
5922
|
+
},
|
|
5680
5923
|
status: { enum: ['error'], type: 'string' },
|
|
5681
5924
|
},
|
|
5682
5925
|
required: [
|
|
@@ -22606,6 +22849,96 @@ export default {
|
|
|
22606
22849
|
'x-response-key': 'device_providers',
|
|
22607
22850
|
},
|
|
22608
22851
|
},
|
|
22852
|
+
'/devices/simulate/access_code_lock': {
|
|
22853
|
+
post: {
|
|
22854
|
+
operationId: 'devicesSimulateAccessCodeLockPost',
|
|
22855
|
+
requestBody: {
|
|
22856
|
+
content: {
|
|
22857
|
+
'application/json': {
|
|
22858
|
+
schema: {
|
|
22859
|
+
properties: {
|
|
22860
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
22861
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
22862
|
+
},
|
|
22863
|
+
required: ['device_id', 'access_code_id'],
|
|
22864
|
+
type: 'object',
|
|
22865
|
+
},
|
|
22866
|
+
},
|
|
22867
|
+
},
|
|
22868
|
+
},
|
|
22869
|
+
responses: {
|
|
22870
|
+
200: {
|
|
22871
|
+
content: {
|
|
22872
|
+
'application/json': {
|
|
22873
|
+
schema: {
|
|
22874
|
+
properties: { ok: { type: 'boolean' } },
|
|
22875
|
+
required: ['ok'],
|
|
22876
|
+
type: 'object',
|
|
22877
|
+
},
|
|
22878
|
+
},
|
|
22879
|
+
},
|
|
22880
|
+
description: 'OK',
|
|
22881
|
+
},
|
|
22882
|
+
400: { description: 'Bad Request' },
|
|
22883
|
+
401: { description: 'Unauthorized' },
|
|
22884
|
+
},
|
|
22885
|
+
security: [
|
|
22886
|
+
{ api_key: [] },
|
|
22887
|
+
{ pat_with_workspace: [] },
|
|
22888
|
+
{ console_session_with_workspace: [] },
|
|
22889
|
+
],
|
|
22890
|
+
summary: '/devices/simulate/access_code_lock',
|
|
22891
|
+
tags: ['/devices'],
|
|
22892
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
22893
|
+
'x-fern-sdk-method-name': 'access_code_lock',
|
|
22894
|
+
'x-response-key': null,
|
|
22895
|
+
},
|
|
22896
|
+
},
|
|
22897
|
+
'/devices/simulate/access_code_unlock': {
|
|
22898
|
+
post: {
|
|
22899
|
+
operationId: 'devicesSimulateAccessCodeUnlockPost',
|
|
22900
|
+
requestBody: {
|
|
22901
|
+
content: {
|
|
22902
|
+
'application/json': {
|
|
22903
|
+
schema: {
|
|
22904
|
+
properties: {
|
|
22905
|
+
access_code_id: { format: 'uuid', type: 'string' },
|
|
22906
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
22907
|
+
},
|
|
22908
|
+
required: ['device_id', 'access_code_id'],
|
|
22909
|
+
type: 'object',
|
|
22910
|
+
},
|
|
22911
|
+
},
|
|
22912
|
+
},
|
|
22913
|
+
},
|
|
22914
|
+
responses: {
|
|
22915
|
+
200: {
|
|
22916
|
+
content: {
|
|
22917
|
+
'application/json': {
|
|
22918
|
+
schema: {
|
|
22919
|
+
properties: { ok: { type: 'boolean' } },
|
|
22920
|
+
required: ['ok'],
|
|
22921
|
+
type: 'object',
|
|
22922
|
+
},
|
|
22923
|
+
},
|
|
22924
|
+
},
|
|
22925
|
+
description: 'OK',
|
|
22926
|
+
},
|
|
22927
|
+
400: { description: 'Bad Request' },
|
|
22928
|
+
401: { description: 'Unauthorized' },
|
|
22929
|
+
},
|
|
22930
|
+
security: [
|
|
22931
|
+
{ api_key: [] },
|
|
22932
|
+
{ pat_with_workspace: [] },
|
|
22933
|
+
{ console_session_with_workspace: [] },
|
|
22934
|
+
],
|
|
22935
|
+
summary: '/devices/simulate/access_code_unlock',
|
|
22936
|
+
tags: ['/devices'],
|
|
22937
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
22938
|
+
'x-fern-sdk-method-name': 'access_code_unlock',
|
|
22939
|
+
'x-response-key': null,
|
|
22940
|
+
},
|
|
22941
|
+
},
|
|
22609
22942
|
'/devices/simulate/connect': {
|
|
22610
22943
|
post: {
|
|
22611
22944
|
operationId: 'devicesSimulateConnectPost',
|
|
@@ -26096,6 +26429,7 @@ export default {
|
|
|
26096
26429
|
401: { description: 'Unauthorized' },
|
|
26097
26430
|
},
|
|
26098
26431
|
security: [
|
|
26432
|
+
{ client_session: [] },
|
|
26099
26433
|
{ pat_with_workspace: [] },
|
|
26100
26434
|
{ console_session_with_workspace: [] },
|
|
26101
26435
|
{ api_key: [] },
|
|
@@ -26152,6 +26486,7 @@ export default {
|
|
|
26152
26486
|
401: { description: 'Unauthorized' },
|
|
26153
26487
|
},
|
|
26154
26488
|
security: [
|
|
26489
|
+
{ client_session: [] },
|
|
26155
26490
|
{ pat_with_workspace: [] },
|
|
26156
26491
|
{ console_session_with_workspace: [] },
|
|
26157
26492
|
{ api_key: [] },
|
|
@@ -27966,6 +28301,7 @@ export default {
|
|
|
27966
28301
|
{ pat_with_workspace: [] },
|
|
27967
28302
|
{ console_session_with_workspace: [] },
|
|
27968
28303
|
{ api_key: [] },
|
|
28304
|
+
{ client_session: [] },
|
|
27969
28305
|
],
|
|
27970
28306
|
summary: '/thermostats/update_climate_preset',
|
|
27971
28307
|
tags: ['/thermostats'],
|
|
@@ -28074,6 +28410,7 @@ export default {
|
|
|
28074
28410
|
{ pat_with_workspace: [] },
|
|
28075
28411
|
{ console_session_with_workspace: [] },
|
|
28076
28412
|
{ api_key: [] },
|
|
28413
|
+
{ client_session: [] },
|
|
28077
28414
|
],
|
|
28078
28415
|
summary: '/thermostats/update_climate_preset',
|
|
28079
28416
|
tags: ['/thermostats'],
|