File tree Expand file tree Collapse file tree 1 file changed +23
-15
lines changed
src/resources/zero-trust/access/applications Expand file tree Collapse file tree 1 file changed +23
-15
lines changed Original file line number Diff line number Diff line change @@ -264,19 +264,27 @@ export type AllowedIdPs = string;
264
264
*/
265
265
export type AllowedIdPsParam = string ;
266
266
267
- /**
268
- * Allowed HTTP request methods.
269
- */
270
- export type AllowedMethods = Array <
271
- 'GET' | 'POST' | 'HEAD' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH'
272
- > ;
273
-
274
- /**
275
- * Allowed HTTP request methods.
276
- */
277
- export type AllowedMethodsParam = Array <
278
- 'GET' | 'POST' | 'HEAD' | 'PUT' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE' | 'PATCH'
279
- > ;
267
+ export type AllowedMethods =
268
+ | 'GET'
269
+ | 'POST'
270
+ | 'HEAD'
271
+ | 'PUT'
272
+ | 'DELETE'
273
+ | 'CONNECT'
274
+ | 'OPTIONS'
275
+ | 'TRACE'
276
+ | 'PATCH' ;
277
+
278
+ export type AllowedMethodsParam =
279
+ | 'GET'
280
+ | 'POST'
281
+ | 'HEAD'
282
+ | 'PUT'
283
+ | 'DELETE'
284
+ | 'CONNECT'
285
+ | 'OPTIONS'
286
+ | 'TRACE'
287
+ | 'PATCH' ;
280
288
281
289
export type AllowedOrigins = string ;
282
290
@@ -1150,7 +1158,7 @@ export interface CORSHeaders {
1150
1158
/**
1151
1159
* Allowed HTTP request methods.
1152
1160
*/
1153
- allowed_methods ?: AllowedMethods ;
1161
+ allowed_methods ?: Array < AllowedMethods > ;
1154
1162
1155
1163
/**
1156
1164
* Allowed origins.
@@ -1193,7 +1201,7 @@ export interface CORSHeadersParam {
1193
1201
/**
1194
1202
* Allowed HTTP request methods.
1195
1203
*/
1196
- allowed_methods ?: AllowedMethodsParam ;
1204
+ allowed_methods ?: Array < AllowedMethodsParam > ;
1197
1205
1198
1206
/**
1199
1207
* Allowed origins.
You can’t perform that action at this time.
0 commit comments