File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change 167
167
}
168
168
}
169
169
},
170
+ "SocketGone" : {
171
+ "content" : {
172
+ "application/json" : {
173
+ "schema" : {
174
+ "type" : " object" ,
175
+ "additionalProperties" : false ,
176
+ "properties" : {
177
+ "error" : {
178
+ "type" : " object" ,
179
+ "additionalProperties" : false ,
180
+ "properties" : {
181
+ "message" : {
182
+ "type" : " string" ,
183
+ "default" : " "
184
+ }
185
+ },
186
+ "required" : [
187
+ " message"
188
+ ]
189
+ }
190
+ },
191
+ "required" : [
192
+ " error"
193
+ ]
194
+ }
195
+ }
196
+ },
197
+ "description" : " Gone"
198
+ },
170
199
"SocketInternalServerError" : {
171
200
"content" : {
172
201
"application/json" : {
5972
6001
"404" : {
5973
6002
"$ref" : " #/components/responses/SocketNotFoundResponse"
5974
6003
},
6004
+ "410" : {
6005
+ "$ref" : " #/components/responses/SocketGone"
6006
+ },
5975
6007
"429" : {
5976
6008
"$ref" : " #/components/responses/SocketTooManyRequestsResponse"
5977
6009
}
7741
7773
" type"
7742
7774
]
7743
7775
}
7776
+ },
7777
+ "batchIndex" : {
7778
+ "type" : " integer" ,
7779
+ "default" : 0
7744
7780
}
7745
7781
},
7746
7782
"required" : [
Original file line number Diff line number Diff line change @@ -1729,6 +1729,17 @@ export interface components {
1729
1729
} ;
1730
1730
} ;
1731
1731
} ;
1732
+ /** @description Gone */
1733
+ SocketGone : {
1734
+ content : {
1735
+ "application/json" : {
1736
+ error : {
1737
+ /** @default */
1738
+ message : string ;
1739
+ } ;
1740
+ } ;
1741
+ } ;
1742
+ } ;
1732
1743
/** @description Internal server error */
1733
1744
SocketInternalServerError : {
1734
1745
content : {
@@ -1971,6 +1982,7 @@ export interface operations {
1971
1982
401 : components [ "responses" ] [ "SocketUnauthorized" ] ;
1972
1983
403 : components [ "responses" ] [ "SocketForbidden" ] ;
1973
1984
404 : components [ "responses" ] [ "SocketNotFoundResponse" ] ;
1985
+ 410 : components [ "responses" ] [ "SocketGone" ] ;
1974
1986
429 : components [ "responses" ] [ "SocketTooManyRequestsResponse" ] ;
1975
1987
} ;
1976
1988
} ;
@@ -2746,6 +2758,8 @@ export interface operations {
2746
2758
/** @default null */
2747
2759
props ?: Record < string , never > ;
2748
2760
} [ ] ;
2761
+ /** @default 0 */
2762
+ batchIndex ?: number ;
2749
2763
} ;
2750
2764
} ;
2751
2765
} ;
You can’t perform that action at this time.
0 commit comments