@opusdns/api 0.10.0 → 0.11.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 +501 -441
- package/src/helpers/responses.ts +385 -547
- package/src/helpers/schemas-arrays.ts +169 -1
- package/src/helpers/schemas.ts +624 -0
- package/src/openapi.yaml +948 -1
- package/src/schema.d.ts +682 -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,7 @@ 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
152
|
|
|
153
153
|
/**
|
|
154
154
|
* Request type for POST AuthLogout endpoint
|
|
@@ -165,11 +165,11 @@ export type DELETE_AuthClientCredentialsApiKeyId_V1_Request_Parameters_Path = DE
|
|
|
165
165
|
*
|
|
166
166
|
* @path /v1/auth/logout
|
|
167
167
|
*
|
|
168
|
-
* @see {@link
|
|
169
|
-
* @see {@link
|
|
170
|
-
* @see {@link
|
|
168
|
+
* @see {@link POST_AuthLogout_Request_Query} - Query parameters type
|
|
169
|
+
* @see {@link POST_AuthLogout_Request_Path} - Path parameters type
|
|
170
|
+
* @see {@link POST_AuthLogout_Request_Body} - Request body type
|
|
171
171
|
*/
|
|
172
|
-
export type
|
|
172
|
+
export type POST_AuthLogout_Request = {
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
/**
|
|
@@ -187,11 +187,11 @@ export type POST_AuthLogout_V1_Request = {
|
|
|
187
187
|
*
|
|
188
188
|
* @path /v1/auth/signup
|
|
189
189
|
*
|
|
190
|
-
* @see {@link
|
|
191
|
-
* @see {@link
|
|
192
|
-
* @see {@link
|
|
190
|
+
* @see {@link POST_AuthSignup_Request_Query} - Query parameters type
|
|
191
|
+
* @see {@link POST_AuthSignup_Request_Path} - Path parameters type
|
|
192
|
+
* @see {@link POST_AuthSignup_Request_Body} - Request body type
|
|
193
193
|
*/
|
|
194
|
-
export type
|
|
194
|
+
export type POST_AuthSignup_Request = {
|
|
195
195
|
requestBody: SignupCreate;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
@@ -206,7 +206,7 @@ export type POST_AuthSignup_V1_Request = {
|
|
|
206
206
|
*
|
|
207
207
|
* @path /v1/auth/signup
|
|
208
208
|
*/
|
|
209
|
-
export type
|
|
209
|
+
export type POST_AuthSignup_Request_Body = POST_AuthSignup_Request['requestBody'];
|
|
210
210
|
|
|
211
211
|
/**
|
|
212
212
|
* Request type for POST AuthToken endpoint
|
|
@@ -223,11 +223,11 @@ export type POST_AuthSignup_V1_Request_RequestBody = POST_AuthSignup_V1_Request[
|
|
|
223
223
|
*
|
|
224
224
|
* @path /v1/auth/token
|
|
225
225
|
*
|
|
226
|
-
* @see {@link
|
|
227
|
-
* @see {@link
|
|
228
|
-
* @see {@link
|
|
226
|
+
* @see {@link POST_AuthToken_Request_Query} - Query parameters type
|
|
227
|
+
* @see {@link POST_AuthToken_Request_Path} - Path parameters type
|
|
228
|
+
* @see {@link POST_AuthToken_Request_Body} - Request body type
|
|
229
229
|
*/
|
|
230
|
-
export type
|
|
230
|
+
export type POST_AuthToken_Request = {
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
/**
|
|
@@ -249,11 +249,11 @@ export type POST_AuthToken_V1_Request = {
|
|
|
249
249
|
Specify one or more domains to check for availability.
|
|
250
250
|
|
|
251
251
|
*
|
|
252
|
-
* @see {@link
|
|
253
|
-
* @see {@link
|
|
254
|
-
* @see {@link
|
|
252
|
+
* @see {@link GET_Availability_Request_Query} - Query parameters type
|
|
253
|
+
* @see {@link GET_Availability_Request_Path} - Path parameters type
|
|
254
|
+
* @see {@link GET_Availability_Request_Body} - Request body type
|
|
255
255
|
*/
|
|
256
|
-
export type
|
|
256
|
+
export type GET_Availability_Request = {
|
|
257
257
|
parameters: {
|
|
258
258
|
query: operations['bulk_availability_v1_availability_get']['parameters']['query'];
|
|
259
259
|
};
|
|
@@ -273,7 +273,7 @@ export type GET_Availability_V1_Request = {
|
|
|
273
273
|
Specify one or more domains to check for availability.
|
|
274
274
|
|
|
275
275
|
*/
|
|
276
|
-
export type
|
|
276
|
+
export type GET_Availability_Request_Query = GET_Availability_Request['parameters']['query'];
|
|
277
277
|
|
|
278
278
|
/**
|
|
279
279
|
* Request type for GET AvailabilityStream endpoint
|
|
@@ -294,11 +294,11 @@ export type GET_Availability_V1_Request_Parameters_Query = GET_Availability_V1_R
|
|
|
294
294
|
Specify one or more domains to check for availability.
|
|
295
295
|
|
|
296
296
|
*
|
|
297
|
-
* @see {@link
|
|
298
|
-
* @see {@link
|
|
299
|
-
* @see {@link
|
|
297
|
+
* @see {@link GET_AvailabilityStream_Request_Query} - Query parameters type
|
|
298
|
+
* @see {@link GET_AvailabilityStream_Request_Path} - Path parameters type
|
|
299
|
+
* @see {@link GET_AvailabilityStream_Request_Body} - Request body type
|
|
300
300
|
*/
|
|
301
|
-
export type
|
|
301
|
+
export type GET_AvailabilityStream_Request = {
|
|
302
302
|
parameters: {
|
|
303
303
|
query: operations['stream_availability_v1_availability_stream_get']['parameters']['query'];
|
|
304
304
|
};
|
|
@@ -318,7 +318,7 @@ export type GET_AvailabilityStream_V1_Request = {
|
|
|
318
318
|
Specify one or more domains to check for availability.
|
|
319
319
|
|
|
320
320
|
*/
|
|
321
|
-
export type
|
|
321
|
+
export type GET_AvailabilityStream_Request_Query = GET_AvailabilityStream_Request['parameters']['query'];
|
|
322
322
|
|
|
323
323
|
/**
|
|
324
324
|
* Request type for GET Contacts endpoint
|
|
@@ -336,11 +336,11 @@ export type GET_AvailabilityStream_V1_Request_Parameters_Query = GET_Availabilit
|
|
|
336
336
|
*
|
|
337
337
|
* @path /v1/contacts
|
|
338
338
|
*
|
|
339
|
-
* @see {@link
|
|
340
|
-
* @see {@link
|
|
341
|
-
* @see {@link
|
|
339
|
+
* @see {@link GET_Contacts_Request_Query} - Query parameters type
|
|
340
|
+
* @see {@link GET_Contacts_Request_Path} - Path parameters type
|
|
341
|
+
* @see {@link GET_Contacts_Request_Body} - Request body type
|
|
342
342
|
*/
|
|
343
|
-
export type
|
|
343
|
+
export type GET_Contacts_Request = {
|
|
344
344
|
parameters: {
|
|
345
345
|
query: operations['get_contacts_v1_contacts_get']['parameters']['query'];
|
|
346
346
|
};
|
|
@@ -357,7 +357,7 @@ export type GET_Contacts_V1_Request = {
|
|
|
357
357
|
*
|
|
358
358
|
* @path /v1/contacts
|
|
359
359
|
*/
|
|
360
|
-
export type
|
|
360
|
+
export type GET_Contacts_Request_Query = GET_Contacts_Request['parameters']['query'];
|
|
361
361
|
|
|
362
362
|
/**
|
|
363
363
|
* Request type for POST Contacts endpoint
|
|
@@ -375,11 +375,11 @@ export type GET_Contacts_V1_Request_Parameters_Query = GET_Contacts_V1_Request['
|
|
|
375
375
|
*
|
|
376
376
|
* @path /v1/contacts
|
|
377
377
|
*
|
|
378
|
-
* @see {@link
|
|
379
|
-
* @see {@link
|
|
380
|
-
* @see {@link
|
|
378
|
+
* @see {@link POST_Contacts_Request_Query} - Query parameters type
|
|
379
|
+
* @see {@link POST_Contacts_Request_Path} - Path parameters type
|
|
380
|
+
* @see {@link POST_Contacts_Request_Body} - Request body type
|
|
381
381
|
*/
|
|
382
|
-
export type
|
|
382
|
+
export type POST_Contacts_Request = {
|
|
383
383
|
requestBody: ContactCreate;
|
|
384
384
|
}
|
|
385
385
|
/**
|
|
@@ -394,7 +394,7 @@ export type POST_Contacts_V1_Request = {
|
|
|
394
394
|
*
|
|
395
395
|
* @path /v1/contacts
|
|
396
396
|
*/
|
|
397
|
-
export type
|
|
397
|
+
export type POST_Contacts_Request_Body = POST_Contacts_Request['requestBody'];
|
|
398
398
|
|
|
399
399
|
/**
|
|
400
400
|
* Request type for DELETE ContactsContactId endpoint
|
|
@@ -412,11 +412,11 @@ export type POST_Contacts_V1_Request_RequestBody = POST_Contacts_V1_Request['req
|
|
|
412
412
|
*
|
|
413
413
|
* @path /v1/contacts/{contact_id}
|
|
414
414
|
*
|
|
415
|
-
* @see {@link
|
|
416
|
-
* @see {@link
|
|
417
|
-
* @see {@link
|
|
415
|
+
* @see {@link DELETE_ContactsContactId_Request_Query} - Query parameters type
|
|
416
|
+
* @see {@link DELETE_ContactsContactId_Request_Path} - Path parameters type
|
|
417
|
+
* @see {@link DELETE_ContactsContactId_Request_Body} - Request body type
|
|
418
418
|
*/
|
|
419
|
-
export type
|
|
419
|
+
export type DELETE_ContactsContactId_Request = {
|
|
420
420
|
parameters: {
|
|
421
421
|
path: operations['delete_contact_v1_contacts__contact_id__delete']['parameters']['path'];
|
|
422
422
|
};
|
|
@@ -433,7 +433,7 @@ export type DELETE_ContactsContactId_V1_Request = {
|
|
|
433
433
|
*
|
|
434
434
|
* @path /v1/contacts/{contact_id}
|
|
435
435
|
*/
|
|
436
|
-
export type
|
|
436
|
+
export type DELETE_ContactsContactId_Request_Path = DELETE_ContactsContactId_Request['parameters']['path'];
|
|
437
437
|
|
|
438
438
|
/**
|
|
439
439
|
* Request type for GET ContactsContactId endpoint
|
|
@@ -451,11 +451,11 @@ export type DELETE_ContactsContactId_V1_Request_Parameters_Path = DELETE_Contact
|
|
|
451
451
|
*
|
|
452
452
|
* @path /v1/contacts/{contact_id}
|
|
453
453
|
*
|
|
454
|
-
* @see {@link
|
|
455
|
-
* @see {@link
|
|
456
|
-
* @see {@link
|
|
454
|
+
* @see {@link GET_ContactsContactId_Request_Query} - Query parameters type
|
|
455
|
+
* @see {@link GET_ContactsContactId_Request_Path} - Path parameters type
|
|
456
|
+
* @see {@link GET_ContactsContactId_Request_Body} - Request body type
|
|
457
457
|
*/
|
|
458
|
-
export type
|
|
458
|
+
export type GET_ContactsContactId_Request = {
|
|
459
459
|
parameters: {
|
|
460
460
|
path: operations['get_contact_v1_contacts__contact_id__get']['parameters']['path'];
|
|
461
461
|
};
|
|
@@ -472,7 +472,7 @@ export type GET_ContactsContactId_V1_Request = {
|
|
|
472
472
|
*
|
|
473
473
|
* @path /v1/contacts/{contact_id}
|
|
474
474
|
*/
|
|
475
|
-
export type
|
|
475
|
+
export type GET_ContactsContactId_Request_Path = GET_ContactsContactId_Request['parameters']['path'];
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
478
|
* Request type for DELETE ContactsContactIdVerification endpoint
|
|
@@ -490,11 +490,11 @@ export type GET_ContactsContactId_V1_Request_Parameters_Path = GET_ContactsConta
|
|
|
490
490
|
*
|
|
491
491
|
* @path /v1/contacts/{contact_id}/verification
|
|
492
492
|
*
|
|
493
|
-
* @see {@link
|
|
494
|
-
* @see {@link
|
|
495
|
-
* @see {@link
|
|
493
|
+
* @see {@link DELETE_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
494
|
+
* @see {@link DELETE_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
495
|
+
* @see {@link DELETE_ContactsContactIdVerification_Request_Body} - Request body type
|
|
496
496
|
*/
|
|
497
|
-
export type
|
|
497
|
+
export type DELETE_ContactsContactIdVerification_Request = {
|
|
498
498
|
parameters: {
|
|
499
499
|
path: operations['cancel_verification_v1_contacts__contact_id__verification_delete']['parameters']['path'];
|
|
500
500
|
};
|
|
@@ -511,7 +511,7 @@ export type DELETE_ContactsContactIdVerification_V1_Request = {
|
|
|
511
511
|
*
|
|
512
512
|
* @path /v1/contacts/{contact_id}/verification
|
|
513
513
|
*/
|
|
514
|
-
export type
|
|
514
|
+
export type DELETE_ContactsContactIdVerification_Request_Path = DELETE_ContactsContactIdVerification_Request['parameters']['path'];
|
|
515
515
|
|
|
516
516
|
/**
|
|
517
517
|
* Request type for GET ContactsContactIdVerification endpoint
|
|
@@ -529,11 +529,11 @@ export type DELETE_ContactsContactIdVerification_V1_Request_Parameters_Path = DE
|
|
|
529
529
|
*
|
|
530
530
|
* @path /v1/contacts/{contact_id}/verification
|
|
531
531
|
*
|
|
532
|
-
* @see {@link
|
|
533
|
-
* @see {@link
|
|
534
|
-
* @see {@link
|
|
532
|
+
* @see {@link GET_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
533
|
+
* @see {@link GET_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
534
|
+
* @see {@link GET_ContactsContactIdVerification_Request_Body} - Request body type
|
|
535
535
|
*/
|
|
536
|
-
export type
|
|
536
|
+
export type GET_ContactsContactIdVerification_Request = {
|
|
537
537
|
parameters: {
|
|
538
538
|
path: operations['get_verification_status_v1_contacts__contact_id__verification_get']['parameters']['path'];
|
|
539
539
|
};
|
|
@@ -550,7 +550,7 @@ export type GET_ContactsContactIdVerification_V1_Request = {
|
|
|
550
550
|
*
|
|
551
551
|
* @path /v1/contacts/{contact_id}/verification
|
|
552
552
|
*/
|
|
553
|
-
export type
|
|
553
|
+
export type GET_ContactsContactIdVerification_Request_Path = GET_ContactsContactIdVerification_Request['parameters']['path'];
|
|
554
554
|
|
|
555
555
|
/**
|
|
556
556
|
* Request type for POST ContactsContactIdVerification endpoint
|
|
@@ -568,11 +568,11 @@ export type GET_ContactsContactIdVerification_V1_Request_Parameters_Path = GET_C
|
|
|
568
568
|
*
|
|
569
569
|
* @path /v1/contacts/{contact_id}/verification
|
|
570
570
|
*
|
|
571
|
-
* @see {@link
|
|
572
|
-
* @see {@link
|
|
573
|
-
* @see {@link
|
|
571
|
+
* @see {@link POST_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
572
|
+
* @see {@link POST_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
573
|
+
* @see {@link POST_ContactsContactIdVerification_Request_Body} - Request body type
|
|
574
574
|
*/
|
|
575
|
-
export type
|
|
575
|
+
export type POST_ContactsContactIdVerification_Request = {
|
|
576
576
|
parameters: {
|
|
577
577
|
query: operations['start_contact_verification_v1_contacts__contact_id__verification_post']['parameters']['query'];
|
|
578
578
|
path: operations['start_contact_verification_v1_contacts__contact_id__verification_post']['parameters']['path'];
|
|
@@ -590,7 +590,7 @@ export type POST_ContactsContactIdVerification_V1_Request = {
|
|
|
590
590
|
*
|
|
591
591
|
* @path /v1/contacts/{contact_id}/verification
|
|
592
592
|
*/
|
|
593
|
-
export type
|
|
593
|
+
export type POST_ContactsContactIdVerification_Request_Query = POST_ContactsContactIdVerification_Request['parameters']['query'];
|
|
594
594
|
/**
|
|
595
595
|
* Path parameters for POST /v1/contacts/{contact_id}/verification
|
|
596
596
|
*
|
|
@@ -603,7 +603,7 @@ export type POST_ContactsContactIdVerification_V1_Request_Parameters_Query = POS
|
|
|
603
603
|
*
|
|
604
604
|
* @path /v1/contacts/{contact_id}/verification
|
|
605
605
|
*/
|
|
606
|
-
export type
|
|
606
|
+
export type POST_ContactsContactIdVerification_Request_Path = POST_ContactsContactIdVerification_Request['parameters']['path'];
|
|
607
607
|
|
|
608
608
|
/**
|
|
609
609
|
* Request type for PUT ContactsContactIdVerification endpoint
|
|
@@ -621,11 +621,11 @@ export type POST_ContactsContactIdVerification_V1_Request_Parameters_Path = POST
|
|
|
621
621
|
*
|
|
622
622
|
* @path /v1/contacts/{contact_id}/verification
|
|
623
623
|
*
|
|
624
|
-
* @see {@link
|
|
625
|
-
* @see {@link
|
|
626
|
-
* @see {@link
|
|
624
|
+
* @see {@link PUT_ContactsContactIdVerification_Request_Query} - Query parameters type
|
|
625
|
+
* @see {@link PUT_ContactsContactIdVerification_Request_Path} - Path parameters type
|
|
626
|
+
* @see {@link PUT_ContactsContactIdVerification_Request_Body} - Request body type
|
|
627
627
|
*/
|
|
628
|
-
export type
|
|
628
|
+
export type PUT_ContactsContactIdVerification_Request = {
|
|
629
629
|
parameters: {
|
|
630
630
|
query: operations['update_verification_v1_contacts__contact_id__verification_put']['parameters']['query'];
|
|
631
631
|
path: operations['update_verification_v1_contacts__contact_id__verification_put']['parameters']['path'];
|
|
@@ -643,7 +643,7 @@ export type PUT_ContactsContactIdVerification_V1_Request = {
|
|
|
643
643
|
*
|
|
644
644
|
* @path /v1/contacts/{contact_id}/verification
|
|
645
645
|
*/
|
|
646
|
-
export type
|
|
646
|
+
export type PUT_ContactsContactIdVerification_Request_Query = PUT_ContactsContactIdVerification_Request['parameters']['query'];
|
|
647
647
|
/**
|
|
648
648
|
* Path parameters for PUT /v1/contacts/{contact_id}/verification
|
|
649
649
|
*
|
|
@@ -656,7 +656,7 @@ export type PUT_ContactsContactIdVerification_V1_Request_Parameters_Query = PUT_
|
|
|
656
656
|
*
|
|
657
657
|
* @path /v1/contacts/{contact_id}/verification
|
|
658
658
|
*/
|
|
659
|
-
export type
|
|
659
|
+
export type PUT_ContactsContactIdVerification_Request_Path = PUT_ContactsContactIdVerification_Request['parameters']['path'];
|
|
660
660
|
|
|
661
661
|
/**
|
|
662
662
|
* Request type for GET ContactsVerification endpoint
|
|
@@ -674,11 +674,11 @@ export type PUT_ContactsContactIdVerification_V1_Request_Parameters_Path = PUT_C
|
|
|
674
674
|
*
|
|
675
675
|
* @path /v1/contacts/verification
|
|
676
676
|
*
|
|
677
|
-
* @see {@link
|
|
678
|
-
* @see {@link
|
|
679
|
-
* @see {@link
|
|
677
|
+
* @see {@link GET_ContactsVerification_Request_Query} - Query parameters type
|
|
678
|
+
* @see {@link GET_ContactsVerification_Request_Path} - Path parameters type
|
|
679
|
+
* @see {@link GET_ContactsVerification_Request_Body} - Request body type
|
|
680
680
|
*/
|
|
681
|
-
export type
|
|
681
|
+
export type GET_ContactsVerification_Request = {
|
|
682
682
|
parameters: {
|
|
683
683
|
query: operations['get_verification_by_token_v1_contacts_verification_get']['parameters']['query'];
|
|
684
684
|
};
|
|
@@ -695,7 +695,7 @@ export type GET_ContactsVerification_V1_Request = {
|
|
|
695
695
|
*
|
|
696
696
|
* @path /v1/contacts/verification
|
|
697
697
|
*/
|
|
698
|
-
export type
|
|
698
|
+
export type GET_ContactsVerification_Request_Query = GET_ContactsVerification_Request['parameters']['query'];
|
|
699
699
|
|
|
700
700
|
/**
|
|
701
701
|
* Request type for PUT ContactsVerification endpoint
|
|
@@ -713,11 +713,11 @@ export type GET_ContactsVerification_V1_Request_Parameters_Query = GET_ContactsV
|
|
|
713
713
|
*
|
|
714
714
|
* @path /v1/contacts/verification
|
|
715
715
|
*
|
|
716
|
-
* @see {@link
|
|
717
|
-
* @see {@link
|
|
718
|
-
* @see {@link
|
|
716
|
+
* @see {@link PUT_ContactsVerification_Request_Query} - Query parameters type
|
|
717
|
+
* @see {@link PUT_ContactsVerification_Request_Path} - Path parameters type
|
|
718
|
+
* @see {@link PUT_ContactsVerification_Request_Body} - Request body type
|
|
719
719
|
*/
|
|
720
|
-
export type
|
|
720
|
+
export type PUT_ContactsVerification_Request = {
|
|
721
721
|
parameters: {
|
|
722
722
|
query: operations['update_verification_by_token_v1_contacts_verification_put']['parameters']['query'];
|
|
723
723
|
};
|
|
@@ -734,7 +734,7 @@ export type PUT_ContactsVerification_V1_Request = {
|
|
|
734
734
|
*
|
|
735
735
|
* @path /v1/contacts/verification
|
|
736
736
|
*/
|
|
737
|
-
export type
|
|
737
|
+
export type PUT_ContactsVerification_Request_Query = PUT_ContactsVerification_Request['parameters']['query'];
|
|
738
738
|
|
|
739
739
|
/**
|
|
740
740
|
* Request type for GET ContactsVerify endpoint
|
|
@@ -751,11 +751,11 @@ export type PUT_ContactsVerification_V1_Request_Parameters_Query = PUT_ContactsV
|
|
|
751
751
|
*
|
|
752
752
|
* @path /v1/contacts/verify
|
|
753
753
|
*
|
|
754
|
-
* @see {@link
|
|
755
|
-
* @see {@link
|
|
756
|
-
* @see {@link
|
|
754
|
+
* @see {@link GET_ContactsVerify_Request_Query} - Query parameters type
|
|
755
|
+
* @see {@link GET_ContactsVerify_Request_Path} - Path parameters type
|
|
756
|
+
* @see {@link GET_ContactsVerify_Request_Body} - Request body type
|
|
757
757
|
*/
|
|
758
|
-
export type
|
|
758
|
+
export type GET_ContactsVerify_Request = {
|
|
759
759
|
parameters: {
|
|
760
760
|
query: operations['email_verify_contact_v1_contacts_verify_get']['parameters']['query'];
|
|
761
761
|
};
|
|
@@ -772,7 +772,7 @@ export type GET_ContactsVerify_V1_Request = {
|
|
|
772
772
|
*
|
|
773
773
|
* @path /v1/contacts/verify
|
|
774
774
|
*/
|
|
775
|
-
export type
|
|
775
|
+
export type GET_ContactsVerify_Request_Query = GET_ContactsVerify_Request['parameters']['query'];
|
|
776
776
|
|
|
777
777
|
/**
|
|
778
778
|
* Request type for GET Dns endpoint
|
|
@@ -789,11 +789,11 @@ export type GET_ContactsVerify_V1_Request_Parameters_Query = GET_ContactsVerify_
|
|
|
789
789
|
*
|
|
790
790
|
* @path /v1/dns
|
|
791
791
|
*
|
|
792
|
-
* @see {@link
|
|
793
|
-
* @see {@link
|
|
794
|
-
* @see {@link
|
|
792
|
+
* @see {@link GET_Dns_Request_Query} - Query parameters type
|
|
793
|
+
* @see {@link GET_Dns_Request_Path} - Path parameters type
|
|
794
|
+
* @see {@link GET_Dns_Request_Body} - Request body type
|
|
795
795
|
*/
|
|
796
|
-
export type
|
|
796
|
+
export type GET_Dns_Request = {
|
|
797
797
|
parameters: {
|
|
798
798
|
query: operations['list_zones_v1_dns_get']['parameters']['query'];
|
|
799
799
|
};
|
|
@@ -810,7 +810,7 @@ export type GET_Dns_V1_Request = {
|
|
|
810
810
|
*
|
|
811
811
|
* @path /v1/dns
|
|
812
812
|
*/
|
|
813
|
-
export type
|
|
813
|
+
export type GET_Dns_Request_Query = GET_Dns_Request['parameters']['query'];
|
|
814
814
|
|
|
815
815
|
/**
|
|
816
816
|
* Request type for POST Dns endpoint
|
|
@@ -827,11 +827,11 @@ export type GET_Dns_V1_Request_Parameters_Query = GET_Dns_V1_Request['parameters
|
|
|
827
827
|
*
|
|
828
828
|
* @path /v1/dns
|
|
829
829
|
*
|
|
830
|
-
* @see {@link
|
|
831
|
-
* @see {@link
|
|
832
|
-
* @see {@link
|
|
830
|
+
* @see {@link POST_Dns_Request_Query} - Query parameters type
|
|
831
|
+
* @see {@link POST_Dns_Request_Path} - Path parameters type
|
|
832
|
+
* @see {@link POST_Dns_Request_Body} - Request body type
|
|
833
833
|
*/
|
|
834
|
-
export type
|
|
834
|
+
export type POST_Dns_Request = {
|
|
835
835
|
requestBody: DnsZoneCreate;
|
|
836
836
|
}
|
|
837
837
|
/**
|
|
@@ -846,7 +846,7 @@ export type POST_Dns_V1_Request = {
|
|
|
846
846
|
*
|
|
847
847
|
* @path /v1/dns
|
|
848
848
|
*/
|
|
849
|
-
export type
|
|
849
|
+
export type POST_Dns_Request_Body = POST_Dns_Request['requestBody'];
|
|
850
850
|
|
|
851
851
|
/**
|
|
852
852
|
* Request type for DELETE DnsZoneName endpoint
|
|
@@ -864,11 +864,11 @@ export type POST_Dns_V1_Request_RequestBody = POST_Dns_V1_Request['requestBody']
|
|
|
864
864
|
* @path /v1/dns/{zone_name}
|
|
865
865
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
866
866
|
*
|
|
867
|
-
* @see {@link
|
|
868
|
-
* @see {@link
|
|
869
|
-
* @see {@link
|
|
867
|
+
* @see {@link DELETE_DnsZoneName_Request_Query} - Query parameters type
|
|
868
|
+
* @see {@link DELETE_DnsZoneName_Request_Path} - Path parameters type
|
|
869
|
+
* @see {@link DELETE_DnsZoneName_Request_Body} - Request body type
|
|
870
870
|
*/
|
|
871
|
-
export type
|
|
871
|
+
export type DELETE_DnsZoneName_Request = {
|
|
872
872
|
parameters: {
|
|
873
873
|
path: operations['delete_zone_v1_dns__zone_name__delete']['parameters']['path'];
|
|
874
874
|
};
|
|
@@ -886,7 +886,7 @@ export type DELETE_DnsZoneName_V1_Request = {
|
|
|
886
886
|
* @path /v1/dns/{zone_name}
|
|
887
887
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
888
888
|
*/
|
|
889
|
-
export type
|
|
889
|
+
export type DELETE_DnsZoneName_Request_Path = DELETE_DnsZoneName_Request['parameters']['path'];
|
|
890
890
|
|
|
891
891
|
/**
|
|
892
892
|
* Request type for GET DnsZoneName endpoint
|
|
@@ -904,11 +904,11 @@ export type DELETE_DnsZoneName_V1_Request_Parameters_Path = DELETE_DnsZoneName_V
|
|
|
904
904
|
* @path /v1/dns/{zone_name}
|
|
905
905
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
906
906
|
*
|
|
907
|
-
* @see {@link
|
|
908
|
-
* @see {@link
|
|
909
|
-
* @see {@link
|
|
907
|
+
* @see {@link GET_DnsZoneName_Request_Query} - Query parameters type
|
|
908
|
+
* @see {@link GET_DnsZoneName_Request_Path} - Path parameters type
|
|
909
|
+
* @see {@link GET_DnsZoneName_Request_Body} - Request body type
|
|
910
910
|
*/
|
|
911
|
-
export type
|
|
911
|
+
export type GET_DnsZoneName_Request = {
|
|
912
912
|
parameters: {
|
|
913
913
|
path: operations['get_zone_v1_dns__zone_name__get']['parameters']['path'];
|
|
914
914
|
};
|
|
@@ -926,7 +926,7 @@ export type GET_DnsZoneName_V1_Request = {
|
|
|
926
926
|
* @path /v1/dns/{zone_name}
|
|
927
927
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
928
928
|
*/
|
|
929
|
-
export type
|
|
929
|
+
export type GET_DnsZoneName_Request_Path = GET_DnsZoneName_Request['parameters']['path'];
|
|
930
930
|
|
|
931
931
|
/**
|
|
932
932
|
* Request type for POST DnsZoneNameDnssecDisable endpoint
|
|
@@ -944,11 +944,11 @@ export type GET_DnsZoneName_V1_Request_Parameters_Path = GET_DnsZoneName_V1_Requ
|
|
|
944
944
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
945
945
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
946
946
|
*
|
|
947
|
-
* @see {@link
|
|
948
|
-
* @see {@link
|
|
949
|
-
* @see {@link
|
|
947
|
+
* @see {@link POST_DnsZoneNameDnssecDisable_Request_Query} - Query parameters type
|
|
948
|
+
* @see {@link POST_DnsZoneNameDnssecDisable_Request_Path} - Path parameters type
|
|
949
|
+
* @see {@link POST_DnsZoneNameDnssecDisable_Request_Body} - Request body type
|
|
950
950
|
*/
|
|
951
|
-
export type
|
|
951
|
+
export type POST_DnsZoneNameDnssecDisable_Request = {
|
|
952
952
|
parameters: {
|
|
953
953
|
path: operations['disable_dnssec_v1_dns__zone_name__dnssec_disable_post']['parameters']['path'];
|
|
954
954
|
};
|
|
@@ -966,7 +966,7 @@ export type POST_DnsZoneNameDnssecDisable_V1_Request = {
|
|
|
966
966
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
967
967
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
968
968
|
*/
|
|
969
|
-
export type
|
|
969
|
+
export type POST_DnsZoneNameDnssecDisable_Request_Path = POST_DnsZoneNameDnssecDisable_Request['parameters']['path'];
|
|
970
970
|
|
|
971
971
|
/**
|
|
972
972
|
* Request type for POST DnsZoneNameDnssecEnable endpoint
|
|
@@ -984,11 +984,11 @@ export type POST_DnsZoneNameDnssecDisable_V1_Request_Parameters_Path = POST_DnsZ
|
|
|
984
984
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
985
985
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
986
986
|
*
|
|
987
|
-
* @see {@link
|
|
988
|
-
* @see {@link
|
|
989
|
-
* @see {@link
|
|
987
|
+
* @see {@link POST_DnsZoneNameDnssecEnable_Request_Query} - Query parameters type
|
|
988
|
+
* @see {@link POST_DnsZoneNameDnssecEnable_Request_Path} - Path parameters type
|
|
989
|
+
* @see {@link POST_DnsZoneNameDnssecEnable_Request_Body} - Request body type
|
|
990
990
|
*/
|
|
991
|
-
export type
|
|
991
|
+
export type POST_DnsZoneNameDnssecEnable_Request = {
|
|
992
992
|
parameters: {
|
|
993
993
|
path: operations['enable_dnssec_v1_dns__zone_name__dnssec_enable_post']['parameters']['path'];
|
|
994
994
|
};
|
|
@@ -1006,7 +1006,7 @@ export type POST_DnsZoneNameDnssecEnable_V1_Request = {
|
|
|
1006
1006
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
1007
1007
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1008
1008
|
*/
|
|
1009
|
-
export type
|
|
1009
|
+
export type POST_DnsZoneNameDnssecEnable_Request_Path = POST_DnsZoneNameDnssecEnable_Request['parameters']['path'];
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
1012
|
* Request type for PATCH DnsZoneNameRecords endpoint
|
|
@@ -1024,11 +1024,11 @@ export type POST_DnsZoneNameDnssecEnable_V1_Request_Parameters_Path = POST_DnsZo
|
|
|
1024
1024
|
* @path /v1/dns/{zone_name}/records
|
|
1025
1025
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1026
1026
|
*
|
|
1027
|
-
* @see {@link
|
|
1028
|
-
* @see {@link
|
|
1029
|
-
* @see {@link
|
|
1027
|
+
* @see {@link PATCH_DnsZoneNameRecords_Request_Query} - Query parameters type
|
|
1028
|
+
* @see {@link PATCH_DnsZoneNameRecords_Request_Path} - Path parameters type
|
|
1029
|
+
* @see {@link PATCH_DnsZoneNameRecords_Request_Body} - Request body type
|
|
1030
1030
|
*/
|
|
1031
|
-
export type
|
|
1031
|
+
export type PATCH_DnsZoneNameRecords_Request = {
|
|
1032
1032
|
parameters: {
|
|
1033
1033
|
path: operations['patch_zone_records_v1_dns__zone_name__records_patch']['parameters']['path'];
|
|
1034
1034
|
};
|
|
@@ -1047,7 +1047,7 @@ export type PATCH_DnsZoneNameRecords_V1_Request = {
|
|
|
1047
1047
|
* @path /v1/dns/{zone_name}/records
|
|
1048
1048
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1049
1049
|
*/
|
|
1050
|
-
export type
|
|
1050
|
+
export type PATCH_DnsZoneNameRecords_Request_Path = PATCH_DnsZoneNameRecords_Request['parameters']['path'];
|
|
1051
1051
|
/**
|
|
1052
1052
|
* Request body for PATCH /v1/dns/{zone_name}/records
|
|
1053
1053
|
*
|
|
@@ -1060,7 +1060,7 @@ export type PATCH_DnsZoneNameRecords_V1_Request_Parameters_Path = PATCH_DnsZoneN
|
|
|
1060
1060
|
*
|
|
1061
1061
|
* @path /v1/dns/{zone_name}/records
|
|
1062
1062
|
*/
|
|
1063
|
-
export type
|
|
1063
|
+
export type PATCH_DnsZoneNameRecords_Request_Body = PATCH_DnsZoneNameRecords_Request['requestBody'];
|
|
1064
1064
|
|
|
1065
1065
|
/**
|
|
1066
1066
|
* Request type for PATCH DnsZoneNameRrsets endpoint
|
|
@@ -1078,11 +1078,11 @@ export type PATCH_DnsZoneNameRecords_V1_Request_RequestBody = PATCH_DnsZoneNameR
|
|
|
1078
1078
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1079
1079
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1080
1080
|
*
|
|
1081
|
-
* @see {@link
|
|
1082
|
-
* @see {@link
|
|
1083
|
-
* @see {@link
|
|
1081
|
+
* @see {@link PATCH_DnsZoneNameRrsets_Request_Query} - Query parameters type
|
|
1082
|
+
* @see {@link PATCH_DnsZoneNameRrsets_Request_Path} - Path parameters type
|
|
1083
|
+
* @see {@link PATCH_DnsZoneNameRrsets_Request_Body} - Request body type
|
|
1084
1084
|
*/
|
|
1085
|
-
export type
|
|
1085
|
+
export type PATCH_DnsZoneNameRrsets_Request = {
|
|
1086
1086
|
parameters: {
|
|
1087
1087
|
path: operations['patch_zone_rrsets_v1_dns__zone_name__rrsets_patch']['parameters']['path'];
|
|
1088
1088
|
};
|
|
@@ -1101,7 +1101,7 @@ export type PATCH_DnsZoneNameRrsets_V1_Request = {
|
|
|
1101
1101
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1102
1102
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1103
1103
|
*/
|
|
1104
|
-
export type
|
|
1104
|
+
export type PATCH_DnsZoneNameRrsets_Request_Path = PATCH_DnsZoneNameRrsets_Request['parameters']['path'];
|
|
1105
1105
|
/**
|
|
1106
1106
|
* Request body for PATCH /v1/dns/{zone_name}/rrsets
|
|
1107
1107
|
*
|
|
@@ -1114,7 +1114,7 @@ export type PATCH_DnsZoneNameRrsets_V1_Request_Parameters_Path = PATCH_DnsZoneNa
|
|
|
1114
1114
|
*
|
|
1115
1115
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1116
1116
|
*/
|
|
1117
|
-
export type
|
|
1117
|
+
export type PATCH_DnsZoneNameRrsets_Request_Body = PATCH_DnsZoneNameRrsets_Request['requestBody'];
|
|
1118
1118
|
|
|
1119
1119
|
/**
|
|
1120
1120
|
* Request type for PUT DnsZoneNameRrsets endpoint
|
|
@@ -1132,11 +1132,11 @@ export type PATCH_DnsZoneNameRrsets_V1_Request_RequestBody = PATCH_DnsZoneNameRr
|
|
|
1132
1132
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1133
1133
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1134
1134
|
*
|
|
1135
|
-
* @see {@link
|
|
1136
|
-
* @see {@link
|
|
1137
|
-
* @see {@link
|
|
1135
|
+
* @see {@link PUT_DnsZoneNameRrsets_Request_Query} - Query parameters type
|
|
1136
|
+
* @see {@link PUT_DnsZoneNameRrsets_Request_Path} - Path parameters type
|
|
1137
|
+
* @see {@link PUT_DnsZoneNameRrsets_Request_Body} - Request body type
|
|
1138
1138
|
*/
|
|
1139
|
-
export type
|
|
1139
|
+
export type PUT_DnsZoneNameRrsets_Request = {
|
|
1140
1140
|
parameters: {
|
|
1141
1141
|
path: operations['update_zone_rrsets_v1_dns__zone_name__rrsets_put']['parameters']['path'];
|
|
1142
1142
|
};
|
|
@@ -1155,7 +1155,7 @@ export type PUT_DnsZoneNameRrsets_V1_Request = {
|
|
|
1155
1155
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1156
1156
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1157
1157
|
*/
|
|
1158
|
-
export type
|
|
1158
|
+
export type PUT_DnsZoneNameRrsets_Request_Path = PUT_DnsZoneNameRrsets_Request['parameters']['path'];
|
|
1159
1159
|
/**
|
|
1160
1160
|
* Request body for PUT /v1/dns/{zone_name}/rrsets
|
|
1161
1161
|
*
|
|
@@ -1168,7 +1168,7 @@ export type PUT_DnsZoneNameRrsets_V1_Request_Parameters_Path = PUT_DnsZoneNameRr
|
|
|
1168
1168
|
*
|
|
1169
1169
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1170
1170
|
*/
|
|
1171
|
-
export type
|
|
1171
|
+
export type PUT_DnsZoneNameRrsets_Request_Body = PUT_DnsZoneNameRrsets_Request['requestBody'];
|
|
1172
1172
|
|
|
1173
1173
|
/**
|
|
1174
1174
|
* Request type for GET DomainSearchSuggest endpoint
|
|
@@ -1191,11 +1191,11 @@ Specify one or more TLDs to include in the search.
|
|
|
1191
1191
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
1192
1192
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
1193
1193
|
*
|
|
1194
|
-
* @see {@link
|
|
1195
|
-
* @see {@link
|
|
1196
|
-
* @see {@link
|
|
1194
|
+
* @see {@link GET_DomainSearchSuggest_Request_Query} - Query parameters type
|
|
1195
|
+
* @see {@link GET_DomainSearchSuggest_Request_Path} - Path parameters type
|
|
1196
|
+
* @see {@link GET_DomainSearchSuggest_Request_Body} - Request body type
|
|
1197
1197
|
*/
|
|
1198
|
-
export type
|
|
1198
|
+
export type GET_DomainSearchSuggest_Request = {
|
|
1199
1199
|
parameters: {
|
|
1200
1200
|
query: operations['suggest_v1_domain_search_suggest_get']['parameters']['query'];
|
|
1201
1201
|
};
|
|
@@ -1218,7 +1218,7 @@ Specify one or more TLDs to include in the search.
|
|
|
1218
1218
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
1219
1219
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
1220
1220
|
*/
|
|
1221
|
-
export type
|
|
1221
|
+
export type GET_DomainSearchSuggest_Request_Query = GET_DomainSearchSuggest_Request['parameters']['query'];
|
|
1222
1222
|
|
|
1223
1223
|
/**
|
|
1224
1224
|
* Request type for GET Domains endpoint
|
|
@@ -1236,11 +1236,11 @@ export type GET_DomainSearchSuggest_V1_Request_Parameters_Query = GET_DomainSear
|
|
|
1236
1236
|
*
|
|
1237
1237
|
* @path /v1/domains
|
|
1238
1238
|
*
|
|
1239
|
-
* @see {@link
|
|
1240
|
-
* @see {@link
|
|
1241
|
-
* @see {@link
|
|
1239
|
+
* @see {@link GET_Domains_Request_Query} - Query parameters type
|
|
1240
|
+
* @see {@link GET_Domains_Request_Path} - Path parameters type
|
|
1241
|
+
* @see {@link GET_Domains_Request_Body} - Request body type
|
|
1242
1242
|
*/
|
|
1243
|
-
export type
|
|
1243
|
+
export type GET_Domains_Request = {
|
|
1244
1244
|
parameters: {
|
|
1245
1245
|
query: operations['get_domains_v1_domains_get']['parameters']['query'];
|
|
1246
1246
|
};
|
|
@@ -1257,7 +1257,7 @@ export type GET_Domains_V1_Request = {
|
|
|
1257
1257
|
*
|
|
1258
1258
|
* @path /v1/domains
|
|
1259
1259
|
*/
|
|
1260
|
-
export type
|
|
1260
|
+
export type GET_Domains_Request_Query = GET_Domains_Request['parameters']['query'];
|
|
1261
1261
|
|
|
1262
1262
|
/**
|
|
1263
1263
|
* Request type for POST Domains endpoint
|
|
@@ -1275,11 +1275,11 @@ export type GET_Domains_V1_Request_Parameters_Query = GET_Domains_V1_Request['pa
|
|
|
1275
1275
|
*
|
|
1276
1276
|
* @path /v1/domains
|
|
1277
1277
|
*
|
|
1278
|
-
* @see {@link
|
|
1279
|
-
* @see {@link
|
|
1280
|
-
* @see {@link
|
|
1278
|
+
* @see {@link POST_Domains_Request_Query} - Query parameters type
|
|
1279
|
+
* @see {@link POST_Domains_Request_Path} - Path parameters type
|
|
1280
|
+
* @see {@link POST_Domains_Request_Body} - Request body type
|
|
1281
1281
|
*/
|
|
1282
|
-
export type
|
|
1282
|
+
export type POST_Domains_Request = {
|
|
1283
1283
|
requestBody: DomainCreate;
|
|
1284
1284
|
}
|
|
1285
1285
|
/**
|
|
@@ -1294,7 +1294,7 @@ export type POST_Domains_V1_Request = {
|
|
|
1294
1294
|
*
|
|
1295
1295
|
* @path /v1/domains
|
|
1296
1296
|
*/
|
|
1297
|
-
export type
|
|
1297
|
+
export type POST_Domains_Request_Body = POST_Domains_Request['requestBody'];
|
|
1298
1298
|
|
|
1299
1299
|
/**
|
|
1300
1300
|
* Request type for GET DomainsCheck endpoint
|
|
@@ -1314,11 +1314,11 @@ export type POST_Domains_V1_Request_RequestBody = POST_Domains_V1_Request['reque
|
|
|
1314
1314
|
Specify one or more domains to check for availability.
|
|
1315
1315
|
|
|
1316
1316
|
*
|
|
1317
|
-
* @see {@link
|
|
1318
|
-
* @see {@link
|
|
1319
|
-
* @see {@link
|
|
1317
|
+
* @see {@link GET_DomainsCheck_Request_Query} - Query parameters type
|
|
1318
|
+
* @see {@link GET_DomainsCheck_Request_Path} - Path parameters type
|
|
1319
|
+
* @see {@link GET_DomainsCheck_Request_Body} - Request body type
|
|
1320
1320
|
*/
|
|
1321
|
-
export type
|
|
1321
|
+
export type GET_DomainsCheck_Request = {
|
|
1322
1322
|
parameters: {
|
|
1323
1323
|
query: operations['epp_check_domain_v1_domains_check_get']['parameters']['query'];
|
|
1324
1324
|
};
|
|
@@ -1338,7 +1338,7 @@ export type GET_DomainsCheck_V1_Request = {
|
|
|
1338
1338
|
Specify one or more domains to check for availability.
|
|
1339
1339
|
|
|
1340
1340
|
*/
|
|
1341
|
-
export type
|
|
1341
|
+
export type GET_DomainsCheck_Request_Query = GET_DomainsCheck_Request['parameters']['query'];
|
|
1342
1342
|
|
|
1343
1343
|
/**
|
|
1344
1344
|
* Request type for DELETE DomainsDomainReference endpoint
|
|
@@ -1357,11 +1357,11 @@ and will enter a redemption period during which it may be restored.
|
|
|
1357
1357
|
*
|
|
1358
1358
|
* @path /v1/domains/{domain_reference}
|
|
1359
1359
|
*
|
|
1360
|
-
* @see {@link
|
|
1361
|
-
* @see {@link
|
|
1362
|
-
* @see {@link
|
|
1360
|
+
* @see {@link DELETE_DomainsDomainReference_Request_Query} - Query parameters type
|
|
1361
|
+
* @see {@link DELETE_DomainsDomainReference_Request_Path} - Path parameters type
|
|
1362
|
+
* @see {@link DELETE_DomainsDomainReference_Request_Body} - Request body type
|
|
1363
1363
|
*/
|
|
1364
|
-
export type
|
|
1364
|
+
export type DELETE_DomainsDomainReference_Request = {
|
|
1365
1365
|
parameters: {
|
|
1366
1366
|
path: operations['delete_domain_v1_domains__domain_reference__delete']['parameters']['path'];
|
|
1367
1367
|
};
|
|
@@ -1378,7 +1378,7 @@ export type DELETE_DomainsDomainReference_V1_Request = {
|
|
|
1378
1378
|
*
|
|
1379
1379
|
* @path /v1/domains/{domain_reference}
|
|
1380
1380
|
*/
|
|
1381
|
-
export type
|
|
1381
|
+
export type DELETE_DomainsDomainReference_Request_Path = DELETE_DomainsDomainReference_Request['parameters']['path'];
|
|
1382
1382
|
|
|
1383
1383
|
/**
|
|
1384
1384
|
* Request type for GET DomainsDomainReference endpoint
|
|
@@ -1396,11 +1396,11 @@ export type DELETE_DomainsDomainReference_V1_Request_Parameters_Path = DELETE_Do
|
|
|
1396
1396
|
*
|
|
1397
1397
|
* @path /v1/domains/{domain_reference}
|
|
1398
1398
|
*
|
|
1399
|
-
* @see {@link
|
|
1400
|
-
* @see {@link
|
|
1401
|
-
* @see {@link
|
|
1399
|
+
* @see {@link GET_DomainsDomainReference_Request_Query} - Query parameters type
|
|
1400
|
+
* @see {@link GET_DomainsDomainReference_Request_Path} - Path parameters type
|
|
1401
|
+
* @see {@link GET_DomainsDomainReference_Request_Body} - Request body type
|
|
1402
1402
|
*/
|
|
1403
|
-
export type
|
|
1403
|
+
export type GET_DomainsDomainReference_Request = {
|
|
1404
1404
|
parameters: {
|
|
1405
1405
|
path: operations['get_domain_v1_domains__domain_reference__get']['parameters']['path'];
|
|
1406
1406
|
};
|
|
@@ -1417,7 +1417,7 @@ export type GET_DomainsDomainReference_V1_Request = {
|
|
|
1417
1417
|
*
|
|
1418
1418
|
* @path /v1/domains/{domain_reference}
|
|
1419
1419
|
*/
|
|
1420
|
-
export type
|
|
1420
|
+
export type GET_DomainsDomainReference_Request_Path = GET_DomainsDomainReference_Request['parameters']['path'];
|
|
1421
1421
|
|
|
1422
1422
|
/**
|
|
1423
1423
|
* Request type for PATCH DomainsDomainReference endpoint
|
|
@@ -1437,11 +1437,11 @@ Providing `clientTransferProhibited` as a status will set the `transfer_lock` pr
|
|
|
1437
1437
|
*
|
|
1438
1438
|
* @path /v1/domains/{domain_reference}
|
|
1439
1439
|
*
|
|
1440
|
-
* @see {@link
|
|
1441
|
-
* @see {@link
|
|
1442
|
-
* @see {@link
|
|
1440
|
+
* @see {@link PATCH_DomainsDomainReference_Request_Query} - Query parameters type
|
|
1441
|
+
* @see {@link PATCH_DomainsDomainReference_Request_Path} - Path parameters type
|
|
1442
|
+
* @see {@link PATCH_DomainsDomainReference_Request_Body} - Request body type
|
|
1443
1443
|
*/
|
|
1444
|
-
export type
|
|
1444
|
+
export type PATCH_DomainsDomainReference_Request = {
|
|
1445
1445
|
parameters: {
|
|
1446
1446
|
path: operations['update_domain_v1_domains__domain_reference__patch']['parameters']['path'];
|
|
1447
1447
|
};
|
|
@@ -1459,7 +1459,7 @@ export type PATCH_DomainsDomainReference_V1_Request = {
|
|
|
1459
1459
|
*
|
|
1460
1460
|
* @path /v1/domains/{domain_reference}
|
|
1461
1461
|
*/
|
|
1462
|
-
export type
|
|
1462
|
+
export type PATCH_DomainsDomainReference_Request_Path = PATCH_DomainsDomainReference_Request['parameters']['path'];
|
|
1463
1463
|
/**
|
|
1464
1464
|
* Request body for PATCH /v1/domains/{domain_reference}
|
|
1465
1465
|
*
|
|
@@ -1472,7 +1472,7 @@ export type PATCH_DomainsDomainReference_V1_Request_Parameters_Path = PATCH_Doma
|
|
|
1472
1472
|
*
|
|
1473
1473
|
* @path /v1/domains/{domain_reference}
|
|
1474
1474
|
*/
|
|
1475
|
-
export type
|
|
1475
|
+
export type PATCH_DomainsDomainReference_Request_Body = PATCH_DomainsDomainReference_Request['requestBody'];
|
|
1476
1476
|
|
|
1477
1477
|
/**
|
|
1478
1478
|
* Request type for DELETE DomainsDomainReferenceDnssec endpoint
|
|
@@ -1490,11 +1490,11 @@ export type PATCH_DomainsDomainReference_V1_Request_RequestBody = PATCH_DomainsD
|
|
|
1490
1490
|
*
|
|
1491
1491
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1492
1492
|
*
|
|
1493
|
-
* @see {@link
|
|
1494
|
-
* @see {@link
|
|
1495
|
-
* @see {@link
|
|
1493
|
+
* @see {@link DELETE_DomainsDomainReferenceDnssec_Request_Query} - Query parameters type
|
|
1494
|
+
* @see {@link DELETE_DomainsDomainReferenceDnssec_Request_Path} - Path parameters type
|
|
1495
|
+
* @see {@link DELETE_DomainsDomainReferenceDnssec_Request_Body} - Request body type
|
|
1496
1496
|
*/
|
|
1497
|
-
export type
|
|
1497
|
+
export type DELETE_DomainsDomainReferenceDnssec_Request = {
|
|
1498
1498
|
parameters: {
|
|
1499
1499
|
path: operations['delete_dnssec_v1_domains__domain_reference__dnssec_delete']['parameters']['path'];
|
|
1500
1500
|
};
|
|
@@ -1511,7 +1511,7 @@ export type DELETE_DomainsDomainReferenceDnssec_V1_Request = {
|
|
|
1511
1511
|
*
|
|
1512
1512
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1513
1513
|
*/
|
|
1514
|
-
export type
|
|
1514
|
+
export type DELETE_DomainsDomainReferenceDnssec_Request_Path = DELETE_DomainsDomainReferenceDnssec_Request['parameters']['path'];
|
|
1515
1515
|
|
|
1516
1516
|
/**
|
|
1517
1517
|
* Request type for GET DomainsDomainReferenceDnssec endpoint
|
|
@@ -1529,11 +1529,11 @@ export type DELETE_DomainsDomainReferenceDnssec_V1_Request_Parameters_Path = DEL
|
|
|
1529
1529
|
*
|
|
1530
1530
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1531
1531
|
*
|
|
1532
|
-
* @see {@link
|
|
1533
|
-
* @see {@link
|
|
1534
|
-
* @see {@link
|
|
1532
|
+
* @see {@link GET_DomainsDomainReferenceDnssec_Request_Query} - Query parameters type
|
|
1533
|
+
* @see {@link GET_DomainsDomainReferenceDnssec_Request_Path} - Path parameters type
|
|
1534
|
+
* @see {@link GET_DomainsDomainReferenceDnssec_Request_Body} - Request body type
|
|
1535
1535
|
*/
|
|
1536
|
-
export type
|
|
1536
|
+
export type GET_DomainsDomainReferenceDnssec_Request = {
|
|
1537
1537
|
parameters: {
|
|
1538
1538
|
path: operations['get_dnssec_v1_domains__domain_reference__dnssec_get']['parameters']['path'];
|
|
1539
1539
|
};
|
|
@@ -1550,7 +1550,7 @@ export type GET_DomainsDomainReferenceDnssec_V1_Request = {
|
|
|
1550
1550
|
*
|
|
1551
1551
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1552
1552
|
*/
|
|
1553
|
-
export type
|
|
1553
|
+
export type GET_DomainsDomainReferenceDnssec_Request_Path = GET_DomainsDomainReferenceDnssec_Request['parameters']['path'];
|
|
1554
1554
|
|
|
1555
1555
|
/**
|
|
1556
1556
|
* Request type for PUT DomainsDomainReferenceDnssec endpoint
|
|
@@ -1568,11 +1568,11 @@ export type GET_DomainsDomainReferenceDnssec_V1_Request_Parameters_Path = GET_Do
|
|
|
1568
1568
|
*
|
|
1569
1569
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1570
1570
|
*
|
|
1571
|
-
* @see {@link
|
|
1572
|
-
* @see {@link
|
|
1573
|
-
* @see {@link
|
|
1571
|
+
* @see {@link PUT_DomainsDomainReferenceDnssec_Request_Query} - Query parameters type
|
|
1572
|
+
* @see {@link PUT_DomainsDomainReferenceDnssec_Request_Path} - Path parameters type
|
|
1573
|
+
* @see {@link PUT_DomainsDomainReferenceDnssec_Request_Body} - Request body type
|
|
1574
1574
|
*/
|
|
1575
|
-
export type
|
|
1575
|
+
export type PUT_DomainsDomainReferenceDnssec_Request = {
|
|
1576
1576
|
parameters: {
|
|
1577
1577
|
path: operations['create_or_update_dnssec_v1_domains__domain_reference__dnssec_put']['parameters']['path'];
|
|
1578
1578
|
};
|
|
@@ -1590,7 +1590,7 @@ export type PUT_DomainsDomainReferenceDnssec_V1_Request = {
|
|
|
1590
1590
|
*
|
|
1591
1591
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1592
1592
|
*/
|
|
1593
|
-
export type
|
|
1593
|
+
export type PUT_DomainsDomainReferenceDnssec_Request_Path = PUT_DomainsDomainReferenceDnssec_Request['parameters']['path'];
|
|
1594
1594
|
/**
|
|
1595
1595
|
* Request body for PUT /v1/domains/{domain_reference}/dnssec
|
|
1596
1596
|
*
|
|
@@ -1603,7 +1603,7 @@ export type PUT_DomainsDomainReferenceDnssec_V1_Request_Parameters_Path = PUT_Do
|
|
|
1603
1603
|
*
|
|
1604
1604
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
1605
1605
|
*/
|
|
1606
|
-
export type
|
|
1606
|
+
export type PUT_DomainsDomainReferenceDnssec_Request_Body = PUT_DomainsDomainReferenceDnssec_Request['requestBody'];
|
|
1607
1607
|
|
|
1608
1608
|
/**
|
|
1609
1609
|
* Request type for POST DomainsDomainReferenceRenew endpoint
|
|
@@ -1622,11 +1622,11 @@ to the current expiration date of the domain.
|
|
|
1622
1622
|
*
|
|
1623
1623
|
* @path /v1/domains/{domain_reference}/renew
|
|
1624
1624
|
*
|
|
1625
|
-
* @see {@link
|
|
1626
|
-
* @see {@link
|
|
1627
|
-
* @see {@link
|
|
1625
|
+
* @see {@link POST_DomainsDomainReferenceRenew_Request_Query} - Query parameters type
|
|
1626
|
+
* @see {@link POST_DomainsDomainReferenceRenew_Request_Path} - Path parameters type
|
|
1627
|
+
* @see {@link POST_DomainsDomainReferenceRenew_Request_Body} - Request body type
|
|
1628
1628
|
*/
|
|
1629
|
-
export type
|
|
1629
|
+
export type POST_DomainsDomainReferenceRenew_Request = {
|
|
1630
1630
|
parameters: {
|
|
1631
1631
|
path: operations['renew_domain_v1_domains__domain_reference__renew_post']['parameters']['path'];
|
|
1632
1632
|
};
|
|
@@ -1644,7 +1644,7 @@ export type POST_DomainsDomainReferenceRenew_V1_Request = {
|
|
|
1644
1644
|
*
|
|
1645
1645
|
* @path /v1/domains/{domain_reference}/renew
|
|
1646
1646
|
*/
|
|
1647
|
-
export type
|
|
1647
|
+
export type POST_DomainsDomainReferenceRenew_Request_Path = POST_DomainsDomainReferenceRenew_Request['parameters']['path'];
|
|
1648
1648
|
/**
|
|
1649
1649
|
* Request body for POST /v1/domains/{domain_reference}/renew
|
|
1650
1650
|
*
|
|
@@ -1657,7 +1657,7 @@ export type POST_DomainsDomainReferenceRenew_V1_Request_Parameters_Path = POST_D
|
|
|
1657
1657
|
*
|
|
1658
1658
|
* @path /v1/domains/{domain_reference}/renew
|
|
1659
1659
|
*/
|
|
1660
|
-
export type
|
|
1660
|
+
export type POST_DomainsDomainReferenceRenew_Request_Body = POST_DomainsDomainReferenceRenew_Request['requestBody'];
|
|
1661
1661
|
|
|
1662
1662
|
/**
|
|
1663
1663
|
* Request type for DELETE DomainsDomainReferenceTransfer endpoint
|
|
@@ -1675,11 +1675,11 @@ export type POST_DomainsDomainReferenceRenew_V1_Request_RequestBody = POST_Domai
|
|
|
1675
1675
|
*
|
|
1676
1676
|
* @path /v1/domains/{domain_reference}/transfer
|
|
1677
1677
|
*
|
|
1678
|
-
* @see {@link
|
|
1679
|
-
* @see {@link
|
|
1680
|
-
* @see {@link
|
|
1678
|
+
* @see {@link DELETE_DomainsDomainReferenceTransfer_Request_Query} - Query parameters type
|
|
1679
|
+
* @see {@link DELETE_DomainsDomainReferenceTransfer_Request_Path} - Path parameters type
|
|
1680
|
+
* @see {@link DELETE_DomainsDomainReferenceTransfer_Request_Body} - Request body type
|
|
1681
1681
|
*/
|
|
1682
|
-
export type
|
|
1682
|
+
export type DELETE_DomainsDomainReferenceTransfer_Request = {
|
|
1683
1683
|
parameters: {
|
|
1684
1684
|
path: operations['cancel_domain_transfer_v1_domains__domain_reference__transfer_delete']['parameters']['path'];
|
|
1685
1685
|
};
|
|
@@ -1696,7 +1696,7 @@ export type DELETE_DomainsDomainReferenceTransfer_V1_Request = {
|
|
|
1696
1696
|
*
|
|
1697
1697
|
* @path /v1/domains/{domain_reference}/transfer
|
|
1698
1698
|
*/
|
|
1699
|
-
export type
|
|
1699
|
+
export type DELETE_DomainsDomainReferenceTransfer_Request_Path = DELETE_DomainsDomainReferenceTransfer_Request['parameters']['path'];
|
|
1700
1700
|
|
|
1701
1701
|
/**
|
|
1702
1702
|
* Request type for GET DomainsSummary endpoint
|
|
@@ -1714,11 +1714,11 @@ export type DELETE_DomainsDomainReferenceTransfer_V1_Request_Parameters_Path = D
|
|
|
1714
1714
|
*
|
|
1715
1715
|
* @path /v1/domains/summary
|
|
1716
1716
|
*
|
|
1717
|
-
* @see {@link
|
|
1718
|
-
* @see {@link
|
|
1719
|
-
* @see {@link
|
|
1717
|
+
* @see {@link GET_DomainsSummary_Request_Query} - Query parameters type
|
|
1718
|
+
* @see {@link GET_DomainsSummary_Request_Path} - Path parameters type
|
|
1719
|
+
* @see {@link GET_DomainsSummary_Request_Body} - Request body type
|
|
1720
1720
|
*/
|
|
1721
|
-
export type
|
|
1721
|
+
export type GET_DomainsSummary_Request = {
|
|
1722
1722
|
}
|
|
1723
1723
|
|
|
1724
1724
|
/**
|
|
@@ -1739,11 +1739,11 @@ This process can take up to 5 days, until the transfer is approved
|
|
|
1739
1739
|
*
|
|
1740
1740
|
* @path /v1/domains/transfer
|
|
1741
1741
|
*
|
|
1742
|
-
* @see {@link
|
|
1743
|
-
* @see {@link
|
|
1744
|
-
* @see {@link
|
|
1742
|
+
* @see {@link POST_DomainsTransfer_Request_Query} - Query parameters type
|
|
1743
|
+
* @see {@link POST_DomainsTransfer_Request_Path} - Path parameters type
|
|
1744
|
+
* @see {@link POST_DomainsTransfer_Request_Body} - Request body type
|
|
1745
1745
|
*/
|
|
1746
|
-
export type
|
|
1746
|
+
export type POST_DomainsTransfer_Request = {
|
|
1747
1747
|
requestBody: DomainTransferIn;
|
|
1748
1748
|
}
|
|
1749
1749
|
/**
|
|
@@ -1758,7 +1758,7 @@ export type POST_DomainsTransfer_V1_Request = {
|
|
|
1758
1758
|
*
|
|
1759
1759
|
* @path /v1/domains/transfer
|
|
1760
1760
|
*/
|
|
1761
|
-
export type
|
|
1761
|
+
export type POST_DomainsTransfer_Request_Body = POST_DomainsTransfer_Request['requestBody'];
|
|
1762
1762
|
|
|
1763
1763
|
/**
|
|
1764
1764
|
* Request type for GET EmailForwards endpoint
|
|
@@ -1778,11 +1778,11 @@ export type POST_DomainsTransfer_V1_Request_RequestBody = POST_DomainsTransfer_V
|
|
|
1778
1778
|
* @param source_address (query) - Optional source address to filter the results
|
|
1779
1779
|
* @param target_address (query) - Optional target address to filter the results
|
|
1780
1780
|
*
|
|
1781
|
-
* @see {@link
|
|
1782
|
-
* @see {@link
|
|
1783
|
-
* @see {@link
|
|
1781
|
+
* @see {@link GET_EmailForwards_Request_Query} - Query parameters type
|
|
1782
|
+
* @see {@link GET_EmailForwards_Request_Path} - Path parameters type
|
|
1783
|
+
* @see {@link GET_EmailForwards_Request_Body} - Request body type
|
|
1784
1784
|
*/
|
|
1785
|
-
export type
|
|
1785
|
+
export type GET_EmailForwards_Request = {
|
|
1786
1786
|
parameters: {
|
|
1787
1787
|
query: operations['list_email_forwards_v1_email_forwards_get']['parameters']['query'];
|
|
1788
1788
|
};
|
|
@@ -1802,7 +1802,7 @@ export type GET_EmailForwards_V1_Request = {
|
|
|
1802
1802
|
* @param source_address (query) - Optional source address to filter the results
|
|
1803
1803
|
* @param target_address (query) - Optional target address to filter the results
|
|
1804
1804
|
*/
|
|
1805
|
-
export type
|
|
1805
|
+
export type GET_EmailForwards_Request_Query = GET_EmailForwards_Request['parameters']['query'];
|
|
1806
1806
|
|
|
1807
1807
|
/**
|
|
1808
1808
|
* Request type for POST EmailForwards endpoint
|
|
@@ -1819,11 +1819,11 @@ export type GET_EmailForwards_V1_Request_Parameters_Query = GET_EmailForwards_V1
|
|
|
1819
1819
|
*
|
|
1820
1820
|
* @path /v1/email-forwards
|
|
1821
1821
|
*
|
|
1822
|
-
* @see {@link
|
|
1823
|
-
* @see {@link
|
|
1824
|
-
* @see {@link
|
|
1822
|
+
* @see {@link POST_EmailForwards_Request_Query} - Query parameters type
|
|
1823
|
+
* @see {@link POST_EmailForwards_Request_Path} - Path parameters type
|
|
1824
|
+
* @see {@link POST_EmailForwards_Request_Body} - Request body type
|
|
1825
1825
|
*/
|
|
1826
|
-
export type
|
|
1826
|
+
export type POST_EmailForwards_Request = {
|
|
1827
1827
|
requestBody: EmailForwardCreate;
|
|
1828
1828
|
}
|
|
1829
1829
|
/**
|
|
@@ -1838,7 +1838,7 @@ export type POST_EmailForwards_V1_Request = {
|
|
|
1838
1838
|
*
|
|
1839
1839
|
* @path /v1/email-forwards
|
|
1840
1840
|
*/
|
|
1841
|
-
export type
|
|
1841
|
+
export type POST_EmailForwards_Request_Body = POST_EmailForwards_Request['requestBody'];
|
|
1842
1842
|
|
|
1843
1843
|
/**
|
|
1844
1844
|
* Request type for POST EmailForwardsBulkDelete endpoint
|
|
@@ -1855,11 +1855,11 @@ export type POST_EmailForwards_V1_Request_RequestBody = POST_EmailForwards_V1_Re
|
|
|
1855
1855
|
*
|
|
1856
1856
|
* @path /v1/email-forwards/bulk-delete
|
|
1857
1857
|
*
|
|
1858
|
-
* @see {@link
|
|
1859
|
-
* @see {@link
|
|
1860
|
-
* @see {@link
|
|
1858
|
+
* @see {@link POST_EmailForwardsBulkDelete_Request_Query} - Query parameters type
|
|
1859
|
+
* @see {@link POST_EmailForwardsBulkDelete_Request_Path} - Path parameters type
|
|
1860
|
+
* @see {@link POST_EmailForwardsBulkDelete_Request_Body} - Request body type
|
|
1861
1861
|
*/
|
|
1862
|
-
export type
|
|
1862
|
+
export type POST_EmailForwardsBulkDelete_Request = {
|
|
1863
1863
|
requestBody: EmailForwardBulkDelete;
|
|
1864
1864
|
}
|
|
1865
1865
|
/**
|
|
@@ -1874,7 +1874,7 @@ export type POST_EmailForwardsBulkDelete_V1_Request = {
|
|
|
1874
1874
|
*
|
|
1875
1875
|
* @path /v1/email-forwards/bulk-delete
|
|
1876
1876
|
*/
|
|
1877
|
-
export type
|
|
1877
|
+
export type POST_EmailForwardsBulkDelete_Request_Body = POST_EmailForwardsBulkDelete_Request['requestBody'];
|
|
1878
1878
|
|
|
1879
1879
|
/**
|
|
1880
1880
|
* Request type for PATCH EmailForwardsBulkUpdate endpoint
|
|
@@ -1891,11 +1891,11 @@ export type POST_EmailForwardsBulkDelete_V1_Request_RequestBody = POST_EmailForw
|
|
|
1891
1891
|
*
|
|
1892
1892
|
* @path /v1/email-forwards/bulk-update
|
|
1893
1893
|
*
|
|
1894
|
-
* @see {@link
|
|
1895
|
-
* @see {@link
|
|
1896
|
-
* @see {@link
|
|
1894
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Request_Query} - Query parameters type
|
|
1895
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Request_Path} - Path parameters type
|
|
1896
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Request_Body} - Request body type
|
|
1897
1897
|
*/
|
|
1898
|
-
export type
|
|
1898
|
+
export type PATCH_EmailForwardsBulkUpdate_Request = {
|
|
1899
1899
|
requestBody: EmailForwardBulkUpdate;
|
|
1900
1900
|
}
|
|
1901
1901
|
/**
|
|
@@ -1910,7 +1910,7 @@ export type PATCH_EmailForwardsBulkUpdate_V1_Request = {
|
|
|
1910
1910
|
*
|
|
1911
1911
|
* @path /v1/email-forwards/bulk-update
|
|
1912
1912
|
*/
|
|
1913
|
-
export type
|
|
1913
|
+
export type PATCH_EmailForwardsBulkUpdate_Request_Body = PATCH_EmailForwardsBulkUpdate_Request['requestBody'];
|
|
1914
1914
|
|
|
1915
1915
|
/**
|
|
1916
1916
|
* Request type for DELETE EmailForwardsEmailForwardId endpoint
|
|
@@ -1927,11 +1927,11 @@ export type PATCH_EmailForwardsBulkUpdate_V1_Request_RequestBody = PATCH_EmailFo
|
|
|
1927
1927
|
*
|
|
1928
1928
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1929
1929
|
*
|
|
1930
|
-
* @see {@link
|
|
1931
|
-
* @see {@link
|
|
1932
|
-
* @see {@link
|
|
1930
|
+
* @see {@link DELETE_EmailForwardsEmailForwardId_Request_Query} - Query parameters type
|
|
1931
|
+
* @see {@link DELETE_EmailForwardsEmailForwardId_Request_Path} - Path parameters type
|
|
1932
|
+
* @see {@link DELETE_EmailForwardsEmailForwardId_Request_Body} - Request body type
|
|
1933
1933
|
*/
|
|
1934
|
-
export type
|
|
1934
|
+
export type DELETE_EmailForwardsEmailForwardId_Request = {
|
|
1935
1935
|
parameters: {
|
|
1936
1936
|
path: operations['delete_email_forward_v1_email_forwards__email_forward_id__delete']['parameters']['path'];
|
|
1937
1937
|
};
|
|
@@ -1948,7 +1948,7 @@ export type DELETE_EmailForwardsEmailForwardId_V1_Request = {
|
|
|
1948
1948
|
*
|
|
1949
1949
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1950
1950
|
*/
|
|
1951
|
-
export type
|
|
1951
|
+
export type DELETE_EmailForwardsEmailForwardId_Request_Path = DELETE_EmailForwardsEmailForwardId_Request['parameters']['path'];
|
|
1952
1952
|
|
|
1953
1953
|
/**
|
|
1954
1954
|
* Request type for GET EmailForwardsEmailForwardId endpoint
|
|
@@ -1965,11 +1965,11 @@ export type DELETE_EmailForwardsEmailForwardId_V1_Request_Parameters_Path = DELE
|
|
|
1965
1965
|
*
|
|
1966
1966
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1967
1967
|
*
|
|
1968
|
-
* @see {@link
|
|
1969
|
-
* @see {@link
|
|
1970
|
-
* @see {@link
|
|
1968
|
+
* @see {@link GET_EmailForwardsEmailForwardId_Request_Query} - Query parameters type
|
|
1969
|
+
* @see {@link GET_EmailForwardsEmailForwardId_Request_Path} - Path parameters type
|
|
1970
|
+
* @see {@link GET_EmailForwardsEmailForwardId_Request_Body} - Request body type
|
|
1971
1971
|
*/
|
|
1972
|
-
export type
|
|
1972
|
+
export type GET_EmailForwardsEmailForwardId_Request = {
|
|
1973
1973
|
parameters: {
|
|
1974
1974
|
path: operations['get_email_forward_v1_email_forwards__email_forward_id__get']['parameters']['path'];
|
|
1975
1975
|
};
|
|
@@ -1986,7 +1986,7 @@ export type GET_EmailForwardsEmailForwardId_V1_Request = {
|
|
|
1986
1986
|
*
|
|
1987
1987
|
* @path /v1/email-forwards/{email_forward_id}
|
|
1988
1988
|
*/
|
|
1989
|
-
export type
|
|
1989
|
+
export type GET_EmailForwardsEmailForwardId_Request_Path = GET_EmailForwardsEmailForwardId_Request['parameters']['path'];
|
|
1990
1990
|
|
|
1991
1991
|
/**
|
|
1992
1992
|
* Request type for PATCH EmailForwardsEmailForwardId endpoint
|
|
@@ -2003,11 +2003,11 @@ export type GET_EmailForwardsEmailForwardId_V1_Request_Parameters_Path = GET_Ema
|
|
|
2003
2003
|
*
|
|
2004
2004
|
* @path /v1/email-forwards/{email_forward_id}
|
|
2005
2005
|
*
|
|
2006
|
-
* @see {@link
|
|
2007
|
-
* @see {@link
|
|
2008
|
-
* @see {@link
|
|
2006
|
+
* @see {@link PATCH_EmailForwardsEmailForwardId_Request_Query} - Query parameters type
|
|
2007
|
+
* @see {@link PATCH_EmailForwardsEmailForwardId_Request_Path} - Path parameters type
|
|
2008
|
+
* @see {@link PATCH_EmailForwardsEmailForwardId_Request_Body} - Request body type
|
|
2009
2009
|
*/
|
|
2010
|
-
export type
|
|
2010
|
+
export type PATCH_EmailForwardsEmailForwardId_Request = {
|
|
2011
2011
|
parameters: {
|
|
2012
2012
|
path: operations['update_email_forward_v1_email_forwards__email_forward_id__patch']['parameters']['path'];
|
|
2013
2013
|
};
|
|
@@ -2025,7 +2025,7 @@ export type PATCH_EmailForwardsEmailForwardId_V1_Request = {
|
|
|
2025
2025
|
*
|
|
2026
2026
|
* @path /v1/email-forwards/{email_forward_id}
|
|
2027
2027
|
*/
|
|
2028
|
-
export type
|
|
2028
|
+
export type PATCH_EmailForwardsEmailForwardId_Request_Path = PATCH_EmailForwardsEmailForwardId_Request['parameters']['path'];
|
|
2029
2029
|
/**
|
|
2030
2030
|
* Request body for PATCH /v1/email-forwards/{email_forward_id}
|
|
2031
2031
|
*
|
|
@@ -2038,7 +2038,7 @@ export type PATCH_EmailForwardsEmailForwardId_V1_Request_Parameters_Path = PATCH
|
|
|
2038
2038
|
*
|
|
2039
2039
|
* @path /v1/email-forwards/{email_forward_id}
|
|
2040
2040
|
*/
|
|
2041
|
-
export type
|
|
2041
|
+
export type PATCH_EmailForwardsEmailForwardId_Request_Body = PATCH_EmailForwardsEmailForwardId_Request['requestBody'];
|
|
2042
2042
|
|
|
2043
2043
|
/**
|
|
2044
2044
|
* Request type for GET Event endpoint
|
|
@@ -2055,11 +2055,11 @@ export type PATCH_EmailForwardsEmailForwardId_V1_Request_RequestBody = PATCH_Ema
|
|
|
2055
2055
|
*
|
|
2056
2056
|
* @path /v1/event
|
|
2057
2057
|
*
|
|
2058
|
-
* @see {@link
|
|
2059
|
-
* @see {@link
|
|
2060
|
-
* @see {@link
|
|
2058
|
+
* @see {@link GET_Event_Request_Query} - Query parameters type
|
|
2059
|
+
* @see {@link GET_Event_Request_Path} - Path parameters type
|
|
2060
|
+
* @see {@link GET_Event_Request_Body} - Request body type
|
|
2061
2061
|
*/
|
|
2062
|
-
export type
|
|
2062
|
+
export type GET_Event_Request = {
|
|
2063
2063
|
parameters: {
|
|
2064
2064
|
query: operations['get_events_v1_event_get']['parameters']['query'];
|
|
2065
2065
|
};
|
|
@@ -2076,7 +2076,7 @@ export type GET_Event_V1_Request = {
|
|
|
2076
2076
|
*
|
|
2077
2077
|
* @path /v1/event
|
|
2078
2078
|
*/
|
|
2079
|
-
export type
|
|
2079
|
+
export type GET_Event_Request_Query = GET_Event_Request['parameters']['query'];
|
|
2080
2080
|
|
|
2081
2081
|
/**
|
|
2082
2082
|
* Request type for GET EventEventId endpoint
|
|
@@ -2093,11 +2093,11 @@ export type GET_Event_V1_Request_Parameters_Query = GET_Event_V1_Request['parame
|
|
|
2093
2093
|
*
|
|
2094
2094
|
* @path /v1/event/{event_id}
|
|
2095
2095
|
*
|
|
2096
|
-
* @see {@link
|
|
2097
|
-
* @see {@link
|
|
2098
|
-
* @see {@link
|
|
2096
|
+
* @see {@link GET_EventEventId_Request_Query} - Query parameters type
|
|
2097
|
+
* @see {@link GET_EventEventId_Request_Path} - Path parameters type
|
|
2098
|
+
* @see {@link GET_EventEventId_Request_Body} - Request body type
|
|
2099
2099
|
*/
|
|
2100
|
-
export type
|
|
2100
|
+
export type GET_EventEventId_Request = {
|
|
2101
2101
|
parameters: {
|
|
2102
2102
|
path: operations['get_event_v1_event__event_id__get']['parameters']['path'];
|
|
2103
2103
|
};
|
|
@@ -2114,7 +2114,7 @@ export type GET_EventEventId_V1_Request = {
|
|
|
2114
2114
|
*
|
|
2115
2115
|
* @path /v1/event/{event_id}
|
|
2116
2116
|
*/
|
|
2117
|
-
export type
|
|
2117
|
+
export type GET_EventEventId_Request_Path = GET_EventEventId_Request['parameters']['path'];
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
2120
|
* Request type for PATCH EventEventId endpoint
|
|
@@ -2131,11 +2131,11 @@ export type GET_EventEventId_V1_Request_Parameters_Path = GET_EventEventId_V1_Re
|
|
|
2131
2131
|
*
|
|
2132
2132
|
* @path /v1/event/{event_id}
|
|
2133
2133
|
*
|
|
2134
|
-
* @see {@link
|
|
2135
|
-
* @see {@link
|
|
2136
|
-
* @see {@link
|
|
2134
|
+
* @see {@link PATCH_EventEventId_Request_Query} - Query parameters type
|
|
2135
|
+
* @see {@link PATCH_EventEventId_Request_Path} - Path parameters type
|
|
2136
|
+
* @see {@link PATCH_EventEventId_Request_Body} - Request body type
|
|
2137
2137
|
*/
|
|
2138
|
-
export type
|
|
2138
|
+
export type PATCH_EventEventId_Request = {
|
|
2139
2139
|
parameters: {
|
|
2140
2140
|
path: operations['acknowledge_event_v1_event__event_id__patch']['parameters']['path'];
|
|
2141
2141
|
};
|
|
@@ -2152,7 +2152,7 @@ export type PATCH_EventEventId_V1_Request = {
|
|
|
2152
2152
|
*
|
|
2153
2153
|
* @path /v1/event/{event_id}
|
|
2154
2154
|
*/
|
|
2155
|
-
export type
|
|
2155
|
+
export type PATCH_EventEventId_Request_Path = PATCH_EventEventId_Request['parameters']['path'];
|
|
2156
2156
|
|
|
2157
2157
|
/**
|
|
2158
2158
|
* Request type for GET Notifications endpoint
|
|
@@ -2169,11 +2169,11 @@ export type PATCH_EventEventId_V1_Request_Parameters_Path = PATCH_EventEventId_V
|
|
|
2169
2169
|
*
|
|
2170
2170
|
* @path /v1/notifications
|
|
2171
2171
|
*
|
|
2172
|
-
* @see {@link
|
|
2173
|
-
* @see {@link
|
|
2174
|
-
* @see {@link
|
|
2172
|
+
* @see {@link GET_Notifications_Request_Query} - Query parameters type
|
|
2173
|
+
* @see {@link GET_Notifications_Request_Path} - Path parameters type
|
|
2174
|
+
* @see {@link GET_Notifications_Request_Body} - Request body type
|
|
2175
2175
|
*/
|
|
2176
|
-
export type
|
|
2176
|
+
export type GET_Notifications_Request = {
|
|
2177
2177
|
parameters: {
|
|
2178
2178
|
query: operations['list_notifications_v1_notifications_get']['parameters']['query'];
|
|
2179
2179
|
};
|
|
@@ -2190,7 +2190,7 @@ export type GET_Notifications_V1_Request = {
|
|
|
2190
2190
|
*
|
|
2191
2191
|
* @path /v1/notifications
|
|
2192
2192
|
*/
|
|
2193
|
-
export type
|
|
2193
|
+
export type GET_Notifications_Request_Query = GET_Notifications_Request['parameters']['query'];
|
|
2194
2194
|
|
|
2195
2195
|
/**
|
|
2196
2196
|
* Request type for POST Notifications endpoint
|
|
@@ -2207,11 +2207,11 @@ export type GET_Notifications_V1_Request_Parameters_Query = GET_Notifications_V1
|
|
|
2207
2207
|
*
|
|
2208
2208
|
* @path /v1/notifications
|
|
2209
2209
|
*
|
|
2210
|
-
* @see {@link
|
|
2211
|
-
* @see {@link
|
|
2212
|
-
* @see {@link
|
|
2210
|
+
* @see {@link POST_Notifications_Request_Query} - Query parameters type
|
|
2211
|
+
* @see {@link POST_Notifications_Request_Path} - Path parameters type
|
|
2212
|
+
* @see {@link POST_Notifications_Request_Body} - Request body type
|
|
2213
2213
|
*/
|
|
2214
|
-
export type
|
|
2214
|
+
export type POST_Notifications_Request = {
|
|
2215
2215
|
requestBody: NotificationCreate;
|
|
2216
2216
|
}
|
|
2217
2217
|
/**
|
|
@@ -2226,7 +2226,7 @@ export type POST_Notifications_V1_Request = {
|
|
|
2226
2226
|
*
|
|
2227
2227
|
* @path /v1/notifications
|
|
2228
2228
|
*/
|
|
2229
|
-
export type
|
|
2229
|
+
export type POST_Notifications_Request_Body = POST_Notifications_Request['requestBody'];
|
|
2230
2230
|
|
|
2231
2231
|
/**
|
|
2232
2232
|
* Request type for DELETE NotificationsNotificationId endpoint
|
|
@@ -2243,11 +2243,11 @@ export type POST_Notifications_V1_Request_RequestBody = POST_Notifications_V1_Re
|
|
|
2243
2243
|
*
|
|
2244
2244
|
* @path /v1/notifications/{notification_id}
|
|
2245
2245
|
*
|
|
2246
|
-
* @see {@link
|
|
2247
|
-
* @see {@link
|
|
2248
|
-
* @see {@link
|
|
2246
|
+
* @see {@link DELETE_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2247
|
+
* @see {@link DELETE_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2248
|
+
* @see {@link DELETE_NotificationsNotificationId_Request_Body} - Request body type
|
|
2249
2249
|
*/
|
|
2250
|
-
export type
|
|
2250
|
+
export type DELETE_NotificationsNotificationId_Request = {
|
|
2251
2251
|
parameters: {
|
|
2252
2252
|
path: operations['delete_notification_v1_notifications__notification_id__delete']['parameters']['path'];
|
|
2253
2253
|
};
|
|
@@ -2264,7 +2264,7 @@ export type DELETE_NotificationsNotificationId_V1_Request = {
|
|
|
2264
2264
|
*
|
|
2265
2265
|
* @path /v1/notifications/{notification_id}
|
|
2266
2266
|
*/
|
|
2267
|
-
export type
|
|
2267
|
+
export type DELETE_NotificationsNotificationId_Request_Path = DELETE_NotificationsNotificationId_Request['parameters']['path'];
|
|
2268
2268
|
|
|
2269
2269
|
/**
|
|
2270
2270
|
* Request type for GET NotificationsNotificationId endpoint
|
|
@@ -2281,11 +2281,11 @@ export type DELETE_NotificationsNotificationId_V1_Request_Parameters_Path = DELE
|
|
|
2281
2281
|
*
|
|
2282
2282
|
* @path /v1/notifications/{notification_id}
|
|
2283
2283
|
*
|
|
2284
|
-
* @see {@link
|
|
2285
|
-
* @see {@link
|
|
2286
|
-
* @see {@link
|
|
2284
|
+
* @see {@link GET_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2285
|
+
* @see {@link GET_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2286
|
+
* @see {@link GET_NotificationsNotificationId_Request_Body} - Request body type
|
|
2287
2287
|
*/
|
|
2288
|
-
export type
|
|
2288
|
+
export type GET_NotificationsNotificationId_Request = {
|
|
2289
2289
|
parameters: {
|
|
2290
2290
|
query: operations['get_notification_v1_notifications__notification_id__get']['parameters']['query'];
|
|
2291
2291
|
path: operations['get_notification_v1_notifications__notification_id__get']['parameters']['path'];
|
|
@@ -2303,7 +2303,7 @@ export type GET_NotificationsNotificationId_V1_Request = {
|
|
|
2303
2303
|
*
|
|
2304
2304
|
* @path /v1/notifications/{notification_id}
|
|
2305
2305
|
*/
|
|
2306
|
-
export type
|
|
2306
|
+
export type GET_NotificationsNotificationId_Request_Query = GET_NotificationsNotificationId_Request['parameters']['query'];
|
|
2307
2307
|
/**
|
|
2308
2308
|
* Path parameters for GET /v1/notifications/{notification_id}
|
|
2309
2309
|
*
|
|
@@ -2316,7 +2316,7 @@ export type GET_NotificationsNotificationId_V1_Request_Parameters_Query = GET_No
|
|
|
2316
2316
|
*
|
|
2317
2317
|
* @path /v1/notifications/{notification_id}
|
|
2318
2318
|
*/
|
|
2319
|
-
export type
|
|
2319
|
+
export type GET_NotificationsNotificationId_Request_Path = GET_NotificationsNotificationId_Request['parameters']['path'];
|
|
2320
2320
|
|
|
2321
2321
|
/**
|
|
2322
2322
|
* Request type for PUT NotificationsNotificationId endpoint
|
|
@@ -2333,11 +2333,11 @@ export type GET_NotificationsNotificationId_V1_Request_Parameters_Path = GET_Not
|
|
|
2333
2333
|
*
|
|
2334
2334
|
* @path /v1/notifications/{notification_id}
|
|
2335
2335
|
*
|
|
2336
|
-
* @see {@link
|
|
2337
|
-
* @see {@link
|
|
2338
|
-
* @see {@link
|
|
2336
|
+
* @see {@link PUT_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2337
|
+
* @see {@link PUT_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2338
|
+
* @see {@link PUT_NotificationsNotificationId_Request_Body} - Request body type
|
|
2339
2339
|
*/
|
|
2340
|
-
export type
|
|
2340
|
+
export type PUT_NotificationsNotificationId_Request = {
|
|
2341
2341
|
parameters: {
|
|
2342
2342
|
path: operations['update_notification_v1_notifications__notification_id__put']['parameters']['path'];
|
|
2343
2343
|
};
|
|
@@ -2355,7 +2355,7 @@ export type PUT_NotificationsNotificationId_V1_Request = {
|
|
|
2355
2355
|
*
|
|
2356
2356
|
* @path /v1/notifications/{notification_id}
|
|
2357
2357
|
*/
|
|
2358
|
-
export type
|
|
2358
|
+
export type PUT_NotificationsNotificationId_Request_Path = PUT_NotificationsNotificationId_Request['parameters']['path'];
|
|
2359
2359
|
/**
|
|
2360
2360
|
* Request body for PUT /v1/notifications/{notification_id}
|
|
2361
2361
|
*
|
|
@@ -2368,7 +2368,7 @@ export type PUT_NotificationsNotificationId_V1_Request_Parameters_Path = PUT_Not
|
|
|
2368
2368
|
*
|
|
2369
2369
|
* @path /v1/notifications/{notification_id}
|
|
2370
2370
|
*/
|
|
2371
|
-
export type
|
|
2371
|
+
export type PUT_NotificationsNotificationId_Request_Body = PUT_NotificationsNotificationId_Request['requestBody'];
|
|
2372
2372
|
|
|
2373
2373
|
/**
|
|
2374
2374
|
* Request type for PATCH NotificationsNotificationIdRead endpoint
|
|
@@ -2385,11 +2385,11 @@ export type PUT_NotificationsNotificationId_V1_Request_RequestBody = PUT_Notific
|
|
|
2385
2385
|
*
|
|
2386
2386
|
* @path /v1/notifications/{notification_id}/read
|
|
2387
2387
|
*
|
|
2388
|
-
* @see {@link
|
|
2389
|
-
* @see {@link
|
|
2390
|
-
* @see {@link
|
|
2388
|
+
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Query} - Query parameters type
|
|
2389
|
+
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Path} - Path parameters type
|
|
2390
|
+
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Body} - Request body type
|
|
2391
2391
|
*/
|
|
2392
|
-
export type
|
|
2392
|
+
export type PATCH_NotificationsNotificationIdRead_Request = {
|
|
2393
2393
|
parameters: {
|
|
2394
2394
|
path: operations['update_notification_read_v1_notifications__notification_id__read_patch']['parameters']['path'];
|
|
2395
2395
|
};
|
|
@@ -2406,7 +2406,7 @@ export type PATCH_NotificationsNotificationIdRead_V1_Request = {
|
|
|
2406
2406
|
*
|
|
2407
2407
|
* @path /v1/notifications/{notification_id}/read
|
|
2408
2408
|
*/
|
|
2409
|
-
export type
|
|
2409
|
+
export type PATCH_NotificationsNotificationIdRead_Request_Path = PATCH_NotificationsNotificationIdRead_Request['parameters']['path'];
|
|
2410
2410
|
|
|
2411
2411
|
/**
|
|
2412
2412
|
* Request type for GET Organizations endpoint
|
|
@@ -2423,11 +2423,11 @@ export type PATCH_NotificationsNotificationIdRead_V1_Request_Parameters_Path = P
|
|
|
2423
2423
|
*
|
|
2424
2424
|
* @path /v1/organizations
|
|
2425
2425
|
*
|
|
2426
|
-
* @see {@link
|
|
2427
|
-
* @see {@link
|
|
2428
|
-
* @see {@link
|
|
2426
|
+
* @see {@link GET_Organizations_Request_Query} - Query parameters type
|
|
2427
|
+
* @see {@link GET_Organizations_Request_Path} - Path parameters type
|
|
2428
|
+
* @see {@link GET_Organizations_Request_Body} - Request body type
|
|
2429
2429
|
*/
|
|
2430
|
-
export type
|
|
2430
|
+
export type GET_Organizations_Request = {
|
|
2431
2431
|
parameters: {
|
|
2432
2432
|
query: operations['list_organizations_v1_organizations_get']['parameters']['query'];
|
|
2433
2433
|
};
|
|
@@ -2444,7 +2444,7 @@ export type GET_Organizations_V1_Request = {
|
|
|
2444
2444
|
*
|
|
2445
2445
|
* @path /v1/organizations
|
|
2446
2446
|
*/
|
|
2447
|
-
export type
|
|
2447
|
+
export type GET_Organizations_Request_Query = GET_Organizations_Request['parameters']['query'];
|
|
2448
2448
|
|
|
2449
2449
|
/**
|
|
2450
2450
|
* Request type for POST Organizations endpoint
|
|
@@ -2461,11 +2461,11 @@ export type GET_Organizations_V1_Request_Parameters_Query = GET_Organizations_V1
|
|
|
2461
2461
|
*
|
|
2462
2462
|
* @path /v1/organizations
|
|
2463
2463
|
*
|
|
2464
|
-
* @see {@link
|
|
2465
|
-
* @see {@link
|
|
2466
|
-
* @see {@link
|
|
2464
|
+
* @see {@link POST_Organizations_Request_Query} - Query parameters type
|
|
2465
|
+
* @see {@link POST_Organizations_Request_Path} - Path parameters type
|
|
2466
|
+
* @see {@link POST_Organizations_Request_Body} - Request body type
|
|
2467
2467
|
*/
|
|
2468
|
-
export type
|
|
2468
|
+
export type POST_Organizations_Request = {
|
|
2469
2469
|
requestBody: OrganizationCreate;
|
|
2470
2470
|
}
|
|
2471
2471
|
/**
|
|
@@ -2480,7 +2480,7 @@ export type POST_Organizations_V1_Request = {
|
|
|
2480
2480
|
*
|
|
2481
2481
|
* @path /v1/organizations
|
|
2482
2482
|
*/
|
|
2483
|
-
export type
|
|
2483
|
+
export type POST_Organizations_Request_Body = POST_Organizations_Request['requestBody'];
|
|
2484
2484
|
|
|
2485
2485
|
/**
|
|
2486
2486
|
* Request type for GET OrganizationsAttributes endpoint
|
|
@@ -2498,11 +2498,11 @@ export type POST_Organizations_V1_Request_RequestBody = POST_Organizations_V1_Re
|
|
|
2498
2498
|
* @path /v1/organizations/attributes
|
|
2499
2499
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2500
2500
|
*
|
|
2501
|
-
* @see {@link
|
|
2502
|
-
* @see {@link
|
|
2503
|
-
* @see {@link
|
|
2501
|
+
* @see {@link GET_OrganizationsAttributes_Request_Query} - Query parameters type
|
|
2502
|
+
* @see {@link GET_OrganizationsAttributes_Request_Path} - Path parameters type
|
|
2503
|
+
* @see {@link GET_OrganizationsAttributes_Request_Body} - Request body type
|
|
2504
2504
|
*/
|
|
2505
|
-
export type
|
|
2505
|
+
export type GET_OrganizationsAttributes_Request = {
|
|
2506
2506
|
parameters: {
|
|
2507
2507
|
query: operations['get_attributes_v1_organizations_attributes_get']['parameters']['query'];
|
|
2508
2508
|
};
|
|
@@ -2520,7 +2520,7 @@ export type GET_OrganizationsAttributes_V1_Request = {
|
|
|
2520
2520
|
* @path /v1/organizations/attributes
|
|
2521
2521
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2522
2522
|
*/
|
|
2523
|
-
export type
|
|
2523
|
+
export type GET_OrganizationsAttributes_Request_Query = GET_OrganizationsAttributes_Request['parameters']['query'];
|
|
2524
2524
|
|
|
2525
2525
|
/**
|
|
2526
2526
|
* Request type for PATCH OrganizationsAttributes endpoint
|
|
@@ -2537,11 +2537,11 @@ export type GET_OrganizationsAttributes_V1_Request_Parameters_Query = GET_Organi
|
|
|
2537
2537
|
*
|
|
2538
2538
|
* @path /v1/organizations/attributes
|
|
2539
2539
|
*
|
|
2540
|
-
* @see {@link
|
|
2541
|
-
* @see {@link
|
|
2542
|
-
* @see {@link
|
|
2540
|
+
* @see {@link PATCH_OrganizationsAttributes_Request_Query} - Query parameters type
|
|
2541
|
+
* @see {@link PATCH_OrganizationsAttributes_Request_Path} - Path parameters type
|
|
2542
|
+
* @see {@link PATCH_OrganizationsAttributes_Request_Body} - Request body type
|
|
2543
2543
|
*/
|
|
2544
|
-
export type
|
|
2544
|
+
export type PATCH_OrganizationsAttributes_Request = {
|
|
2545
2545
|
parameters: {
|
|
2546
2546
|
query: operations['update_attributes_v1_organizations_attributes_patch']['parameters']['query'];
|
|
2547
2547
|
};
|
|
@@ -2559,7 +2559,7 @@ export type PATCH_OrganizationsAttributes_V1_Request = {
|
|
|
2559
2559
|
*
|
|
2560
2560
|
* @path /v1/organizations/attributes
|
|
2561
2561
|
*/
|
|
2562
|
-
export type
|
|
2562
|
+
export type PATCH_OrganizationsAttributes_Request_Query = PATCH_OrganizationsAttributes_Request['parameters']['query'];
|
|
2563
2563
|
/**
|
|
2564
2564
|
* Request body for PATCH /v1/organizations/attributes
|
|
2565
2565
|
*
|
|
@@ -2572,7 +2572,7 @@ export type PATCH_OrganizationsAttributes_V1_Request_Parameters_Query = PATCH_Or
|
|
|
2572
2572
|
*
|
|
2573
2573
|
* @path /v1/organizations/attributes
|
|
2574
2574
|
*/
|
|
2575
|
-
export type
|
|
2575
|
+
export type PATCH_OrganizationsAttributes_Request_Body = PATCH_OrganizationsAttributes_Request['requestBody'];
|
|
2576
2576
|
|
|
2577
2577
|
/**
|
|
2578
2578
|
* Request type for GET OrganizationsAttributesOrganizationId endpoint
|
|
@@ -2590,11 +2590,11 @@ export type PATCH_OrganizationsAttributes_V1_Request_RequestBody = PATCH_Organiz
|
|
|
2590
2590
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2591
2591
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2592
2592
|
*
|
|
2593
|
-
* @see {@link
|
|
2594
|
-
* @see {@link
|
|
2595
|
-
* @see {@link
|
|
2593
|
+
* @see {@link GET_OrganizationsAttributesOrganizationId_Request_Query} - Query parameters type
|
|
2594
|
+
* @see {@link GET_OrganizationsAttributesOrganizationId_Request_Path} - Path parameters type
|
|
2595
|
+
* @see {@link GET_OrganizationsAttributesOrganizationId_Request_Body} - Request body type
|
|
2596
2596
|
*/
|
|
2597
|
-
export type
|
|
2597
|
+
export type GET_OrganizationsAttributesOrganizationId_Request = {
|
|
2598
2598
|
parameters: {
|
|
2599
2599
|
query: operations['get_attributes_v1_organizations_attributes__organization_id__get']['parameters']['query'];
|
|
2600
2600
|
path: operations['get_attributes_v1_organizations_attributes__organization_id__get']['parameters']['path'];
|
|
@@ -2613,7 +2613,7 @@ export type GET_OrganizationsAttributesOrganizationId_V1_Request = {
|
|
|
2613
2613
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2614
2614
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
2615
2615
|
*/
|
|
2616
|
-
export type
|
|
2616
|
+
export type GET_OrganizationsAttributesOrganizationId_Request_Query = GET_OrganizationsAttributesOrganizationId_Request['parameters']['query'];
|
|
2617
2617
|
/**
|
|
2618
2618
|
* Path parameters for GET /v1/organizations/attributes/{organization_id}
|
|
2619
2619
|
*
|
|
@@ -2626,7 +2626,7 @@ export type GET_OrganizationsAttributesOrganizationId_V1_Request_Parameters_Quer
|
|
|
2626
2626
|
*
|
|
2627
2627
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2628
2628
|
*/
|
|
2629
|
-
export type
|
|
2629
|
+
export type GET_OrganizationsAttributesOrganizationId_Request_Path = GET_OrganizationsAttributesOrganizationId_Request['parameters']['path'];
|
|
2630
2630
|
|
|
2631
2631
|
/**
|
|
2632
2632
|
* Request type for PATCH OrganizationsAttributesOrganizationId endpoint
|
|
@@ -2643,11 +2643,11 @@ export type GET_OrganizationsAttributesOrganizationId_V1_Request_Parameters_Path
|
|
|
2643
2643
|
*
|
|
2644
2644
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2645
2645
|
*
|
|
2646
|
-
* @see {@link
|
|
2647
|
-
* @see {@link
|
|
2648
|
-
* @see {@link
|
|
2646
|
+
* @see {@link PATCH_OrganizationsAttributesOrganizationId_Request_Query} - Query parameters type
|
|
2647
|
+
* @see {@link PATCH_OrganizationsAttributesOrganizationId_Request_Path} - Path parameters type
|
|
2648
|
+
* @see {@link PATCH_OrganizationsAttributesOrganizationId_Request_Body} - Request body type
|
|
2649
2649
|
*/
|
|
2650
|
-
export type
|
|
2650
|
+
export type PATCH_OrganizationsAttributesOrganizationId_Request = {
|
|
2651
2651
|
parameters: {
|
|
2652
2652
|
path: operations['update_attributes_v1_organizations_attributes__organization_id__patch']['parameters']['path'];
|
|
2653
2653
|
};
|
|
@@ -2665,7 +2665,7 @@ export type PATCH_OrganizationsAttributesOrganizationId_V1_Request = {
|
|
|
2665
2665
|
*
|
|
2666
2666
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2667
2667
|
*/
|
|
2668
|
-
export type
|
|
2668
|
+
export type PATCH_OrganizationsAttributesOrganizationId_Request_Path = PATCH_OrganizationsAttributesOrganizationId_Request['parameters']['path'];
|
|
2669
2669
|
/**
|
|
2670
2670
|
* Request body for PATCH /v1/organizations/attributes/{organization_id}
|
|
2671
2671
|
*
|
|
@@ -2678,7 +2678,7 @@ export type PATCH_OrganizationsAttributesOrganizationId_V1_Request_Parameters_Pa
|
|
|
2678
2678
|
*
|
|
2679
2679
|
* @path /v1/organizations/attributes/{organization_id}
|
|
2680
2680
|
*/
|
|
2681
|
-
export type
|
|
2681
|
+
export type PATCH_OrganizationsAttributesOrganizationId_Request_Body = PATCH_OrganizationsAttributesOrganizationId_Request['requestBody'];
|
|
2682
2682
|
|
|
2683
2683
|
/**
|
|
2684
2684
|
* Request type for GET OrganizationsIpRestrictions endpoint
|
|
@@ -2696,11 +2696,11 @@ export type PATCH_OrganizationsAttributesOrganizationId_V1_Request_RequestBody =
|
|
|
2696
2696
|
*
|
|
2697
2697
|
* @path /v1/organizations/ip-restrictions
|
|
2698
2698
|
*
|
|
2699
|
-
* @see {@link
|
|
2700
|
-
* @see {@link
|
|
2701
|
-
* @see {@link
|
|
2699
|
+
* @see {@link GET_OrganizationsIpRestrictions_Request_Query} - Query parameters type
|
|
2700
|
+
* @see {@link GET_OrganizationsIpRestrictions_Request_Path} - Path parameters type
|
|
2701
|
+
* @see {@link GET_OrganizationsIpRestrictions_Request_Body} - Request body type
|
|
2702
2702
|
*/
|
|
2703
|
-
export type
|
|
2703
|
+
export type GET_OrganizationsIpRestrictions_Request = {
|
|
2704
2704
|
}
|
|
2705
2705
|
|
|
2706
2706
|
/**
|
|
@@ -2719,11 +2719,11 @@ export type GET_OrganizationsIpRestrictions_V1_Request = {
|
|
|
2719
2719
|
*
|
|
2720
2720
|
* @path /v1/organizations/ip-restrictions
|
|
2721
2721
|
*
|
|
2722
|
-
* @see {@link
|
|
2723
|
-
* @see {@link
|
|
2724
|
-
* @see {@link
|
|
2722
|
+
* @see {@link POST_OrganizationsIpRestrictions_Request_Query} - Query parameters type
|
|
2723
|
+
* @see {@link POST_OrganizationsIpRestrictions_Request_Path} - Path parameters type
|
|
2724
|
+
* @see {@link POST_OrganizationsIpRestrictions_Request_Body} - Request body type
|
|
2725
2725
|
*/
|
|
2726
|
-
export type
|
|
2726
|
+
export type POST_OrganizationsIpRestrictions_Request = {
|
|
2727
2727
|
requestBody: IpRestrictionCreate;
|
|
2728
2728
|
}
|
|
2729
2729
|
/**
|
|
@@ -2738,7 +2738,7 @@ export type POST_OrganizationsIpRestrictions_V1_Request = {
|
|
|
2738
2738
|
*
|
|
2739
2739
|
* @path /v1/organizations/ip-restrictions
|
|
2740
2740
|
*/
|
|
2741
|
-
export type
|
|
2741
|
+
export type POST_OrganizationsIpRestrictions_Request_Body = POST_OrganizationsIpRestrictions_Request['requestBody'];
|
|
2742
2742
|
|
|
2743
2743
|
/**
|
|
2744
2744
|
* Request type for DELETE OrganizationsIpRestrictionsIpRestrictionId endpoint
|
|
@@ -2756,11 +2756,11 @@ export type POST_OrganizationsIpRestrictions_V1_Request_RequestBody = POST_Organ
|
|
|
2756
2756
|
*
|
|
2757
2757
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2758
2758
|
*
|
|
2759
|
-
* @see {@link
|
|
2760
|
-
* @see {@link
|
|
2761
|
-
* @see {@link
|
|
2759
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Query} - Query parameters type
|
|
2760
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Path} - Path parameters type
|
|
2761
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Body} - Request body type
|
|
2762
2762
|
*/
|
|
2763
|
-
export type
|
|
2763
|
+
export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request = {
|
|
2764
2764
|
parameters: {
|
|
2765
2765
|
path: operations['delete_ip_restriction_v1_organizations_ip_restrictions__ip_restriction_id__delete']['parameters']['path'];
|
|
2766
2766
|
};
|
|
@@ -2777,7 +2777,7 @@ export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_V1_Request = {
|
|
|
2777
2777
|
*
|
|
2778
2778
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2779
2779
|
*/
|
|
2780
|
-
export type
|
|
2780
|
+
export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request_Path = DELETE_OrganizationsIpRestrictionsIpRestrictionId_Request['parameters']['path'];
|
|
2781
2781
|
|
|
2782
2782
|
/**
|
|
2783
2783
|
* Request type for GET OrganizationsIpRestrictionsIpRestrictionId endpoint
|
|
@@ -2795,11 +2795,11 @@ export type DELETE_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_Paramet
|
|
|
2795
2795
|
*
|
|
2796
2796
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2797
2797
|
*
|
|
2798
|
-
* @see {@link
|
|
2799
|
-
* @see {@link
|
|
2800
|
-
* @see {@link
|
|
2798
|
+
* @see {@link GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Query} - Query parameters type
|
|
2799
|
+
* @see {@link GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Path} - Path parameters type
|
|
2800
|
+
* @see {@link GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Body} - Request body type
|
|
2801
2801
|
*/
|
|
2802
|
-
export type
|
|
2802
|
+
export type GET_OrganizationsIpRestrictionsIpRestrictionId_Request = {
|
|
2803
2803
|
parameters: {
|
|
2804
2804
|
path: operations['get_ip_restriction_v1_organizations_ip_restrictions__ip_restriction_id__get']['parameters']['path'];
|
|
2805
2805
|
};
|
|
@@ -2816,7 +2816,7 @@ export type GET_OrganizationsIpRestrictionsIpRestrictionId_V1_Request = {
|
|
|
2816
2816
|
*
|
|
2817
2817
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2818
2818
|
*/
|
|
2819
|
-
export type
|
|
2819
|
+
export type GET_OrganizationsIpRestrictionsIpRestrictionId_Request_Path = GET_OrganizationsIpRestrictionsIpRestrictionId_Request['parameters']['path'];
|
|
2820
2820
|
|
|
2821
2821
|
/**
|
|
2822
2822
|
* Request type for PATCH OrganizationsIpRestrictionsIpRestrictionId endpoint
|
|
@@ -2834,11 +2834,11 @@ export type GET_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_Parameters
|
|
|
2834
2834
|
*
|
|
2835
2835
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2836
2836
|
*
|
|
2837
|
-
* @see {@link
|
|
2838
|
-
* @see {@link
|
|
2839
|
-
* @see {@link
|
|
2837
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Query} - Query parameters type
|
|
2838
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Path} - Path parameters type
|
|
2839
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Body} - Request body type
|
|
2840
2840
|
*/
|
|
2841
|
-
export type
|
|
2841
|
+
export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request = {
|
|
2842
2842
|
parameters: {
|
|
2843
2843
|
path: operations['update_ip_restriction_v1_organizations_ip_restrictions__ip_restriction_id__patch']['parameters']['path'];
|
|
2844
2844
|
};
|
|
@@ -2856,7 +2856,7 @@ export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_V1_Request = {
|
|
|
2856
2856
|
*
|
|
2857
2857
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2858
2858
|
*/
|
|
2859
|
-
export type
|
|
2859
|
+
export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Path = PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request['parameters']['path'];
|
|
2860
2860
|
/**
|
|
2861
2861
|
* Request body for PATCH /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2862
2862
|
*
|
|
@@ -2869,7 +2869,7 @@ export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_Paramete
|
|
|
2869
2869
|
*
|
|
2870
2870
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
2871
2871
|
*/
|
|
2872
|
-
export type
|
|
2872
|
+
export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request_Body = PATCH_OrganizationsIpRestrictionsIpRestrictionId_Request['requestBody'];
|
|
2873
2873
|
|
|
2874
2874
|
/**
|
|
2875
2875
|
* Request type for DELETE OrganizationsOrganizationId endpoint
|
|
@@ -2886,11 +2886,11 @@ export type PATCH_OrganizationsIpRestrictionsIpRestrictionId_V1_Request_RequestB
|
|
|
2886
2886
|
*
|
|
2887
2887
|
* @path /v1/organizations/{organization_id}
|
|
2888
2888
|
*
|
|
2889
|
-
* @see {@link
|
|
2890
|
-
* @see {@link
|
|
2891
|
-
* @see {@link
|
|
2889
|
+
* @see {@link DELETE_OrganizationsOrganizationId_Request_Query} - Query parameters type
|
|
2890
|
+
* @see {@link DELETE_OrganizationsOrganizationId_Request_Path} - Path parameters type
|
|
2891
|
+
* @see {@link DELETE_OrganizationsOrganizationId_Request_Body} - Request body type
|
|
2892
2892
|
*/
|
|
2893
|
-
export type
|
|
2893
|
+
export type DELETE_OrganizationsOrganizationId_Request = {
|
|
2894
2894
|
parameters: {
|
|
2895
2895
|
path: operations['delete_user_v1_organizations__organization_id__delete']['parameters']['path'];
|
|
2896
2896
|
};
|
|
@@ -2907,7 +2907,7 @@ export type DELETE_OrganizationsOrganizationId_V1_Request = {
|
|
|
2907
2907
|
*
|
|
2908
2908
|
* @path /v1/organizations/{organization_id}
|
|
2909
2909
|
*/
|
|
2910
|
-
export type
|
|
2910
|
+
export type DELETE_OrganizationsOrganizationId_Request_Path = DELETE_OrganizationsOrganizationId_Request['parameters']['path'];
|
|
2911
2911
|
|
|
2912
2912
|
/**
|
|
2913
2913
|
* Request type for GET OrganizationsOrganizationId endpoint
|
|
@@ -2924,11 +2924,11 @@ export type DELETE_OrganizationsOrganizationId_V1_Request_Parameters_Path = DELE
|
|
|
2924
2924
|
*
|
|
2925
2925
|
* @path /v1/organizations/{organization_id}
|
|
2926
2926
|
*
|
|
2927
|
-
* @see {@link
|
|
2928
|
-
* @see {@link
|
|
2929
|
-
* @see {@link
|
|
2927
|
+
* @see {@link GET_OrganizationsOrganizationId_Request_Query} - Query parameters type
|
|
2928
|
+
* @see {@link GET_OrganizationsOrganizationId_Request_Path} - Path parameters type
|
|
2929
|
+
* @see {@link GET_OrganizationsOrganizationId_Request_Body} - Request body type
|
|
2930
2930
|
*/
|
|
2931
|
-
export type
|
|
2931
|
+
export type GET_OrganizationsOrganizationId_Request = {
|
|
2932
2932
|
parameters: {
|
|
2933
2933
|
path: operations['get_organization_v1_organizations__organization_id__get']['parameters']['path'];
|
|
2934
2934
|
};
|
|
@@ -2945,7 +2945,7 @@ export type GET_OrganizationsOrganizationId_V1_Request = {
|
|
|
2945
2945
|
*
|
|
2946
2946
|
* @path /v1/organizations/{organization_id}
|
|
2947
2947
|
*/
|
|
2948
|
-
export type
|
|
2948
|
+
export type GET_OrganizationsOrganizationId_Request_Path = GET_OrganizationsOrganizationId_Request['parameters']['path'];
|
|
2949
2949
|
|
|
2950
2950
|
/**
|
|
2951
2951
|
* Request type for PATCH OrganizationsOrganizationId endpoint
|
|
@@ -2962,11 +2962,11 @@ export type GET_OrganizationsOrganizationId_V1_Request_Parameters_Path = GET_Org
|
|
|
2962
2962
|
*
|
|
2963
2963
|
* @path /v1/organizations/{organization_id}
|
|
2964
2964
|
*
|
|
2965
|
-
* @see {@link
|
|
2966
|
-
* @see {@link
|
|
2967
|
-
* @see {@link
|
|
2965
|
+
* @see {@link PATCH_OrganizationsOrganizationId_Request_Query} - Query parameters type
|
|
2966
|
+
* @see {@link PATCH_OrganizationsOrganizationId_Request_Path} - Path parameters type
|
|
2967
|
+
* @see {@link PATCH_OrganizationsOrganizationId_Request_Body} - Request body type
|
|
2968
2968
|
*/
|
|
2969
|
-
export type
|
|
2969
|
+
export type PATCH_OrganizationsOrganizationId_Request = {
|
|
2970
2970
|
parameters: {
|
|
2971
2971
|
path: operations['update_organization_v1_organizations__organization_id__patch']['parameters']['path'];
|
|
2972
2972
|
};
|
|
@@ -2984,7 +2984,7 @@ export type PATCH_OrganizationsOrganizationId_V1_Request = {
|
|
|
2984
2984
|
*
|
|
2985
2985
|
* @path /v1/organizations/{organization_id}
|
|
2986
2986
|
*/
|
|
2987
|
-
export type
|
|
2987
|
+
export type PATCH_OrganizationsOrganizationId_Request_Path = PATCH_OrganizationsOrganizationId_Request['parameters']['path'];
|
|
2988
2988
|
/**
|
|
2989
2989
|
* Request body for PATCH /v1/organizations/{organization_id}
|
|
2990
2990
|
*
|
|
@@ -2997,7 +2997,7 @@ export type PATCH_OrganizationsOrganizationId_V1_Request_Parameters_Path = PATCH
|
|
|
2997
2997
|
*
|
|
2998
2998
|
* @path /v1/organizations/{organization_id}
|
|
2999
2999
|
*/
|
|
3000
|
-
export type
|
|
3000
|
+
export type PATCH_OrganizationsOrganizationId_Request_Body = PATCH_OrganizationsOrganizationId_Request['requestBody'];
|
|
3001
3001
|
|
|
3002
3002
|
/**
|
|
3003
3003
|
* Request type for PATCH OrganizationsOrganizationIdPlan endpoint
|
|
@@ -3014,11 +3014,11 @@ export type PATCH_OrganizationsOrganizationId_V1_Request_RequestBody = PATCH_Org
|
|
|
3014
3014
|
*
|
|
3015
3015
|
* @path /v1/organizations/{organization_id}/plan
|
|
3016
3016
|
*
|
|
3017
|
-
* @see {@link
|
|
3018
|
-
* @see {@link
|
|
3019
|
-
* @see {@link
|
|
3017
|
+
* @see {@link PATCH_OrganizationsOrganizationIdPlan_Request_Query} - Query parameters type
|
|
3018
|
+
* @see {@link PATCH_OrganizationsOrganizationIdPlan_Request_Path} - Path parameters type
|
|
3019
|
+
* @see {@link PATCH_OrganizationsOrganizationIdPlan_Request_Body} - Request body type
|
|
3020
3020
|
*/
|
|
3021
|
-
export type
|
|
3021
|
+
export type PATCH_OrganizationsOrganizationIdPlan_Request = {
|
|
3022
3022
|
parameters: {
|
|
3023
3023
|
path: operations['change_plan_v1_organizations__organization_id__plan_patch']['parameters']['path'];
|
|
3024
3024
|
};
|
|
@@ -3036,7 +3036,7 @@ export type PATCH_OrganizationsOrganizationIdPlan_V1_Request = {
|
|
|
3036
3036
|
*
|
|
3037
3037
|
* @path /v1/organizations/{organization_id}/plan
|
|
3038
3038
|
*/
|
|
3039
|
-
export type
|
|
3039
|
+
export type PATCH_OrganizationsOrganizationIdPlan_Request_Path = PATCH_OrganizationsOrganizationIdPlan_Request['parameters']['path'];
|
|
3040
3040
|
/**
|
|
3041
3041
|
* Request body for PATCH /v1/organizations/{organization_id}/plan
|
|
3042
3042
|
*
|
|
@@ -3049,7 +3049,7 @@ export type PATCH_OrganizationsOrganizationIdPlan_V1_Request_Parameters_Path = P
|
|
|
3049
3049
|
*
|
|
3050
3050
|
* @path /v1/organizations/{organization_id}/plan
|
|
3051
3051
|
*/
|
|
3052
|
-
export type
|
|
3052
|
+
export type PATCH_OrganizationsOrganizationIdPlan_Request_Body = PATCH_OrganizationsOrganizationIdPlan_Request['requestBody'];
|
|
3053
3053
|
|
|
3054
3054
|
/**
|
|
3055
3055
|
* Request type for GET OrganizationsRoles endpoint
|
|
@@ -3066,11 +3066,11 @@ export type PATCH_OrganizationsOrganizationIdPlan_V1_Request_RequestBody = PATCH
|
|
|
3066
3066
|
*
|
|
3067
3067
|
* @path /v1/organizations/roles
|
|
3068
3068
|
*
|
|
3069
|
-
* @see {@link
|
|
3070
|
-
* @see {@link
|
|
3071
|
-
* @see {@link
|
|
3069
|
+
* @see {@link GET_OrganizationsRoles_Request_Query} - Query parameters type
|
|
3070
|
+
* @see {@link GET_OrganizationsRoles_Request_Path} - Path parameters type
|
|
3071
|
+
* @see {@link GET_OrganizationsRoles_Request_Body} - Request body type
|
|
3072
3072
|
*/
|
|
3073
|
-
export type
|
|
3073
|
+
export type GET_OrganizationsRoles_Request = {
|
|
3074
3074
|
}
|
|
3075
3075
|
|
|
3076
3076
|
/**
|
|
@@ -3088,11 +3088,11 @@ export type GET_OrganizationsRoles_V1_Request = {
|
|
|
3088
3088
|
*
|
|
3089
3089
|
* @path /v1/organizations/users
|
|
3090
3090
|
*
|
|
3091
|
-
* @see {@link
|
|
3092
|
-
* @see {@link
|
|
3093
|
-
* @see {@link
|
|
3091
|
+
* @see {@link GET_OrganizationsUsers_Request_Query} - Query parameters type
|
|
3092
|
+
* @see {@link GET_OrganizationsUsers_Request_Path} - Path parameters type
|
|
3093
|
+
* @see {@link GET_OrganizationsUsers_Request_Body} - Request body type
|
|
3094
3094
|
*/
|
|
3095
|
-
export type
|
|
3095
|
+
export type GET_OrganizationsUsers_Request = {
|
|
3096
3096
|
parameters: {
|
|
3097
3097
|
query: operations['list_users_v1_organizations_users_get']['parameters']['query'];
|
|
3098
3098
|
};
|
|
@@ -3109,7 +3109,67 @@ export type GET_OrganizationsUsers_V1_Request = {
|
|
|
3109
3109
|
*
|
|
3110
3110
|
* @path /v1/organizations/users
|
|
3111
3111
|
*/
|
|
3112
|
-
export type
|
|
3112
|
+
export type GET_OrganizationsUsers_Request_Query = GET_OrganizationsUsers_Request['parameters']['query'];
|
|
3113
|
+
|
|
3114
|
+
/**
|
|
3115
|
+
* Request type for GET TldsPortfolio endpoint
|
|
3116
|
+
*
|
|
3117
|
+
* Get Tld Portfolio
|
|
3118
|
+
*
|
|
3119
|
+
* @remarks
|
|
3120
|
+
* This type defines the complete request structure for the GET TldsPortfolio endpoint.
|
|
3121
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3122
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3123
|
+
*
|
|
3124
|
+
* @example
|
|
3125
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3126
|
+
*
|
|
3127
|
+
* @path /v1/tlds/portfolio
|
|
3128
|
+
*
|
|
3129
|
+
* @see {@link GET_TldsPortfolio_Request_Query} - Query parameters type
|
|
3130
|
+
* @see {@link GET_TldsPortfolio_Request_Path} - Path parameters type
|
|
3131
|
+
* @see {@link GET_TldsPortfolio_Request_Body} - Request body type
|
|
3132
|
+
*/
|
|
3133
|
+
export type GET_TldsPortfolio_Request = {
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
/**
|
|
3137
|
+
* Request type for GET TldsTld endpoint
|
|
3138
|
+
*
|
|
3139
|
+
* Get Tld Spec
|
|
3140
|
+
*
|
|
3141
|
+
* @remarks
|
|
3142
|
+
* This type defines the complete request structure for the GET TldsTld endpoint.
|
|
3143
|
+
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3144
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3145
|
+
*
|
|
3146
|
+
* @example
|
|
3147
|
+
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3148
|
+
*
|
|
3149
|
+
* @path /v1/tlds/{tld}
|
|
3150
|
+
*
|
|
3151
|
+
* @see {@link GET_TldsTld_Request_Query} - Query parameters type
|
|
3152
|
+
* @see {@link GET_TldsTld_Request_Path} - Path parameters type
|
|
3153
|
+
* @see {@link GET_TldsTld_Request_Body} - Request body type
|
|
3154
|
+
*/
|
|
3155
|
+
export type GET_TldsTld_Request = {
|
|
3156
|
+
parameters: {
|
|
3157
|
+
path: operations['get_tld_spec_v1_tlds__tld__get']['parameters']['path'];
|
|
3158
|
+
};
|
|
3159
|
+
}
|
|
3160
|
+
/**
|
|
3161
|
+
* Path parameters for GET /v1/tlds/{tld}
|
|
3162
|
+
*
|
|
3163
|
+
* @remarks
|
|
3164
|
+
* This type defines the path parameters for the GET /v1/tlds/{tld} endpoint.
|
|
3165
|
+
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
3166
|
+
*
|
|
3167
|
+
* @example
|
|
3168
|
+
* Use this type to ensure type safety for path parameters.
|
|
3169
|
+
*
|
|
3170
|
+
* @path /v1/tlds/{tld}
|
|
3171
|
+
*/
|
|
3172
|
+
export type GET_TldsTld_Request_Path = GET_TldsTld_Request['parameters']['path'];
|
|
3113
3173
|
|
|
3114
3174
|
/**
|
|
3115
3175
|
* Request type for POST Users endpoint
|
|
@@ -3126,11 +3186,11 @@ export type GET_OrganizationsUsers_V1_Request_Parameters_Query = GET_Organizatio
|
|
|
3126
3186
|
*
|
|
3127
3187
|
* @path /v1/users
|
|
3128
3188
|
*
|
|
3129
|
-
* @see {@link
|
|
3130
|
-
* @see {@link
|
|
3131
|
-
* @see {@link
|
|
3189
|
+
* @see {@link POST_Users_Request_Query} - Query parameters type
|
|
3190
|
+
* @see {@link POST_Users_Request_Path} - Path parameters type
|
|
3191
|
+
* @see {@link POST_Users_Request_Body} - Request body type
|
|
3132
3192
|
*/
|
|
3133
|
-
export type
|
|
3193
|
+
export type POST_Users_Request = {
|
|
3134
3194
|
requestBody: UserCreate;
|
|
3135
3195
|
}
|
|
3136
3196
|
/**
|
|
@@ -3145,7 +3205,7 @@ export type POST_Users_V1_Request = {
|
|
|
3145
3205
|
*
|
|
3146
3206
|
* @path /v1/users
|
|
3147
3207
|
*/
|
|
3148
|
-
export type
|
|
3208
|
+
export type POST_Users_Request_Body = POST_Users_Request['requestBody'];
|
|
3149
3209
|
|
|
3150
3210
|
/**
|
|
3151
3211
|
* Request type for POST UsersAcceptTos endpoint
|
|
@@ -3162,11 +3222,11 @@ export type POST_Users_V1_Request_RequestBody = POST_Users_V1_Request['requestBo
|
|
|
3162
3222
|
*
|
|
3163
3223
|
* @path /v1/users/accept-tos
|
|
3164
3224
|
*
|
|
3165
|
-
* @see {@link
|
|
3166
|
-
* @see {@link
|
|
3167
|
-
* @see {@link
|
|
3225
|
+
* @see {@link POST_UsersAcceptTos_Request_Query} - Query parameters type
|
|
3226
|
+
* @see {@link POST_UsersAcceptTos_Request_Path} - Path parameters type
|
|
3227
|
+
* @see {@link POST_UsersAcceptTos_Request_Body} - Request body type
|
|
3168
3228
|
*/
|
|
3169
|
-
export type
|
|
3229
|
+
export type POST_UsersAcceptTos_Request = {
|
|
3170
3230
|
requestBody: TermsOfServiceAccept;
|
|
3171
3231
|
}
|
|
3172
3232
|
/**
|
|
@@ -3181,7 +3241,7 @@ export type POST_UsersAcceptTos_V1_Request = {
|
|
|
3181
3241
|
*
|
|
3182
3242
|
* @path /v1/users/accept-tos
|
|
3183
3243
|
*/
|
|
3184
|
-
export type
|
|
3244
|
+
export type POST_UsersAcceptTos_Request_Body = POST_UsersAcceptTos_Request['requestBody'];
|
|
3185
3245
|
|
|
3186
3246
|
/**
|
|
3187
3247
|
* Request type for GET UsersMe endpoint
|
|
@@ -3198,11 +3258,11 @@ export type POST_UsersAcceptTos_V1_Request_RequestBody = POST_UsersAcceptTos_V1_
|
|
|
3198
3258
|
*
|
|
3199
3259
|
* @path /v1/users/me
|
|
3200
3260
|
*
|
|
3201
|
-
* @see {@link
|
|
3202
|
-
* @see {@link
|
|
3203
|
-
* @see {@link
|
|
3261
|
+
* @see {@link GET_UsersMe_Request_Query} - Query parameters type
|
|
3262
|
+
* @see {@link GET_UsersMe_Request_Path} - Path parameters type
|
|
3263
|
+
* @see {@link GET_UsersMe_Request_Body} - Request body type
|
|
3204
3264
|
*/
|
|
3205
|
-
export type
|
|
3265
|
+
export type GET_UsersMe_Request = {
|
|
3206
3266
|
parameters: {
|
|
3207
3267
|
query: operations['get_current_user_v1_users_me_get']['parameters']['query'];
|
|
3208
3268
|
};
|
|
@@ -3219,7 +3279,7 @@ export type GET_UsersMe_V1_Request = {
|
|
|
3219
3279
|
*
|
|
3220
3280
|
* @path /v1/users/me
|
|
3221
3281
|
*/
|
|
3222
|
-
export type
|
|
3282
|
+
export type GET_UsersMe_Request_Query = GET_UsersMe_Request['parameters']['query'];
|
|
3223
3283
|
|
|
3224
3284
|
/**
|
|
3225
3285
|
* Request type for DELETE UsersUserId endpoint
|
|
@@ -3236,11 +3296,11 @@ export type GET_UsersMe_V1_Request_Parameters_Query = GET_UsersMe_V1_Request['pa
|
|
|
3236
3296
|
*
|
|
3237
3297
|
* @path /v1/users/{user_id}
|
|
3238
3298
|
*
|
|
3239
|
-
* @see {@link
|
|
3240
|
-
* @see {@link
|
|
3241
|
-
* @see {@link
|
|
3299
|
+
* @see {@link DELETE_UsersUserId_Request_Query} - Query parameters type
|
|
3300
|
+
* @see {@link DELETE_UsersUserId_Request_Path} - Path parameters type
|
|
3301
|
+
* @see {@link DELETE_UsersUserId_Request_Body} - Request body type
|
|
3242
3302
|
*/
|
|
3243
|
-
export type
|
|
3303
|
+
export type DELETE_UsersUserId_Request = {
|
|
3244
3304
|
parameters: {
|
|
3245
3305
|
path: operations['delete_user_v1_users__user_id__delete']['parameters']['path'];
|
|
3246
3306
|
};
|
|
@@ -3257,7 +3317,7 @@ export type DELETE_UsersUserId_V1_Request = {
|
|
|
3257
3317
|
*
|
|
3258
3318
|
* @path /v1/users/{user_id}
|
|
3259
3319
|
*/
|
|
3260
|
-
export type
|
|
3320
|
+
export type DELETE_UsersUserId_Request_Path = DELETE_UsersUserId_Request['parameters']['path'];
|
|
3261
3321
|
|
|
3262
3322
|
/**
|
|
3263
3323
|
* Request type for GET UsersUserId endpoint
|
|
@@ -3274,11 +3334,11 @@ export type DELETE_UsersUserId_V1_Request_Parameters_Path = DELETE_UsersUserId_V
|
|
|
3274
3334
|
*
|
|
3275
3335
|
* @path /v1/users/{user_id}
|
|
3276
3336
|
*
|
|
3277
|
-
* @see {@link
|
|
3278
|
-
* @see {@link
|
|
3279
|
-
* @see {@link
|
|
3337
|
+
* @see {@link GET_UsersUserId_Request_Query} - Query parameters type
|
|
3338
|
+
* @see {@link GET_UsersUserId_Request_Path} - Path parameters type
|
|
3339
|
+
* @see {@link GET_UsersUserId_Request_Body} - Request body type
|
|
3280
3340
|
*/
|
|
3281
|
-
export type
|
|
3341
|
+
export type GET_UsersUserId_Request = {
|
|
3282
3342
|
parameters: {
|
|
3283
3343
|
query: operations['get_user_v1_users__user_id__get']['parameters']['query'];
|
|
3284
3344
|
path: operations['get_user_v1_users__user_id__get']['parameters']['path'];
|
|
@@ -3296,7 +3356,7 @@ export type GET_UsersUserId_V1_Request = {
|
|
|
3296
3356
|
*
|
|
3297
3357
|
* @path /v1/users/{user_id}
|
|
3298
3358
|
*/
|
|
3299
|
-
export type
|
|
3359
|
+
export type GET_UsersUserId_Request_Query = GET_UsersUserId_Request['parameters']['query'];
|
|
3300
3360
|
/**
|
|
3301
3361
|
* Path parameters for GET /v1/users/{user_id}
|
|
3302
3362
|
*
|
|
@@ -3309,7 +3369,7 @@ export type GET_UsersUserId_V1_Request_Parameters_Query = GET_UsersUserId_V1_Req
|
|
|
3309
3369
|
*
|
|
3310
3370
|
* @path /v1/users/{user_id}
|
|
3311
3371
|
*/
|
|
3312
|
-
export type
|
|
3372
|
+
export type GET_UsersUserId_Request_Path = GET_UsersUserId_Request['parameters']['path'];
|
|
3313
3373
|
|
|
3314
3374
|
/**
|
|
3315
3375
|
* Request type for PATCH UsersUserId endpoint
|
|
@@ -3326,11 +3386,11 @@ export type GET_UsersUserId_V1_Request_Parameters_Path = GET_UsersUserId_V1_Requ
|
|
|
3326
3386
|
*
|
|
3327
3387
|
* @path /v1/users/{user_id}
|
|
3328
3388
|
*
|
|
3329
|
-
* @see {@link
|
|
3330
|
-
* @see {@link
|
|
3331
|
-
* @see {@link
|
|
3389
|
+
* @see {@link PATCH_UsersUserId_Request_Query} - Query parameters type
|
|
3390
|
+
* @see {@link PATCH_UsersUserId_Request_Path} - Path parameters type
|
|
3391
|
+
* @see {@link PATCH_UsersUserId_Request_Body} - Request body type
|
|
3332
3392
|
*/
|
|
3333
|
-
export type
|
|
3393
|
+
export type PATCH_UsersUserId_Request = {
|
|
3334
3394
|
parameters: {
|
|
3335
3395
|
path: operations['update_user_v1_users__user_id__patch']['parameters']['path'];
|
|
3336
3396
|
};
|
|
@@ -3348,7 +3408,7 @@ export type PATCH_UsersUserId_V1_Request = {
|
|
|
3348
3408
|
*
|
|
3349
3409
|
* @path /v1/users/{user_id}
|
|
3350
3410
|
*/
|
|
3351
|
-
export type
|
|
3411
|
+
export type PATCH_UsersUserId_Request_Path = PATCH_UsersUserId_Request['parameters']['path'];
|
|
3352
3412
|
/**
|
|
3353
3413
|
* Request body for PATCH /v1/users/{user_id}
|
|
3354
3414
|
*
|
|
@@ -3361,7 +3421,7 @@ export type PATCH_UsersUserId_V1_Request_Parameters_Path = PATCH_UsersUserId_V1_
|
|
|
3361
3421
|
*
|
|
3362
3422
|
* @path /v1/users/{user_id}
|
|
3363
3423
|
*/
|
|
3364
|
-
export type
|
|
3424
|
+
export type PATCH_UsersUserId_Request_Body = PATCH_UsersUserId_Request['requestBody'];
|
|
3365
3425
|
|
|
3366
3426
|
/**
|
|
3367
3427
|
* Request type for GET UsersUserIdPermissions endpoint
|
|
@@ -3378,11 +3438,11 @@ export type PATCH_UsersUserId_V1_Request_RequestBody = PATCH_UsersUserId_V1_Requ
|
|
|
3378
3438
|
*
|
|
3379
3439
|
* @path /v1/users/{user_id}/permissions
|
|
3380
3440
|
*
|
|
3381
|
-
* @see {@link
|
|
3382
|
-
* @see {@link
|
|
3383
|
-
* @see {@link
|
|
3441
|
+
* @see {@link GET_UsersUserIdPermissions_Request_Query} - Query parameters type
|
|
3442
|
+
* @see {@link GET_UsersUserIdPermissions_Request_Path} - Path parameters type
|
|
3443
|
+
* @see {@link GET_UsersUserIdPermissions_Request_Body} - Request body type
|
|
3384
3444
|
*/
|
|
3385
|
-
export type
|
|
3445
|
+
export type GET_UsersUserIdPermissions_Request = {
|
|
3386
3446
|
parameters: {
|
|
3387
3447
|
path: operations['get_user_permissions_v1_users__user_id__permissions_get']['parameters']['path'];
|
|
3388
3448
|
};
|
|
@@ -3399,7 +3459,7 @@ export type GET_UsersUserIdPermissions_V1_Request = {
|
|
|
3399
3459
|
*
|
|
3400
3460
|
* @path /v1/users/{user_id}/permissions
|
|
3401
3461
|
*/
|
|
3402
|
-
export type
|
|
3462
|
+
export type GET_UsersUserIdPermissions_Request_Path = GET_UsersUserIdPermissions_Request['parameters']['path'];
|
|
3403
3463
|
|
|
3404
3464
|
/**
|
|
3405
3465
|
* Request type for GET UsersUserIdRoles endpoint
|
|
@@ -3416,11 +3476,11 @@ export type GET_UsersUserIdPermissions_V1_Request_Parameters_Path = GET_UsersUse
|
|
|
3416
3476
|
*
|
|
3417
3477
|
* @path /v1/users/{user_id}/roles
|
|
3418
3478
|
*
|
|
3419
|
-
* @see {@link
|
|
3420
|
-
* @see {@link
|
|
3421
|
-
* @see {@link
|
|
3479
|
+
* @see {@link GET_UsersUserIdRoles_Request_Query} - Query parameters type
|
|
3480
|
+
* @see {@link GET_UsersUserIdRoles_Request_Path} - Path parameters type
|
|
3481
|
+
* @see {@link GET_UsersUserIdRoles_Request_Body} - Request body type
|
|
3422
3482
|
*/
|
|
3423
|
-
export type
|
|
3483
|
+
export type GET_UsersUserIdRoles_Request = {
|
|
3424
3484
|
parameters: {
|
|
3425
3485
|
path: operations['list_roles_v1_users__user_id__roles_get']['parameters']['path'];
|
|
3426
3486
|
};
|
|
@@ -3437,7 +3497,7 @@ export type GET_UsersUserIdRoles_V1_Request = {
|
|
|
3437
3497
|
*
|
|
3438
3498
|
* @path /v1/users/{user_id}/roles
|
|
3439
3499
|
*/
|
|
3440
|
-
export type
|
|
3500
|
+
export type GET_UsersUserIdRoles_Request_Path = GET_UsersUserIdRoles_Request['parameters']['path'];
|
|
3441
3501
|
|
|
3442
3502
|
/**
|
|
3443
3503
|
* Request type for PATCH UsersUserIdRoles endpoint
|
|
@@ -3454,11 +3514,11 @@ export type GET_UsersUserIdRoles_V1_Request_Parameters_Path = GET_UsersUserIdRol
|
|
|
3454
3514
|
*
|
|
3455
3515
|
* @path /v1/users/{user_id}/roles
|
|
3456
3516
|
*
|
|
3457
|
-
* @see {@link
|
|
3458
|
-
* @see {@link
|
|
3459
|
-
* @see {@link
|
|
3517
|
+
* @see {@link PATCH_UsersUserIdRoles_Request_Query} - Query parameters type
|
|
3518
|
+
* @see {@link PATCH_UsersUserIdRoles_Request_Path} - Path parameters type
|
|
3519
|
+
* @see {@link PATCH_UsersUserIdRoles_Request_Body} - Request body type
|
|
3460
3520
|
*/
|
|
3461
|
-
export type
|
|
3521
|
+
export type PATCH_UsersUserIdRoles_Request = {
|
|
3462
3522
|
parameters: {
|
|
3463
3523
|
path: operations['update_user_relations_v1_users__user_id__roles_patch']['parameters']['path'];
|
|
3464
3524
|
};
|
|
@@ -3476,7 +3536,7 @@ export type PATCH_UsersUserIdRoles_V1_Request = {
|
|
|
3476
3536
|
*
|
|
3477
3537
|
* @path /v1/users/{user_id}/roles
|
|
3478
3538
|
*/
|
|
3479
|
-
export type
|
|
3539
|
+
export type PATCH_UsersUserIdRoles_Request_Path = PATCH_UsersUserIdRoles_Request['parameters']['path'];
|
|
3480
3540
|
/**
|
|
3481
3541
|
* Request body for PATCH /v1/users/{user_id}/roles
|
|
3482
3542
|
*
|
|
@@ -3489,5 +3549,5 @@ export type PATCH_UsersUserIdRoles_V1_Request_Parameters_Path = PATCH_UsersUserI
|
|
|
3489
3549
|
*
|
|
3490
3550
|
* @path /v1/users/{user_id}/roles
|
|
3491
3551
|
*/
|
|
3492
|
-
export type
|
|
3552
|
+
export type PATCH_UsersUserIdRoles_Request_Body = PATCH_UsersUserIdRoles_Request['requestBody'];
|
|
3493
3553
|
|