@opusdns/api 0.10.0 → 0.12.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/package.json +3 -3
- package/src/helpers/constants.ts +771 -1
- package/src/helpers/index.ts +1 -0
- package/src/helpers/keys.ts +8077 -4699
- package/src/helpers/requests.ts +537 -441
- package/src/helpers/responses.ts +440 -547
- package/src/helpers/schemas-arrays.ts +169 -1
- package/src/helpers/schemas.ts +624 -0
- package/src/openapi.yaml +975 -1
- package/src/schema.d.ts +732 -0
- /package/src/{index.ts → index.d.ts} +0 -0
package/src/helpers/requests.ts
CHANGED
|
@@ -6,21 +6,21 @@
|
|
|
6
6
|
* These types ensure that request parameters match the expected API contract.
|
|
7
7
|
*
|
|
8
8
|
* @remarks
|
|
9
|
-
* - Request types follow the pattern: `
|
|
10
|
-
* - Parameter types are available as: `
|
|
11
|
-
* - Request body types are available as: `
|
|
9
|
+
* - Request types follow the pattern: `METHOD_EndpointName_Request`
|
|
10
|
+
* - Parameter types are available as: `METHOD_EndpointName_Request_Query`, `METHOD_EndpointName_Request_Path`
|
|
11
|
+
* - Request body types are available as: `METHOD_EndpointName_Request_Body`
|
|
12
12
|
* - All types include comprehensive parameter descriptions from the OpenAPI specification
|
|
13
13
|
* - These types ensure type safety when making API requests
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
16
16
|
* ```typescript
|
|
17
17
|
* // Using request types for API calls
|
|
18
|
-
* const params:
|
|
18
|
+
* const params: GET_Domains_Request_Query = {
|
|
19
19
|
* limit: 10,
|
|
20
20
|
* offset: 0
|
|
21
21
|
* };
|
|
22
22
|
*
|
|
23
|
-
* const body:
|
|
23
|
+
* const body: POST_Domains_Request_Body = {
|
|
24
24
|
* domain: 'example.com',
|
|
25
25
|
* period: 1
|
|
26
26
|
* };
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
* Do not edit manually.
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
-
import { operations
|
|
33
|
+
import { operations } from '../schema';
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataCreateArray, OrganizationAttributeUpdateArray } from './schemas-arrays';
|
|
36
36
|
|
|
@@ -52,11 +52,11 @@ import { OrganizationCredentialExtra, SignupCreate, ContactCreate, DnsZoneCreate
|
|
|
52
52
|
* @path /v1/auth/client_credentials
|
|
53
53
|
* @param status (query) - Optional status to filter the results
|
|
54
54
|
*
|
|
55
|
-
* @see {@link
|
|
56
|
-
* @see {@link
|
|
57
|
-
* @see {@link
|
|
55
|
+
* @see {@link GET_AuthClientCredentials_Request_Query} - Query parameters type
|
|
56
|
+
* @see {@link GET_AuthClientCredentials_Request_Path} - Path parameters type
|
|
57
|
+
* @see {@link GET_AuthClientCredentials_Request_Body} - Request body type
|
|
58
58
|
*/
|
|
59
|
-
export type
|
|
59
|
+
export type GET_AuthClientCredentials_Request = {
|
|
60
60
|
parameters: {
|
|
61
61
|
query: operations['list_api_keys_v1_auth_client_credentials_get']['parameters']['query'];
|
|
62
62
|
};
|
|
@@ -74,7 +74,7 @@ export type GET_AuthClientCredentials_V1_Request = {
|
|
|
74
74
|
* @path /v1/auth/client_credentials
|
|
75
75
|
* @param status (query) - Optional status to filter the results
|
|
76
76
|
*/
|
|
77
|
-
export type
|
|
77
|
+
export type GET_AuthClientCredentials_Request_Query = GET_AuthClientCredentials_Request['parameters']['query'];
|
|
78
78
|
|
|
79
79
|
/**
|
|
80
80
|
* Request type for POST AuthClientCredentials endpoint
|
|
@@ -91,11 +91,11 @@ export type GET_AuthClientCredentials_V1_Request_Parameters_Query = GET_AuthClie
|
|
|
91
91
|
*
|
|
92
92
|
* @path /v1/auth/client_credentials
|
|
93
93
|
*
|
|
94
|
-
* @see {@link
|
|
95
|
-
* @see {@link
|
|
96
|
-
* @see {@link
|
|
94
|
+
* @see {@link POST_AuthClientCredentials_Request_Query} - Query parameters type
|
|
95
|
+
* @see {@link POST_AuthClientCredentials_Request_Path} - Path parameters type
|
|
96
|
+
* @see {@link POST_AuthClientCredentials_Request_Body} - Request body type
|
|
97
97
|
*/
|
|
98
|
-
export type
|
|
98
|
+
export type POST_AuthClientCredentials_Request = {
|
|
99
99
|
requestBody: OrganizationCredentialExtra;
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
@@ -110,7 +110,7 @@ export type POST_AuthClientCredentials_V1_Request = {
|
|
|
110
110
|
*
|
|
111
111
|
* @path /v1/auth/client_credentials
|
|
112
112
|
*/
|
|
113
|
-
export type
|
|
113
|
+
export type POST_AuthClientCredentials_Request_Body = POST_AuthClientCredentials_Request['requestBody'];
|
|
114
114
|
|
|
115
115
|
/**
|
|
116
116
|
* Request type for DELETE AuthClientCredentialsApiKeyId endpoint
|
|
@@ -127,11 +127,11 @@ export type POST_AuthClientCredentials_V1_Request_RequestBody = POST_AuthClientC
|
|
|
127
127
|
*
|
|
128
128
|
* @path /v1/auth/client_credentials/{api_key_id}
|
|
129
129
|
*
|
|
130
|
-
* @see {@link
|
|
131
|
-
* @see {@link
|
|
132
|
-
* @see {@link
|
|
130
|
+
* @see {@link DELETE_AuthClientCredentialsApiKeyId_Request_Query} - Query parameters type
|
|
131
|
+
* @see {@link DELETE_AuthClientCredentialsApiKeyId_Request_Path} - Path parameters type
|
|
132
|
+
* @see {@link DELETE_AuthClientCredentialsApiKeyId_Request_Body} - Request body type
|
|
133
133
|
*/
|
|
134
|
-
export type
|
|
134
|
+
export type DELETE_AuthClientCredentialsApiKeyId_Request = {
|
|
135
135
|
parameters: {
|
|
136
136
|
path: operations['delete_api_key_v1_auth_client_credentials__api_key_id__delete']['parameters']['path'];
|
|
137
137
|
};
|
|
@@ -148,7 +148,43 @@ export type DELETE_AuthClientCredentialsApiKeyId_V1_Request = {
|
|
|
148
148
|
*
|
|
149
149
|
* @path /v1/auth/client_credentials/{api_key_id}
|
|
150
150
|
*/
|
|
151
|
-
export type
|
|
151
|
+
export type DELETE_AuthClientCredentialsApiKeyId_Request_Path = DELETE_AuthClientCredentialsApiKeyId_Request['parameters']['path'];
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Request type for POST AuthInternalClientCredentials endpoint
|
|
155
|
+
*
|
|
156
|
+
* Issue Opusdns Internal Api Key
|
|
157
|
+
*
|
|
158
|
+
* @remarks
|
|
159
|
+
* This type defines the complete request structure for the POST AuthInternalClientCredentials endpoint.
|
|
160
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
161
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
162
|
+
*
|
|
163
|
+
* @example
|
|
164
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
165
|
+
*
|
|
166
|
+
* @path /v1/auth/internal_client_credentials
|
|
167
|
+
*
|
|
168
|
+
* @see {@link POST_AuthInternalClientCredentials_Request_Query} - Query parameters type
|
|
169
|
+
* @see {@link POST_AuthInternalClientCredentials_Request_Path} - Path parameters type
|
|
170
|
+
* @see {@link POST_AuthInternalClientCredentials_Request_Body} - Request body type
|
|
171
|
+
*/
|
|
172
|
+
export type POST_AuthInternalClientCredentials_Request = {
|
|
173
|
+
requestBody: OrganizationCredentialExtra;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Request body for POST /v1/auth/internal_client_credentials
|
|
177
|
+
*
|
|
178
|
+
* @remarks
|
|
179
|
+
* This type defines the request body structure for the POST /v1/auth/internal_client_credentials endpoint.
|
|
180
|
+
* It provides type safety for the request body as defined in the OpenAPI specification.
|
|
181
|
+
*
|
|
182
|
+
* @example
|
|
183
|
+
* Use this type to ensure type safety for request body structure.
|
|
184
|
+
*
|
|
185
|
+
* @path /v1/auth/internal_client_credentials
|
|
186
|
+
*/
|
|
187
|
+
export type POST_AuthInternalClientCredentials_Request_Body = POST_AuthInternalClientCredentials_Request['requestBody'];
|
|
152
188
|
|
|
153
189
|
/**
|
|
154
190
|
* Request type for POST AuthLogout endpoint
|
|
@@ -165,11 +201,11 @@ export type DELETE_AuthClientCredentialsApiKeyId_V1_Request_Parameters_Path = DE
|
|
|
165
201
|
*
|
|
166
202
|
* @path /v1/auth/logout
|
|
167
203
|
*
|
|
168
|
-
* @see {@link
|
|
169
|
-
* @see {@link
|
|
170
|
-
* @see {@link
|
|
204
|
+
* @see {@link POST_AuthLogout_Request_Query} - Query parameters type
|
|
205
|
+
* @see {@link POST_AuthLogout_Request_Path} - Path parameters type
|
|
206
|
+
* @see {@link POST_AuthLogout_Request_Body} - Request body type
|
|
171
207
|
*/
|
|
172
|
-
export type
|
|
208
|
+
export type POST_AuthLogout_Request = {
|
|
173
209
|
}
|
|
174
210
|
|
|
175
211
|
/**
|
|
@@ -187,11 +223,11 @@ export type POST_AuthLogout_V1_Request = {
|
|
|
187
223
|
*
|
|
188
224
|
* @path /v1/auth/signup
|
|
189
225
|
*
|
|
190
|
-
* @see {@link
|
|
191
|
-
* @see {@link
|
|
192
|
-
* @see {@link
|
|
226
|
+
* @see {@link POST_AuthSignup_Request_Query} - Query parameters type
|
|
227
|
+
* @see {@link POST_AuthSignup_Request_Path} - Path parameters type
|
|
228
|
+
* @see {@link POST_AuthSignup_Request_Body} - Request body type
|
|
193
229
|
*/
|
|
194
|
-
export type
|
|
230
|
+
export type POST_AuthSignup_Request = {
|
|
195
231
|
requestBody: SignupCreate;
|
|
196
232
|
}
|
|
197
233
|
/**
|
|
@@ -206,7 +242,7 @@ export type POST_AuthSignup_V1_Request = {
|
|
|
206
242
|
*
|
|
207
243
|
* @path /v1/auth/signup
|
|
208
244
|
*/
|
|
209
|
-
export type
|
|
245
|
+
export type POST_AuthSignup_Request_Body = POST_AuthSignup_Request['requestBody'];
|
|
210
246
|
|
|
211
247
|
/**
|
|
212
248
|
* Request type for POST AuthToken endpoint
|
|
@@ -223,11 +259,11 @@ export type POST_AuthSignup_V1_Request_RequestBody = POST_AuthSignup_V1_Request[
|
|
|
223
259
|
*
|
|
224
260
|
* @path /v1/auth/token
|
|
225
261
|
*
|
|
226
|
-
* @see {@link
|
|
227
|
-
* @see {@link
|
|
228
|
-
* @see {@link
|
|
262
|
+
* @see {@link POST_AuthToken_Request_Query} - Query parameters type
|
|
263
|
+
* @see {@link POST_AuthToken_Request_Path} - Path parameters type
|
|
264
|
+
* @see {@link POST_AuthToken_Request_Body} - Request body type
|
|
229
265
|
*/
|
|
230
|
-
export type
|
|
266
|
+
export type POST_AuthToken_Request = {
|
|
231
267
|
}
|
|
232
268
|
|
|
233
269
|
/**
|
|
@@ -249,11 +285,11 @@ export type POST_AuthToken_V1_Request = {
|
|
|
249
285
|
Specify one or more domains to check for availability.
|
|
250
286
|
|
|
251
287
|
*
|
|
252
|
-
* @see {@link
|
|
253
|
-
* @see {@link
|
|
254
|
-
* @see {@link
|
|
288
|
+
* @see {@link GET_Availability_Request_Query} - Query parameters type
|
|
289
|
+
* @see {@link GET_Availability_Request_Path} - Path parameters type
|
|
290
|
+
* @see {@link GET_Availability_Request_Body} - Request body type
|
|
255
291
|
*/
|
|
256
|
-
export type
|
|
292
|
+
export type GET_Availability_Request = {
|
|
257
293
|
parameters: {
|
|
258
294
|
query: operations['bulk_availability_v1_availability_get']['parameters']['query'];
|
|
259
295
|
};
|
|
@@ -273,7 +309,7 @@ export type GET_Availability_V1_Request = {
|
|
|
273
309
|
Specify one or more domains to check for availability.
|
|
274
310
|
|
|
275
311
|
*/
|
|
276
|
-
export type
|
|
312
|
+
export type GET_Availability_Request_Query = GET_Availability_Request['parameters']['query'];
|
|
277
313
|
|
|
278
314
|
/**
|
|
279
315
|
* Request type for GET AvailabilityStream endpoint
|
|
@@ -294,11 +330,11 @@ export type GET_Availability_V1_Request_Parameters_Query = GET_Availability_V1_R
|
|
|
294
330
|
Specify one or more domains to check for availability.
|
|
295
331
|
|
|
296
332
|
*
|
|
297
|
-
* @see {@link
|
|
298
|
-
* @see {@link
|
|
299
|
-
* @see {@link
|
|
333
|
+
* @see {@link GET_AvailabilityStream_Request_Query} - Query parameters type
|
|
334
|
+
* @see {@link GET_AvailabilityStream_Request_Path} - Path parameters type
|
|
335
|
+
* @see {@link GET_AvailabilityStream_Request_Body} - Request body type
|
|
300
336
|
*/
|
|
301
|
-
export type
|
|
337
|
+
export type GET_AvailabilityStream_Request = {
|
|
302
338
|
parameters: {
|
|
303
339
|
query: operations['stream_availability_v1_availability_stream_get']['parameters']['query'];
|
|
304
340
|
};
|
|
@@ -318,7 +354,7 @@ export type GET_AvailabilityStream_V1_Request = {
|
|
|
318
354
|
Specify one or more domains to check for availability.
|
|
319
355
|
|
|
320
356
|
*/
|
|
321
|
-
export type
|
|
357
|
+
export type GET_AvailabilityStream_Request_Query = GET_AvailabilityStream_Request['parameters']['query'];
|
|
322
358
|
|
|
323
359
|
/**
|
|
324
360
|
* Request type for GET Contacts endpoint
|
|
@@ -336,11 +372,11 @@ export type GET_AvailabilityStream_V1_Request_Parameters_Query = GET_Availabilit
|
|
|
336
372
|
*
|
|
337
373
|
* @path /v1/contacts
|
|
338
374
|
*
|
|
339
|
-
* @see {@link
|
|
340
|
-
* @see {@link
|
|
341
|
-
* @see {@link
|
|
375
|
+
* @see {@link GET_Contacts_Request_Query} - Query parameters type
|
|
376
|
+
* @see {@link GET_Contacts_Request_Path} - Path parameters type
|
|
377
|
+
* @see {@link GET_Contacts_Request_Body} - Request body type
|
|
342
378
|
*/
|
|
343
|
-
export type
|
|
379
|
+
export type GET_Contacts_Request = {
|
|
344
380
|
parameters: {
|
|
345
381
|
query: operations['get_contacts_v1_contacts_get']['parameters']['query'];
|
|
346
382
|
};
|
|
@@ -357,7 +393,7 @@ export type GET_Contacts_V1_Request = {
|
|
|
357
393
|
*
|
|
358
394
|
* @path /v1/contacts
|
|
359
395
|
*/
|
|
360
|
-
export type
|
|
396
|
+
export type GET_Contacts_Request_Query = GET_Contacts_Request['parameters']['query'];
|
|
361
397
|
|
|
362
398
|
/**
|
|
363
399
|
* Request type for POST Contacts endpoint
|
|
@@ -375,11 +411,11 @@ export type GET_Contacts_V1_Request_Parameters_Query = GET_Contacts_V1_Request['
|
|
|
375
411
|
*
|
|
376
412
|
* @path /v1/contacts
|
|
377
413
|
*
|
|
378
|
-
* @see {@link
|
|
379
|
-
* @see {@link
|
|
380
|
-
* @see {@link
|
|
414
|
+
* @see {@link POST_Contacts_Request_Query} - Query parameters type
|
|
415
|
+
* @see {@link POST_Contacts_Request_Path} - Path parameters type
|
|
416
|
+
* @see {@link POST_Contacts_Request_Body} - Request body type
|
|
381
417
|
*/
|
|
382
|
-
export type
|
|
418
|
+
export type POST_Contacts_Request = {
|
|
383
419
|
requestBody: ContactCreate;
|
|
384
420
|
}
|
|
385
421
|
/**
|
|
@@ -394,7 +430,7 @@ export type POST_Contacts_V1_Request = {
|
|
|
394
430
|
*
|
|
395
431
|
* @path /v1/contacts
|
|
396
432
|
*/
|
|
397
|
-
export type
|
|
433
|
+
export type POST_Contacts_Request_Body = POST_Contacts_Request['requestBody'];
|
|
398
434
|
|
|
399
435
|
/**
|
|
400
436
|
* Request type for DELETE ContactsContactId endpoint
|
|
@@ -412,11 +448,11 @@ export type POST_Contacts_V1_Request_RequestBody = POST_Contacts_V1_Request['req
|
|
|
412
448
|
*
|
|
413
449
|
* @path /v1/contacts/{contact_id}
|
|
414
450
|
*
|
|
415
|
-
* @see {@link
|
|
416
|
-
* @see {@link
|
|
417
|
-
* @see {@link
|
|
451
|
+
* @see {@link DELETE_ContactsContactId_Request_Query} - Query parameters type
|
|
452
|
+
* @see {@link DELETE_ContactsContactId_Request_Path} - Path parameters type
|
|
453
|
+
* @see {@link DELETE_ContactsContactId_Request_Body} - Request body type
|
|
418
454
|
*/
|
|
419
|
-
export type
|
|
455
|
+
export type DELETE_ContactsContactId_Request = {
|
|
420
456
|
parameters: {
|
|
421
457
|
path: operations['delete_contact_v1_contacts__contact_id__delete']['parameters']['path'];
|
|
422
458
|
};
|
|
@@ -433,7 +469,7 @@ export type DELETE_ContactsContactId_V1_Request = {
|
|
|
433
469
|
*
|
|
434
470
|
* @path /v1/contacts/{contact_id}
|
|
435
471
|
*/
|
|
436
|
-
export type
|
|
472
|
+
export type DELETE_ContactsContactId_Request_Path = DELETE_ContactsContactId_Request['parameters']['path'];
|
|
437
473
|
|
|
438
474
|
/**
|
|
439
475
|
* Request type for GET ContactsContactId endpoint
|
|
@@ -451,11 +487,11 @@ export type DELETE_ContactsContactId_V1_Request_Parameters_Path = DELETE_Contact
|
|
|
451
487
|
*
|
|
452
488
|
* @path /v1/contacts/{contact_id}
|
|
453
489
|
*
|
|
454
|
-
* @see {@link
|
|
455
|
-
* @see {@link
|
|
456
|
-
* @see {@link
|
|
490
|
+
* @see {@link GET_ContactsContactId_Request_Query} - Query parameters type
|
|
491
|
+
* @see {@link GET_ContactsContactId_Request_Path} - Path parameters type
|
|
492
|
+
* @see {@link GET_ContactsContactId_Request_Body} - Request body type
|
|
457
493
|
*/
|
|
458
|
-
export type
|
|
494
|
+
export type GET_ContactsContactId_Request = {
|
|
459
495
|
parameters: {
|
|
460
496
|
path: operations['get_contact_v1_contacts__contact_id__get']['parameters']['path'];
|
|
461
497
|
};
|
|
@@ -472,7 +508,7 @@ export type GET_ContactsContactId_V1_Request = {
|
|
|
472
508
|
*
|
|
473
509
|
* @path /v1/contacts/{contact_id}
|
|
474
510
|
*/
|
|
475
|
-
export type
|
|
511
|
+
export type GET_ContactsContactId_Request_Path = GET_ContactsContactId_Request['parameters']['path'];
|
|
476
512
|
|
|
477
513
|
/**
|
|
478
514
|
* Request type for DELETE ContactsContactIdVerification endpoint
|
|
@@ -490,11 +526,11 @@ export type GET_ContactsContactId_V1_Request_Parameters_Path = GET_ContactsConta
|
|
|
490
526
|
*
|
|
491
527
|
* @path /v1/contacts/{contact_id}/verification
|
|
492
528
|
*
|
|
493
|
-
* @see {@link
|
|
494
|
-
* @see {@link
|
|
495
|
-
* @see {@link
|
|
529
|
+
* @see {@link DELETE_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
530
|
+
* @see {@link DELETE_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
531
|
+
* @see {@link DELETE_ContactsContactIdVerification_Request_Body} - Request body type
|
|
496
532
|
*/
|
|
497
|
-
export type
|
|
533
|
+
export type DELETE_ContactsContactIdVerification_Request = {
|
|
498
534
|
parameters: {
|
|
499
535
|
path: operations['cancel_verification_v1_contacts__contact_id__verification_delete']['parameters']['path'];
|
|
500
536
|
};
|
|
@@ -511,7 +547,7 @@ export type DELETE_ContactsContactIdVerification_V1_Request = {
|
|
|
511
547
|
*
|
|
512
548
|
* @path /v1/contacts/{contact_id}/verification
|
|
513
549
|
*/
|
|
514
|
-
export type
|
|
550
|
+
export type DELETE_ContactsContactIdVerification_Request_Path = DELETE_ContactsContactIdVerification_Request['parameters']['path'];
|
|
515
551
|
|
|
516
552
|
/**
|
|
517
553
|
* Request type for GET ContactsContactIdVerification endpoint
|
|
@@ -529,11 +565,11 @@ export type DELETE_ContactsContactIdVerification_V1_Request_Parameters_Path = DE
|
|
|
529
565
|
*
|
|
530
566
|
* @path /v1/contacts/{contact_id}/verification
|
|
531
567
|
*
|
|
532
|
-
* @see {@link
|
|
533
|
-
* @see {@link
|
|
534
|
-
* @see {@link
|
|
568
|
+
* @see {@link GET_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
569
|
+
* @see {@link GET_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
570
|
+
* @see {@link GET_ContactsContactIdVerification_Request_Body} - Request body type
|
|
535
571
|
*/
|
|
536
|
-
export type
|
|
572
|
+
export type GET_ContactsContactIdVerification_Request = {
|
|
537
573
|
parameters: {
|
|
538
574
|
path: operations['get_verification_status_v1_contacts__contact_id__verification_get']['parameters']['path'];
|
|
539
575
|
};
|
|
@@ -550,7 +586,7 @@ export type GET_ContactsContactIdVerification_V1_Request = {
|
|
|
550
586
|
*
|
|
551
587
|
* @path /v1/contacts/{contact_id}/verification
|
|
552
588
|
*/
|
|
553
|
-
export type
|
|
589
|
+
export type GET_ContactsContactIdVerification_Request_Path = GET_ContactsContactIdVerification_Request['parameters']['path'];
|
|
554
590
|
|
|
555
591
|
/**
|
|
556
592
|
* Request type for POST ContactsContactIdVerification endpoint
|
|
@@ -568,11 +604,11 @@ export type GET_ContactsContactIdVerification_V1_Request_Parameters_Path = GET_C
|
|
|
568
604
|
*
|
|
569
605
|
* @path /v1/contacts/{contact_id}/verification
|
|
570
606
|
*
|
|
571
|
-
* @see {@link
|
|
572
|
-
* @see {@link
|
|
573
|
-
* @see {@link
|
|
607
|
+
* @see {@link POST_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
608
|
+
* @see {@link POST_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
609
|
+
* @see {@link POST_ContactsContactIdVerification_Request_Body} - Request body type
|
|
574
610
|
*/
|
|
575
|
-
export type
|
|
611
|
+
export type POST_ContactsContactIdVerification_Request = {
|
|
576
612
|
parameters: {
|
|
577
613
|
query: operations['start_contact_verification_v1_contacts__contact_id__verification_post']['parameters']['query'];
|
|
578
614
|
path: operations['start_contact_verification_v1_contacts__contact_id__verification_post']['parameters']['path'];
|
|
@@ -590,7 +626,7 @@ export type POST_ContactsContactIdVerification_V1_Request = {
|
|
|
590
626
|
*
|
|
591
627
|
* @path /v1/contacts/{contact_id}/verification
|
|
592
628
|
*/
|
|
593
|
-
export type
|
|
629
|
+
export type POST_ContactsContactIdVerification_Request_Query = POST_ContactsContactIdVerification_Request['parameters']['query'];
|
|
594
630
|
/**
|
|
595
631
|
* Path parameters for POST /v1/contacts/{contact_id}/verification
|
|
596
632
|
*
|
|
@@ -603,7 +639,7 @@ export type POST_ContactsContactIdVerification_V1_Request_Parameters_Query = POS
|
|
|
603
639
|
*
|
|
604
640
|
* @path /v1/contacts/{contact_id}/verification
|
|
605
641
|
*/
|
|
606
|
-
export type
|
|
642
|
+
export type POST_ContactsContactIdVerification_Request_Path = POST_ContactsContactIdVerification_Request['parameters']['path'];
|
|
607
643
|
|
|
608
644
|
/**
|
|
609
645
|
* Request type for PUT ContactsContactIdVerification endpoint
|
|
@@ -621,11 +657,11 @@ export type POST_ContactsContactIdVerification_V1_Request_Parameters_Path = POST
|
|
|
621
657
|
*
|
|
622
658
|
* @path /v1/contacts/{contact_id}/verification
|
|
623
659
|
*
|
|
624
|
-
* @see {@link
|
|
625
|
-
* @see {@link
|
|
626
|
-
* @see {@link
|
|
660
|
+
* @see {@link PUT_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
661
|
+
* @see {@link PUT_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
662
|
+
* @see {@link PUT_ContactsContactIdVerification_Request_Body} - Request body type
|
|
627
663
|
*/
|
|
628
|
-
export type
|
|
664
|
+
export type PUT_ContactsContactIdVerification_Request = {
|
|
629
665
|
parameters: {
|
|
630
666
|
query: operations['update_verification_v1_contacts__contact_id__verification_put']['parameters']['query'];
|
|
631
667
|
path: operations['update_verification_v1_contacts__contact_id__verification_put']['parameters']['path'];
|
|
@@ -643,7 +679,7 @@ export type PUT_ContactsContactIdVerification_V1_Request = {
|
|
|
643
679
|
*
|
|
644
680
|
* @path /v1/contacts/{contact_id}/verification
|
|
645
681
|
*/
|
|
646
|
-
export type
|
|
682
|
+
export type PUT_ContactsContactIdVerification_Request_Query = PUT_ContactsContactIdVerification_Request['parameters']['query'];
|
|
647
683
|
/**
|
|
648
684
|
* Path parameters for PUT /v1/contacts/{contact_id}/verification
|
|
649
685
|
*
|
|
@@ -656,7 +692,7 @@ export type PUT_ContactsContactIdVerification_V1_Request_Parameters_Query = PUT_
|
|
|
656
692
|
*
|
|
657
693
|
* @path /v1/contacts/{contact_id}/verification
|
|
658
694
|
*/
|
|
659
|
-
export type
|
|
695
|
+
export type PUT_ContactsContactIdVerification_Request_Path = PUT_ContactsContactIdVerification_Request['parameters']['path'];
|
|
660
696
|
|
|
661
697
|
/**
|
|
662
698
|
* Request type for GET ContactsVerification endpoint
|
|
@@ -674,11 +710,11 @@ export type PUT_ContactsContactIdVerification_V1_Request_Parameters_Path = PUT_C
|
|
|
674
710
|
*
|
|
675
711
|
* @path /v1/contacts/verification
|
|
676
712
|
*
|
|
677
|
-
* @see {@link
|
|
678
|
-
* @see {@link
|
|
679
|
-
* @see {@link
|
|
713
|
+
* @see {@link GET_ContactsVerification_Request_Query} - Query parameters type
|
|
714
|
+
* @see {@link GET_ContactsVerification_Request_Path} - Path parameters type
|
|
715
|
+
* @see {@link GET_ContactsVerification_Request_Body} - Request body type
|
|
680
716
|
*/
|
|
681
|
-
export type
|
|
717
|
+
export type GET_ContactsVerification_Request = {
|
|
682
718
|
parameters: {
|
|
683
719
|
query: operations['get_verification_by_token_v1_contacts_verification_get']['parameters']['query'];
|
|
684
720
|
};
|
|
@@ -695,7 +731,7 @@ export type GET_ContactsVerification_V1_Request = {
|
|
|
695
731
|
*
|
|
696
732
|
* @path /v1/contacts/verification
|
|
697
733
|
*/
|
|
698
|
-
export type
|
|
734
|
+
export type GET_ContactsVerification_Request_Query = GET_ContactsVerification_Request['parameters']['query'];
|
|
699
735
|
|
|
700
736
|
/**
|
|
701
737
|
* Request type for PUT ContactsVerification endpoint
|
|
@@ -713,11 +749,11 @@ export type GET_ContactsVerification_V1_Request_Parameters_Query = GET_ContactsV
|
|
|
713
749
|
*
|
|
714
750
|
* @path /v1/contacts/verification
|
|
715
751
|
*
|
|
716
|
-
* @see {@link
|
|
717
|
-
* @see {@link
|
|
718
|
-
* @see {@link
|
|
752
|
+
* @see {@link PUT_ContactsVerification_Request_Query} - Query parameters type
|
|
753
|
+
* @see {@link PUT_ContactsVerification_Request_Path} - Path parameters type
|
|
754
|
+
* @see {@link PUT_ContactsVerification_Request_Body} - Request body type
|
|
719
755
|
*/
|
|
720
|
-
export type
|
|
756
|
+
export type PUT_ContactsVerification_Request = {
|
|
721
757
|
parameters: {
|
|
722
758
|
query: operations['update_verification_by_token_v1_contacts_verification_put']['parameters']['query'];
|
|
723
759
|
};
|
|
@@ -734,7 +770,7 @@ export type PUT_ContactsVerification_V1_Request = {
|
|
|
734
770
|
*
|
|
735
771
|
* @path /v1/contacts/verification
|
|
736
772
|
*/
|
|
737
|
-
export type
|
|
773
|
+
export type PUT_ContactsVerification_Request_Query = PUT_ContactsVerification_Request['parameters']['query'];
|
|
738
774
|
|
|
739
775
|
/**
|
|
740
776
|
* Request type for GET ContactsVerify endpoint
|
|
@@ -751,11 +787,11 @@ export type PUT_ContactsVerification_V1_Request_Parameters_Query = PUT_ContactsV
|
|
|
751
787
|
*
|
|
752
788
|
* @path /v1/contacts/verify
|
|
753
789
|
*
|
|
754
|
-
* @see {@link
|
|
755
|
-
* @see {@link
|
|
756
|
-
* @see {@link
|
|
790
|
+
* @see {@link GET_ContactsVerify_Request_Query} - Query parameters type
|
|
791
|
+
* @see {@link GET_ContactsVerify_Request_Path} - Path parameters type
|
|
792
|
+
* @see {@link GET_ContactsVerify_Request_Body} - Request body type
|
|
757
793
|
*/
|
|
758
|
-
export type
|
|
794
|
+
export type GET_ContactsVerify_Request = {
|
|
759
795
|
parameters: {
|
|
760
796
|
query: operations['email_verify_contact_v1_contacts_verify_get']['parameters']['query'];
|
|
761
797
|
};
|
|
@@ -772,7 +808,7 @@ export type GET_ContactsVerify_V1_Request = {
|
|
|
772
808
|
*
|
|
773
809
|
* @path /v1/contacts/verify
|
|
774
810
|
*/
|
|
775
|
-
export type
|
|
811
|
+
export type GET_ContactsVerify_Request_Query = GET_ContactsVerify_Request['parameters']['query'];
|
|
776
812
|
|
|
777
813
|
/**
|
|
778
814
|
* Request type for GET Dns endpoint
|
|
@@ -789,11 +825,11 @@ export type GET_ContactsVerify_V1_Request_Parameters_Query = GET_ContactsVerify_
|
|
|
789
825
|
*
|
|
790
826
|
* @path /v1/dns
|
|
791
827
|
*
|
|
792
|
-
* @see {@link
|
|
793
|
-
* @see {@link
|
|
794
|
-
* @see {@link
|
|
828
|
+
* @see {@link GET_Dns_Request_Query} - Query parameters type
|
|
829
|
+
* @see {@link GET_Dns_Request_Path} - Path parameters type
|
|
830
|
+
* @see {@link GET_Dns_Request_Body} - Request body type
|
|
795
831
|
*/
|
|
796
|
-
export type
|
|
832
|
+
export type GET_Dns_Request = {
|
|
797
833
|
parameters: {
|
|
798
834
|
query: operations['list_zones_v1_dns_get']['parameters']['query'];
|
|
799
835
|
};
|
|
@@ -810,7 +846,7 @@ export type GET_Dns_V1_Request = {
|
|
|
810
846
|
*
|
|
811
847
|
* @path /v1/dns
|
|
812
848
|
*/
|
|
813
|
-
export type
|
|
849
|
+
export type GET_Dns_Request_Query = GET_Dns_Request['parameters']['query'];
|
|
814
850
|
|
|
815
851
|
/**
|
|
816
852
|
* Request type for POST Dns endpoint
|
|
@@ -827,11 +863,11 @@ export type GET_Dns_V1_Request_Parameters_Query = GET_Dns_V1_Request['parameters
|
|
|
827
863
|
*
|
|
828
864
|
* @path /v1/dns
|
|
829
865
|
*
|
|
830
|
-
* @see {@link
|
|
831
|
-
* @see {@link
|
|
832
|
-
* @see {@link
|
|
866
|
+
* @see {@link POST_Dns_Request_Query} - Query parameters type
|
|
867
|
+
* @see {@link POST_Dns_Request_Path} - Path parameters type
|
|
868
|
+
* @see {@link POST_Dns_Request_Body} - Request body type
|
|
833
869
|
*/
|
|
834
|
-
export type
|
|
870
|
+
export type POST_Dns_Request = {
|
|
835
871
|
requestBody: DnsZoneCreate;
|
|
836
872
|
}
|
|
837
873
|
/**
|
|
@@ -846,7 +882,7 @@ export type POST_Dns_V1_Request = {
|
|
|
846
882
|
*
|
|
847
883
|
* @path /v1/dns
|
|
848
884
|
*/
|
|
849
|
-
export type
|
|
885
|
+
export type POST_Dns_Request_Body = POST_Dns_Request['requestBody'];
|
|
850
886
|
|
|
851
887
|
/**
|
|
852
888
|
* Request type for DELETE DnsZoneName endpoint
|
|
@@ -864,11 +900,11 @@ export type POST_Dns_V1_Request_RequestBody = POST_Dns_V1_Request['requestBody']
|
|
|
864
900
|
* @path /v1/dns/{zone_name}
|
|
865
901
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
866
902
|
*
|
|
867
|
-
* @see {@link
|
|
868
|
-
* @see {@link
|
|
869
|
-
* @see {@link
|
|
903
|
+
* @see {@link DELETE_DnsZoneName_Request_Query} - Query parameters type
|
|
904
|
+
* @see {@link DELETE_DnsZoneName_Request_Path} - Path parameters type
|
|
905
|
+
* @see {@link DELETE_DnsZoneName_Request_Body} - Request body type
|
|
870
906
|
*/
|
|
871
|
-
export type
|
|
907
|
+
export type DELETE_DnsZoneName_Request = {
|
|
872
908
|
parameters: {
|
|
873
909
|
path: operations['delete_zone_v1_dns__zone_name__delete']['parameters']['path'];
|
|
874
910
|
};
|
|
@@ -886,7 +922,7 @@ export type DELETE_DnsZoneName_V1_Request = {
|
|
|
886
922
|
* @path /v1/dns/{zone_name}
|
|
887
923
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
888
924
|
*/
|
|
889
|
-
export type
|
|
925
|
+
export type DELETE_DnsZoneName_Request_Path = DELETE_DnsZoneName_Request['parameters']['path'];
|
|
890
926
|
|
|
891
927
|
/**
|
|
892
928
|
* Request type for GET DnsZoneName endpoint
|
|
@@ -904,11 +940,11 @@ export type DELETE_DnsZoneName_V1_Request_Parameters_Path = DELETE_DnsZoneName_V
|
|
|
904
940
|
* @path /v1/dns/{zone_name}
|
|
905
941
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
906
942
|
*
|
|
907
|
-
* @see {@link
|
|
908
|
-
* @see {@link
|
|
909
|
-
* @see {@link
|
|
943
|
+
* @see {@link GET_DnsZoneName_Request_Query} - Query parameters type
|
|
944
|
+
* @see {@link GET_DnsZoneName_Request_Path} - Path parameters type
|
|
945
|
+
* @see {@link GET_DnsZoneName_Request_Body} - Request body type
|
|
910
946
|
*/
|
|
911
|
-
export type
|
|
947
|
+
export type GET_DnsZoneName_Request = {
|
|
912
948
|
parameters: {
|
|
913
949
|
path: operations['get_zone_v1_dns__zone_name__get']['parameters']['path'];
|
|
914
950
|
};
|
|
@@ -926,7 +962,7 @@ export type GET_DnsZoneName_V1_Request = {
|
|
|
926
962
|
* @path /v1/dns/{zone_name}
|
|
927
963
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
928
964
|
*/
|
|
929
|
-
export type
|
|
965
|
+
export type GET_DnsZoneName_Request_Path = GET_DnsZoneName_Request['parameters']['path'];
|
|
930
966
|
|
|
931
967
|
/**
|
|
932
968
|
* Request type for POST DnsZoneNameDnssecDisable endpoint
|
|
@@ -944,11 +980,11 @@ export type GET_DnsZoneName_V1_Request_Parameters_Path = GET_DnsZoneName_V1_Requ
|
|
|
944
980
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
945
981
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
946
982
|
*
|
|
947
|
-
* @see {@link
|
|
948
|
-
* @see {@link
|
|
949
|
-
* @see {@link
|
|
983
|
+
* @see {@link POST_DnsZoneNameDnssecDisable_Request_Query} - Query parameters type
|
|
984
|
+
* @see {@link POST_DnsZoneNameDnssecDisable_Request_Path} - Path parameters type
|
|
985
|
+
* @see {@link POST_DnsZoneNameDnssecDisable_Request_Body} - Request body type
|
|
950
986
|
*/
|
|
951
|
-
export type
|
|
987
|
+
export type POST_DnsZoneNameDnssecDisable_Request = {
|
|
952
988
|
parameters: {
|
|
953
989
|
path: operations['disable_dnssec_v1_dns__zone_name__dnssec_disable_post']['parameters']['path'];
|
|
954
990
|
};
|
|
@@ -966,7 +1002,7 @@ export type POST_DnsZoneNameDnssecDisable_V1_Request = {
|
|
|
966
1002
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
967
1003
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
968
1004
|
*/
|
|
969
|
-
export type
|
|
1005
|
+
export type POST_DnsZoneNameDnssecDisable_Request_Path = POST_DnsZoneNameDnssecDisable_Request['parameters']['path'];
|
|
970
1006
|
|
|
971
1007
|
/**
|
|
972
1008
|
* Request type for POST DnsZoneNameDnssecEnable endpoint
|
|
@@ -984,11 +1020,11 @@ export type POST_DnsZoneNameDnssecDisable_V1_Request_Parameters_Path = POST_DnsZ
|
|
|
984
1020
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
985
1021
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
986
1022
|
*
|
|
987
|
-
* @see {@link
|
|
988
|
-
* @see {@link
|
|
989
|
-
* @see {@link
|
|
1023
|
+
* @see {@link POST_DnsZoneNameDnssecEnable_Request_Query} - Query parameters type
|
|
1024
|
+
* @see {@link POST_DnsZoneNameDnssecEnable_Request_Path} - Path parameters type
|
|
1025
|
+
* @see {@link POST_DnsZoneNameDnssecEnable_Request_Body} - Request body type
|
|
990
1026
|
*/
|
|
991
|
-
export type
|
|
1027
|
+
export type POST_DnsZoneNameDnssecEnable_Request = {
|
|
992
1028
|
parameters: {
|
|
993
1029
|
path: operations['enable_dnssec_v1_dns__zone_name__dnssec_enable_post']['parameters']['path'];
|
|
994
1030
|
};
|
|
@@ -1006,7 +1042,7 @@ export type POST_DnsZoneNameDnssecEnable_V1_Request = {
|
|
|
1006
1042
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
1007
1043
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1008
1044
|
*/
|
|
1009
|
-
export type
|
|
1045
|
+
export type POST_DnsZoneNameDnssecEnable_Request_Path = POST_DnsZoneNameDnssecEnable_Request['parameters']['path'];
|
|
1010
1046
|
|
|
1011
1047
|
/**
|
|
1012
1048
|
* Request type for PATCH DnsZoneNameRecords endpoint
|
|
@@ -1024,11 +1060,11 @@ export type POST_DnsZoneNameDnssecEnable_V1_Request_Parameters_Path = POST_DnsZo
|
|
|
1024
1060
|
* @path /v1/dns/{zone_name}/records
|
|
1025
1061
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1026
1062
|
*
|
|
1027
|
-
* @see {@link
|
|
1028
|
-
* @see {@link
|
|
1029
|
-
* @see {@link
|
|
1063
|
+
* @see {@link PATCH_DnsZoneNameRecords_Request_Query} - Query parameters type
|
|
1064
|
+
* @see {@link PATCH_DnsZoneNameRecords_Request_Path} - Path parameters type
|
|
1065
|
+
* @see {@link PATCH_DnsZoneNameRecords_Request_Body} - Request body type
|
|
1030
1066
|
*/
|
|
1031
|
-
export type
|
|
1067
|
+
export type PATCH_DnsZoneNameRecords_Request = {
|
|
1032
1068
|
parameters: {
|
|
1033
1069
|
path: operations['patch_zone_records_v1_dns__zone_name__records_patch']['parameters']['path'];
|
|
1034
1070
|
};
|
|
@@ -1047,7 +1083,7 @@ export type PATCH_DnsZoneNameRecords_V1_Request = {
|
|
|
1047
1083
|
* @path /v1/dns/{zone_name}/records
|
|
1048
1084
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1049
1085
|
*/
|
|
1050
|
-
export type
|
|
1086
|
+
export type PATCH_DnsZoneNameRecords_Request_Path = PATCH_DnsZoneNameRecords_Request['parameters']['path'];
|
|
1051
1087
|
/**
|
|
1052
1088
|
* Request body for PATCH /v1/dns/{zone_name}/records
|
|
1053
1089
|
*
|
|
@@ -1060,7 +1096,7 @@ export type PATCH_DnsZoneNameRecords_V1_Request_Parameters_Path = PATCH_DnsZoneN
|
|
|
1060
1096
|
*
|
|
1061
1097
|
* @path /v1/dns/{zone_name}/records
|
|
1062
1098
|
*/
|
|
1063
|
-
export type
|
|
1099
|
+
export type PATCH_DnsZoneNameRecords_Request_Body = PATCH_DnsZoneNameRecords_Request['requestBody'];
|
|
1064
1100
|
|
|
1065
1101
|
/**
|
|
1066
1102
|
* Request type for PATCH DnsZoneNameRrsets endpoint
|
|
@@ -1078,11 +1114,11 @@ export type PATCH_DnsZoneNameRecords_V1_Request_RequestBody = PATCH_DnsZoneNameR
|
|
|
1078
1114
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1079
1115
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1080
1116
|
*
|
|
1081
|
-
* @see {@link
|
|
1082
|
-
* @see {@link
|
|
1083
|
-
* @see {@link
|
|
1117
|
+
* @see {@link PATCH_DnsZoneNameRrsets_Request_Query} - Query parameters type
|
|
1118
|
+
* @see {@link PATCH_DnsZoneNameRrsets_Request_Path} - Path parameters type
|
|
1119
|
+
* @see {@link PATCH_DnsZoneNameRrsets_Request_Body} - Request body type
|
|
1084
1120
|
*/
|
|
1085
|
-
export type
|
|
1121
|
+
export type PATCH_DnsZoneNameRrsets_Request = {
|
|
1086
1122
|
parameters: {
|
|
1087
1123
|
path: operations['patch_zone_rrsets_v1_dns__zone_name__rrsets_patch']['parameters']['path'];
|
|
1088
1124
|
};
|
|
@@ -1101,7 +1137,7 @@ export type PATCH_DnsZoneNameRrsets_V1_Request = {
|
|
|
1101
1137
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1102
1138
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1103
1139
|
*/
|
|
1104
|
-
export type
|
|
1140
|
+
export type PATCH_DnsZoneNameRrsets_Request_Path = PATCH_DnsZoneNameRrsets_Request['parameters']['path'];
|
|
1105
1141
|
/**
|
|
1106
1142
|
* Request body for PATCH /v1/dns/{zone_name}/rrsets
|
|
1107
1143
|
*
|
|
@@ -1114,7 +1150,7 @@ export type PATCH_DnsZoneNameRrsets_V1_Request_Parameters_Path = PATCH_DnsZoneNa
|
|
|
1114
1150
|
*
|
|
1115
1151
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1116
1152
|
*/
|
|
1117
|
-
export type
|
|
1153
|
+
export type PATCH_DnsZoneNameRrsets_Request_Body = PATCH_DnsZoneNameRrsets_Request['requestBody'];
|
|
1118
1154
|
|
|
1119
1155
|
/**
|
|
1120
1156
|
* Request type for PUT DnsZoneNameRrsets endpoint
|
|
@@ -1132,11 +1168,11 @@ export type PATCH_DnsZoneNameRrsets_V1_Request_RequestBody = PATCH_DnsZoneNameRr
|
|
|
1132
1168
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1133
1169
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1134
1170
|
*
|
|
1135
|
-
* @see {@link
|
|
1136
|
-
* @see {@link
|
|
1137
|
-
* @see {@link
|
|
1171
|
+
* @see {@link PUT_DnsZoneNameRrsets_Request_Query} - Query parameters type
|
|
1172
|
+
* @see {@link PUT_DnsZoneNameRrsets_Request_Path} - Path parameters type
|
|
1173
|
+
* @see {@link PUT_DnsZoneNameRrsets_Request_Body} - Request body type
|
|
1138
1174
|
*/
|
|
1139
|
-
export type
|
|
1175
|
+
export type PUT_DnsZoneNameRrsets_Request = {
|
|
1140
1176
|
parameters: {
|
|
1141
1177
|
path: operations['update_zone_rrsets_v1_dns__zone_name__rrsets_put']['parameters']['path'];
|
|
1142
1178
|
};
|
|
@@ -1155,7 +1191,7 @@ export type PUT_DnsZoneNameRrsets_V1_Request = {
|
|
|
1155
1191
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1156
1192
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1157
1193
|
*/
|
|
1158
|
-
export type
|
|
1194
|
+
export type PUT_DnsZoneNameRrsets_Request_Path = PUT_DnsZoneNameRrsets_Request['parameters']['path'];
|
|
1159
1195
|
/**
|
|
1160
1196
|
* Request body for PUT /v1/dns/{zone_name}/rrsets
|
|
1161
1197
|
*
|
|
@@ -1168,7 +1204,7 @@ export type PUT_DnsZoneNameRrsets_V1_Request_Parameters_Path = PUT_DnsZoneNameRr
|
|
|
1168
1204
|
*
|
|
1169
1205
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1170
1206
|
*/
|
|
1171
|
-
export type
|
|
1207
|
+
export type PUT_DnsZoneNameRrsets_Request_Body = PUT_DnsZoneNameRrsets_Request['requestBody'];
|
|
1172
1208
|
|
|
1173
1209
|
/**
|
|
1174
1210
|
* Request type for GET DomainSearchSuggest endpoint
|
|
@@ -1191,11 +1227,11 @@ Specify one or more TLDs to include in the search.
|
|
|
1191
1227
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
1192
1228
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
1193
1229
|
*
|
|
1194
|
-
* @see {@link
|
|
1195
|
-
* @see {@link
|
|
1196
|
-
* @see {@link
|
|
1230
|
+
* @see {@link GET_DomainSearchSuggest_Request_Query} - Query parameters type
|
|
1231
|
+
* @see {@link GET_DomainSearchSuggest_Request_Path} - Path parameters type
|
|
1232
|
+
* @see {@link GET_DomainSearchSuggest_Request_Body} - Request body type
|
|
1197
1233
|
*/
|
|
1198
|
-
export type
|
|
1234
|
+
export type GET_DomainSearchSuggest_Request = {
|
|
1199
1235
|
parameters: {
|
|
1200
1236
|
query: operations['suggest_v1_domain_search_suggest_get']['parameters']['query'];
|
|
1201
1237
|
};
|
|
@@ -1218,7 +1254,7 @@ Specify one or more TLDs to include in the search.
|
|
|
1218
1254
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
1219
1255
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
1220
1256
|
*/
|
|
1221
|
-
export type
|
|
1257
|
+
export type GET_DomainSearchSuggest_Request_Query = GET_DomainSearchSuggest_Request['parameters']['query'];
|
|
1222
1258
|
|
|
1223
1259
|
/**
|
|
1224
1260
|
* Request type for GET Domains endpoint
|
|
@@ -1236,11 +1272,11 @@ export type GET_DomainSearchSuggest_V1_Request_Parameters_Query = GET_DomainSear
|
|
|
1236
1272
|
*
|
|
1237
1273
|
* @path /v1/domains
|
|
1238
1274
|
*
|
|
1239
|
-
* @see {@link
|
|
1240
|
-
* @see {@link
|
|
1241
|
-
* @see {@link
|
|
1275
|
+
* @see {@link GET_Domains_Request_Query} - Query parameters type
|
|
1276
|
+
* @see {@link GET_Domains_Request_Path} - Path parameters type
|
|
1277
|
+
* @see {@link GET_Domains_Request_Body} - Request body type
|
|
1242
1278
|
*/
|
|
1243
|
-
export type
|
|
1279
|
+
export type GET_Domains_Request = {
|
|
1244
1280
|
parameters: {
|
|
1245
1281
|
query: operations['get_domains_v1_domains_get']['parameters']['query'];
|
|
1246
1282
|
};
|
|
@@ -1257,7 +1293,7 @@ export type GET_Domains_V1_Request = {
|
|
|
1257
1293
|
*
|
|
1258
1294
|
* @path /v1/domains
|
|
1259
1295
|
*/
|
|
1260
|
-
export type
|
|
1296
|
+
export type GET_Domains_Request_Query = GET_Domains_Request['parameters']['query'];
|
|
1261
1297
|
|
|
1262
1298
|
/**
|
|
1263
1299
|
* Request type for POST Domains endpoint
|
|
@@ -1275,11 +1311,11 @@ export type GET_Domains_V1_Request_Parameters_Query = GET_Domains_V1_Request['pa
|
|
|
1275
1311
|
*
|
|
1276
1312
|
* @path /v1/domains
|
|
1277
1313
|
*
|
|
1278
|
-
* @see {@link
|
|
1279
|
-
* @see {@link
|
|
1280
|
-
* @see {@link
|
|
1314
|
+
* @see {@link POST_Domains_Request_Query} - Query parameters type
|
|
1315
|
+
* @see {@link POST_Domains_Request_Path} - Path parameters type
|
|
1316
|
+
* @see {@link POST_Domains_Request_Body} - Request body type
|
|
1281
1317
|
*/
|
|
1282
|
-
export type
|
|
1318
|
+
export type POST_Domains_Request = {
|
|
1283
1319
|
requestBody: DomainCreate;
|
|
1284
1320
|
}
|
|
1285
1321
|
/**
|
|
@@ -1294,7 +1330,7 @@ export type POST_Domains_V1_Request = {
|
|
|
1294
1330
|
*
|
|
1295
1331
|
* @path /v1/domains
|
|
1296
1332
|
*/
|
|
1297
|
-
export type
|
|
1333
|
+
export type POST_Domains_Request_Body = POST_Domains_Request['requestBody'];
|
|
1298
1334
|
|
|
1299
1335
|
/**
|
|
1300
1336
|
* Request type for GET DomainsCheck endpoint
|
|
@@ -1314,11 +1350,11 @@ export type POST_Domains_V1_Request_RequestBody = POST_Domains_V1_Request['reque
|
|
|
1314
1350
|
Specify one or more domains to check for availability.
|
|
1315
1351
|
|
|
1316
1352
|
*
|
|
1317
|
-
* @see {@link
|
|
1318
|
-
* @see {@link
|
|
1319
|
-
* @see {@link
|
|
1353
|
+
* @see {@link GET_DomainsCheck_Request_Query} - Query parameters type
|
|
1354
|
+
* @see {@link GET_DomainsCheck_Request_Path} - Path parameters type
|
|
1355
|
+
* @see {@link GET_DomainsCheck_Request_Body} - Request body type
|
|
1320
1356
|
*/
|
|
1321
|
-
export type
|
|
1357
|
+
export type GET_DomainsCheck_Request = {
|
|
1322
1358
|
parameters: {
|
|
1323
1359
|
query: operations['epp_check_domain_v1_domains_check_get']['parameters']['query'];
|
|
1324
1360
|
};
|
|
@@ -1338,7 +1374,7 @@ export type GET_DomainsCheck_V1_Request = {
|
|
|
1338
1374
|
Specify one or more domains to check for availability.
|
|
1339
1375
|
|
|
1340
1376
|
*/
|
|
1341
|
-
export type
|
|
1377
|
+
export type GET_DomainsCheck_Request_Query = GET_DomainsCheck_Request['parameters']['query'];
|
|
1342
1378
|
|
|
1343
1379
|
/**
|
|
1344
1380
|
* Request type for DELETE DomainsDomainReference endpoint
|
|
@@ -1357,11 +1393,11 @@ and will enter a redemption period during which it may be restored.
|
|
|
1357
1393
|
*
|
|
1358
1394
|
* @path /v1/domains/{domain_reference}
|
|
1359
1395
|
*
|
|
1360
|
-
* @see {@link
|
|
1361
|
-
* @see {@link
|
|
1362
|
-
* @see {@link
|
|
1396
|
+
* @see {@link DELETE_DomainsDomainReference_Request_Query} - Query parameters type
|
|
1397
|
+
* @see {@link DELETE_DomainsDomainReference_Request_Path} - Path parameters type
|
|
1398
|
+
* @see {@link DELETE_DomainsDomainReference_Request_Body} - Request body type
|
|
1363
1399
|
*/
|
|
1364
|
-
export type
|
|
1400
|
+
export type DELETE_DomainsDomainReference_Request = {
|
|
1365
1401
|
parameters: {
|
|
1366
1402
|
path: operations['delete_domain_v1_domains__domain_reference__delete']['parameters']['path'];
|
|
1367
1403
|
};
|
|
@@ -1378,7 +1414,7 @@ export type DELETE_DomainsDomainReference_V1_Request = {
|
|
|
1378
1414
|
*
|
|
1379
1415
|
* @path /v1/domains/{domain_reference}
|
|
1380
1416
|
*/
|
|
1381
|
-
export type
|
|
1417
|
+
export type DELETE_DomainsDomainReference_Request_Path = DELETE_DomainsDomainReference_Request['parameters']['path'];
|
|
1382
1418
|
|
|
1383
1419
|
/**
|
|
1384
1420
|
* Request type for GET DomainsDomainReference endpoint
|
|
@@ -1396,11 +1432,11 @@ export type DELETE_DomainsDomainReference_V1_Request_Parameters_Path = DELETE_Do
|
|
|
1396
1432
|
*
|
|
1397
1433
|
* @path /v1/domains/{domain_reference}
|
|
1398
1434
|
*
|
|
1399
|
-
* @see {@link
|
|
1400
|
-
* @see {@link
|
|
1401
|
-
* @see {@link
|
|
1435
|
+
* @see {@link GET_DomainsDomainReference_Request_Query} - Query parameters type
|
|
1436
|
+
* @see {@link GET_DomainsDomainReference_Request_Path} - Path parameters type
|
|
1437
|
+
* @see {@link GET_DomainsDomainReference_Request_Body} - Request body type
|
|
1402
1438
|
*/
|
|
1403
|
-
export type
|
|
1439
|
+
export type GET_DomainsDomainReference_Request = {
|
|
1404
1440
|
parameters: {
|
|
1405
1441
|
path: operations['get_domain_v1_domains__domain_reference__get']['parameters']['path'];
|
|
1406
1442
|
};
|
|
@@ -1417,7 +1453,7 @@ export type GET_DomainsDomainReference_V1_Request = {
|
|
|
1417
1453
|
*
|
|
1418
1454
|
* @path /v1/domains/{domain_reference}
|
|
1419
1455
|
*/
|
|
1420
|
-
export type
|
|
1456
|
+
export type GET_DomainsDomainReference_Request_Path = GET_DomainsDomainReference_Request['parameters']['path'];
|
|
1421
1457
|
|
|
1422
1458
|
/**
|
|
1423
1459
|
* Request type for PATCH DomainsDomainReference endpoint
|
|
@@ -1437,11 +1473,11 @@ Providing `clientTransferProhibited` as a status will set the `transfer_lock` pr
|
|
|
1437
1473
|
*
|
|
1438
1474
|
* @path /v1/domains/{domain_reference}
|
|
1439
1475
|
*
|
|
1440
|
-
* @see {@link
|
|
1441
|
-
* @see {@link
|
|
1442
|
-
* @see {@link
|
|
1476
|
+
* @see {@link PATCH_DomainsDomainReference_Request_Query} - Query parameters type
|
|
1477
|
+
* @see {@link PATCH_DomainsDomainReference_Request_Path} - Path parameters type
|
|
1478
|
+
* @see {@link PATCH_DomainsDomainReference_Request_Body} - Request body type
|
|
1443
1479
|
*/
|
|
1444
|
-
export type
|
|
1480
|
+
export type PATCH_DomainsDomainReference_Request = {
|
|
1445
1481
|
parameters: {
|
|
1446
1482
|
path: operations['update_domain_v1_domains__domain_reference__patch']['parameters']['path'];
|
|
1447
1483
|
};
|
|
@@ -1459,7 +1495,7 @@ export type PATCH_DomainsDomainReference_V1_Request = {
|
|
|
1459
1495
|
*
|
|
1460
1496
|
* @path /v1/domains/{domain_reference}
|
|
1461
1497
|
*/
|
|
1462
|
-
export type
|
|
1498
|
+
export type PATCH_DomainsDomainReference_Request_Path = PATCH_DomainsDomainReference_Request['parameters']['path'];
|
|
1463
1499
|
/**
|
|
1464
1500
|
* Request body for PATCH /v1/domains/{domain_reference}
|
|
1465
1501
|
*
|
|
@@ -1472,7 +1508,7 @@ export type PATCH_DomainsDomainReference_V1_Request_Parameters_Path = PATCH_Doma
|
|
|
1472
1508
|
*
|
|
1473
1509
|
* @path /v1/domains/{domain_reference}
|
|
1474
1510
|
*/
|
|
1475
|
-
export type
|
|
1511
|
+
export type PATCH_DomainsDomainReference_Request_Body = PATCH_DomainsDomainReference_Request['requestBody'];
|
|
1476
1512
|
|
|
1477
1513
|
/**
|
|
1478
1514
|
* Request type for DELETE DomainsDomainReferenceDnssec endpoint
|
|
@@ -1490,11 +1526,11 @@ export type PATCH_DomainsDomainReference_V1_Request_RequestBody = PATCH_DomainsD
|
|
|
1490
1526
|
*
|
|
1491
1527
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1492
1528
|
*
|
|
1493
|
-
* @see {@link
|
|
1494
|
-
* @see {@link
|
|
1495
|
-
* @see {@link
|
|
1529
|
+
* @see {@link DELETE_DomainsDomainReferenceDnssec_Request_Query} - Query parameters type
|
|
1530
|
+
* @see {@link DELETE_DomainsDomainReferenceDnssec_Request_Path} - Path parameters type
|
|
1531
|
+
* @see {@link DELETE_DomainsDomainReferenceDnssec_Request_Body} - Request body type
|
|
1496
1532
|
*/
|
|
1497
|
-
export type
|
|
1533
|
+
export type DELETE_DomainsDomainReferenceDnssec_Request = {
|
|
1498
1534
|
parameters: {
|
|
1499
1535
|
path: operations['delete_dnssec_v1_domains__domain_reference__dnssec_delete']['parameters']['path'];
|
|
1500
1536
|
};
|
|
@@ -1511,7 +1547,7 @@ export type DELETE_DomainsDomainReferenceDnssec_V1_Request = {
|
|
|
1511
1547
|
*
|
|
1512
1548
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1513
1549
|
*/
|
|
1514
|
-
export type
|
|
1550
|
+
export type DELETE_DomainsDomainReferenceDnssec_Request_Path = DELETE_DomainsDomainReferenceDnssec_Request['parameters']['path'];
|
|
1515
1551
|
|
|
1516
1552
|
/**
|
|
1517
1553
|
* Request type for GET DomainsDomainReferenceDnssec endpoint
|
|
@@ -1529,11 +1565,11 @@ export type DELETE_DomainsDomainReferenceDnssec_V1_Request_Parameters_Path = DEL
|
|
|
1529
1565
|
*
|
|
1530
1566
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1531
1567
|
*
|
|
1532
|
-
* @see {@link
|
|
1533
|
-
* @see {@link
|
|
1534
|
-
* @see {@link
|
|
1568
|
+
* @see {@link GET_DomainsDomainReferenceDnssec_Request_Query} - Query parameters type
|
|
1569
|
+
* @see {@link GET_DomainsDomainReferenceDnssec_Request_Path} - Path parameters type
|
|
1570
|
+
* @see {@link GET_DomainsDomainReferenceDnssec_Request_Body} - Request body type
|
|
1535
1571
|
*/
|
|
1536
|
-
export type
|
|
1572
|
+
export type GET_DomainsDomainReferenceDnssec_Request = {
|
|
1537
1573
|
parameters: {
|
|
1538
1574
|
path: operations['get_dnssec_v1_domains__domain_reference__dnssec_get']['parameters']['path'];
|
|
1539
1575
|
};
|
|
@@ -1550,7 +1586,7 @@ export type GET_DomainsDomainReferenceDnssec_V1_Request = {
|
|
|
1550
1586
|
*
|
|
1551
1587
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1552
1588
|
*/
|
|
1553
|
-
export type
|
|
1589
|
+
export type GET_DomainsDomainReferenceDnssec_Request_Path = GET_DomainsDomainReferenceDnssec_Request['parameters']['path'];
|
|
1554
1590
|
|
|
1555
1591
|
/**
|
|
1556
1592
|
* Request type for PUT DomainsDomainReferenceDnssec endpoint
|
|
@@ -1568,11 +1604,11 @@ export type GET_DomainsDomainReferenceDnssec_V1_Request_Parameters_Path = GET_Do
|
|
|
1568
1604
|
*
|
|
1569
1605
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1570
1606
|
*
|
|
1571
|
-
* @see {@link
|
|
1572
|
-
* @see {@link
|
|
1573
|
-
* @see {@link
|
|
1607
|
+
* @see {@link PUT_DomainsDomainReferenceDnssec_Request_Query} - Query parameters type
|
|
1608
|
+
* @see {@link PUT_DomainsDomainReferenceDnssec_Request_Path} - Path parameters type
|
|
1609
|
+
* @see {@link PUT_DomainsDomainReferenceDnssec_Request_Body} - Request body type
|
|
1574
1610
|
*/
|
|
1575
|
-
export type
|
|
1611
|
+
export type PUT_DomainsDomainReferenceDnssec_Request = {
|
|
1576
1612
|
parameters: {
|
|
1577
1613
|
path: operations['create_or_update_dnssec_v1_domains__domain_reference__dnssec_put']['parameters']['path'];
|
|
1578
1614
|
};
|
|
@@ -1590,7 +1626,7 @@ export type PUT_DomainsDomainReferenceDnssec_V1_Request = {
|
|
|
1590
1626
|
*
|
|
1591
1627
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1592
1628
|
*/
|
|
1593
|
-
export type
|
|
1629
|
+
export type PUT_DomainsDomainReferenceDnssec_Request_Path = PUT_DomainsDomainReferenceDnssec_Request['parameters']['path'];
|
|
1594
1630
|
/**
|
|
1595
1631
|
* Request body for PUT /v1/domains/{domain_reference}/dnssec
|
|
1596
1632
|
*
|
|
@@ -1603,7 +1639,7 @@ export type PUT_DomainsDomainReferenceDnssec_V1_Request_Parameters_Path = PUT_Do
|
|
|
1603
1639
|
*
|
|
1604
1640
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1605
1641
|
*/
|
|
1606
|
-
export type
|
|
1642
|
+
export type PUT_DomainsDomainReferenceDnssec_Request_Body = PUT_DomainsDomainReferenceDnssec_Request['requestBody'];
|
|
1607
1643
|
|
|
1608
1644
|
/**
|
|
1609
1645
|
* Request type for POST DomainsDomainReferenceRenew endpoint
|
|
@@ -1622,11 +1658,11 @@ to the current expiration date of the domain.
|
|
|
1622
1658
|
*
|
|
1623
1659
|
* @path /v1/domains/{domain_reference}/renew
|
|
1624
1660
|
*
|
|
1625
|
-
* @see {@link
|
|
1626
|
-
* @see {@link
|
|
1627
|
-
* @see {@link
|
|
1661
|
+
* @see {@link POST_DomainsDomainReferenceRenew_Request_Query} - Query parameters type
|
|
1662
|
+
* @see {@link POST_DomainsDomainReferenceRenew_Request_Path} - Path parameters type
|
|
1663
|
+
* @see {@link POST_DomainsDomainReferenceRenew_Request_Body} - Request body type
|
|
1628
1664
|
*/
|
|
1629
|
-
export type
|
|
1665
|
+
export type POST_DomainsDomainReferenceRenew_Request = {
|
|
1630
1666
|
parameters: {
|
|
1631
1667
|
path: operations['renew_domain_v1_domains__domain_reference__renew_post']['parameters']['path'];
|
|
1632
1668
|
};
|
|
@@ -1644,7 +1680,7 @@ export type POST_DomainsDomainReferenceRenew_V1_Request = {
|
|
|
1644
1680
|
*
|
|
1645
1681
|
* @path /v1/domains/{domain_reference}/renew
|
|
1646
1682
|
*/
|
|
1647
|
-
export type
|
|
1683
|
+
export type POST_DomainsDomainReferenceRenew_Request_Path = POST_DomainsDomainReferenceRenew_Request['parameters']['path'];
|
|
1648
1684
|
/**
|
|
1649
1685
|
* Request body for POST /v1/domains/{domain_reference}/renew
|
|
1650
1686
|
*
|
|
@@ -1657,7 +1693,7 @@ export type POST_DomainsDomainReferenceRenew_V1_Request_Parameters_Path = POST_D
|
|
|
1657
1693
|
*
|
|
1658
1694
|
* @path /v1/domains/{domain_reference}/renew
|
|
1659
1695
|
*/
|
|
1660
|
-
export type
|
|
1696
|
+
export type POST_DomainsDomainReferenceRenew_Request_Body = POST_DomainsDomainReferenceRenew_Request['requestBody'];
|
|
1661
1697
|
|
|
1662
1698
|
/**
|
|
1663
1699
|
* Request type for DELETE DomainsDomainReferenceTransfer endpoint
|
|
@@ -1675,11 +1711,11 @@ export type POST_DomainsDomainReferenceRenew_V1_Request_RequestBody = POST_Domai
|
|
|
1675
1711
|
*
|
|
1676
1712
|
* @path /v1/domains/{domain_reference}/transfer
|
|
1677
1713
|
*
|
|
1678
|
-
* @see {@link
|
|
1679
|
-
* @see {@link
|
|
1680
|
-
* @see {@link
|
|
1714
|
+
* @see {@link DELETE_DomainsDomainReferenceTransfer_Request_Query} - Query parameters type
|
|
1715
|
+
* @see {@link DELETE_DomainsDomainReferenceTransfer_Request_Path} - Path parameters type
|
|
1716
|
+
* @see {@link DELETE_DomainsDomainReferenceTransfer_Request_Body} - Request body type
|
|
1681
1717
|
*/
|
|
1682
|
-
export type
|
|
1718
|
+
export type DELETE_DomainsDomainReferenceTransfer_Request = {
|
|
1683
1719
|
parameters: {
|
|
1684
1720
|
path: operations['cancel_domain_transfer_v1_domains__domain_reference__transfer_delete']['parameters']['path'];
|
|
1685
1721
|
};
|
|
@@ -1696,7 +1732,7 @@ export type DELETE_DomainsDomainReferenceTransfer_V1_Request = {
|
|
|
1696
1732
|
*
|
|
1697
1733
|
* @path /v1/domains/{domain_reference}/transfer
|
|
1698
1734
|
*/
|
|
1699
|
-
export type
|
|
1735
|
+
export type DELETE_DomainsDomainReferenceTransfer_Request_Path = DELETE_DomainsDomainReferenceTransfer_Request['parameters']['path'];
|
|
1700
1736
|
|
|
1701
1737
|
/**
|
|
1702
1738
|
* Request type for GET DomainsSummary endpoint
|
|
@@ -1714,11 +1750,11 @@ export type DELETE_DomainsDomainReferenceTransfer_V1_Request_Parameters_Path = D
|
|
|
1714
1750
|
*
|
|
1715
1751
|
* @path /v1/domains/summary
|
|
1716
1752
|
*
|
|
1717
|
-
* @see {@link
|
|
1718
|
-
* @see {@link
|
|
1719
|
-
* @see {@link
|
|
1753
|
+
* @see {@link GET_DomainsSummary_Request_Query} - Query parameters type
|
|
1754
|
+
* @see {@link GET_DomainsSummary_Request_Path} - Path parameters type
|
|
1755
|
+
* @see {@link GET_DomainsSummary_Request_Body} - Request body type
|
|
1720
1756
|
*/
|
|
1721
|
-
export type
|
|
1757
|
+
export type GET_DomainsSummary_Request = {
|
|
1722
1758
|
}
|
|
1723
1759
|
|
|
1724
1760
|
/**
|
|
@@ -1739,11 +1775,11 @@ This process can take up to 5 days, until the transfer is approved
|
|
|
1739
1775
|
*
|
|
1740
1776
|
* @path /v1/domains/transfer
|
|
1741
1777
|
*
|
|
1742
|
-
* @see {@link
|
|
1743
|
-
* @see {@link
|
|
1744
|
-
* @see {@link
|
|
1778
|
+
* @see {@link POST_DomainsTransfer_Request_Query} - Query parameters type
|
|
1779
|
+
* @see {@link POST_DomainsTransfer_Request_Path} - Path parameters type
|
|
1780
|
+
* @see {@link POST_DomainsTransfer_Request_Body} - Request body type
|
|
1745
1781
|
*/
|
|
1746
|
-
export type
|
|
1782
|
+
export type POST_DomainsTransfer_Request = {
|
|
1747
1783
|
requestBody: DomainTransferIn;
|
|
1748
1784
|
}
|
|
1749
1785
|
/**
|
|
@@ -1758,7 +1794,7 @@ export type POST_DomainsTransfer_V1_Request = {
|
|
|
1758
1794
|
*
|
|
1759
1795
|
* @path /v1/domains/transfer
|
|
1760
1796
|
*/
|
|
1761
|
-
export type
|
|
1797
|
+
export type POST_DomainsTransfer_Request_Body = POST_DomainsTransfer_Request['requestBody'];
|
|
1762
1798
|
|
|
1763
1799
|
/**
|
|
1764
1800
|
* Request type for GET EmailForwards endpoint
|
|
@@ -1778,11 +1814,11 @@ export type POST_DomainsTransfer_V1_Request_RequestBody = POST_DomainsTransfer_V
|
|
|
1778
1814
|
* @param source_address (query) - Optional source address to filter the results
|
|
1779
1815
|
* @param target_address (query) - Optional target address to filter the results
|
|
1780
1816
|
*
|
|
1781
|
-
* @see {@link
|
|
1782
|
-
* @see {@link
|
|
1783
|
-
* @see {@link
|
|
1817
|
+
* @see {@link GET_EmailForwards_Request_Query} - Query parameters type
|
|
1818
|
+
* @see {@link GET_EmailForwards_Request_Path} - Path parameters type
|
|
1819
|
+
* @see {@link GET_EmailForwards_Request_Body} - Request body type
|
|
1784
1820
|
*/
|
|
1785
|
-
export type
|
|
1821
|
+
export type GET_EmailForwards_Request = {
|
|
1786
1822
|
parameters: {
|
|
1787
1823
|
query: operations['list_email_forwards_v1_email_forwards_get']['parameters']['query'];
|
|
1788
1824
|
};
|
|
@@ -1802,7 +1838,7 @@ export type GET_EmailForwards_V1_Request = {
|
|
|
1802
1838
|
* @param source_address (query) - Optional source address to filter the results
|
|
1803
1839
|
* @param target_address (query) - Optional target address to filter the results
|
|
1804
1840
|
*/
|
|
1805
|
-
export type
|
|
1841
|
+
export type GET_EmailForwards_Request_Query = GET_EmailForwards_Request['parameters']['query'];
|
|
1806
1842
|
|
|
1807
1843
|
/**
|
|
1808
1844
|
* Request type for POST EmailForwards endpoint
|
|
@@ -1819,11 +1855,11 @@ export type GET_EmailForwards_V1_Request_Parameters_Query = GET_EmailForwards_V1
|
|
|
1819
1855
|
*
|
|
1820
1856
|
* @path /v1/email-forwards
|
|
1821
1857
|
*
|
|
1822
|
-
* @see {@link
|
|
1823
|
-
* @see {@link
|
|
1824
|
-
* @see {@link
|
|
1858
|
+
* @see {@link POST_EmailForwards_Request_Query} - Query parameters type
|
|
1859
|
+
* @see {@link POST_EmailForwards_Request_Path} - Path parameters type
|
|
1860
|
+
* @see {@link POST_EmailForwards_Request_Body} - Request body type
|
|
1825
1861
|
*/
|
|
1826
|
-
export type
|
|
1862
|
+
export type POST_EmailForwards_Request = {
|
|
1827
1863
|
requestBody: EmailForwardCreate;
|
|
1828
1864
|
}
|
|
1829
1865
|
/**
|
|
@@ -1838,7 +1874,7 @@ export type POST_EmailForwards_V1_Request = {
|
|
|
1838
1874
|
*
|
|
1839
1875
|
* @path /v1/email-forwards
|
|
1840
1876
|
*/
|
|
1841
|
-
export type
|
|
1877
|
+
export type POST_EmailForwards_Request_Body = POST_EmailForwards_Request['requestBody'];
|
|
1842
1878
|
|
|
1843
1879
|
/**
|
|
1844
1880
|
* Request type for POST EmailForwardsBulkDelete endpoint
|
|
@@ -1855,11 +1891,11 @@ export type POST_EmailForwards_V1_Request_RequestBody = POST_EmailForwards_V1_Re
|
|
|
1855
1891
|
*
|
|
1856
1892
|
* @path /v1/email-forwards/bulk-delete
|
|
1857
1893
|
*
|
|
1858
|
-
* @see {@link
|
|
1859
|
-
* @see {@link
|
|
1860
|
-
* @see {@link
|
|
1894
|
+
* @see {@link POST_EmailForwardsBulkDelete_Request_Query} - Query parameters type
|
|
1895
|
+
* @see {@link POST_EmailForwardsBulkDelete_Request_Path} - Path parameters type
|
|
1896
|
+
* @see {@link POST_EmailForwardsBulkDelete_Request_Body} - Request body type
|
|
1861
1897
|
*/
|
|
1862
|
-
export type
|
|
1898
|
+
export type POST_EmailForwardsBulkDelete_Request = {
|
|
1863
1899
|
requestBody: EmailForwardBulkDelete;
|
|
1864
1900
|
}
|
|
1865
1901
|
/**
|
|
@@ -1874,7 +1910,7 @@ export type POST_EmailForwardsBulkDelete_V1_Request = {
|
|
|
1874
1910
|
*
|
|
1875
1911
|
* @path /v1/email-forwards/bulk-delete
|
|
1876
1912
|
*/
|
|
1877
|
-
export type
|
|
1913
|
+
export type POST_EmailForwardsBulkDelete_Request_Body = POST_EmailForwardsBulkDelete_Request['requestBody'];
|
|
1878
1914
|
|
|
1879
1915
|
/**
|
|
1880
1916
|
* Request type for PATCH EmailForwardsBulkUpdate endpoint
|
|
@@ -1891,11 +1927,11 @@ export type POST_EmailForwardsBulkDelete_V1_Request_RequestBody = POST_EmailForw
|
|
|
1891
1927
|
*
|
|
1892
1928
|
* @path /v1/email-forwards/bulk-update
|
|
1893
1929
|
*
|
|
1894
|
-
* @see {@link
|
|
1895
|
-
* @see {@link
|
|
1896
|
-
* @see {@link
|
|
1930
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Request_Query} - Query parameters type
|
|
1931
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Request_Path} - Path parameters type
|
|
1932
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Request_Body} - Request body type
|
|
1897
1933
|
*/
|
|
1898
|
-
export type
|
|
1934
|
+
export type PATCH_EmailForwardsBulkUpdate_Request = {
|
|
1899
1935
|
requestBody: EmailForwardBulkUpdate;
|
|
1900
1936
|
}
|
|
1901
1937
|
/**
|
|
@@ -1910,7 +1946,7 @@ export type PATCH_EmailForwardsBulkUpdate_V1_Request = {
|
|
|
1910
1946
|
*
|
|
1911
1947
|
* @path /v1/email-forwards/bulk-update
|
|
1912
1948
|
*/
|
|
1913
|
-
export type
|
|
1949
|
+
export type PATCH_EmailForwardsBulkUpdate_Request_Body = PATCH_EmailForwardsBulkUpdate_Request['requestBody'];
|
|
1914
1950
|
|
|
1915
1951
|
/**
|
|
1916
1952
|
* Request type for DELETE EmailForwardsEmailForwardId endpoint
|
|
@@ -1927,11 +1963,11 @@ export type PATCH_EmailForwardsBulkUpdate_V1_Request_RequestBody = PATCH_EmailFo
|
|
|
1927
1963
|
*
|
|
1928
1964
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1929
1965
|
*
|
|
1930
|
-
* @see {@link
|
|
1931
|
-
* @see {@link
|
|
1932
|
-
* @see {@link
|
|
1966
|
+
* @see {@link DELETE_EmailForwardsEmailForwardId_Request_Query} - Query parameters type
|
|
1967
|
+
* @see {@link DELETE_EmailForwardsEmailForwardId_Request_Path} - Path parameters type
|
|
1968
|
+
* @see {@link DELETE_EmailForwardsEmailForwardId_Request_Body} - Request body type
|
|
1933
1969
|
*/
|
|
1934
|
-
export type
|
|
1970
|
+
export type DELETE_EmailForwardsEmailForwardId_Request = {
|
|
1935
1971
|
parameters: {
|
|
1936
1972
|
path: operations['delete_email_forward_v1_email_forwards__email_forward_id__delete']['parameters']['path'];
|
|
1937
1973
|
};
|
|
@@ -1948,7 +1984,7 @@ export type DELETE_EmailForwardsEmailForwardId_V1_Request = {
|
|
|
1948
1984
|
*
|
|
1949
1985
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1950
1986
|
*/
|
|
1951
|
-
export type
|
|
1987
|
+
export type DELETE_EmailForwardsEmailForwardId_Request_Path = DELETE_EmailForwardsEmailForwardId_Request['parameters']['path'];
|
|
1952
1988
|
|
|
1953
1989
|
/**
|
|
1954
1990
|
* Request type for GET EmailForwardsEmailForwardId endpoint
|
|
@@ -1965,11 +2001,11 @@ export type DELETE_EmailForwardsEmailForwardId_V1_Request_Parameters_Path = DELE
|
|
|
1965
2001
|
*
|
|
1966
2002
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1967
2003
|
*
|
|
1968
|
-
* @see {@link
|
|
1969
|
-
* @see {@link
|
|
1970
|
-
* @see {@link
|
|
2004
|
+
* @see {@link GET_EmailForwardsEmailForwardId_Request_Query} - Query parameters type
|
|
2005
|
+
* @see {@link GET_EmailForwardsEmailForwardId_Request_Path} - Path parameters type
|
|
2006
|
+
* @see {@link GET_EmailForwardsEmailForwardId_Request_Body} - Request body type
|
|
1971
2007
|
*/
|
|
1972
|
-
export type
|
|
2008
|
+
export type GET_EmailForwardsEmailForwardId_Request = {
|
|
1973
2009
|
parameters: {
|
|
1974
2010
|
path: operations['get_email_forward_v1_email_forwards__email_forward_id__get']['parameters']['path'];
|
|
1975
2011
|
};
|
|
@@ -1986,7 +2022,7 @@ export type GET_EmailForwardsEmailForwardId_V1_Request = {
|
|
|
1986
2022
|
*
|
|
1987
2023
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1988
2024
|
*/
|
|
1989
|
-
export type
|
|
2025
|
+
export type GET_EmailForwardsEmailForwardId_Request_Path = GET_EmailForwardsEmailForwardId_Request['parameters']['path'];
|
|
1990
2026
|
|
|
1991
2027
|
/**
|
|
1992
2028
|
* Request type for PATCH EmailForwardsEmailForwardId endpoint
|
|
@@ -2003,11 +2039,11 @@ export type GET_EmailForwardsEmailForwardId_V1_Request_Parameters_Path = GET_Ema
|
|
|
2003
2039
|
*
|
|
2004
2040
|
* @path /v1/email-forwards/{email_forward_id}
|
|
2005
2041
|
*
|
|
2006
|
-
* @see {@link
|
|
2007
|
-
* @see {@link
|
|
2008
|
-
* @see {@link
|
|
2042
|
+
* @see {@link PATCH_EmailForwardsEmailForwardId_Request_Query} - Query parameters type
|
|
2043
|
+
* @see {@link PATCH_EmailForwardsEmailForwardId_Request_Path} - Path parameters type
|
|
2044
|
+
* @see {@link PATCH_EmailForwardsEmailForwardId_Request_Body} - Request body type
|
|
2009
2045
|
*/
|
|
2010
|
-
export type
|
|
2046
|
+
export type PATCH_EmailForwardsEmailForwardId_Request = {
|
|
2011
2047
|
parameters: {
|
|
2012
2048
|
path: operations['update_email_forward_v1_email_forwards__email_forward_id__patch']['parameters']['path'];
|
|
2013
2049
|
};
|
|
@@ -2025,7 +2061,7 @@ export type PATCH_EmailForwardsEmailForwardId_V1_Request = {
|
|
|
2025
2061
|
*
|
|
2026
2062
|
* @path /v1/email-forwards/{email_forward_id}
|
|
2027
2063
|
*/
|
|
2028
|
-
export type
|
|
2064
|
+
export type PATCH_EmailForwardsEmailForwardId_Request_Path = PATCH_EmailForwardsEmailForwardId_Request['parameters']['path'];
|
|
2029
2065
|
/**
|
|
2030
2066
|
* Request body for PATCH /v1/email-forwards/{email_forward_id}
|
|
2031
2067
|
*
|
|
@@ -2038,7 +2074,7 @@ export type PATCH_EmailForwardsEmailForwardId_V1_Request_Parameters_Path = PATCH
|
|
|
2038
2074
|
*
|
|
2039
2075
|
* @path /v1/email-forwards/{email_forward_id}
|
|
2040
2076
|
*/
|
|
2041
|
-
export type
|
|
2077
|
+
export type PATCH_EmailForwardsEmailForwardId_Request_Body = PATCH_EmailForwardsEmailForwardId_Request['requestBody'];
|
|
2042
2078
|
|
|
2043
2079
|
/**
|
|
2044
2080
|
* Request type for GET Event endpoint
|
|
@@ -2055,11 +2091,11 @@ export type PATCH_EmailForwardsEmailForwardId_V1_Request_RequestBody = PATCH_Ema
|
|
|
2055
2091
|
*
|
|
2056
2092
|
* @path /v1/event
|
|
2057
2093
|
*
|
|
2058
|
-
* @see {@link
|
|
2059
|
-
* @see {@link
|
|
2060
|
-
* @see {@link
|
|
2094
|
+
* @see {@link GET_Event_Request_Query} - Query parameters type
|
|
2095
|
+
* @see {@link GET_Event_Request_Path} - Path parameters type
|
|
2096
|
+
* @see {@link GET_Event_Request_Body} - Request body type
|
|
2061
2097
|
*/
|
|
2062
|
-
export type
|
|
2098
|
+
export type GET_Event_Request = {
|
|
2063
2099
|
parameters: {
|
|
2064
2100
|
query: operations['get_events_v1_event_get']['parameters']['query'];
|
|
2065
2101
|
};
|
|
@@ -2076,7 +2112,7 @@ export type GET_Event_V1_Request = {
|
|
|
2076
2112
|
*
|
|
2077
2113
|
* @path /v1/event
|
|
2078
2114
|
*/
|
|
2079
|
-
export type
|
|
2115
|
+
export type GET_Event_Request_Query = GET_Event_Request['parameters']['query'];
|
|
2080
2116
|
|
|
2081
2117
|
/**
|
|
2082
2118
|
* Request type for GET EventEventId endpoint
|
|
@@ -2093,11 +2129,11 @@ export type GET_Event_V1_Request_Parameters_Query = GET_Event_V1_Request['parame
|
|
|
2093
2129
|
*
|
|
2094
2130
|
* @path /v1/event/{event_id}
|
|
2095
2131
|
*
|
|
2096
|
-
* @see {@link
|
|
2097
|
-
* @see {@link
|
|
2098
|
-
* @see {@link
|
|
2132
|
+
* @see {@link GET_EventEventId_Request_Query} - Query parameters type
|
|
2133
|
+
* @see {@link GET_EventEventId_Request_Path} - Path parameters type
|
|
2134
|
+
* @see {@link GET_EventEventId_Request_Body} - Request body type
|
|
2099
2135
|
*/
|
|
2100
|
-
export type
|
|
2136
|
+
export type GET_EventEventId_Request = {
|
|
2101
2137
|
parameters: {
|
|
2102
2138
|
path: operations['get_event_v1_event__event_id__get']['parameters']['path'];
|
|
2103
2139
|
};
|
|
@@ -2114,7 +2150,7 @@ export type GET_EventEventId_V1_Request = {
|
|
|
2114
2150
|
*
|
|
2115
2151
|
* @path /v1/event/{event_id}
|
|
2116
2152
|
*/
|
|
2117
|
-
export type
|
|
2153
|
+
export type GET_EventEventId_Request_Path = GET_EventEventId_Request['parameters']['path'];
|
|
2118
2154
|
|
|
2119
2155
|
/**
|
|
2120
2156
|
* Request type for PATCH EventEventId endpoint
|
|
@@ -2131,11 +2167,11 @@ export type GET_EventEventId_V1_Request_Parameters_Path = GET_EventEventId_V1_Re
|
|
|
2131
2167
|
*
|
|
2132
2168
|
* @path /v1/event/{event_id}
|
|
2133
2169
|
*
|
|
2134
|
-
* @see {@link
|
|
2135
|
-
* @see {@link
|
|
2136
|
-
* @see {@link
|
|
2170
|
+
* @see {@link PATCH_EventEventId_Request_Query} - Query parameters type
|
|
2171
|
+
* @see {@link PATCH_EventEventId_Request_Path} - Path parameters type
|
|
2172
|
+
* @see {@link PATCH_EventEventId_Request_Body} - Request body type
|
|
2137
2173
|
*/
|
|
2138
|
-
export type
|
|
2174
|
+
export type PATCH_EventEventId_Request = {
|
|
2139
2175
|
parameters: {
|
|
2140
2176
|
path: operations['acknowledge_event_v1_event__event_id__patch']['parameters']['path'];
|
|
2141
2177
|
};
|
|
@@ -2152,7 +2188,7 @@ export type PATCH_EventEventId_V1_Request = {
|
|
|
2152
2188
|
*
|
|
2153
2189
|
* @path /v1/event/{event_id}
|
|
2154
2190
|
*/
|
|
2155
|
-
export type
|
|
2191
|
+
export type PATCH_EventEventId_Request_Path = PATCH_EventEventId_Request['parameters']['path'];
|
|
2156
2192
|
|
|
2157
2193
|
/**
|
|
2158
2194
|
* Request type for GET Notifications endpoint
|
|
@@ -2169,11 +2205,11 @@ export type PATCH_EventEventId_V1_Request_Parameters_Path = PATCH_EventEventId_V
|
|
|
2169
2205
|
*
|
|
2170
2206
|
* @path /v1/notifications
|
|
2171
2207
|
*
|
|
2172
|
-
* @see {@link
|
|
2173
|
-
* @see {@link
|
|
2174
|
-
* @see {@link
|
|
2208
|
+
* @see {@link GET_Notifications_Request_Query} - Query parameters type
|
|
2209
|
+
* @see {@link GET_Notifications_Request_Path} - Path parameters type
|
|
2210
|
+
* @see {@link GET_Notifications_Request_Body} - Request body type
|
|
2175
2211
|
*/
|
|
2176
|
-
export type
|
|
2212
|
+
export type GET_Notifications_Request = {
|
|
2177
2213
|
parameters: {
|
|
2178
2214
|
query: operations['list_notifications_v1_notifications_get']['parameters']['query'];
|
|
2179
2215
|
};
|
|
@@ -2190,7 +2226,7 @@ export type GET_Notifications_V1_Request = {
|
|
|
2190
2226
|
*
|
|
2191
2227
|
* @path /v1/notifications
|
|
2192
2228
|
*/
|
|
2193
|
-
export type
|
|
2229
|
+
export type GET_Notifications_Request_Query = GET_Notifications_Request['parameters']['query'];
|
|
2194
2230
|
|
|
2195
2231
|
/**
|
|
2196
2232
|
* Request type for POST Notifications endpoint
|
|
@@ -2207,11 +2243,11 @@ export type GET_Notifications_V1_Request_Parameters_Query = GET_Notifications_V1
|
|
|
2207
2243
|
*
|
|
2208
2244
|
* @path /v1/notifications
|
|
2209
2245
|
*
|
|
2210
|
-
* @see {@link
|
|
2211
|
-
* @see {@link
|
|
2212
|
-
* @see {@link
|
|
2246
|
+
* @see {@link POST_Notifications_Request_Query} - Query parameters type
|
|
2247
|
+
* @see {@link POST_Notifications_Request_Path} - Path parameters type
|
|
2248
|
+
* @see {@link POST_Notifications_Request_Body} - Request body type
|
|
2213
2249
|
*/
|
|
2214
|
-
export type
|
|
2250
|
+
export type POST_Notifications_Request = {
|
|
2215
2251
|
requestBody: NotificationCreate;
|
|
2216
2252
|
}
|
|
2217
2253
|
/**
|
|
@@ -2226,7 +2262,7 @@ export type POST_Notifications_V1_Request = {
|
|
|
2226
2262
|
*
|
|
2227
2263
|
* @path /v1/notifications
|
|
2228
2264
|
*/
|
|
2229
|
-
export type
|
|
2265
|
+
export type POST_Notifications_Request_Body = POST_Notifications_Request['requestBody'];
|
|
2230
2266
|
|
|
2231
2267
|
/**
|
|
2232
2268
|
* Request type for DELETE NotificationsNotificationId endpoint
|
|
@@ -2243,11 +2279,11 @@ export type POST_Notifications_V1_Request_RequestBody = POST_Notifications_V1_Re
|
|
|
2243
2279
|
*
|
|
2244
2280
|
* @path /v1/notifications/{notification_id}
|
|
2245
2281
|
*
|
|
2246
|
-
* @see {@link
|
|
2247
|
-
* @see {@link
|
|
2248
|
-
* @see {@link
|
|
2282
|
+
* @see {@link DELETE_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2283
|
+
* @see {@link DELETE_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2284
|
+
* @see {@link DELETE_NotificationsNotificationId_Request_Body} - Request body type
|
|
2249
2285
|
*/
|
|
2250
|
-
export type
|
|
2286
|
+
export type DELETE_NotificationsNotificationId_Request = {
|
|
2251
2287
|
parameters: {
|
|
2252
2288
|
path: operations['delete_notification_v1_notifications__notification_id__delete']['parameters']['path'];
|
|
2253
2289
|
};
|
|
@@ -2264,7 +2300,7 @@ export type DELETE_NotificationsNotificationId_V1_Request = {
|
|
|
2264
2300
|
*
|
|
2265
2301
|
* @path /v1/notifications/{notification_id}
|
|
2266
2302
|
*/
|
|
2267
|
-
export type
|
|
2303
|
+
export type DELETE_NotificationsNotificationId_Request_Path = DELETE_NotificationsNotificationId_Request['parameters']['path'];
|
|
2268
2304
|
|
|
2269
2305
|
/**
|
|
2270
2306
|
* Request type for GET NotificationsNotificationId endpoint
|
|
@@ -2281,11 +2317,11 @@ export type DELETE_NotificationsNotificationId_V1_Request_Parameters_Path = DELE
|
|
|
2281
2317
|
*
|
|
2282
2318
|
* @path /v1/notifications/{notification_id}
|
|
2283
2319
|
*
|
|
2284
|
-
* @see {@link
|
|
2285
|
-
* @see {@link
|
|
2286
|
-
* @see {@link
|
|
2320
|
+
* @see {@link GET_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2321
|
+
* @see {@link GET_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2322
|
+
* @see {@link GET_NotificationsNotificationId_Request_Body} - Request body type
|
|
2287
2323
|
*/
|
|
2288
|
-
export type
|
|
2324
|
+
export type GET_NotificationsNotificationId_Request = {
|
|
2289
2325
|
parameters: {
|
|
2290
2326
|
query: operations['get_notification_v1_notifications__notification_id__get']['parameters']['query'];
|
|
2291
2327
|
path: operations['get_notification_v1_notifications__notification_id__get']['parameters']['path'];
|
|
@@ -2303,7 +2339,7 @@ export type GET_NotificationsNotificationId_V1_Request = {
|
|
|
2303
2339
|
*
|
|
2304
2340
|
* @path /v1/notifications/{notification_id}
|
|
2305
2341
|
*/
|
|
2306
|
-
export type
|
|
2342
|
+
export type GET_NotificationsNotificationId_Request_Query = GET_NotificationsNotificationId_Request['parameters']['query'];
|
|
2307
2343
|
/**
|
|
2308
2344
|
* Path parameters for GET /v1/notifications/{notification_id}
|
|
2309
2345
|
*
|
|
@@ -2316,7 +2352,7 @@ export type GET_NotificationsNotificationId_V1_Request_Parameters_Query = GET_No
|
|
|
2316
2352
|
*
|
|
2317
2353
|
* @path /v1/notifications/{notification_id}
|
|
2318
2354
|
*/
|
|
2319
|
-
export type
|
|
2355
|
+
export type GET_NotificationsNotificationId_Request_Path = GET_NotificationsNotificationId_Request['parameters']['path'];
|
|
2320
2356
|
|
|
2321
2357
|
/**
|
|
2322
2358
|
* Request type for PUT NotificationsNotificationId endpoint
|
|
@@ -2333,11 +2369,11 @@ export type GET_NotificationsNotificationId_V1_Request_Parameters_Path = GET_Not
|
|
|
2333
2369
|
*
|
|
2334
2370
|
* @path /v1/notifications/{notification_id}
|
|
2335
2371
|
*
|
|
2336
|
-
* @see {@link
|
|
2337
|
-
* @see {@link
|
|
2338
|
-
* @see {@link
|
|
2372
|
+
* @see {@link PUT_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2373
|
+
* @see {@link PUT_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2374
|
+
* @see {@link PUT_NotificationsNotificationId_Request_Body} - Request body type
|
|
2339
2375
|
*/
|
|
2340
|
-
export type
|
|
2376
|
+
export type PUT_NotificationsNotificationId_Request = {
|
|
2341
2377
|
parameters: {
|
|
2342
2378
|
path: operations['update_notification_v1_notifications__notification_id__put']['parameters']['path'];
|
|
2343
2379
|
};
|
|
@@ -2355,7 +2391,7 @@ export type PUT_NotificationsNotificationId_V1_Request = {
|
|
|
2355
2391
|
*
|
|
2356
2392
|
* @path /v1/notifications/{notification_id}
|
|
2357
2393
|
*/
|
|
2358
|
-
export type
|
|
2394
|
+
export type PUT_NotificationsNotificationId_Request_Path = PUT_NotificationsNotificationId_Request['parameters']['path'];
|
|
2359
2395
|
/**
|
|
2360
2396
|
* Request body for PUT /v1/notifications/{notification_id}
|
|
2361
2397
|
*
|
|
@@ -2368,7 +2404,7 @@ export type PUT_NotificationsNotificationId_V1_Request_Parameters_Path = PUT_Not
|
|
|
2368
2404
|
*
|
|
2369
2405
|
* @path /v1/notifications/{notification_id}
|
|
2370
2406
|
*/
|
|
2371
|
-
export type
|
|
2407
|
+
export type PUT_NotificationsNotificationId_Request_Body = PUT_NotificationsNotificationId_Request['requestBody'];
|
|
2372
2408
|
|
|
2373
2409
|
/**
|
|
2374
2410
|
* Request type for PATCH NotificationsNotificationIdRead endpoint
|
|
@@ -2385,11 +2421,11 @@ export type PUT_NotificationsNotificationId_V1_Request_RequestBody = PUT_Notific
|
|
|
2385
2421
|
*
|
|
2386
2422
|
* @path /v1/notifications/{notification_id}/read
|
|
2387
2423
|
*
|
|
2388
|
-
* @see {@link
|
|
2389
|
-
* @see {@link
|
|
2390
|
-
* @see {@link
|
|
2424
|
+
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Query} - Query parameters type
|
|
2425
|
+
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Path} - Path parameters type
|
|
2426
|
+
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Body} - Request body type
|
|
2391
2427
|
*/
|
|
2392
|
-
export type
|
|
2428
|
+
export type PATCH_NotificationsNotificationIdRead_Request = {
|
|
2393
2429
|
parameters: {
|
|
2394
2430
|
path: operations['update_notification_read_v1_notifications__notification_id__read_patch']['parameters']['path'];
|
|
2395
2431
|
};
|
|
@@ -2406,7 +2442,7 @@ export type PATCH_NotificationsNotificationIdRead_V1_Request = {
|
|
|
2406
2442
|
*
|
|
2407
2443
|
* @path /v1/notifications/{notification_id}/read
|
|
2408
2444
|
*/
|
|
2409
|
-
export type
|
|
2445
|
+
export type PATCH_NotificationsNotificationIdRead_Request_Path = PATCH_NotificationsNotificationIdRead_Request['parameters']['path'];
|
|
2410
2446
|
|
|
2411
2447
|
/**
|
|
2412
2448
|
* Request type for GET Organizations endpoint
|
|
@@ -2423,11 +2459,11 @@ export type PATCH_NotificationsNotificationIdRead_V1_Request_Parameters_Path = P
|
|
|
2423
2459
|
*
|
|
2424
2460
|
* @path /v1/organizations
|
|
2425
2461
|
*
|
|
2426
|
-
* @see {@link
|
|
2427
|
-
* @see {@link
|
|
2428
|
-
* @see {@link
|
|
2462
|
+
* @see {@link GET_Organizations_Request_Query} - Query parameters type
|
|
2463
|
+
* @see {@link GET_Organizations_Request_Path} - Path parameters type
|
|
2464
|
+
* @see {@link GET_Organizations_Request_Body} - Request body type
|
|
2429
2465
|
*/
|
|
2430
|
-
export type
|
|
2466
|
+
export type GET_Organizations_Request = {
|
|
2431
2467
|
parameters: {
|
|
2432
2468
|
query: operations['list_organizations_v1_organizations_get']['parameters']['query'];
|
|
2433
2469
|
};
|
|
@@ -2444,7 +2480,7 @@ export type GET_Organizations_V1_Request = {
|
|
|
2444
2480
|
*
|
|
2445
2481
|
* @path /v1/organizations
|
|
2446
2482
|
*/
|
|
2447
|
-
export type
|
|
2483
|
+
export type GET_Organizations_Request_Query = GET_Organizations_Request['parameters']['query'];
|
|
2448
2484
|
|
|
2449
2485
|
/**
|
|
2450
2486
|
* Request type for POST Organizations endpoint
|
|
@@ -2461,11 +2497,11 @@ export type GET_Organizations_V1_Request_Parameters_Query = GET_Organizations_V1
|
|
|
2461
2497
|
*
|
|
2462
2498
|
* @path /v1/organizations
|
|
2463
2499
|
*
|
|
2464
|
-
* @see {@link
|
|
2465
|
-
* @see {@link
|
|
2466
|
-
* @see {@link
|
|
2500
|
+
* @see {@link POST_Organizations_Request_Query} - Query parameters type
|
|
2501
|
+
* @see {@link POST_Organizations_Request_Path} - Path parameters type
|
|
2502
|
+
* @see {@link POST_Organizations_Request_Body} - Request body type
|
|
2467
2503
|
*/
|
|
2468
|
-
export type
|
|
2504
|
+
export type POST_Organizations_Request = {
|
|
2469
2505
|
requestBody: OrganizationCreate;
|
|
2470
2506
|
}
|
|
2471
2507
|
/**
|
|
@@ -2480,7 +2516,7 @@ export type POST_Organizations_V1_Request = {
|
|
|
2480
2516
|
*
|
|
2481
2517
|
* @path /v1/organizations
|
|
2482
2518
|
*/
|
|
2483
|
-
export type
|
|
2519
|
+
export type POST_Organizations_Request_Body = POST_Organizations_Request['requestBody'];
|
|
2484
2520
|
|
|
2485
2521
|
/**
|
|
2486
2522
|
* Request type for GET OrganizationsAttributes endpoint
|
|
@@ -2498,11 +2534,11 @@ export type POST_Organizations_V1_Request_RequestBody = POST_Organizations_V1_Re
|
|
|
2498
2534
|
* @path /v1/organizations/attributes
|
|
2499
2535
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2500
2536
|
*
|
|
2501
|
-
* @see {@link
|
|
2502
|
-
* @see {@link
|
|
2503
|
-
* @see {@link
|
|
2537
|
+
* @see {@link GET_OrganizationsAttributes_Request_Query} - Query parameters type
|
|
2538
|
+
* @see {@link GET_OrganizationsAttributes_Request_Path} - Path parameters type
|
|
2539
|
+
* @see {@link GET_OrganizationsAttributes_Request_Body} - Request body type
|
|
2504
2540
|
*/
|
|
2505
|
-
export type
|
|
2541
|
+
export type GET_OrganizationsAttributes_Request = {
|
|
2506
2542
|
parameters: {
|
|
2507
2543
|
query: operations['get_attributes_v1_organizations_attributes_get']['parameters']['query'];
|
|
2508
2544
|
};
|
|
@@ -2520,7 +2556,7 @@ export type GET_OrganizationsAttributes_V1_Request = {
|
|
|
2520
2556
|
* @path /v1/organizations/attributes
|
|
2521
2557
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2522
2558
|
*/
|
|
2523
|
-
export type
|
|
2559
|
+
export type GET_OrganizationsAttributes_Request_Query = GET_OrganizationsAttributes_Request['parameters']['query'];
|
|
2524
2560
|
|
|
2525
2561
|
/**
|
|
2526
2562
|
* Request type for PATCH OrganizationsAttributes endpoint
|
|
@@ -2537,11 +2573,11 @@ export type GET_OrganizationsAttributes_V1_Request_Parameters_Query = GET_Organi
|
|
|
2537
2573
|
*
|
|
2538
2574
|
* @path /v1/organizations/attributes
|
|
2539
2575
|
*
|
|
2540
|
-
* @see {@link
|
|
2541
|
-
* @see {@link
|
|
2542
|
-
* @see {@link
|
|
2576
|
+
* @see {@link PATCH_OrganizationsAttributes_Request_Query} - Query parameters type
|
|
2577
|
+
* @see {@link PATCH_OrganizationsAttributes_Request_Path} - Path parameters type
|
|
2578
|
+
* @see {@link PATCH_OrganizationsAttributes_Request_Body} - Request body type
|
|
2543
2579
|
*/
|
|
2544
|
-
export type
|
|
2580
|
+
export type PATCH_OrganizationsAttributes_Request = {
|
|
2545
2581
|
parameters: {
|
|
2546
2582
|
query: operations['update_attributes_v1_organizations_attributes_patch']['parameters']['query'];
|
|
2547
2583
|
};
|
|
@@ -2559,7 +2595,7 @@ export type PATCH_OrganizationsAttributes_V1_Request = {
|
|
|
2559
2595
|
*
|
|
2560
2596
|
* @path /v1/organizations/attributes
|
|
2561
2597
|
*/
|
|
2562
|
-
export type
|
|
2598
|
+
export type PATCH_OrganizationsAttributes_Request_Query = PATCH_OrganizationsAttributes_Request['parameters']['query'];
|
|
2563
2599
|
/**
|
|
2564
2600
|
* Request body for PATCH /v1/organizations/attributes
|
|
2565
2601
|
*
|
|
@@ -2572,7 +2608,7 @@ export type PATCH_OrganizationsAttributes_V1_Request_Parameters_Query = PATCH_Or
|
|
|
2572
2608
|
*
|
|
2573
2609
|
* @path /v1/organizations/attributes
|
|
2574
2610
|
*/
|
|
2575
|
-
export type
|
|
2611
|
+
export type PATCH_OrganizationsAttributes_Request_Body = PATCH_OrganizationsAttributes_Request['requestBody'];
|
|
2576
2612
|
|
|
2577
2613
|
/**
|
|
2578
2614
|
* Request type for GET OrganizationsAttributesOrganizationId endpoint
|
|
@@ -2590,11 +2626,11 @@ export type PATCH_OrganizationsAttributes_V1_Request_RequestBody = PATCH_Organiz
|
|
|
2590
2626
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2591
2627
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2592
2628
|
*
|
|
2593
|
-
* @see {@link
|
|
2594
|
-
* @see {@link
|
|
2595
|
-
* @see {@link
|
|
2629
|
+
* @see {@link GET_OrganizationsAttributesOrganizationId_Request_Query} - Query parameters type
|
|
2630
|
+
* @see {@link GET_OrganizationsAttributesOrganizationId_Request_Path} - Path parameters type
|
|
2631
|
+
* @see {@link GET_OrganizationsAttributesOrganizationId_Request_Body} - Request body type
|
|
2596
2632
|
*/
|
|
2597
|
-
export type
|
|
2633
|
+
export type GET_OrganizationsAttributesOrganizationId_Request = {
|
|
2598
2634
|
parameters: {
|
|
2599
2635
|
query: operations['get_attributes_v1_organizations_attributes__organization_id__get']['parameters']['query'];
|
|
2600
2636
|
path: operations['get_attributes_v1_organizations_attributes__organization_id__get']['parameters']['path'];
|
|
@@ -2613,7 +2649,7 @@ export type GET_OrganizationsAttributesOrganizationId_V1_Request = {
|
|
|
2613
2649
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2614
2650
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2615
2651
|
*/
|
|
2616
|
-
export type
|
|
2652
|
+
export type GET_OrganizationsAttributesOrganizationId_Request_Query = GET_OrganizationsAttributesOrganizationId_Request['parameters']['query'];
|
|
2617
2653
|
/**
|
|
2618
2654
|
* Path parameters for GET /v1/organizations/attributes/{organization_id}
|
|
2619
2655
|
*
|
|
@@ -2626,7 +2662,7 @@ export type GET_OrganizationsAttributesOrganizationId_V1_Request_Parameters_Quer
|
|
|
2626
2662
|
*
|
|
2627
2663
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2628
2664
|
*/
|
|
2629
|
-
export type
|
|
2665
|
+
export type GET_OrganizationsAttributesOrganizationId_Request_Path = GET_OrganizationsAttributesOrganizationId_Request['parameters']['path'];
|
|
2630
2666
|
|
|
2631
2667
|
/**
|
|
2632
2668
|
* Request type for PATCH OrganizationsAttributesOrganizationId endpoint
|
|
@@ -2643,11 +2679,11 @@ export type GET_OrganizationsAttributesOrganizationId_V1_Request_Parameters_Path
|
|
|
2643
2679
|
*
|
|
2644
2680
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2645
2681
|
*
|
|
2646
|
-
* @see {@link
|
|
2647
|
-
* @see {@link
|
|
2648
|
-
* @see {@link
|
|
2682
|
+
* @see {@link PATCH_OrganizationsAttributesOrganizationId_Request_Query} - Query parameters type
|
|
2683
|
+
* @see {@link PATCH_OrganizationsAttributesOrganizationId_Request_Path} - Path parameters type
|
|
2684
|
+
* @see {@link PATCH_OrganizationsAttributesOrganizationId_Request_Body} - Request body type
|
|
2649
2685
|
*/
|
|
2650
|
-
export type
|
|
2686
|
+
export type PATCH_OrganizationsAttributesOrganizationId_Request = {
|
|
2651
2687
|
parameters: {
|
|
2652
2688
|
path: operations['update_attributes_v1_organizations_attributes__organization_id__patch']['parameters']['path'];
|
|
2653
2689
|
};
|
|
@@ -2665,7 +2701,7 @@ export type PATCH_OrganizationsAttributesOrganizationId_V1_Request = {
|
|
|
2665
2701
|
*
|
|
2666
2702
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2667
2703
|
*/
|
|
2668
|
-
export type
|
|
2704
|
+
export type PATCH_OrganizationsAttributesOrganizationId_Request_Path = PATCH_OrganizationsAttributesOrganizationId_Request['parameters']['path'];
|
|
2669
2705
|
/**
|
|
2670
2706
|
* Request body for PATCH /v1/organizations/attributes/{organization_id}
|
|
2671
2707
|
*
|
|
@@ -2678,7 +2714,7 @@ export type PATCH_OrganizationsAttributesOrganizationId_V1_Request_Parameters_Pa
|
|
|
2678
2714
|
*
|
|
2679
2715
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2680
2716
|
*/
|
|
2681
|
-
export type
|
|
2717
|
+
export type PATCH_OrganizationsAttributesOrganizationId_Request_Body = PATCH_OrganizationsAttributesOrganizationId_Request['requestBody'];
|
|
2682
2718
|
|
|
2683
2719
|
/**
|
|
2684
2720
|
* Request type for GET OrganizationsIpRestrictions endpoint
|
|
@@ -2696,11 +2732,11 @@ export type PATCH_OrganizationsAttributesOrganizationId_V1_Request_RequestBody =
|
|
|
2696
2732
|
*
|
|
2697
2733
|
* @path /v1/organizations/ip-restrictions
|
|
2698
2734
|
*
|
|
2699
|
-
* @see {@link
|
|
2700
|
-
* @see {@link
|
|
2701
|
-
* @see {@link
|
|
2735
|
+
* @see {@link GET_OrganizationsIpRestrictions_Request_Query} - Query parameters type
|
|
2736
|
+
* @see {@link GET_OrganizationsIpRestrictions_Request_Path} - Path parameters type
|
|
2737
|
+
* @see {@link GET_OrganizationsIpRestrictions_Request_Body} - Request body type
|
|
2702
2738
|
*/
|
|
2703
|
-
export type
|
|
2739
|
+
export type GET_OrganizationsIpRestrictions_Request = {
|
|
2704
2740
|
}
|
|
2705
2741
|
|
|
2706
2742
|
/**
|
|
@@ -2719,11 +2755,11 @@ export type GET_OrganizationsIpRestrictions_V1_Request = {
|
|
|
2719
2755
|
*
|
|
2720
2756
|
* @path /v1/organizations/ip-restrictions
|
|
2721
2757
|
*
|
|
2722
|
-
* @see {@link
|
|
2723
|
-
* @see {@link
|
|
2724
|
-
* @see {@link
|
|
2758
|
+
* @see {@link POST_OrganizationsIpRestrictions_Request_Query} - Query parameters type
|
|
2759
|
+
* @see {@link POST_OrganizationsIpRestrictions_Request_Path} - Path parameters type
|
|
2760
|
+
* @see {@link POST_OrganizationsIpRestrictions_Request_Body} - Request body type
|
|
2725
2761
|
*/
|
|
2726
|
-
export type
|
|
2762
|
+
export type POST_OrganizationsIpRestrictions_Request = {
|
|
2727
2763
|
requestBody: IpRestrictionCreate;
|
|
2728
2764
|
}
|
|
2729
2765
|
/**
|
|
@@ -2738,7 +2774,7 @@ export type POST_OrganizationsIpRestrictions_V1_Request = {
|
|
|
2738
2774
|
*
|
|
2739
2775
|
* @path /v1/organizations/ip-restrictions
|
|
2740
2776
|
*/
|
|
2741
|
-
export type
|
|
2777
|
+
export type POST_OrganizationsIpRestrictions_Request_Body = POST_OrganizationsIpRestrictions_Request['requestBody'];
|
|
2742
2778
|
|
|
2743
2779
|
/**
|
|
2744
2780
|
* Request type for DELETE OrganizationsIpRestrictionsIpRestrictionId endpoint
|
|
@@ -2756,11 +2792,11 @@ export type POST_OrganizationsIpRestrictions_V1_Request_RequestBody = POST_Organ
|
|
|
2756
2792
|
*
|
|
2757
2793
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2758
2794
|
*
|
|
2759
|
-
* @see {@link
|
|
2760
|
-
* @see {@link
|
|
2761
|
-
* @see {@link
|
|
2795
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Query} - Query parameters type
|
|
2796
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Path} - Path parameters type
|
|
2797
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Body} - Request body type
|
|
2762
2798
|
*/
|
|
2763
|
-
export type
|
|
2799
|
+
export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request = {
|
|
2764
2800
|
parameters: {
|
|
2765
2801
|
path: operations['delete_ip_restriction_v1_organizations_ip_restrictions__ip_restriction_id__delete']['parameters']['path'];
|
|
2766
2802
|
};
|
|
@@ -2777,7 +2813,7 @@ export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_V1_Request = {
|
|
|
2777
2813
|
*
|
|
2778
2814
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2779
2815
|
*/
|
|
2780
|
-
export type
|
|
2816
|
+
export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Path = DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request['parameters']['path'];
|
|
2781
2817
|
|
|
2782
2818
|
/**
|
|
2783
2819
|
* Request type for GET OrganizationsIpRestrictionsIpRestrictionId endpoint
|
|
@@ -2795,11 +2831,11 @@ export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_Paramet
|
|
|
2795
2831
|
*
|
|
2796
2832
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2797
2833
|
*
|
|
2798
|
-
* @see {@link
|
|
2799
|
-
* @see {@link
|
|
2800
|
-
* @see {@link
|
|
2834
|
+
* @see {@link GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Query} - Query parameters type
|
|
2835
|
+
* @see {@link GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Path} - Path parameters type
|
|
2836
|
+
* @see {@link GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Body} - Request body type
|
|
2801
2837
|
*/
|
|
2802
|
-
export type
|
|
2838
|
+
export type GET_OrganizationsIpRestrictionsIpRestrictionId_Request = {
|
|
2803
2839
|
parameters: {
|
|
2804
2840
|
path: operations['get_ip_restriction_v1_organizations_ip_restrictions__ip_restriction_id__get']['parameters']['path'];
|
|
2805
2841
|
};
|
|
@@ -2816,7 +2852,7 @@ export type GET_OrganizationsIpRestrictionsIpRestrictionId_V1_Request = {
|
|
|
2816
2852
|
*
|
|
2817
2853
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2818
2854
|
*/
|
|
2819
|
-
export type
|
|
2855
|
+
export type GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Path = GET_OrganizationsIpRestrictionsIpRestrictionId_Request['parameters']['path'];
|
|
2820
2856
|
|
|
2821
2857
|
/**
|
|
2822
2858
|
* Request type for PATCH OrganizationsIpRestrictionsIpRestrictionId endpoint
|
|
@@ -2834,11 +2870,11 @@ export type GET_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_Parameters
|
|
|
2834
2870
|
*
|
|
2835
2871
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2836
2872
|
*
|
|
2837
|
-
* @see {@link
|
|
2838
|
-
* @see {@link
|
|
2839
|
-
* @see {@link
|
|
2873
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Query} - Query parameters type
|
|
2874
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Path} - Path parameters type
|
|
2875
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Body} - Request body type
|
|
2840
2876
|
*/
|
|
2841
|
-
export type
|
|
2877
|
+
export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request = {
|
|
2842
2878
|
parameters: {
|
|
2843
2879
|
path: operations['update_ip_restriction_v1_organizations_ip_restrictions__ip_restriction_id__patch']['parameters']['path'];
|
|
2844
2880
|
};
|
|
@@ -2856,7 +2892,7 @@ export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_V1_Request = {
|
|
|
2856
2892
|
*
|
|
2857
2893
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2858
2894
|
*/
|
|
2859
|
-
export type
|
|
2895
|
+
export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Path = PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request['parameters']['path'];
|
|
2860
2896
|
/**
|
|
2861
2897
|
* Request body for PATCH /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2862
2898
|
*
|
|
@@ -2869,7 +2905,7 @@ export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_Paramete
|
|
|
2869
2905
|
*
|
|
2870
2906
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2871
2907
|
*/
|
|
2872
|
-
export type
|
|
2908
|
+
export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Body = PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request['requestBody'];
|
|
2873
2909
|
|
|
2874
2910
|
/**
|
|
2875
2911
|
* Request type for DELETE OrganizationsOrganizationId endpoint
|
|
@@ -2886,11 +2922,11 @@ export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_RequestB
|
|
|
2886
2922
|
*
|
|
2887
2923
|
* @path /v1/organizations/{organization_id}
|
|
2888
2924
|
*
|
|
2889
|
-
* @see {@link
|
|
2890
|
-
* @see {@link
|
|
2891
|
-
* @see {@link
|
|
2925
|
+
* @see {@link DELETE_OrganizationsOrganizationId_Request_Query} - Query parameters type
|
|
2926
|
+
* @see {@link DELETE_OrganizationsOrganizationId_Request_Path} - Path parameters type
|
|
2927
|
+
* @see {@link DELETE_OrganizationsOrganizationId_Request_Body} - Request body type
|
|
2892
2928
|
*/
|
|
2893
|
-
export type
|
|
2929
|
+
export type DELETE_OrganizationsOrganizationId_Request = {
|
|
2894
2930
|
parameters: {
|
|
2895
2931
|
path: operations['delete_user_v1_organizations__organization_id__delete']['parameters']['path'];
|
|
2896
2932
|
};
|
|
@@ -2907,7 +2943,7 @@ export type DELETE_OrganizationsOrganizationId_V1_Request = {
|
|
|
2907
2943
|
*
|
|
2908
2944
|
* @path /v1/organizations/{organization_id}
|
|
2909
2945
|
*/
|
|
2910
|
-
export type
|
|
2946
|
+
export type DELETE_OrganizationsOrganizationId_Request_Path = DELETE_OrganizationsOrganizationId_Request['parameters']['path'];
|
|
2911
2947
|
|
|
2912
2948
|
/**
|
|
2913
2949
|
* Request type for GET OrganizationsOrganizationId endpoint
|
|
@@ -2924,11 +2960,11 @@ export type DELETE_OrganizationsOrganizationId_V1_Request_Parameters_Path = DELE
|
|
|
2924
2960
|
*
|
|
2925
2961
|
* @path /v1/organizations/{organization_id}
|
|
2926
2962
|
*
|
|
2927
|
-
* @see {@link
|
|
2928
|
-
* @see {@link
|
|
2929
|
-
* @see {@link
|
|
2963
|
+
* @see {@link GET_OrganizationsOrganizationId_Request_Query} - Query parameters type
|
|
2964
|
+
* @see {@link GET_OrganizationsOrganizationId_Request_Path} - Path parameters type
|
|
2965
|
+
* @see {@link GET_OrganizationsOrganizationId_Request_Body} - Request body type
|
|
2930
2966
|
*/
|
|
2931
|
-
export type
|
|
2967
|
+
export type GET_OrganizationsOrganizationId_Request = {
|
|
2932
2968
|
parameters: {
|
|
2933
2969
|
path: operations['get_organization_v1_organizations__organization_id__get']['parameters']['path'];
|
|
2934
2970
|
};
|
|
@@ -2945,7 +2981,7 @@ export type GET_OrganizationsOrganizationId_V1_Request = {
|
|
|
2945
2981
|
*
|
|
2946
2982
|
* @path /v1/organizations/{organization_id}
|
|
2947
2983
|
*/
|
|
2948
|
-
export type
|
|
2984
|
+
export type GET_OrganizationsOrganizationId_Request_Path = GET_OrganizationsOrganizationId_Request['parameters']['path'];
|
|
2949
2985
|
|
|
2950
2986
|
/**
|
|
2951
2987
|
* Request type for PATCH OrganizationsOrganizationId endpoint
|
|
@@ -2962,11 +2998,11 @@ export type GET_OrganizationsOrganizationId_V1_Request_Parameters_Path = GET_Org
|
|
|
2962
2998
|
*
|
|
2963
2999
|
* @path /v1/organizations/{organization_id}
|
|
2964
3000
|
*
|
|
2965
|
-
* @see {@link
|
|
2966
|
-
* @see {@link
|
|
2967
|
-
* @see {@link
|
|
3001
|
+
* @see {@link PATCH_OrganizationsOrganizationId_Request_Query} - Query parameters type
|
|
3002
|
+
* @see {@link PATCH_OrganizationsOrganizationId_Request_Path} - Path parameters type
|
|
3003
|
+
* @see {@link PATCH_OrganizationsOrganizationId_Request_Body} - Request body type
|
|
2968
3004
|
*/
|
|
2969
|
-
export type
|
|
3005
|
+
export type PATCH_OrganizationsOrganizationId_Request = {
|
|
2970
3006
|
parameters: {
|
|
2971
3007
|
path: operations['update_organization_v1_organizations__organization_id__patch']['parameters']['path'];
|
|
2972
3008
|
};
|
|
@@ -2984,7 +3020,7 @@ export type PATCH_OrganizationsOrganizationId_V1_Request = {
|
|
|
2984
3020
|
*
|
|
2985
3021
|
* @path /v1/organizations/{organization_id}
|
|
2986
3022
|
*/
|
|
2987
|
-
export type
|
|
3023
|
+
export type PATCH_OrganizationsOrganizationId_Request_Path = PATCH_OrganizationsOrganizationId_Request['parameters']['path'];
|
|
2988
3024
|
/**
|
|
2989
3025
|
* Request body for PATCH /v1/organizations/{organization_id}
|
|
2990
3026
|
*
|
|
@@ -2997,7 +3033,7 @@ export type PATCH_OrganizationsOrganizationId_V1_Request_Parameters_Path = PATCH
|
|
|
2997
3033
|
*
|
|
2998
3034
|
* @path /v1/organizations/{organization_id}
|
|
2999
3035
|
*/
|
|
3000
|
-
export type
|
|
3036
|
+
export type PATCH_OrganizationsOrganizationId_Request_Body = PATCH_OrganizationsOrganizationId_Request['requestBody'];
|
|
3001
3037
|
|
|
3002
3038
|
/**
|
|
3003
3039
|
* Request type for PATCH OrganizationsOrganizationIdPlan endpoint
|
|
@@ -3014,11 +3050,11 @@ export type PATCH_OrganizationsOrganizationId_V1_Request_RequestBody = PATCH_Org
|
|
|
3014
3050
|
*
|
|
3015
3051
|
* @path /v1/organizations/{organization_id}/plan
|
|
3016
3052
|
*
|
|
3017
|
-
* @see {@link
|
|
3018
|
-
* @see {@link
|
|
3019
|
-
* @see {@link
|
|
3053
|
+
* @see {@link PATCH_OrganizationsOrganizationIdPlan_Request_Query} - Query parameters type
|
|
3054
|
+
* @see {@link PATCH_OrganizationsOrganizationIdPlan_Request_Path} - Path parameters type
|
|
3055
|
+
* @see {@link PATCH_OrganizationsOrganizationIdPlan_Request_Body} - Request body type
|
|
3020
3056
|
*/
|
|
3021
|
-
export type
|
|
3057
|
+
export type PATCH_OrganizationsOrganizationIdPlan_Request = {
|
|
3022
3058
|
parameters: {
|
|
3023
3059
|
path: operations['change_plan_v1_organizations__organization_id__plan_patch']['parameters']['path'];
|
|
3024
3060
|
};
|
|
@@ -3036,7 +3072,7 @@ export type PATCH_OrganizationsOrganizationIdPlan_V1_Request = {
|
|
|
3036
3072
|
*
|
|
3037
3073
|
* @path /v1/organizations/{organization_id}/plan
|
|
3038
3074
|
*/
|
|
3039
|
-
export type
|
|
3075
|
+
export type PATCH_OrganizationsOrganizationIdPlan_Request_Path = PATCH_OrganizationsOrganizationIdPlan_Request['parameters']['path'];
|
|
3040
3076
|
/**
|
|
3041
3077
|
* Request body for PATCH /v1/organizations/{organization_id}/plan
|
|
3042
3078
|
*
|
|
@@ -3049,7 +3085,7 @@ export type PATCH_OrganizationsOrganizationIdPlan_V1_Request_Parameters_Path = P
|
|
|
3049
3085
|
*
|
|
3050
3086
|
* @path /v1/organizations/{organization_id}/plan
|
|
3051
3087
|
*/
|
|
3052
|
-
export type
|
|
3088
|
+
export type PATCH_OrganizationsOrganizationIdPlan_Request_Body = PATCH_OrganizationsOrganizationIdPlan_Request['requestBody'];
|
|
3053
3089
|
|
|
3054
3090
|
/**
|
|
3055
3091
|
* Request type for GET OrganizationsRoles endpoint
|
|
@@ -3066,11 +3102,11 @@ export type PATCH_OrganizationsOrganizationIdPlan_V1_Request_RequestBody = PATCH
|
|
|
3066
3102
|
*
|
|
3067
3103
|
* @path /v1/organizations/roles
|
|
3068
3104
|
*
|
|
3069
|
-
* @see {@link
|
|
3070
|
-
* @see {@link
|
|
3071
|
-
* @see {@link
|
|
3105
|
+
* @see {@link GET_OrganizationsRoles_Request_Query} - Query parameters type
|
|
3106
|
+
* @see {@link GET_OrganizationsRoles_Request_Path} - Path parameters type
|
|
3107
|
+
* @see {@link GET_OrganizationsRoles_Request_Body} - Request body type
|
|
3072
3108
|
*/
|
|
3073
|
-
export type
|
|
3109
|
+
export type GET_OrganizationsRoles_Request = {
|
|
3074
3110
|
}
|
|
3075
3111
|
|
|
3076
3112
|
/**
|
|
@@ -3088,11 +3124,11 @@ export type GET_OrganizationsRoles_V1_Request = {
|
|
|
3088
3124
|
*
|
|
3089
3125
|
* @path /v1/organizations/users
|
|
3090
3126
|
*
|
|
3091
|
-
* @see {@link
|
|
3092
|
-
* @see {@link
|
|
3093
|
-
* @see {@link
|
|
3127
|
+
* @see {@link GET_OrganizationsUsers_Request_Query} - Query parameters type
|
|
3128
|
+
* @see {@link GET_OrganizationsUsers_Request_Path} - Path parameters type
|
|
3129
|
+
* @see {@link GET_OrganizationsUsers_Request_Body} - Request body type
|
|
3094
3130
|
*/
|
|
3095
|
-
export type
|
|
3131
|
+
export type GET_OrganizationsUsers_Request = {
|
|
3096
3132
|
parameters: {
|
|
3097
3133
|
query: operations['list_users_v1_organizations_users_get']['parameters']['query'];
|
|
3098
3134
|
};
|
|
@@ -3109,7 +3145,67 @@ export type GET_OrganizationsUsers_V1_Request = {
|
|
|
3109
3145
|
*
|
|
3110
3146
|
* @path /v1/organizations/users
|
|
3111
3147
|
*/
|
|
3112
|
-
export type
|
|
3148
|
+
export type GET_OrganizationsUsers_Request_Query = GET_OrganizationsUsers_Request['parameters']['query'];
|
|
3149
|
+
|
|
3150
|
+
/**
|
|
3151
|
+
* Request type for GET TldsPortfolio endpoint
|
|
3152
|
+
*
|
|
3153
|
+
* Get Tld Portfolio
|
|
3154
|
+
*
|
|
3155
|
+
* @remarks
|
|
3156
|
+
* This type defines the complete request structure for the GET TldsPortfolio endpoint.
|
|
3157
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3158
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3159
|
+
*
|
|
3160
|
+
* @example
|
|
3161
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3162
|
+
*
|
|
3163
|
+
* @path /v1/tlds/portfolio
|
|
3164
|
+
*
|
|
3165
|
+
* @see {@link GET_TldsPortfolio_Request_Query} - Query parameters type
|
|
3166
|
+
* @see {@link GET_TldsPortfolio_Request_Path} - Path parameters type
|
|
3167
|
+
* @see {@link GET_TldsPortfolio_Request_Body} - Request body type
|
|
3168
|
+
*/
|
|
3169
|
+
export type GET_TldsPortfolio_Request = {
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3172
|
+
/**
|
|
3173
|
+
* Request type for GET TldsTld endpoint
|
|
3174
|
+
*
|
|
3175
|
+
* Get Tld Spec
|
|
3176
|
+
*
|
|
3177
|
+
* @remarks
|
|
3178
|
+
* This type defines the complete request structure for the GET TldsTld endpoint.
|
|
3179
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3180
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3181
|
+
*
|
|
3182
|
+
* @example
|
|
3183
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3184
|
+
*
|
|
3185
|
+
* @path /v1/tlds/{tld}
|
|
3186
|
+
*
|
|
3187
|
+
* @see {@link GET_TldsTld_Request_Query} - Query parameters type
|
|
3188
|
+
* @see {@link GET_TldsTld_Request_Path} - Path parameters type
|
|
3189
|
+
* @see {@link GET_TldsTld_Request_Body} - Request body type
|
|
3190
|
+
*/
|
|
3191
|
+
export type GET_TldsTld_Request = {
|
|
3192
|
+
parameters: {
|
|
3193
|
+
path: operations['get_tld_spec_v1_tlds__tld__get']['parameters']['path'];
|
|
3194
|
+
};
|
|
3195
|
+
}
|
|
3196
|
+
/**
|
|
3197
|
+
* Path parameters for GET /v1/tlds/{tld}
|
|
3198
|
+
*
|
|
3199
|
+
* @remarks
|
|
3200
|
+
* This type defines the path parameters for the GET /v1/tlds/{tld} endpoint.
|
|
3201
|
+
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
3202
|
+
*
|
|
3203
|
+
* @example
|
|
3204
|
+
* Use this type to ensure type safety for path parameters.
|
|
3205
|
+
*
|
|
3206
|
+
* @path /v1/tlds/{tld}
|
|
3207
|
+
*/
|
|
3208
|
+
export type GET_TldsTld_Request_Path = GET_TldsTld_Request['parameters']['path'];
|
|
3113
3209
|
|
|
3114
3210
|
/**
|
|
3115
3211
|
* Request type for POST Users endpoint
|
|
@@ -3126,11 +3222,11 @@ export type GET_OrganizationsUsers_V1_Request_Parameters_Query = GET_Organizatio
|
|
|
3126
3222
|
*
|
|
3127
3223
|
* @path /v1/users
|
|
3128
3224
|
*
|
|
3129
|
-
* @see {@link
|
|
3130
|
-
* @see {@link
|
|
3131
|
-
* @see {@link
|
|
3225
|
+
* @see {@link POST_Users_Request_Query} - Query parameters type
|
|
3226
|
+
* @see {@link POST_Users_Request_Path} - Path parameters type
|
|
3227
|
+
* @see {@link POST_Users_Request_Body} - Request body type
|
|
3132
3228
|
*/
|
|
3133
|
-
export type
|
|
3229
|
+
export type POST_Users_Request = {
|
|
3134
3230
|
requestBody: UserCreate;
|
|
3135
3231
|
}
|
|
3136
3232
|
/**
|
|
@@ -3145,7 +3241,7 @@ export type POST_Users_V1_Request = {
|
|
|
3145
3241
|
*
|
|
3146
3242
|
* @path /v1/users
|
|
3147
3243
|
*/
|
|
3148
|
-
export type
|
|
3244
|
+
export type POST_Users_Request_Body = POST_Users_Request['requestBody'];
|
|
3149
3245
|
|
|
3150
3246
|
/**
|
|
3151
3247
|
* Request type for POST UsersAcceptTos endpoint
|
|
@@ -3162,11 +3258,11 @@ export type POST_Users_V1_Request_RequestBody = POST_Users_V1_Request['requestBo
|
|
|
3162
3258
|
*
|
|
3163
3259
|
* @path /v1/users/accept-tos
|
|
3164
3260
|
*
|
|
3165
|
-
* @see {@link
|
|
3166
|
-
* @see {@link
|
|
3167
|
-
* @see {@link
|
|
3261
|
+
* @see {@link POST_UsersAcceptTos_Request_Query} - Query parameters type
|
|
3262
|
+
* @see {@link POST_UsersAcceptTos_Request_Path} - Path parameters type
|
|
3263
|
+
* @see {@link POST_UsersAcceptTos_Request_Body} - Request body type
|
|
3168
3264
|
*/
|
|
3169
|
-
export type
|
|
3265
|
+
export type POST_UsersAcceptTos_Request = {
|
|
3170
3266
|
requestBody: TermsOfServiceAccept;
|
|
3171
3267
|
}
|
|
3172
3268
|
/**
|
|
@@ -3181,7 +3277,7 @@ export type POST_UsersAcceptTos_V1_Request = {
|
|
|
3181
3277
|
*
|
|
3182
3278
|
* @path /v1/users/accept-tos
|
|
3183
3279
|
*/
|
|
3184
|
-
export type
|
|
3280
|
+
export type POST_UsersAcceptTos_Request_Body = POST_UsersAcceptTos_Request['requestBody'];
|
|
3185
3281
|
|
|
3186
3282
|
/**
|
|
3187
3283
|
* Request type for GET UsersMe endpoint
|
|
@@ -3198,11 +3294,11 @@ export type POST_UsersAcceptTos_V1_Request_RequestBody = POST_UsersAcceptTos_V1_
|
|
|
3198
3294
|
*
|
|
3199
3295
|
* @path /v1/users/me
|
|
3200
3296
|
*
|
|
3201
|
-
* @see {@link
|
|
3202
|
-
* @see {@link
|
|
3203
|
-
* @see {@link
|
|
3297
|
+
* @see {@link GET_UsersMe_Request_Query} - Query parameters type
|
|
3298
|
+
* @see {@link GET_UsersMe_Request_Path} - Path parameters type
|
|
3299
|
+
* @see {@link GET_UsersMe_Request_Body} - Request body type
|
|
3204
3300
|
*/
|
|
3205
|
-
export type
|
|
3301
|
+
export type GET_UsersMe_Request = {
|
|
3206
3302
|
parameters: {
|
|
3207
3303
|
query: operations['get_current_user_v1_users_me_get']['parameters']['query'];
|
|
3208
3304
|
};
|
|
@@ -3219,7 +3315,7 @@ export type GET_UsersMe_V1_Request = {
|
|
|
3219
3315
|
*
|
|
3220
3316
|
* @path /v1/users/me
|
|
3221
3317
|
*/
|
|
3222
|
-
export type
|
|
3318
|
+
export type GET_UsersMe_Request_Query = GET_UsersMe_Request['parameters']['query'];
|
|
3223
3319
|
|
|
3224
3320
|
/**
|
|
3225
3321
|
* Request type for DELETE UsersUserId endpoint
|
|
@@ -3236,11 +3332,11 @@ export type GET_UsersMe_V1_Request_Parameters_Query = GET_UsersMe_V1_Request['pa
|
|
|
3236
3332
|
*
|
|
3237
3333
|
* @path /v1/users/{user_id}
|
|
3238
3334
|
*
|
|
3239
|
-
* @see {@link
|
|
3240
|
-
* @see {@link
|
|
3241
|
-
* @see {@link
|
|
3335
|
+
* @see {@link DELETE_UsersUserId_Request_Query} - Query parameters type
|
|
3336
|
+
* @see {@link DELETE_UsersUserId_Request_Path} - Path parameters type
|
|
3337
|
+
* @see {@link DELETE_UsersUserId_Request_Body} - Request body type
|
|
3242
3338
|
*/
|
|
3243
|
-
export type
|
|
3339
|
+
export type DELETE_UsersUserId_Request = {
|
|
3244
3340
|
parameters: {
|
|
3245
3341
|
path: operations['delete_user_v1_users__user_id__delete']['parameters']['path'];
|
|
3246
3342
|
};
|
|
@@ -3257,7 +3353,7 @@ export type DELETE_UsersUserId_V1_Request = {
|
|
|
3257
3353
|
*
|
|
3258
3354
|
* @path /v1/users/{user_id}
|
|
3259
3355
|
*/
|
|
3260
|
-
export type
|
|
3356
|
+
export type DELETE_UsersUserId_Request_Path = DELETE_UsersUserId_Request['parameters']['path'];
|
|
3261
3357
|
|
|
3262
3358
|
/**
|
|
3263
3359
|
* Request type for GET UsersUserId endpoint
|
|
@@ -3274,11 +3370,11 @@ export type DELETE_UsersUserId_V1_Request_Parameters_Path = DELETE_UsersUserId_V
|
|
|
3274
3370
|
*
|
|
3275
3371
|
* @path /v1/users/{user_id}
|
|
3276
3372
|
*
|
|
3277
|
-
* @see {@link
|
|
3278
|
-
* @see {@link
|
|
3279
|
-
* @see {@link
|
|
3373
|
+
* @see {@link GET_UsersUserId_Request_Query} - Query parameters type
|
|
3374
|
+
* @see {@link GET_UsersUserId_Request_Path} - Path parameters type
|
|
3375
|
+
* @see {@link GET_UsersUserId_Request_Body} - Request body type
|
|
3280
3376
|
*/
|
|
3281
|
-
export type
|
|
3377
|
+
export type GET_UsersUserId_Request = {
|
|
3282
3378
|
parameters: {
|
|
3283
3379
|
query: operations['get_user_v1_users__user_id__get']['parameters']['query'];
|
|
3284
3380
|
path: operations['get_user_v1_users__user_id__get']['parameters']['path'];
|
|
@@ -3296,7 +3392,7 @@ export type GET_UsersUserId_V1_Request = {
|
|
|
3296
3392
|
*
|
|
3297
3393
|
* @path /v1/users/{user_id}
|
|
3298
3394
|
*/
|
|
3299
|
-
export type
|
|
3395
|
+
export type GET_UsersUserId_Request_Query = GET_UsersUserId_Request['parameters']['query'];
|
|
3300
3396
|
/**
|
|
3301
3397
|
* Path parameters for GET /v1/users/{user_id}
|
|
3302
3398
|
*
|
|
@@ -3309,7 +3405,7 @@ export type GET_UsersUserId_V1_Request_Parameters_Query = GET_UsersUserId_V1_Req
|
|
|
3309
3405
|
*
|
|
3310
3406
|
* @path /v1/users/{user_id}
|
|
3311
3407
|
*/
|
|
3312
|
-
export type
|
|
3408
|
+
export type GET_UsersUserId_Request_Path = GET_UsersUserId_Request['parameters']['path'];
|
|
3313
3409
|
|
|
3314
3410
|
/**
|
|
3315
3411
|
* Request type for PATCH UsersUserId endpoint
|
|
@@ -3326,11 +3422,11 @@ export type GET_UsersUserId_V1_Request_Parameters_Path = GET_UsersUserId_V1_Requ
|
|
|
3326
3422
|
*
|
|
3327
3423
|
* @path /v1/users/{user_id}
|
|
3328
3424
|
*
|
|
3329
|
-
* @see {@link
|
|
3330
|
-
* @see {@link
|
|
3331
|
-
* @see {@link
|
|
3425
|
+
* @see {@link PATCH_UsersUserId_Request_Query} - Query parameters type
|
|
3426
|
+
* @see {@link PATCH_UsersUserId_Request_Path} - Path parameters type
|
|
3427
|
+
* @see {@link PATCH_UsersUserId_Request_Body} - Request body type
|
|
3332
3428
|
*/
|
|
3333
|
-
export type
|
|
3429
|
+
export type PATCH_UsersUserId_Request = {
|
|
3334
3430
|
parameters: {
|
|
3335
3431
|
path: operations['update_user_v1_users__user_id__patch']['parameters']['path'];
|
|
3336
3432
|
};
|
|
@@ -3348,7 +3444,7 @@ export type PATCH_UsersUserId_V1_Request = {
|
|
|
3348
3444
|
*
|
|
3349
3445
|
* @path /v1/users/{user_id}
|
|
3350
3446
|
*/
|
|
3351
|
-
export type
|
|
3447
|
+
export type PATCH_UsersUserId_Request_Path = PATCH_UsersUserId_Request['parameters']['path'];
|
|
3352
3448
|
/**
|
|
3353
3449
|
* Request body for PATCH /v1/users/{user_id}
|
|
3354
3450
|
*
|
|
@@ -3361,7 +3457,7 @@ export type PATCH_UsersUserId_V1_Request_Parameters_Path = PATCH_UsersUserId_V1_
|
|
|
3361
3457
|
*
|
|
3362
3458
|
* @path /v1/users/{user_id}
|
|
3363
3459
|
*/
|
|
3364
|
-
export type
|
|
3460
|
+
export type PATCH_UsersUserId_Request_Body = PATCH_UsersUserId_Request['requestBody'];
|
|
3365
3461
|
|
|
3366
3462
|
/**
|
|
3367
3463
|
* Request type for GET UsersUserIdPermissions endpoint
|
|
@@ -3378,11 +3474,11 @@ export type PATCH_UsersUserId_V1_Request_RequestBody = PATCH_UsersUserId_V1_Requ
|
|
|
3378
3474
|
*
|
|
3379
3475
|
* @path /v1/users/{user_id}/permissions
|
|
3380
3476
|
*
|
|
3381
|
-
* @see {@link
|
|
3382
|
-
* @see {@link
|
|
3383
|
-
* @see {@link
|
|
3477
|
+
* @see {@link GET_UsersUserIdPermissions_Request_Query} - Query parameters type
|
|
3478
|
+
* @see {@link GET_UsersUserIdPermissions_Request_Path} - Path parameters type
|
|
3479
|
+
* @see {@link GET_UsersUserIdPermissions_Request_Body} - Request body type
|
|
3384
3480
|
*/
|
|
3385
|
-
export type
|
|
3481
|
+
export type GET_UsersUserIdPermissions_Request = {
|
|
3386
3482
|
parameters: {
|
|
3387
3483
|
path: operations['get_user_permissions_v1_users__user_id__permissions_get']['parameters']['path'];
|
|
3388
3484
|
};
|
|
@@ -3399,7 +3495,7 @@ export type GET_UsersUserIdPermissions_V1_Request = {
|
|
|
3399
3495
|
*
|
|
3400
3496
|
* @path /v1/users/{user_id}/permissions
|
|
3401
3497
|
*/
|
|
3402
|
-
export type
|
|
3498
|
+
export type GET_UsersUserIdPermissions_Request_Path = GET_UsersUserIdPermissions_Request['parameters']['path'];
|
|
3403
3499
|
|
|
3404
3500
|
/**
|
|
3405
3501
|
* Request type for GET UsersUserIdRoles endpoint
|
|
@@ -3416,11 +3512,11 @@ export type GET_UsersUserIdPermissions_V1_Request_Parameters_Path = GET_UsersUse
|
|
|
3416
3512
|
*
|
|
3417
3513
|
* @path /v1/users/{user_id}/roles
|
|
3418
3514
|
*
|
|
3419
|
-
* @see {@link
|
|
3420
|
-
* @see {@link
|
|
3421
|
-
* @see {@link
|
|
3515
|
+
* @see {@link GET_UsersUserIdRoles_Request_Query} - Query parameters type
|
|
3516
|
+
* @see {@link GET_UsersUserIdRoles_Request_Path} - Path parameters type
|
|
3517
|
+
* @see {@link GET_UsersUserIdRoles_Request_Body} - Request body type
|
|
3422
3518
|
*/
|
|
3423
|
-
export type
|
|
3519
|
+
export type GET_UsersUserIdRoles_Request = {
|
|
3424
3520
|
parameters: {
|
|
3425
3521
|
path: operations['list_roles_v1_users__user_id__roles_get']['parameters']['path'];
|
|
3426
3522
|
};
|
|
@@ -3437,7 +3533,7 @@ export type GET_UsersUserIdRoles_V1_Request = {
|
|
|
3437
3533
|
*
|
|
3438
3534
|
* @path /v1/users/{user_id}/roles
|
|
3439
3535
|
*/
|
|
3440
|
-
export type
|
|
3536
|
+
export type GET_UsersUserIdRoles_Request_Path = GET_UsersUserIdRoles_Request['parameters']['path'];
|
|
3441
3537
|
|
|
3442
3538
|
/**
|
|
3443
3539
|
* Request type for PATCH UsersUserIdRoles endpoint
|
|
@@ -3454,11 +3550,11 @@ export type GET_UsersUserIdRoles_V1_Request_Parameters_Path = GET_UsersUserIdRol
|
|
|
3454
3550
|
*
|
|
3455
3551
|
* @path /v1/users/{user_id}/roles
|
|
3456
3552
|
*
|
|
3457
|
-
* @see {@link
|
|
3458
|
-
* @see {@link
|
|
3459
|
-
* @see {@link
|
|
3553
|
+
* @see {@link PATCH_UsersUserIdRoles_Request_Query} - Query parameters type
|
|
3554
|
+
* @see {@link PATCH_UsersUserIdRoles_Request_Path} - Path parameters type
|
|
3555
|
+
* @see {@link PATCH_UsersUserIdRoles_Request_Body} - Request body type
|
|
3460
3556
|
*/
|
|
3461
|
-
export type
|
|
3557
|
+
export type PATCH_UsersUserIdRoles_Request = {
|
|
3462
3558
|
parameters: {
|
|
3463
3559
|
path: operations['update_user_relations_v1_users__user_id__roles_patch']['parameters']['path'];
|
|
3464
3560
|
};
|
|
@@ -3476,7 +3572,7 @@ export type PATCH_UsersUserIdRoles_V1_Request = {
|
|
|
3476
3572
|
*
|
|
3477
3573
|
* @path /v1/users/{user_id}/roles
|
|
3478
3574
|
*/
|
|
3479
|
-
export type
|
|
3575
|
+
export type PATCH_UsersUserIdRoles_Request_Path = PATCH_UsersUserIdRoles_Request['parameters']['path'];
|
|
3480
3576
|
/**
|
|
3481
3577
|
* Request body for PATCH /v1/users/{user_id}/roles
|
|
3482
3578
|
*
|
|
@@ -3489,5 +3585,5 @@ export type PATCH_UsersUserIdRoles_V1_Request_Parameters_Path = PATCH_UsersUserI
|
|
|
3489
3585
|
*
|
|
3490
3586
|
* @path /v1/users/{user_id}/roles
|
|
3491
3587
|
*/
|
|
3492
|
-
export type
|
|
3588
|
+
export type PATCH_UsersUserIdRoles_Request_Body = PATCH_UsersUserIdRoles_Request['requestBody'];
|
|
3493
3589
|
|