File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -797,13 +797,13 @@ export interface Routes {
797
797
}
798
798
'/devices/get' : {
799
799
route : '/devices/get'
800
- method : 'GET'
801
- queryParams : {
800
+ method : 'GET' | 'POST'
801
+ queryParams : { }
802
+ jsonBody : { }
803
+ commonParams : {
802
804
device_id ?: string | undefined
803
805
name ?: string | undefined
804
806
}
805
- jsonBody : { }
806
- commonParams : { }
807
807
formData : { }
808
808
jsonResponse : {
809
809
device : {
@@ -1013,7 +1013,7 @@ export interface Routes {
1013
1013
}
1014
1014
'/devices/list_device_providers' : {
1015
1015
route : '/devices/list_device_providers'
1016
- method : 'GET'
1016
+ method : 'GET' | 'POST'
1017
1017
queryParams : { }
1018
1018
jsonBody : { }
1019
1019
commonParams : {
@@ -2223,12 +2223,12 @@ export interface Routes {
2223
2223
}
2224
2224
'/webhooks/get' : {
2225
2225
route : '/webhooks/get'
2226
- method : 'GET'
2227
- queryParams : {
2226
+ method : 'GET' | 'POST'
2227
+ queryParams : { }
2228
+ jsonBody : { }
2229
+ commonParams : {
2228
2230
webhook_id : string
2229
2231
}
2230
- jsonBody : { }
2231
- commonParams : { }
2232
2232
formData : { }
2233
2233
jsonResponse : {
2234
2234
webhook : {
You can’t perform that action at this time.
0 commit comments