@opusdns/api 0.10.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/helpers/constants.ts +771 -1
- package/src/helpers/index.ts +1 -0
- package/src/helpers/keys.ts +8077 -4699
- package/src/helpers/requests.ts +537 -441
- package/src/helpers/responses.ts +440 -547
- package/src/helpers/schemas-arrays.ts +169 -1
- package/src/helpers/schemas.ts +624 -0
- package/src/openapi.yaml +975 -1
- package/src/schema.d.ts +732 -0
- /package/src/{index.ts → index.d.ts} +0 -0
package/src/helpers/responses.ts
CHANGED
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
* Do not edit manually.
|
|
31
31
|
*/
|
|
32
32
|
|
|
33
|
-
import { components } from '../schema';
|
|
34
33
|
|
|
35
|
-
import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray } from './schemas-arrays';
|
|
36
34
|
|
|
37
|
-
import {
|
|
35
|
+
import { DomainDnssecDataArray, OrganizationAttribute2Array, IpRestrictionArray, TldResponseShortArray } from './schemas-arrays';
|
|
36
|
+
|
|
37
|
+
import { Pagination_OrganizationCredential, Problem, HTTPValidationError, OrganizationCredentialCreated, DomainAvailabilityList, Pagination_ContactSchema, ContactSchema, ContactVerification, Contact, Pagination_DnsZone, DnsZone, DnsChanges, DomainSearch, Pagination_Domain, Domain, DomainRenew, DomainCheck, DomainSummary, Pagination_EmailForward, EmailForward, EmailForwardBulkDeleteResult, EmailForwardBulkUpdateResult, Pagination_Event, EventSchema, Pagination_UserNotificationSummary, Notification, UserNotification, Pagination_Organization, Organization, OrganizationWithPlan, IpRestriction, Pagination_User, TldSpecification, User, UserWithAttributes, PermissionSet, RelationSet, UserWithRelationPermissions } from './schemas';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Response types for GET AuthClientCredentials endpoint
|
|
@@ -57,11 +57,7 @@ import { Pagination_OrganizationCredential, Problem, HTTPValidationError, Organi
|
|
|
57
57
|
*
|
|
58
58
|
|
|
59
59
|
*/
|
|
60
|
-
export type
|
|
61
|
-
200: GET_AuthClientCredentials_Response_200
|
|
62
|
-
401: GET_AuthClientCredentials_Response_401
|
|
63
|
-
422: GET_AuthClientCredentials_Response_422
|
|
64
|
-
}
|
|
60
|
+
export type GET_AuthClientCredentials_Response = GET_AuthClientCredentials_Response_200 | GET_AuthClientCredentials_Response_401 | GET_AuthClientCredentials_Response_422;
|
|
65
61
|
|
|
66
62
|
/**
|
|
67
63
|
* 200 response for GET AuthClientCredentials endpoint
|
|
@@ -76,7 +72,7 @@ export type GET_AuthClientCredentials = {
|
|
|
76
72
|
* @path /v1/auth/client_credentials
|
|
77
73
|
* @param status (query) - Optional status to filter the results
|
|
78
74
|
*
|
|
79
|
-
* @see {@link
|
|
75
|
+
* @see {@link GET_AuthClientCredentials_Response} - The main response type definition
|
|
80
76
|
* @see {@link Pagination_OrganizationCredential} - The actual schema type definition
|
|
81
77
|
*/
|
|
82
78
|
export type GET_AuthClientCredentials_Response_200 = Pagination_OrganizationCredential
|
|
@@ -94,7 +90,7 @@ export type GET_AuthClientCredentials_Response_200 = Pagination_OrganizationCred
|
|
|
94
90
|
* @path /v1/auth/client_credentials
|
|
95
91
|
* @param status (query) - Optional status to filter the results
|
|
96
92
|
*
|
|
97
|
-
* @see {@link
|
|
93
|
+
* @see {@link GET_AuthClientCredentials_Response} - The main response type definition
|
|
98
94
|
* @see {@link Problem} - The actual schema type definition
|
|
99
95
|
*/
|
|
100
96
|
export type GET_AuthClientCredentials_Response_401 = Problem
|
|
@@ -112,7 +108,7 @@ export type GET_AuthClientCredentials_Response_401 = Problem
|
|
|
112
108
|
* @path /v1/auth/client_credentials
|
|
113
109
|
* @param status (query) - Optional status to filter the results
|
|
114
110
|
*
|
|
115
|
-
* @see {@link
|
|
111
|
+
* @see {@link GET_AuthClientCredentials_Response} - The main response type definition
|
|
116
112
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
117
113
|
*/
|
|
118
114
|
export type GET_AuthClientCredentials_Response_422 = HTTPValidationError
|
|
@@ -137,11 +133,7 @@ export type GET_AuthClientCredentials_Response_422 = HTTPValidationError
|
|
|
137
133
|
*
|
|
138
134
|
|
|
139
135
|
*/
|
|
140
|
-
export type
|
|
141
|
-
200: POST_AuthClientCredentials_Response_200
|
|
142
|
-
401: POST_AuthClientCredentials_Response_401
|
|
143
|
-
422: POST_AuthClientCredentials_Response_422
|
|
144
|
-
}
|
|
136
|
+
export type POST_AuthClientCredentials_Response = POST_AuthClientCredentials_Response_200 | POST_AuthClientCredentials_Response_401 | POST_AuthClientCredentials_Response_422;
|
|
145
137
|
|
|
146
138
|
/**
|
|
147
139
|
* 200 response for POST AuthClientCredentials endpoint
|
|
@@ -155,7 +147,7 @@ export type POST_AuthClientCredentials = {
|
|
|
155
147
|
*
|
|
156
148
|
* @path /v1/auth/client_credentials
|
|
157
149
|
*
|
|
158
|
-
* @see {@link
|
|
150
|
+
* @see {@link POST_AuthClientCredentials_Response} - The main response type definition
|
|
159
151
|
* @see {@link OrganizationCredentialCreated} - The actual schema type definition
|
|
160
152
|
*/
|
|
161
153
|
export type POST_AuthClientCredentials_Response_200 = OrganizationCredentialCreated
|
|
@@ -172,7 +164,7 @@ export type POST_AuthClientCredentials_Response_200 = OrganizationCredentialCrea
|
|
|
172
164
|
*
|
|
173
165
|
* @path /v1/auth/client_credentials
|
|
174
166
|
*
|
|
175
|
-
* @see {@link
|
|
167
|
+
* @see {@link POST_AuthClientCredentials_Response} - The main response type definition
|
|
176
168
|
* @see {@link Problem} - The actual schema type definition
|
|
177
169
|
*/
|
|
178
170
|
export type POST_AuthClientCredentials_Response_401 = Problem
|
|
@@ -189,7 +181,7 @@ export type POST_AuthClientCredentials_Response_401 = Problem
|
|
|
189
181
|
*
|
|
190
182
|
* @path /v1/auth/client_credentials
|
|
191
183
|
*
|
|
192
|
-
* @see {@link
|
|
184
|
+
* @see {@link POST_AuthClientCredentials_Response} - The main response type definition
|
|
193
185
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
194
186
|
*/
|
|
195
187
|
export type POST_AuthClientCredentials_Response_422 = HTTPValidationError
|
|
@@ -214,11 +206,7 @@ export type POST_AuthClientCredentials_Response_422 = HTTPValidationError
|
|
|
214
206
|
*
|
|
215
207
|
|
|
216
208
|
*/
|
|
217
|
-
export type
|
|
218
|
-
401: DELETE_AuthClientCredentialsByApiKeyId_Response_401
|
|
219
|
-
404: DELETE_AuthClientCredentialsByApiKeyId_Response_404
|
|
220
|
-
422: DELETE_AuthClientCredentialsByApiKeyId_Response_422
|
|
221
|
-
}
|
|
209
|
+
export type DELETE_AuthClientCredentialsByApiKeyId_Response = DELETE_AuthClientCredentialsByApiKeyId_Response_401 | DELETE_AuthClientCredentialsByApiKeyId_Response_404 | DELETE_AuthClientCredentialsByApiKeyId_Response_422;
|
|
222
210
|
|
|
223
211
|
/**
|
|
224
212
|
* 401 response for DELETE AuthClientCredentialsByApiKeyId endpoint
|
|
@@ -232,7 +220,7 @@ export type DELETE_AuthClientCredentialsByApiKeyId = {
|
|
|
232
220
|
*
|
|
233
221
|
* @path /v1/auth/client_credentials/{api_key_id}
|
|
234
222
|
*
|
|
235
|
-
* @see {@link
|
|
223
|
+
* @see {@link DELETE_AuthClientCredentialsByApiKeyId_Response} - The main response type definition
|
|
236
224
|
* @see {@link Problem} - The actual schema type definition
|
|
237
225
|
*/
|
|
238
226
|
export type DELETE_AuthClientCredentialsByApiKeyId_Response_401 = Problem
|
|
@@ -249,7 +237,7 @@ export type DELETE_AuthClientCredentialsByApiKeyId_Response_401 = Problem
|
|
|
249
237
|
*
|
|
250
238
|
* @path /v1/auth/client_credentials/{api_key_id}
|
|
251
239
|
*
|
|
252
|
-
* @see {@link
|
|
240
|
+
* @see {@link DELETE_AuthClientCredentialsByApiKeyId_Response} - The main response type definition
|
|
253
241
|
* @see {@link Problem} - The actual schema type definition
|
|
254
242
|
*/
|
|
255
243
|
export type DELETE_AuthClientCredentialsByApiKeyId_Response_404 = Problem
|
|
@@ -266,11 +254,66 @@ export type DELETE_AuthClientCredentialsByApiKeyId_Response_404 = Problem
|
|
|
266
254
|
*
|
|
267
255
|
* @path /v1/auth/client_credentials/{api_key_id}
|
|
268
256
|
*
|
|
269
|
-
* @see {@link
|
|
257
|
+
* @see {@link DELETE_AuthClientCredentialsByApiKeyId_Response} - The main response type definition
|
|
270
258
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
271
259
|
*/
|
|
272
260
|
export type DELETE_AuthClientCredentialsByApiKeyId_Response_422 = HTTPValidationError
|
|
273
261
|
|
|
262
|
+
/**
|
|
263
|
+
* Response types for POST AuthInternalClientCredentials endpoint
|
|
264
|
+
*
|
|
265
|
+
* Issue Opusdns Internal Api Key
|
|
266
|
+
*
|
|
267
|
+
* @remarks
|
|
268
|
+
* This type defines all possible response structures for the POST AuthInternalClientCredentials endpoint.
|
|
269
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
270
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
271
|
+
*
|
|
272
|
+
|
|
273
|
+
*
|
|
274
|
+
* @path /v1/auth/internal_client_credentials
|
|
275
|
+
*
|
|
276
|
+
* @see {@link POST_AuthInternalClientCredentials_Response_200} - 200 response type
|
|
277
|
+
* @see {@link POST_AuthInternalClientCredentials_Response_422} - 422 response type
|
|
278
|
+
*
|
|
279
|
+
|
|
280
|
+
*/
|
|
281
|
+
export type POST_AuthInternalClientCredentials_Response = POST_AuthInternalClientCredentials_Response_200 | POST_AuthInternalClientCredentials_Response_422;
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* 200 response for POST AuthInternalClientCredentials endpoint
|
|
285
|
+
*
|
|
286
|
+
* @remarks
|
|
287
|
+
* This type defines the response structure for the 200 status code
|
|
288
|
+
* of the POST AuthInternalClientCredentials endpoint.
|
|
289
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
290
|
+
*
|
|
291
|
+
|
|
292
|
+
*
|
|
293
|
+
* @path /v1/auth/internal_client_credentials
|
|
294
|
+
*
|
|
295
|
+
* @see {@link POST_AuthInternalClientCredentials_Response} - The main response type definition
|
|
296
|
+
* @see {@link OrganizationCredentialCreated} - The actual schema type definition
|
|
297
|
+
*/
|
|
298
|
+
export type POST_AuthInternalClientCredentials_Response_200 = OrganizationCredentialCreated
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* 422 response for POST AuthInternalClientCredentials endpoint
|
|
302
|
+
*
|
|
303
|
+
* @remarks
|
|
304
|
+
* This type defines the response structure for the 422 status code
|
|
305
|
+
* of the POST AuthInternalClientCredentials endpoint.
|
|
306
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
307
|
+
*
|
|
308
|
+
|
|
309
|
+
*
|
|
310
|
+
* @path /v1/auth/internal_client_credentials
|
|
311
|
+
*
|
|
312
|
+
* @see {@link POST_AuthInternalClientCredentials_Response} - The main response type definition
|
|
313
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
314
|
+
*/
|
|
315
|
+
export type POST_AuthInternalClientCredentials_Response_422 = HTTPValidationError
|
|
316
|
+
|
|
274
317
|
/**
|
|
275
318
|
* Response types for POST AuthLogout endpoint
|
|
276
319
|
*
|
|
@@ -289,9 +332,7 @@ export type DELETE_AuthClientCredentialsByApiKeyId_Response_422 = HTTPValidation
|
|
|
289
332
|
*
|
|
290
333
|
|
|
291
334
|
*/
|
|
292
|
-
export type
|
|
293
|
-
401: POST_AuthLogout_Response_401
|
|
294
|
-
}
|
|
335
|
+
export type POST_AuthLogout_Response = POST_AuthLogout_Response_401;
|
|
295
336
|
|
|
296
337
|
/**
|
|
297
338
|
* 401 response for POST AuthLogout endpoint
|
|
@@ -305,7 +346,7 @@ export type POST_AuthLogout = {
|
|
|
305
346
|
*
|
|
306
347
|
* @path /v1/auth/logout
|
|
307
348
|
*
|
|
308
|
-
* @see {@link
|
|
349
|
+
* @see {@link POST_AuthLogout_Response} - The main response type definition
|
|
309
350
|
* @see {@link Problem} - The actual schema type definition
|
|
310
351
|
*/
|
|
311
352
|
export type POST_AuthLogout_Response_401 = Problem
|
|
@@ -329,10 +370,7 @@ export type POST_AuthLogout_Response_401 = Problem
|
|
|
329
370
|
*
|
|
330
371
|
|
|
331
372
|
*/
|
|
332
|
-
export type
|
|
333
|
-
409: POST_AuthSignup_Response_409
|
|
334
|
-
422: POST_AuthSignup_Response_422
|
|
335
|
-
}
|
|
373
|
+
export type POST_AuthSignup_Response = POST_AuthSignup_Response_409 | POST_AuthSignup_Response_422;
|
|
336
374
|
|
|
337
375
|
/**
|
|
338
376
|
* 409 response for POST AuthSignup endpoint
|
|
@@ -346,7 +384,7 @@ export type POST_AuthSignup = {
|
|
|
346
384
|
*
|
|
347
385
|
* @path /v1/auth/signup
|
|
348
386
|
*
|
|
349
|
-
* @see {@link
|
|
387
|
+
* @see {@link POST_AuthSignup_Response} - The main response type definition
|
|
350
388
|
* @see {@link Problem} - The actual schema type definition
|
|
351
389
|
*/
|
|
352
390
|
export type POST_AuthSignup_Response_409 = Problem
|
|
@@ -363,7 +401,7 @@ export type POST_AuthSignup_Response_409 = Problem
|
|
|
363
401
|
*
|
|
364
402
|
* @path /v1/auth/signup
|
|
365
403
|
*
|
|
366
|
-
* @see {@link
|
|
404
|
+
* @see {@link POST_AuthSignup_Response} - The main response type definition
|
|
367
405
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
368
406
|
*/
|
|
369
407
|
export type POST_AuthSignup_Response_422 = HTTPValidationError
|
|
@@ -387,10 +425,7 @@ export type POST_AuthSignup_Response_422 = HTTPValidationError
|
|
|
387
425
|
*
|
|
388
426
|
|
|
389
427
|
*/
|
|
390
|
-
export type
|
|
391
|
-
401: POST_AuthToken_Response_401
|
|
392
|
-
422: POST_AuthToken_Response_422
|
|
393
|
-
}
|
|
428
|
+
export type POST_AuthToken_Response = POST_AuthToken_Response_401 | POST_AuthToken_Response_422;
|
|
394
429
|
|
|
395
430
|
/**
|
|
396
431
|
* 401 response for POST AuthToken endpoint
|
|
@@ -404,7 +439,7 @@ export type POST_AuthToken = {
|
|
|
404
439
|
*
|
|
405
440
|
* @path /v1/auth/token
|
|
406
441
|
*
|
|
407
|
-
* @see {@link
|
|
442
|
+
* @see {@link POST_AuthToken_Response} - The main response type definition
|
|
408
443
|
* @see {@link Problem} - The actual schema type definition
|
|
409
444
|
*/
|
|
410
445
|
export type POST_AuthToken_Response_401 = Problem
|
|
@@ -421,7 +456,7 @@ export type POST_AuthToken_Response_401 = Problem
|
|
|
421
456
|
*
|
|
422
457
|
* @path /v1/auth/token
|
|
423
458
|
*
|
|
424
|
-
* @see {@link
|
|
459
|
+
* @see {@link POST_AuthToken_Response} - The main response type definition
|
|
425
460
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
426
461
|
*/
|
|
427
462
|
export type POST_AuthToken_Response_422 = HTTPValidationError
|
|
@@ -451,12 +486,7 @@ Specify one or more domains to check for availability.
|
|
|
451
486
|
*
|
|
452
487
|
|
|
453
488
|
*/
|
|
454
|
-
export type
|
|
455
|
-
200: GET_Availability_Response_200
|
|
456
|
-
401: GET_Availability_Response_401
|
|
457
|
-
422: GET_Availability_Response_422
|
|
458
|
-
502: GET_Availability_Response_502
|
|
459
|
-
}
|
|
489
|
+
export type GET_Availability_Response = GET_Availability_Response_200 | GET_Availability_Response_401 | GET_Availability_Response_422 | GET_Availability_Response_502;
|
|
460
490
|
|
|
461
491
|
/**
|
|
462
492
|
* 200 response for GET Availability endpoint
|
|
@@ -473,7 +503,7 @@ export type GET_Availability = {
|
|
|
473
503
|
Specify one or more domains to check for availability.
|
|
474
504
|
|
|
475
505
|
*
|
|
476
|
-
* @see {@link
|
|
506
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
477
507
|
* @see {@link DomainAvailabilityList} - The actual schema type definition
|
|
478
508
|
*/
|
|
479
509
|
export type GET_Availability_Response_200 = DomainAvailabilityList
|
|
@@ -493,7 +523,7 @@ export type GET_Availability_Response_200 = DomainAvailabilityList
|
|
|
493
523
|
Specify one or more domains to check for availability.
|
|
494
524
|
|
|
495
525
|
*
|
|
496
|
-
* @see {@link
|
|
526
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
497
527
|
* @see {@link Problem} - The actual schema type definition
|
|
498
528
|
*/
|
|
499
529
|
export type GET_Availability_Response_401 = Problem
|
|
@@ -513,7 +543,7 @@ export type GET_Availability_Response_401 = Problem
|
|
|
513
543
|
Specify one or more domains to check for availability.
|
|
514
544
|
|
|
515
545
|
*
|
|
516
|
-
* @see {@link
|
|
546
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
517
547
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
518
548
|
*/
|
|
519
549
|
export type GET_Availability_Response_422 = HTTPValidationError
|
|
@@ -533,7 +563,7 @@ export type GET_Availability_Response_422 = HTTPValidationError
|
|
|
533
563
|
Specify one or more domains to check for availability.
|
|
534
564
|
|
|
535
565
|
*
|
|
536
|
-
* @see {@link
|
|
566
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
537
567
|
* @see {@link Problem} - The actual schema type definition
|
|
538
568
|
*/
|
|
539
569
|
export type GET_Availability_Response_502 = Problem
|
|
@@ -562,11 +592,7 @@ Specify one or more domains to check for availability.
|
|
|
562
592
|
*
|
|
563
593
|
|
|
564
594
|
*/
|
|
565
|
-
export type
|
|
566
|
-
401: GET_AvailabilityStream_Response_401
|
|
567
|
-
422: GET_AvailabilityStream_Response_422
|
|
568
|
-
502: GET_AvailabilityStream_Response_502
|
|
569
|
-
}
|
|
595
|
+
export type GET_AvailabilityStream_Response = GET_AvailabilityStream_Response_401 | GET_AvailabilityStream_Response_422 | GET_AvailabilityStream_Response_502;
|
|
570
596
|
|
|
571
597
|
/**
|
|
572
598
|
* 401 response for GET AvailabilityStream endpoint
|
|
@@ -583,7 +609,7 @@ export type GET_AvailabilityStream = {
|
|
|
583
609
|
Specify one or more domains to check for availability.
|
|
584
610
|
|
|
585
611
|
*
|
|
586
|
-
* @see {@link
|
|
612
|
+
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
587
613
|
* @see {@link Problem} - The actual schema type definition
|
|
588
614
|
*/
|
|
589
615
|
export type GET_AvailabilityStream_Response_401 = Problem
|
|
@@ -603,7 +629,7 @@ export type GET_AvailabilityStream_Response_401 = Problem
|
|
|
603
629
|
Specify one or more domains to check for availability.
|
|
604
630
|
|
|
605
631
|
*
|
|
606
|
-
* @see {@link
|
|
632
|
+
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
607
633
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
608
634
|
*/
|
|
609
635
|
export type GET_AvailabilityStream_Response_422 = HTTPValidationError
|
|
@@ -623,7 +649,7 @@ export type GET_AvailabilityStream_Response_422 = HTTPValidationError
|
|
|
623
649
|
Specify one or more domains to check for availability.
|
|
624
650
|
|
|
625
651
|
*
|
|
626
|
-
* @see {@link
|
|
652
|
+
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
627
653
|
* @see {@link Problem} - The actual schema type definition
|
|
628
654
|
*/
|
|
629
655
|
export type GET_AvailabilityStream_Response_502 = Problem
|
|
@@ -648,10 +674,7 @@ export type GET_AvailabilityStream_Response_502 = Problem
|
|
|
648
674
|
*
|
|
649
675
|
|
|
650
676
|
*/
|
|
651
|
-
export type
|
|
652
|
-
200: GET_Contacts_Response_200
|
|
653
|
-
422: GET_Contacts_Response_422
|
|
654
|
-
}
|
|
677
|
+
export type GET_Contacts_Response = GET_Contacts_Response_200 | GET_Contacts_Response_422;
|
|
655
678
|
|
|
656
679
|
/**
|
|
657
680
|
* 200 response for GET Contacts endpoint
|
|
@@ -665,7 +688,7 @@ export type GET_Contacts = {
|
|
|
665
688
|
*
|
|
666
689
|
* @path /v1/contacts
|
|
667
690
|
*
|
|
668
|
-
* @see {@link
|
|
691
|
+
* @see {@link GET_Contacts_Response} - The main response type definition
|
|
669
692
|
* @see {@link Pagination_ContactSchema} - The actual schema type definition
|
|
670
693
|
*/
|
|
671
694
|
export type GET_Contacts_Response_200 = Pagination_ContactSchema
|
|
@@ -682,7 +705,7 @@ export type GET_Contacts_Response_200 = Pagination_ContactSchema
|
|
|
682
705
|
*
|
|
683
706
|
* @path /v1/contacts
|
|
684
707
|
*
|
|
685
|
-
* @see {@link
|
|
708
|
+
* @see {@link GET_Contacts_Response} - The main response type definition
|
|
686
709
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
687
710
|
*/
|
|
688
711
|
export type GET_Contacts_Response_422 = HTTPValidationError
|
|
@@ -707,10 +730,7 @@ export type GET_Contacts_Response_422 = HTTPValidationError
|
|
|
707
730
|
*
|
|
708
731
|
|
|
709
732
|
*/
|
|
710
|
-
export type
|
|
711
|
-
201: POST_Contacts_Response_201
|
|
712
|
-
422: POST_Contacts_Response_422
|
|
713
|
-
}
|
|
733
|
+
export type POST_Contacts_Response = POST_Contacts_Response_201 | POST_Contacts_Response_422;
|
|
714
734
|
|
|
715
735
|
/**
|
|
716
736
|
* 201 response for POST Contacts endpoint
|
|
@@ -724,7 +744,7 @@ export type POST_Contacts = {
|
|
|
724
744
|
*
|
|
725
745
|
* @path /v1/contacts
|
|
726
746
|
*
|
|
727
|
-
* @see {@link
|
|
747
|
+
* @see {@link POST_Contacts_Response} - The main response type definition
|
|
728
748
|
* @see {@link ContactSchema} - The actual schema type definition
|
|
729
749
|
*/
|
|
730
750
|
export type POST_Contacts_Response_201 = ContactSchema
|
|
@@ -741,7 +761,7 @@ export type POST_Contacts_Response_201 = ContactSchema
|
|
|
741
761
|
*
|
|
742
762
|
* @path /v1/contacts
|
|
743
763
|
*
|
|
744
|
-
* @see {@link
|
|
764
|
+
* @see {@link POST_Contacts_Response} - The main response type definition
|
|
745
765
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
746
766
|
*/
|
|
747
767
|
export type POST_Contacts_Response_422 = HTTPValidationError
|
|
@@ -767,11 +787,7 @@ export type POST_Contacts_Response_422 = HTTPValidationError
|
|
|
767
787
|
*
|
|
768
788
|
|
|
769
789
|
*/
|
|
770
|
-
export type
|
|
771
|
-
404: DELETE_ContactsByContactId_Response_404
|
|
772
|
-
409: DELETE_ContactsByContactId_Response_409
|
|
773
|
-
422: DELETE_ContactsByContactId_Response_422
|
|
774
|
-
}
|
|
790
|
+
export type DELETE_ContactsByContactId_Response = DELETE_ContactsByContactId_Response_404 | DELETE_ContactsByContactId_Response_409 | DELETE_ContactsByContactId_Response_422;
|
|
775
791
|
|
|
776
792
|
/**
|
|
777
793
|
* 404 response for DELETE ContactsByContactId endpoint
|
|
@@ -785,7 +801,7 @@ export type DELETE_ContactsByContactId = {
|
|
|
785
801
|
*
|
|
786
802
|
* @path /v1/contacts/{contact_id}
|
|
787
803
|
*
|
|
788
|
-
* @see {@link
|
|
804
|
+
* @see {@link DELETE_ContactsByContactId_Response} - The main response type definition
|
|
789
805
|
* @see {@link Problem} - The actual schema type definition
|
|
790
806
|
*/
|
|
791
807
|
export type DELETE_ContactsByContactId_Response_404 = Problem
|
|
@@ -802,7 +818,7 @@ export type DELETE_ContactsByContactId_Response_404 = Problem
|
|
|
802
818
|
*
|
|
803
819
|
* @path /v1/contacts/{contact_id}
|
|
804
820
|
*
|
|
805
|
-
* @see {@link
|
|
821
|
+
* @see {@link DELETE_ContactsByContactId_Response} - The main response type definition
|
|
806
822
|
* @see {@link Problem} - The actual schema type definition
|
|
807
823
|
*/
|
|
808
824
|
export type DELETE_ContactsByContactId_Response_409 = Problem
|
|
@@ -819,7 +835,7 @@ export type DELETE_ContactsByContactId_Response_409 = Problem
|
|
|
819
835
|
*
|
|
820
836
|
* @path /v1/contacts/{contact_id}
|
|
821
837
|
*
|
|
822
|
-
* @see {@link
|
|
838
|
+
* @see {@link DELETE_ContactsByContactId_Response} - The main response type definition
|
|
823
839
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
824
840
|
*/
|
|
825
841
|
export type DELETE_ContactsByContactId_Response_422 = HTTPValidationError
|
|
@@ -845,11 +861,7 @@ export type DELETE_ContactsByContactId_Response_422 = HTTPValidationError
|
|
|
845
861
|
*
|
|
846
862
|
|
|
847
863
|
*/
|
|
848
|
-
export type
|
|
849
|
-
200: GET_ContactsByContactId_Response_200
|
|
850
|
-
404: GET_ContactsByContactId_Response_404
|
|
851
|
-
422: GET_ContactsByContactId_Response_422
|
|
852
|
-
}
|
|
864
|
+
export type GET_ContactsByContactId_Response = GET_ContactsByContactId_Response_200 | GET_ContactsByContactId_Response_404 | GET_ContactsByContactId_Response_422;
|
|
853
865
|
|
|
854
866
|
/**
|
|
855
867
|
* 200 response for GET ContactsByContactId endpoint
|
|
@@ -863,7 +875,7 @@ export type GET_ContactsByContactId = {
|
|
|
863
875
|
*
|
|
864
876
|
* @path /v1/contacts/{contact_id}
|
|
865
877
|
*
|
|
866
|
-
* @see {@link
|
|
878
|
+
* @see {@link GET_ContactsByContactId_Response} - The main response type definition
|
|
867
879
|
* @see {@link ContactSchema} - The actual schema type definition
|
|
868
880
|
*/
|
|
869
881
|
export type GET_ContactsByContactId_Response_200 = ContactSchema
|
|
@@ -880,7 +892,7 @@ export type GET_ContactsByContactId_Response_200 = ContactSchema
|
|
|
880
892
|
*
|
|
881
893
|
* @path /v1/contacts/{contact_id}
|
|
882
894
|
*
|
|
883
|
-
* @see {@link
|
|
895
|
+
* @see {@link GET_ContactsByContactId_Response} - The main response type definition
|
|
884
896
|
* @see {@link Problem} - The actual schema type definition
|
|
885
897
|
*/
|
|
886
898
|
export type GET_ContactsByContactId_Response_404 = Problem
|
|
@@ -897,7 +909,7 @@ export type GET_ContactsByContactId_Response_404 = Problem
|
|
|
897
909
|
*
|
|
898
910
|
* @path /v1/contacts/{contact_id}
|
|
899
911
|
*
|
|
900
|
-
* @see {@link
|
|
912
|
+
* @see {@link GET_ContactsByContactId_Response} - The main response type definition
|
|
901
913
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
902
914
|
*/
|
|
903
915
|
export type GET_ContactsByContactId_Response_422 = HTTPValidationError
|
|
@@ -923,11 +935,7 @@ export type GET_ContactsByContactId_Response_422 = HTTPValidationError
|
|
|
923
935
|
*
|
|
924
936
|
|
|
925
937
|
*/
|
|
926
|
-
export type
|
|
927
|
-
401: DELETE_ContactsByContactIdVerification_Response_401
|
|
928
|
-
404: DELETE_ContactsByContactIdVerification_Response_404
|
|
929
|
-
422: DELETE_ContactsByContactIdVerification_Response_422
|
|
930
|
-
}
|
|
938
|
+
export type DELETE_ContactsByContactIdVerification_Response = DELETE_ContactsByContactIdVerification_Response_401 | DELETE_ContactsByContactIdVerification_Response_404 | DELETE_ContactsByContactIdVerification_Response_422;
|
|
931
939
|
|
|
932
940
|
/**
|
|
933
941
|
* 401 response for DELETE ContactsByContactIdVerification endpoint
|
|
@@ -941,7 +949,7 @@ export type DELETE_ContactsByContactIdVerification = {
|
|
|
941
949
|
*
|
|
942
950
|
* @path /v1/contacts/{contact_id}/verification
|
|
943
951
|
*
|
|
944
|
-
* @see {@link
|
|
952
|
+
* @see {@link DELETE_ContactsByContactIdVerification_Response} - The main response type definition
|
|
945
953
|
* @see {@link Problem} - The actual schema type definition
|
|
946
954
|
*/
|
|
947
955
|
export type DELETE_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -958,7 +966,7 @@ export type DELETE_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
958
966
|
*
|
|
959
967
|
* @path /v1/contacts/{contact_id}/verification
|
|
960
968
|
*
|
|
961
|
-
* @see {@link
|
|
969
|
+
* @see {@link DELETE_ContactsByContactIdVerification_Response} - The main response type definition
|
|
962
970
|
* @see {@link Problem} - The actual schema type definition
|
|
963
971
|
*/
|
|
964
972
|
export type DELETE_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -975,7 +983,7 @@ export type DELETE_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
975
983
|
*
|
|
976
984
|
* @path /v1/contacts/{contact_id}/verification
|
|
977
985
|
*
|
|
978
|
-
* @see {@link
|
|
986
|
+
* @see {@link DELETE_ContactsByContactIdVerification_Response} - The main response type definition
|
|
979
987
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
980
988
|
*/
|
|
981
989
|
export type DELETE_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1002,12 +1010,7 @@ export type DELETE_ContactsByContactIdVerification_Response_422 = HTTPValidation
|
|
|
1002
1010
|
*
|
|
1003
1011
|
|
|
1004
1012
|
*/
|
|
1005
|
-
export type
|
|
1006
|
-
200: GET_ContactsByContactIdVerification_Response_200
|
|
1007
|
-
401: GET_ContactsByContactIdVerification_Response_401
|
|
1008
|
-
404: GET_ContactsByContactIdVerification_Response_404
|
|
1009
|
-
422: GET_ContactsByContactIdVerification_Response_422
|
|
1010
|
-
}
|
|
1013
|
+
export type GET_ContactsByContactIdVerification_Response = GET_ContactsByContactIdVerification_Response_200 | GET_ContactsByContactIdVerification_Response_401 | GET_ContactsByContactIdVerification_Response_404 | GET_ContactsByContactIdVerification_Response_422;
|
|
1011
1014
|
|
|
1012
1015
|
/**
|
|
1013
1016
|
* 200 response for GET ContactsByContactIdVerification endpoint
|
|
@@ -1021,7 +1024,7 @@ export type GET_ContactsByContactIdVerification = {
|
|
|
1021
1024
|
*
|
|
1022
1025
|
* @path /v1/contacts/{contact_id}/verification
|
|
1023
1026
|
*
|
|
1024
|
-
* @see {@link
|
|
1027
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1025
1028
|
* @see {@link ContactVerification} - The actual schema type definition
|
|
1026
1029
|
*/
|
|
1027
1030
|
export type GET_ContactsByContactIdVerification_Response_200 = ContactVerification
|
|
@@ -1038,7 +1041,7 @@ export type GET_ContactsByContactIdVerification_Response_200 = ContactVerificati
|
|
|
1038
1041
|
*
|
|
1039
1042
|
* @path /v1/contacts/{contact_id}/verification
|
|
1040
1043
|
*
|
|
1041
|
-
* @see {@link
|
|
1044
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1042
1045
|
* @see {@link Problem} - The actual schema type definition
|
|
1043
1046
|
*/
|
|
1044
1047
|
export type GET_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -1055,7 +1058,7 @@ export type GET_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
1055
1058
|
*
|
|
1056
1059
|
* @path /v1/contacts/{contact_id}/verification
|
|
1057
1060
|
*
|
|
1058
|
-
* @see {@link
|
|
1061
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1059
1062
|
* @see {@link Problem} - The actual schema type definition
|
|
1060
1063
|
*/
|
|
1061
1064
|
export type GET_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -1072,7 +1075,7 @@ export type GET_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
1072
1075
|
*
|
|
1073
1076
|
* @path /v1/contacts/{contact_id}/verification
|
|
1074
1077
|
*
|
|
1075
|
-
* @see {@link
|
|
1078
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1076
1079
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1077
1080
|
*/
|
|
1078
1081
|
export type GET_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1099,12 +1102,7 @@ export type GET_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
|
|
|
1099
1102
|
*
|
|
1100
1103
|
|
|
1101
1104
|
*/
|
|
1102
|
-
export type
|
|
1103
|
-
401: POST_ContactsByContactIdVerification_Response_401
|
|
1104
|
-
404: POST_ContactsByContactIdVerification_Response_404
|
|
1105
|
-
405: POST_ContactsByContactIdVerification_Response_405
|
|
1106
|
-
422: POST_ContactsByContactIdVerification_Response_422
|
|
1107
|
-
}
|
|
1105
|
+
export type POST_ContactsByContactIdVerification_Response = POST_ContactsByContactIdVerification_Response_401 | POST_ContactsByContactIdVerification_Response_404 | POST_ContactsByContactIdVerification_Response_405 | POST_ContactsByContactIdVerification_Response_422;
|
|
1108
1106
|
|
|
1109
1107
|
/**
|
|
1110
1108
|
* 401 response for POST ContactsByContactIdVerification endpoint
|
|
@@ -1118,7 +1116,7 @@ export type POST_ContactsByContactIdVerification = {
|
|
|
1118
1116
|
*
|
|
1119
1117
|
* @path /v1/contacts/{contact_id}/verification
|
|
1120
1118
|
*
|
|
1121
|
-
* @see {@link
|
|
1119
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1122
1120
|
* @see {@link Problem} - The actual schema type definition
|
|
1123
1121
|
*/
|
|
1124
1122
|
export type POST_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -1135,7 +1133,7 @@ export type POST_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
1135
1133
|
*
|
|
1136
1134
|
* @path /v1/contacts/{contact_id}/verification
|
|
1137
1135
|
*
|
|
1138
|
-
* @see {@link
|
|
1136
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1139
1137
|
* @see {@link Problem} - The actual schema type definition
|
|
1140
1138
|
*/
|
|
1141
1139
|
export type POST_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -1152,7 +1150,7 @@ export type POST_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
1152
1150
|
*
|
|
1153
1151
|
* @path /v1/contacts/{contact_id}/verification
|
|
1154
1152
|
*
|
|
1155
|
-
* @see {@link
|
|
1153
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1156
1154
|
* @see {@link Problem} - The actual schema type definition
|
|
1157
1155
|
*/
|
|
1158
1156
|
export type POST_ContactsByContactIdVerification_Response_405 = Problem
|
|
@@ -1169,7 +1167,7 @@ export type POST_ContactsByContactIdVerification_Response_405 = Problem
|
|
|
1169
1167
|
*
|
|
1170
1168
|
* @path /v1/contacts/{contact_id}/verification
|
|
1171
1169
|
*
|
|
1172
|
-
* @see {@link
|
|
1170
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1173
1171
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1174
1172
|
*/
|
|
1175
1173
|
export type POST_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1197,13 +1195,7 @@ export type POST_ContactsByContactIdVerification_Response_422 = HTTPValidationEr
|
|
|
1197
1195
|
*
|
|
1198
1196
|
|
|
1199
1197
|
*/
|
|
1200
|
-
export type
|
|
1201
|
-
400: PUT_ContactsByContactIdVerification_Response_400
|
|
1202
|
-
401: PUT_ContactsByContactIdVerification_Response_401
|
|
1203
|
-
403: PUT_ContactsByContactIdVerification_Response_403
|
|
1204
|
-
404: PUT_ContactsByContactIdVerification_Response_404
|
|
1205
|
-
422: PUT_ContactsByContactIdVerification_Response_422
|
|
1206
|
-
}
|
|
1198
|
+
export type PUT_ContactsByContactIdVerification_Response = PUT_ContactsByContactIdVerification_Response_400 | PUT_ContactsByContactIdVerification_Response_401 | PUT_ContactsByContactIdVerification_Response_403 | PUT_ContactsByContactIdVerification_Response_404 | PUT_ContactsByContactIdVerification_Response_422;
|
|
1207
1199
|
|
|
1208
1200
|
/**
|
|
1209
1201
|
* 400 response for PUT ContactsByContactIdVerification endpoint
|
|
@@ -1217,7 +1209,7 @@ export type PUT_ContactsByContactIdVerification = {
|
|
|
1217
1209
|
*
|
|
1218
1210
|
* @path /v1/contacts/{contact_id}/verification
|
|
1219
1211
|
*
|
|
1220
|
-
* @see {@link
|
|
1212
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1221
1213
|
* @see {@link Problem} - The actual schema type definition
|
|
1222
1214
|
*/
|
|
1223
1215
|
export type PUT_ContactsByContactIdVerification_Response_400 = Problem
|
|
@@ -1234,7 +1226,7 @@ export type PUT_ContactsByContactIdVerification_Response_400 = Problem
|
|
|
1234
1226
|
*
|
|
1235
1227
|
* @path /v1/contacts/{contact_id}/verification
|
|
1236
1228
|
*
|
|
1237
|
-
* @see {@link
|
|
1229
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1238
1230
|
* @see {@link Problem} - The actual schema type definition
|
|
1239
1231
|
*/
|
|
1240
1232
|
export type PUT_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -1251,7 +1243,7 @@ export type PUT_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
1251
1243
|
*
|
|
1252
1244
|
* @path /v1/contacts/{contact_id}/verification
|
|
1253
1245
|
*
|
|
1254
|
-
* @see {@link
|
|
1246
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1255
1247
|
* @see {@link Problem} - The actual schema type definition
|
|
1256
1248
|
*/
|
|
1257
1249
|
export type PUT_ContactsByContactIdVerification_Response_403 = Problem
|
|
@@ -1268,7 +1260,7 @@ export type PUT_ContactsByContactIdVerification_Response_403 = Problem
|
|
|
1268
1260
|
*
|
|
1269
1261
|
* @path /v1/contacts/{contact_id}/verification
|
|
1270
1262
|
*
|
|
1271
|
-
* @see {@link
|
|
1263
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1272
1264
|
* @see {@link Problem} - The actual schema type definition
|
|
1273
1265
|
*/
|
|
1274
1266
|
export type PUT_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -1285,7 +1277,7 @@ export type PUT_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
1285
1277
|
*
|
|
1286
1278
|
* @path /v1/contacts/{contact_id}/verification
|
|
1287
1279
|
*
|
|
1288
|
-
* @see {@link
|
|
1280
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1289
1281
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1290
1282
|
*/
|
|
1291
1283
|
export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1312,12 +1304,7 @@ export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
|
|
|
1312
1304
|
*
|
|
1313
1305
|
|
|
1314
1306
|
*/
|
|
1315
|
-
export type
|
|
1316
|
-
200: GET_ContactsVerification_Response_200
|
|
1317
|
-
401: GET_ContactsVerification_Response_401
|
|
1318
|
-
404: GET_ContactsVerification_Response_404
|
|
1319
|
-
422: GET_ContactsVerification_Response_422
|
|
1320
|
-
}
|
|
1307
|
+
export type GET_ContactsVerification_Response = GET_ContactsVerification_Response_200 | GET_ContactsVerification_Response_401 | GET_ContactsVerification_Response_404 | GET_ContactsVerification_Response_422;
|
|
1321
1308
|
|
|
1322
1309
|
/**
|
|
1323
1310
|
* 200 response for GET ContactsVerification endpoint
|
|
@@ -1331,7 +1318,7 @@ export type GET_ContactsVerification = {
|
|
|
1331
1318
|
*
|
|
1332
1319
|
* @path /v1/contacts/verification
|
|
1333
1320
|
*
|
|
1334
|
-
* @see {@link
|
|
1321
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1335
1322
|
* @see {@link Contact} - The actual schema type definition
|
|
1336
1323
|
*/
|
|
1337
1324
|
export type GET_ContactsVerification_Response_200 = Contact
|
|
@@ -1348,7 +1335,7 @@ export type GET_ContactsVerification_Response_200 = Contact
|
|
|
1348
1335
|
*
|
|
1349
1336
|
* @path /v1/contacts/verification
|
|
1350
1337
|
*
|
|
1351
|
-
* @see {@link
|
|
1338
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1352
1339
|
* @see {@link Problem} - The actual schema type definition
|
|
1353
1340
|
*/
|
|
1354
1341
|
export type GET_ContactsVerification_Response_401 = Problem
|
|
@@ -1365,7 +1352,7 @@ export type GET_ContactsVerification_Response_401 = Problem
|
|
|
1365
1352
|
*
|
|
1366
1353
|
* @path /v1/contacts/verification
|
|
1367
1354
|
*
|
|
1368
|
-
* @see {@link
|
|
1355
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1369
1356
|
* @see {@link Problem} - The actual schema type definition
|
|
1370
1357
|
*/
|
|
1371
1358
|
export type GET_ContactsVerification_Response_404 = Problem
|
|
@@ -1382,7 +1369,7 @@ export type GET_ContactsVerification_Response_404 = Problem
|
|
|
1382
1369
|
*
|
|
1383
1370
|
* @path /v1/contacts/verification
|
|
1384
1371
|
*
|
|
1385
|
-
* @see {@link
|
|
1372
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1386
1373
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1387
1374
|
*/
|
|
1388
1375
|
export type GET_ContactsVerification_Response_422 = HTTPValidationError
|
|
@@ -1409,12 +1396,7 @@ export type GET_ContactsVerification_Response_422 = HTTPValidationError
|
|
|
1409
1396
|
*
|
|
1410
1397
|
|
|
1411
1398
|
*/
|
|
1412
|
-
export type
|
|
1413
|
-
400: PUT_ContactsVerification_Response_400
|
|
1414
|
-
401: PUT_ContactsVerification_Response_401
|
|
1415
|
-
404: PUT_ContactsVerification_Response_404
|
|
1416
|
-
422: PUT_ContactsVerification_Response_422
|
|
1417
|
-
}
|
|
1399
|
+
export type PUT_ContactsVerification_Response = PUT_ContactsVerification_Response_400 | PUT_ContactsVerification_Response_401 | PUT_ContactsVerification_Response_404 | PUT_ContactsVerification_Response_422;
|
|
1418
1400
|
|
|
1419
1401
|
/**
|
|
1420
1402
|
* 400 response for PUT ContactsVerification endpoint
|
|
@@ -1428,7 +1410,7 @@ export type PUT_ContactsVerification = {
|
|
|
1428
1410
|
*
|
|
1429
1411
|
* @path /v1/contacts/verification
|
|
1430
1412
|
*
|
|
1431
|
-
* @see {@link
|
|
1413
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1432
1414
|
* @see {@link Problem} - The actual schema type definition
|
|
1433
1415
|
*/
|
|
1434
1416
|
export type PUT_ContactsVerification_Response_400 = Problem
|
|
@@ -1445,7 +1427,7 @@ export type PUT_ContactsVerification_Response_400 = Problem
|
|
|
1445
1427
|
*
|
|
1446
1428
|
* @path /v1/contacts/verification
|
|
1447
1429
|
*
|
|
1448
|
-
* @see {@link
|
|
1430
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1449
1431
|
* @see {@link Problem} - The actual schema type definition
|
|
1450
1432
|
*/
|
|
1451
1433
|
export type PUT_ContactsVerification_Response_401 = Problem
|
|
@@ -1462,7 +1444,7 @@ export type PUT_ContactsVerification_Response_401 = Problem
|
|
|
1462
1444
|
*
|
|
1463
1445
|
* @path /v1/contacts/verification
|
|
1464
1446
|
*
|
|
1465
|
-
* @see {@link
|
|
1447
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1466
1448
|
* @see {@link Problem} - The actual schema type definition
|
|
1467
1449
|
*/
|
|
1468
1450
|
export type PUT_ContactsVerification_Response_404 = Problem
|
|
@@ -1479,7 +1461,7 @@ export type PUT_ContactsVerification_Response_404 = Problem
|
|
|
1479
1461
|
*
|
|
1480
1462
|
* @path /v1/contacts/verification
|
|
1481
1463
|
*
|
|
1482
|
-
* @see {@link
|
|
1464
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1483
1465
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1484
1466
|
*/
|
|
1485
1467
|
export type PUT_ContactsVerification_Response_422 = HTTPValidationError
|
|
@@ -1502,9 +1484,7 @@ export type PUT_ContactsVerification_Response_422 = HTTPValidationError
|
|
|
1502
1484
|
*
|
|
1503
1485
|
|
|
1504
1486
|
*/
|
|
1505
|
-
export type
|
|
1506
|
-
422: GET_ContactsVerify_Response_422
|
|
1507
|
-
}
|
|
1487
|
+
export type GET_ContactsVerify_Response = GET_ContactsVerify_Response_422;
|
|
1508
1488
|
|
|
1509
1489
|
/**
|
|
1510
1490
|
* 422 response for GET ContactsVerify endpoint
|
|
@@ -1518,7 +1498,7 @@ export type GET_ContactsVerify = {
|
|
|
1518
1498
|
*
|
|
1519
1499
|
* @path /v1/contacts/verify
|
|
1520
1500
|
*
|
|
1521
|
-
* @see {@link
|
|
1501
|
+
* @see {@link GET_ContactsVerify_Response} - The main response type definition
|
|
1522
1502
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1523
1503
|
*/
|
|
1524
1504
|
export type GET_ContactsVerify_Response_422 = HTTPValidationError
|
|
@@ -1542,10 +1522,7 @@ export type GET_ContactsVerify_Response_422 = HTTPValidationError
|
|
|
1542
1522
|
*
|
|
1543
1523
|
|
|
1544
1524
|
*/
|
|
1545
|
-
export type
|
|
1546
|
-
200: GET_Dns_Response_200
|
|
1547
|
-
422: GET_Dns_Response_422
|
|
1548
|
-
}
|
|
1525
|
+
export type GET_Dns_Response = GET_Dns_Response_200 | GET_Dns_Response_422;
|
|
1549
1526
|
|
|
1550
1527
|
/**
|
|
1551
1528
|
* 200 response for GET Dns endpoint
|
|
@@ -1559,7 +1536,7 @@ export type GET_Dns = {
|
|
|
1559
1536
|
*
|
|
1560
1537
|
* @path /v1/dns
|
|
1561
1538
|
*
|
|
1562
|
-
* @see {@link
|
|
1539
|
+
* @see {@link GET_Dns_Response} - The main response type definition
|
|
1563
1540
|
* @see {@link Pagination_DnsZone} - The actual schema type definition
|
|
1564
1541
|
*/
|
|
1565
1542
|
export type GET_Dns_Response_200 = Pagination_DnsZone
|
|
@@ -1576,7 +1553,7 @@ export type GET_Dns_Response_200 = Pagination_DnsZone
|
|
|
1576
1553
|
*
|
|
1577
1554
|
* @path /v1/dns
|
|
1578
1555
|
*
|
|
1579
|
-
* @see {@link
|
|
1556
|
+
* @see {@link GET_Dns_Response} - The main response type definition
|
|
1580
1557
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1581
1558
|
*/
|
|
1582
1559
|
export type GET_Dns_Response_422 = HTTPValidationError
|
|
@@ -1599,9 +1576,7 @@ export type GET_Dns_Response_422 = HTTPValidationError
|
|
|
1599
1576
|
*
|
|
1600
1577
|
|
|
1601
1578
|
*/
|
|
1602
|
-
export type
|
|
1603
|
-
422: POST_Dns_Response_422
|
|
1604
|
-
}
|
|
1579
|
+
export type POST_Dns_Response = POST_Dns_Response_422;
|
|
1605
1580
|
|
|
1606
1581
|
/**
|
|
1607
1582
|
* 422 response for POST Dns endpoint
|
|
@@ -1615,7 +1590,7 @@ export type POST_Dns = {
|
|
|
1615
1590
|
*
|
|
1616
1591
|
* @path /v1/dns
|
|
1617
1592
|
*
|
|
1618
|
-
* @see {@link
|
|
1593
|
+
* @see {@link POST_Dns_Response} - The main response type definition
|
|
1619
1594
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1620
1595
|
*/
|
|
1621
1596
|
export type POST_Dns_Response_422 = HTTPValidationError
|
|
@@ -1639,9 +1614,7 @@ export type POST_Dns_Response_422 = HTTPValidationError
|
|
|
1639
1614
|
*
|
|
1640
1615
|
|
|
1641
1616
|
*/
|
|
1642
|
-
export type
|
|
1643
|
-
422: DELETE_DnsByZoneName_Response_422
|
|
1644
|
-
}
|
|
1617
|
+
export type DELETE_DnsByZoneName_Response = DELETE_DnsByZoneName_Response_422;
|
|
1645
1618
|
|
|
1646
1619
|
/**
|
|
1647
1620
|
* 422 response for DELETE DnsByZoneName endpoint
|
|
@@ -1656,7 +1629,7 @@ export type DELETE_DnsByZoneName = {
|
|
|
1656
1629
|
* @path /v1/dns/{zone_name}
|
|
1657
1630
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1658
1631
|
*
|
|
1659
|
-
* @see {@link
|
|
1632
|
+
* @see {@link DELETE_DnsByZoneName_Response} - The main response type definition
|
|
1660
1633
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1661
1634
|
*/
|
|
1662
1635
|
export type DELETE_DnsByZoneName_Response_422 = HTTPValidationError
|
|
@@ -1681,10 +1654,7 @@ export type DELETE_DnsByZoneName_Response_422 = HTTPValidationError
|
|
|
1681
1654
|
*
|
|
1682
1655
|
|
|
1683
1656
|
*/
|
|
1684
|
-
export type
|
|
1685
|
-
200: GET_DnsByZoneName_Response_200
|
|
1686
|
-
422: GET_DnsByZoneName_Response_422
|
|
1687
|
-
}
|
|
1657
|
+
export type GET_DnsByZoneName_Response = GET_DnsByZoneName_Response_200 | GET_DnsByZoneName_Response_422;
|
|
1688
1658
|
|
|
1689
1659
|
/**
|
|
1690
1660
|
* 200 response for GET DnsByZoneName endpoint
|
|
@@ -1699,7 +1669,7 @@ export type GET_DnsByZoneName = {
|
|
|
1699
1669
|
* @path /v1/dns/{zone_name}
|
|
1700
1670
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1701
1671
|
*
|
|
1702
|
-
* @see {@link
|
|
1672
|
+
* @see {@link GET_DnsByZoneName_Response} - The main response type definition
|
|
1703
1673
|
* @see {@link DnsZone} - The actual schema type definition
|
|
1704
1674
|
*/
|
|
1705
1675
|
export type GET_DnsByZoneName_Response_200 = DnsZone
|
|
@@ -1717,7 +1687,7 @@ export type GET_DnsByZoneName_Response_200 = DnsZone
|
|
|
1717
1687
|
* @path /v1/dns/{zone_name}
|
|
1718
1688
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1719
1689
|
*
|
|
1720
|
-
* @see {@link
|
|
1690
|
+
* @see {@link GET_DnsByZoneName_Response} - The main response type definition
|
|
1721
1691
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1722
1692
|
*/
|
|
1723
1693
|
export type GET_DnsByZoneName_Response_422 = HTTPValidationError
|
|
@@ -1742,10 +1712,7 @@ export type GET_DnsByZoneName_Response_422 = HTTPValidationError
|
|
|
1742
1712
|
*
|
|
1743
1713
|
|
|
1744
1714
|
*/
|
|
1745
|
-
export type
|
|
1746
|
-
200: POST_DnsByZoneNameDnssecDisable_Response_200
|
|
1747
|
-
422: POST_DnsByZoneNameDnssecDisable_Response_422
|
|
1748
|
-
}
|
|
1715
|
+
export type POST_DnsByZoneNameDnssecDisable_Response = POST_DnsByZoneNameDnssecDisable_Response_200 | POST_DnsByZoneNameDnssecDisable_Response_422;
|
|
1749
1716
|
|
|
1750
1717
|
/**
|
|
1751
1718
|
* 200 response for POST DnsByZoneNameDnssecDisable endpoint
|
|
@@ -1760,7 +1727,7 @@ export type POST_DnsByZoneNameDnssecDisable = {
|
|
|
1760
1727
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
1761
1728
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1762
1729
|
*
|
|
1763
|
-
* @see {@link
|
|
1730
|
+
* @see {@link POST_DnsByZoneNameDnssecDisable_Response} - The main response type definition
|
|
1764
1731
|
* @see {@link DnsChanges} - The actual schema type definition
|
|
1765
1732
|
*/
|
|
1766
1733
|
export type POST_DnsByZoneNameDnssecDisable_Response_200 = DnsChanges
|
|
@@ -1778,7 +1745,7 @@ export type POST_DnsByZoneNameDnssecDisable_Response_200 = DnsChanges
|
|
|
1778
1745
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
1779
1746
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1780
1747
|
*
|
|
1781
|
-
* @see {@link
|
|
1748
|
+
* @see {@link POST_DnsByZoneNameDnssecDisable_Response} - The main response type definition
|
|
1782
1749
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1783
1750
|
*/
|
|
1784
1751
|
export type POST_DnsByZoneNameDnssecDisable_Response_422 = HTTPValidationError
|
|
@@ -1803,10 +1770,7 @@ export type POST_DnsByZoneNameDnssecDisable_Response_422 = HTTPValidationError
|
|
|
1803
1770
|
*
|
|
1804
1771
|
|
|
1805
1772
|
*/
|
|
1806
|
-
export type
|
|
1807
|
-
200: POST_DnsByZoneNameDnssecEnable_Response_200
|
|
1808
|
-
422: POST_DnsByZoneNameDnssecEnable_Response_422
|
|
1809
|
-
}
|
|
1773
|
+
export type POST_DnsByZoneNameDnssecEnable_Response = POST_DnsByZoneNameDnssecEnable_Response_200 | POST_DnsByZoneNameDnssecEnable_Response_422;
|
|
1810
1774
|
|
|
1811
1775
|
/**
|
|
1812
1776
|
* 200 response for POST DnsByZoneNameDnssecEnable endpoint
|
|
@@ -1821,7 +1785,7 @@ export type POST_DnsByZoneNameDnssecEnable = {
|
|
|
1821
1785
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
1822
1786
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1823
1787
|
*
|
|
1824
|
-
* @see {@link
|
|
1788
|
+
* @see {@link POST_DnsByZoneNameDnssecEnable_Response} - The main response type definition
|
|
1825
1789
|
* @see {@link DnsChanges} - The actual schema type definition
|
|
1826
1790
|
*/
|
|
1827
1791
|
export type POST_DnsByZoneNameDnssecEnable_Response_200 = DnsChanges
|
|
@@ -1839,7 +1803,7 @@ export type POST_DnsByZoneNameDnssecEnable_Response_200 = DnsChanges
|
|
|
1839
1803
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
1840
1804
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1841
1805
|
*
|
|
1842
|
-
* @see {@link
|
|
1806
|
+
* @see {@link POST_DnsByZoneNameDnssecEnable_Response} - The main response type definition
|
|
1843
1807
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1844
1808
|
*/
|
|
1845
1809
|
export type POST_DnsByZoneNameDnssecEnable_Response_422 = HTTPValidationError
|
|
@@ -1863,9 +1827,7 @@ export type POST_DnsByZoneNameDnssecEnable_Response_422 = HTTPValidationError
|
|
|
1863
1827
|
*
|
|
1864
1828
|
|
|
1865
1829
|
*/
|
|
1866
|
-
export type
|
|
1867
|
-
422: PATCH_DnsByZoneNameRecords_Response_422
|
|
1868
|
-
}
|
|
1830
|
+
export type PATCH_DnsByZoneNameRecords_Response = PATCH_DnsByZoneNameRecords_Response_422;
|
|
1869
1831
|
|
|
1870
1832
|
/**
|
|
1871
1833
|
* 422 response for PATCH DnsByZoneNameRecords endpoint
|
|
@@ -1880,7 +1842,7 @@ export type PATCH_DnsByZoneNameRecords = {
|
|
|
1880
1842
|
* @path /v1/dns/{zone_name}/records
|
|
1881
1843
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1882
1844
|
*
|
|
1883
|
-
* @see {@link
|
|
1845
|
+
* @see {@link PATCH_DnsByZoneNameRecords_Response} - The main response type definition
|
|
1884
1846
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1885
1847
|
*/
|
|
1886
1848
|
export type PATCH_DnsByZoneNameRecords_Response_422 = HTTPValidationError
|
|
@@ -1904,9 +1866,7 @@ export type PATCH_DnsByZoneNameRecords_Response_422 = HTTPValidationError
|
|
|
1904
1866
|
*
|
|
1905
1867
|
|
|
1906
1868
|
*/
|
|
1907
|
-
export type
|
|
1908
|
-
422: PATCH_DnsByZoneNameRrsets_Response_422
|
|
1909
|
-
}
|
|
1869
|
+
export type PATCH_DnsByZoneNameRrsets_Response = PATCH_DnsByZoneNameRrsets_Response_422;
|
|
1910
1870
|
|
|
1911
1871
|
/**
|
|
1912
1872
|
* 422 response for PATCH DnsByZoneNameRrsets endpoint
|
|
@@ -1921,7 +1881,7 @@ export type PATCH_DnsByZoneNameRrsets = {
|
|
|
1921
1881
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1922
1882
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1923
1883
|
*
|
|
1924
|
-
* @see {@link
|
|
1884
|
+
* @see {@link PATCH_DnsByZoneNameRrsets_Response} - The main response type definition
|
|
1925
1885
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1926
1886
|
*/
|
|
1927
1887
|
export type PATCH_DnsByZoneNameRrsets_Response_422 = HTTPValidationError
|
|
@@ -1945,9 +1905,7 @@ export type PATCH_DnsByZoneNameRrsets_Response_422 = HTTPValidationError
|
|
|
1945
1905
|
*
|
|
1946
1906
|
|
|
1947
1907
|
*/
|
|
1948
|
-
export type
|
|
1949
|
-
422: PUT_DnsByZoneNameRrsets_Response_422
|
|
1950
|
-
}
|
|
1908
|
+
export type PUT_DnsByZoneNameRrsets_Response = PUT_DnsByZoneNameRrsets_Response_422;
|
|
1951
1909
|
|
|
1952
1910
|
/**
|
|
1953
1911
|
* 422 response for PUT DnsByZoneNameRrsets endpoint
|
|
@@ -1962,7 +1920,7 @@ export type PUT_DnsByZoneNameRrsets = {
|
|
|
1962
1920
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1963
1921
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1964
1922
|
*
|
|
1965
|
-
* @see {@link
|
|
1923
|
+
* @see {@link PUT_DnsByZoneNameRrsets_Response} - The main response type definition
|
|
1966
1924
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1967
1925
|
*/
|
|
1968
1926
|
export type PUT_DnsByZoneNameRrsets_Response_422 = HTTPValidationError
|
|
@@ -1994,12 +1952,7 @@ Specify one or more TLDs to include in the search.
|
|
|
1994
1952
|
*
|
|
1995
1953
|
|
|
1996
1954
|
*/
|
|
1997
|
-
export type
|
|
1998
|
-
200: GET_DomainSearchSuggest_Response_200
|
|
1999
|
-
401: GET_DomainSearchSuggest_Response_401
|
|
2000
|
-
422: GET_DomainSearchSuggest_Response_422
|
|
2001
|
-
502: GET_DomainSearchSuggest_Response_502
|
|
2002
|
-
}
|
|
1955
|
+
export type GET_DomainSearchSuggest_Response = GET_DomainSearchSuggest_Response_200 | GET_DomainSearchSuggest_Response_401 | GET_DomainSearchSuggest_Response_422 | GET_DomainSearchSuggest_Response_502;
|
|
2003
1956
|
|
|
2004
1957
|
/**
|
|
2005
1958
|
* 200 response for GET DomainSearchSuggest endpoint
|
|
@@ -2019,7 +1972,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2019
1972
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2020
1973
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2021
1974
|
*
|
|
2022
|
-
* @see {@link
|
|
1975
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2023
1976
|
* @see {@link DomainSearch} - The actual schema type definition
|
|
2024
1977
|
*/
|
|
2025
1978
|
export type GET_DomainSearchSuggest_Response_200 = DomainSearch
|
|
@@ -2042,7 +1995,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2042
1995
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2043
1996
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2044
1997
|
*
|
|
2045
|
-
* @see {@link
|
|
1998
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2046
1999
|
* @see {@link Problem} - The actual schema type definition
|
|
2047
2000
|
*/
|
|
2048
2001
|
export type GET_DomainSearchSuggest_Response_401 = Problem
|
|
@@ -2065,7 +2018,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2065
2018
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2066
2019
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2067
2020
|
*
|
|
2068
|
-
* @see {@link
|
|
2021
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2069
2022
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2070
2023
|
*/
|
|
2071
2024
|
export type GET_DomainSearchSuggest_Response_422 = HTTPValidationError
|
|
@@ -2088,7 +2041,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2088
2041
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2089
2042
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2090
2043
|
*
|
|
2091
|
-
* @see {@link
|
|
2044
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2092
2045
|
* @see {@link Problem} - The actual schema type definition
|
|
2093
2046
|
*/
|
|
2094
2047
|
export type GET_DomainSearchSuggest_Response_502 = Problem
|
|
@@ -2113,10 +2066,7 @@ export type GET_DomainSearchSuggest_Response_502 = Problem
|
|
|
2113
2066
|
*
|
|
2114
2067
|
|
|
2115
2068
|
*/
|
|
2116
|
-
export type
|
|
2117
|
-
200: GET_Domains_Response_200
|
|
2118
|
-
422: GET_Domains_Response_422
|
|
2119
|
-
}
|
|
2069
|
+
export type GET_Domains_Response = GET_Domains_Response_200 | GET_Domains_Response_422;
|
|
2120
2070
|
|
|
2121
2071
|
/**
|
|
2122
2072
|
* 200 response for GET Domains endpoint
|
|
@@ -2130,7 +2080,7 @@ export type GET_Domains = {
|
|
|
2130
2080
|
*
|
|
2131
2081
|
* @path /v1/domains
|
|
2132
2082
|
*
|
|
2133
|
-
* @see {@link
|
|
2083
|
+
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2134
2084
|
* @see {@link Pagination_Domain} - The actual schema type definition
|
|
2135
2085
|
*/
|
|
2136
2086
|
export type GET_Domains_Response_200 = Pagination_Domain
|
|
@@ -2147,7 +2097,7 @@ export type GET_Domains_Response_200 = Pagination_Domain
|
|
|
2147
2097
|
*
|
|
2148
2098
|
* @path /v1/domains
|
|
2149
2099
|
*
|
|
2150
|
-
* @see {@link
|
|
2100
|
+
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2151
2101
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2152
2102
|
*/
|
|
2153
2103
|
export type GET_Domains_Response_422 = HTTPValidationError
|
|
@@ -2175,13 +2125,7 @@ export type GET_Domains_Response_422 = HTTPValidationError
|
|
|
2175
2125
|
*
|
|
2176
2126
|
|
|
2177
2127
|
*/
|
|
2178
|
-
export type
|
|
2179
|
-
201: POST_Domains_Response_201
|
|
2180
|
-
400: POST_Domains_Response_400
|
|
2181
|
-
404: POST_Domains_Response_404
|
|
2182
|
-
409: POST_Domains_Response_409
|
|
2183
|
-
422: POST_Domains_Response_422
|
|
2184
|
-
}
|
|
2128
|
+
export type POST_Domains_Response = POST_Domains_Response_201 | POST_Domains_Response_400 | POST_Domains_Response_404 | POST_Domains_Response_409 | POST_Domains_Response_422;
|
|
2185
2129
|
|
|
2186
2130
|
/**
|
|
2187
2131
|
* 201 response for POST Domains endpoint
|
|
@@ -2195,7 +2139,7 @@ export type POST_Domains = {
|
|
|
2195
2139
|
*
|
|
2196
2140
|
* @path /v1/domains
|
|
2197
2141
|
*
|
|
2198
|
-
* @see {@link
|
|
2142
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2199
2143
|
* @see {@link Domain} - The actual schema type definition
|
|
2200
2144
|
*/
|
|
2201
2145
|
export type POST_Domains_Response_201 = Domain
|
|
@@ -2212,7 +2156,7 @@ export type POST_Domains_Response_201 = Domain
|
|
|
2212
2156
|
*
|
|
2213
2157
|
* @path /v1/domains
|
|
2214
2158
|
*
|
|
2215
|
-
* @see {@link
|
|
2159
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2216
2160
|
* @see {@link Problem} - The actual schema type definition
|
|
2217
2161
|
*/
|
|
2218
2162
|
export type POST_Domains_Response_400 = Problem
|
|
@@ -2229,7 +2173,7 @@ export type POST_Domains_Response_400 = Problem
|
|
|
2229
2173
|
*
|
|
2230
2174
|
* @path /v1/domains
|
|
2231
2175
|
*
|
|
2232
|
-
* @see {@link
|
|
2176
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2233
2177
|
* @see {@link Problem} - The actual schema type definition
|
|
2234
2178
|
*/
|
|
2235
2179
|
export type POST_Domains_Response_404 = Problem
|
|
@@ -2246,7 +2190,7 @@ export type POST_Domains_Response_404 = Problem
|
|
|
2246
2190
|
*
|
|
2247
2191
|
* @path /v1/domains
|
|
2248
2192
|
*
|
|
2249
|
-
* @see {@link
|
|
2193
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2250
2194
|
* @see {@link Problem} - The actual schema type definition
|
|
2251
2195
|
*/
|
|
2252
2196
|
export type POST_Domains_Response_409 = Problem
|
|
@@ -2263,7 +2207,7 @@ export type POST_Domains_Response_409 = Problem
|
|
|
2263
2207
|
*
|
|
2264
2208
|
* @path /v1/domains
|
|
2265
2209
|
*
|
|
2266
|
-
* @see {@link
|
|
2210
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2267
2211
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2268
2212
|
*/
|
|
2269
2213
|
export type POST_Domains_Response_422 = HTTPValidationError
|
|
@@ -2290,11 +2234,7 @@ and will enter a redemption period during which it may be restored.
|
|
|
2290
2234
|
*
|
|
2291
2235
|
|
|
2292
2236
|
*/
|
|
2293
|
-
export type
|
|
2294
|
-
404: DELETE_DomainsByDomainReference_Response_404
|
|
2295
|
-
409: DELETE_DomainsByDomainReference_Response_409
|
|
2296
|
-
422: DELETE_DomainsByDomainReference_Response_422
|
|
2297
|
-
}
|
|
2237
|
+
export type DELETE_DomainsByDomainReference_Response = DELETE_DomainsByDomainReference_Response_404 | DELETE_DomainsByDomainReference_Response_409 | DELETE_DomainsByDomainReference_Response_422;
|
|
2298
2238
|
|
|
2299
2239
|
/**
|
|
2300
2240
|
* 404 response for DELETE DomainsByDomainReference endpoint
|
|
@@ -2308,7 +2248,7 @@ export type DELETE_DomainsByDomainReference = {
|
|
|
2308
2248
|
*
|
|
2309
2249
|
* @path /v1/domains/{domain_reference}
|
|
2310
2250
|
*
|
|
2311
|
-
* @see {@link
|
|
2251
|
+
* @see {@link DELETE_DomainsByDomainReference_Response} - The main response type definition
|
|
2312
2252
|
* @see {@link Problem} - The actual schema type definition
|
|
2313
2253
|
*/
|
|
2314
2254
|
export type DELETE_DomainsByDomainReference_Response_404 = Problem
|
|
@@ -2325,7 +2265,7 @@ export type DELETE_DomainsByDomainReference_Response_404 = Problem
|
|
|
2325
2265
|
*
|
|
2326
2266
|
* @path /v1/domains/{domain_reference}
|
|
2327
2267
|
*
|
|
2328
|
-
* @see {@link
|
|
2268
|
+
* @see {@link DELETE_DomainsByDomainReference_Response} - The main response type definition
|
|
2329
2269
|
* @see {@link Problem} - The actual schema type definition
|
|
2330
2270
|
*/
|
|
2331
2271
|
export type DELETE_DomainsByDomainReference_Response_409 = Problem
|
|
@@ -2342,7 +2282,7 @@ export type DELETE_DomainsByDomainReference_Response_409 = Problem
|
|
|
2342
2282
|
*
|
|
2343
2283
|
* @path /v1/domains/{domain_reference}
|
|
2344
2284
|
*
|
|
2345
|
-
* @see {@link
|
|
2285
|
+
* @see {@link DELETE_DomainsByDomainReference_Response} - The main response type definition
|
|
2346
2286
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2347
2287
|
*/
|
|
2348
2288
|
export type DELETE_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
@@ -2368,11 +2308,7 @@ export type DELETE_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
|
2368
2308
|
*
|
|
2369
2309
|
|
|
2370
2310
|
*/
|
|
2371
|
-
export type
|
|
2372
|
-
200: GET_DomainsByDomainReference_Response_200
|
|
2373
|
-
404: GET_DomainsByDomainReference_Response_404
|
|
2374
|
-
422: GET_DomainsByDomainReference_Response_422
|
|
2375
|
-
}
|
|
2311
|
+
export type GET_DomainsByDomainReference_Response = GET_DomainsByDomainReference_Response_200 | GET_DomainsByDomainReference_Response_404 | GET_DomainsByDomainReference_Response_422;
|
|
2376
2312
|
|
|
2377
2313
|
/**
|
|
2378
2314
|
* 200 response for GET DomainsByDomainReference endpoint
|
|
@@ -2386,7 +2322,7 @@ export type GET_DomainsByDomainReference = {
|
|
|
2386
2322
|
*
|
|
2387
2323
|
* @path /v1/domains/{domain_reference}
|
|
2388
2324
|
*
|
|
2389
|
-
* @see {@link
|
|
2325
|
+
* @see {@link GET_DomainsByDomainReference_Response} - The main response type definition
|
|
2390
2326
|
* @see {@link Domain} - The actual schema type definition
|
|
2391
2327
|
*/
|
|
2392
2328
|
export type GET_DomainsByDomainReference_Response_200 = Domain
|
|
@@ -2403,7 +2339,7 @@ export type GET_DomainsByDomainReference_Response_200 = Domain
|
|
|
2403
2339
|
*
|
|
2404
2340
|
* @path /v1/domains/{domain_reference}
|
|
2405
2341
|
*
|
|
2406
|
-
* @see {@link
|
|
2342
|
+
* @see {@link GET_DomainsByDomainReference_Response} - The main response type definition
|
|
2407
2343
|
* @see {@link Problem} - The actual schema type definition
|
|
2408
2344
|
*/
|
|
2409
2345
|
export type GET_DomainsByDomainReference_Response_404 = Problem
|
|
@@ -2420,7 +2356,7 @@ export type GET_DomainsByDomainReference_Response_404 = Problem
|
|
|
2420
2356
|
*
|
|
2421
2357
|
* @path /v1/domains/{domain_reference}
|
|
2422
2358
|
*
|
|
2423
|
-
* @see {@link
|
|
2359
|
+
* @see {@link GET_DomainsByDomainReference_Response} - The main response type definition
|
|
2424
2360
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2425
2361
|
*/
|
|
2426
2362
|
export type GET_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
@@ -2448,11 +2384,7 @@ Providing `clientTransferProhibited` as a status will set the `transfer_lock` pr
|
|
|
2448
2384
|
*
|
|
2449
2385
|
|
|
2450
2386
|
*/
|
|
2451
|
-
export type
|
|
2452
|
-
200: PATCH_DomainsByDomainReference_Response_200
|
|
2453
|
-
404: PATCH_DomainsByDomainReference_Response_404
|
|
2454
|
-
422: PATCH_DomainsByDomainReference_Response_422
|
|
2455
|
-
}
|
|
2387
|
+
export type PATCH_DomainsByDomainReference_Response = PATCH_DomainsByDomainReference_Response_200 | PATCH_DomainsByDomainReference_Response_404 | PATCH_DomainsByDomainReference_Response_422;
|
|
2456
2388
|
|
|
2457
2389
|
/**
|
|
2458
2390
|
* 200 response for PATCH DomainsByDomainReference endpoint
|
|
@@ -2466,7 +2398,7 @@ export type PATCH_DomainsByDomainReference = {
|
|
|
2466
2398
|
*
|
|
2467
2399
|
* @path /v1/domains/{domain_reference}
|
|
2468
2400
|
*
|
|
2469
|
-
* @see {@link
|
|
2401
|
+
* @see {@link PATCH_DomainsByDomainReference_Response} - The main response type definition
|
|
2470
2402
|
* @see {@link Domain} - The actual schema type definition
|
|
2471
2403
|
*/
|
|
2472
2404
|
export type PATCH_DomainsByDomainReference_Response_200 = Domain
|
|
@@ -2483,7 +2415,7 @@ export type PATCH_DomainsByDomainReference_Response_200 = Domain
|
|
|
2483
2415
|
*
|
|
2484
2416
|
* @path /v1/domains/{domain_reference}
|
|
2485
2417
|
*
|
|
2486
|
-
* @see {@link
|
|
2418
|
+
* @see {@link PATCH_DomainsByDomainReference_Response} - The main response type definition
|
|
2487
2419
|
* @see {@link Problem} - The actual schema type definition
|
|
2488
2420
|
*/
|
|
2489
2421
|
export type PATCH_DomainsByDomainReference_Response_404 = Problem
|
|
@@ -2500,7 +2432,7 @@ export type PATCH_DomainsByDomainReference_Response_404 = Problem
|
|
|
2500
2432
|
*
|
|
2501
2433
|
* @path /v1/domains/{domain_reference}
|
|
2502
2434
|
*
|
|
2503
|
-
* @see {@link
|
|
2435
|
+
* @see {@link PATCH_DomainsByDomainReference_Response} - The main response type definition
|
|
2504
2436
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2505
2437
|
*/
|
|
2506
2438
|
export type PATCH_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
@@ -2525,10 +2457,7 @@ export type PATCH_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
|
2525
2457
|
*
|
|
2526
2458
|
|
|
2527
2459
|
*/
|
|
2528
|
-
export type
|
|
2529
|
-
404: DELETE_DomainsByDomainReferenceDnssec_Response_404
|
|
2530
|
-
422: DELETE_DomainsByDomainReferenceDnssec_Response_422
|
|
2531
|
-
}
|
|
2460
|
+
export type DELETE_DomainsByDomainReferenceDnssec_Response = DELETE_DomainsByDomainReferenceDnssec_Response_404 | DELETE_DomainsByDomainReferenceDnssec_Response_422;
|
|
2532
2461
|
|
|
2533
2462
|
/**
|
|
2534
2463
|
* 404 response for DELETE DomainsByDomainReferenceDnssec endpoint
|
|
@@ -2542,7 +2471,7 @@ export type DELETE_DomainsByDomainReferenceDnssec = {
|
|
|
2542
2471
|
*
|
|
2543
2472
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2544
2473
|
*
|
|
2545
|
-
* @see {@link
|
|
2474
|
+
* @see {@link DELETE_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2546
2475
|
* @see {@link Problem} - The actual schema type definition
|
|
2547
2476
|
*/
|
|
2548
2477
|
export type DELETE_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
@@ -2559,7 +2488,7 @@ export type DELETE_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2559
2488
|
*
|
|
2560
2489
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2561
2490
|
*
|
|
2562
|
-
* @see {@link
|
|
2491
|
+
* @see {@link DELETE_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2563
2492
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2564
2493
|
*/
|
|
2565
2494
|
export type DELETE_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationError
|
|
@@ -2585,11 +2514,7 @@ export type DELETE_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationE
|
|
|
2585
2514
|
*
|
|
2586
2515
|
|
|
2587
2516
|
*/
|
|
2588
|
-
export type
|
|
2589
|
-
200: GET_DomainsByDomainReferenceDnssec_Response_200
|
|
2590
|
-
404: GET_DomainsByDomainReferenceDnssec_Response_404
|
|
2591
|
-
422: GET_DomainsByDomainReferenceDnssec_Response_422
|
|
2592
|
-
}
|
|
2517
|
+
export type GET_DomainsByDomainReferenceDnssec_Response = GET_DomainsByDomainReferenceDnssec_Response_200 | GET_DomainsByDomainReferenceDnssec_Response_404 | GET_DomainsByDomainReferenceDnssec_Response_422;
|
|
2593
2518
|
|
|
2594
2519
|
/**
|
|
2595
2520
|
* 200 response for GET DomainsByDomainReferenceDnssec endpoint
|
|
@@ -2603,7 +2528,7 @@ export type GET_DomainsByDomainReferenceDnssec = {
|
|
|
2603
2528
|
*
|
|
2604
2529
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2605
2530
|
*
|
|
2606
|
-
* @see {@link
|
|
2531
|
+
* @see {@link GET_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2607
2532
|
* @see {@link DomainDnssecData} - The actual schema type definition
|
|
2608
2533
|
*/
|
|
2609
2534
|
export type GET_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataArray
|
|
@@ -2620,7 +2545,7 @@ export type GET_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataAr
|
|
|
2620
2545
|
*
|
|
2621
2546
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2622
2547
|
*
|
|
2623
|
-
* @see {@link
|
|
2548
|
+
* @see {@link GET_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2624
2549
|
* @see {@link Problem} - The actual schema type definition
|
|
2625
2550
|
*/
|
|
2626
2551
|
export type GET_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
@@ -2637,7 +2562,7 @@ export type GET_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2637
2562
|
*
|
|
2638
2563
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2639
2564
|
*
|
|
2640
|
-
* @see {@link
|
|
2565
|
+
* @see {@link GET_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2641
2566
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2642
2567
|
*/
|
|
2643
2568
|
export type GET_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationError
|
|
@@ -2663,11 +2588,7 @@ export type GET_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationErro
|
|
|
2663
2588
|
*
|
|
2664
2589
|
|
|
2665
2590
|
*/
|
|
2666
|
-
export type
|
|
2667
|
-
200: PUT_DomainsByDomainReferenceDnssec_Response_200
|
|
2668
|
-
404: PUT_DomainsByDomainReferenceDnssec_Response_404
|
|
2669
|
-
422: PUT_DomainsByDomainReferenceDnssec_Response_422
|
|
2670
|
-
}
|
|
2591
|
+
export type PUT_DomainsByDomainReferenceDnssec_Response = PUT_DomainsByDomainReferenceDnssec_Response_200 | PUT_DomainsByDomainReferenceDnssec_Response_404 | PUT_DomainsByDomainReferenceDnssec_Response_422;
|
|
2671
2592
|
|
|
2672
2593
|
/**
|
|
2673
2594
|
* 200 response for PUT DomainsByDomainReferenceDnssec endpoint
|
|
@@ -2681,7 +2602,7 @@ export type PUT_DomainsByDomainReferenceDnssec = {
|
|
|
2681
2602
|
*
|
|
2682
2603
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2683
2604
|
*
|
|
2684
|
-
* @see {@link
|
|
2605
|
+
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2685
2606
|
* @see {@link DomainDnssecData} - The actual schema type definition
|
|
2686
2607
|
*/
|
|
2687
2608
|
export type PUT_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataArray
|
|
@@ -2698,7 +2619,7 @@ export type PUT_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataAr
|
|
|
2698
2619
|
*
|
|
2699
2620
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2700
2621
|
*
|
|
2701
|
-
* @see {@link
|
|
2622
|
+
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2702
2623
|
* @see {@link Problem} - The actual schema type definition
|
|
2703
2624
|
*/
|
|
2704
2625
|
export type PUT_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
@@ -2715,7 +2636,7 @@ export type PUT_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2715
2636
|
*
|
|
2716
2637
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2717
2638
|
*
|
|
2718
|
-
* @see {@link
|
|
2639
|
+
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2719
2640
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2720
2641
|
*/
|
|
2721
2642
|
export type PUT_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationError
|
|
@@ -2741,10 +2662,7 @@ to the current expiration date of the domain.
|
|
|
2741
2662
|
*
|
|
2742
2663
|
|
|
2743
2664
|
*/
|
|
2744
|
-
export type
|
|
2745
|
-
200: POST_DomainsByDomainReferenceRenew_Response_200
|
|
2746
|
-
422: POST_DomainsByDomainReferenceRenew_Response_422
|
|
2747
|
-
}
|
|
2665
|
+
export type POST_DomainsByDomainReferenceRenew_Response = POST_DomainsByDomainReferenceRenew_Response_200 | POST_DomainsByDomainReferenceRenew_Response_422;
|
|
2748
2666
|
|
|
2749
2667
|
/**
|
|
2750
2668
|
* 200 response for POST DomainsByDomainReferenceRenew endpoint
|
|
@@ -2758,7 +2676,7 @@ export type POST_DomainsByDomainReferenceRenew = {
|
|
|
2758
2676
|
*
|
|
2759
2677
|
* @path /v1/domains/{domain_reference}/renew
|
|
2760
2678
|
*
|
|
2761
|
-
* @see {@link
|
|
2679
|
+
* @see {@link POST_DomainsByDomainReferenceRenew_Response} - The main response type definition
|
|
2762
2680
|
* @see {@link DomainRenew} - The actual schema type definition
|
|
2763
2681
|
*/
|
|
2764
2682
|
export type POST_DomainsByDomainReferenceRenew_Response_200 = DomainRenew
|
|
@@ -2775,7 +2693,7 @@ export type POST_DomainsByDomainReferenceRenew_Response_200 = DomainRenew
|
|
|
2775
2693
|
*
|
|
2776
2694
|
* @path /v1/domains/{domain_reference}/renew
|
|
2777
2695
|
*
|
|
2778
|
-
* @see {@link
|
|
2696
|
+
* @see {@link POST_DomainsByDomainReferenceRenew_Response} - The main response type definition
|
|
2779
2697
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2780
2698
|
*/
|
|
2781
2699
|
export type POST_DomainsByDomainReferenceRenew_Response_422 = HTTPValidationError
|
|
@@ -2801,11 +2719,7 @@ export type POST_DomainsByDomainReferenceRenew_Response_422 = HTTPValidationErro
|
|
|
2801
2719
|
*
|
|
2802
2720
|
|
|
2803
2721
|
*/
|
|
2804
|
-
export type
|
|
2805
|
-
404: DELETE_DomainsByDomainReferenceTransfer_Response_404
|
|
2806
|
-
409: DELETE_DomainsByDomainReferenceTransfer_Response_409
|
|
2807
|
-
422: DELETE_DomainsByDomainReferenceTransfer_Response_422
|
|
2808
|
-
}
|
|
2722
|
+
export type DELETE_DomainsByDomainReferenceTransfer_Response = DELETE_DomainsByDomainReferenceTransfer_Response_404 | DELETE_DomainsByDomainReferenceTransfer_Response_409 | DELETE_DomainsByDomainReferenceTransfer_Response_422;
|
|
2809
2723
|
|
|
2810
2724
|
/**
|
|
2811
2725
|
* 404 response for DELETE DomainsByDomainReferenceTransfer endpoint
|
|
@@ -2819,7 +2733,7 @@ export type DELETE_DomainsByDomainReferenceTransfer = {
|
|
|
2819
2733
|
*
|
|
2820
2734
|
* @path /v1/domains/{domain_reference}/transfer
|
|
2821
2735
|
*
|
|
2822
|
-
* @see {@link
|
|
2736
|
+
* @see {@link DELETE_DomainsByDomainReferenceTransfer_Response} - The main response type definition
|
|
2823
2737
|
* @see {@link Problem} - The actual schema type definition
|
|
2824
2738
|
*/
|
|
2825
2739
|
export type DELETE_DomainsByDomainReferenceTransfer_Response_404 = Problem
|
|
@@ -2836,7 +2750,7 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_404 = Problem
|
|
|
2836
2750
|
*
|
|
2837
2751
|
* @path /v1/domains/{domain_reference}/transfer
|
|
2838
2752
|
*
|
|
2839
|
-
* @see {@link
|
|
2753
|
+
* @see {@link DELETE_DomainsByDomainReferenceTransfer_Response} - The main response type definition
|
|
2840
2754
|
* @see {@link Problem} - The actual schema type definition
|
|
2841
2755
|
*/
|
|
2842
2756
|
export type DELETE_DomainsByDomainReferenceTransfer_Response_409 = Problem
|
|
@@ -2853,7 +2767,7 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_409 = Problem
|
|
|
2853
2767
|
*
|
|
2854
2768
|
* @path /v1/domains/{domain_reference}/transfer
|
|
2855
2769
|
*
|
|
2856
|
-
* @see {@link
|
|
2770
|
+
* @see {@link DELETE_DomainsByDomainReferenceTransfer_Response} - The main response type definition
|
|
2857
2771
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2858
2772
|
*/
|
|
2859
2773
|
export type DELETE_DomainsByDomainReferenceTransfer_Response_422 = HTTPValidationError
|
|
@@ -2880,10 +2794,7 @@ Specify one or more domains to check for availability.
|
|
|
2880
2794
|
*
|
|
2881
2795
|
|
|
2882
2796
|
*/
|
|
2883
|
-
export type
|
|
2884
|
-
200: GET_DomainsCheck_Response_200
|
|
2885
|
-
422: GET_DomainsCheck_Response_422
|
|
2886
|
-
}
|
|
2797
|
+
export type GET_DomainsCheck_Response = GET_DomainsCheck_Response_200 | GET_DomainsCheck_Response_422;
|
|
2887
2798
|
|
|
2888
2799
|
/**
|
|
2889
2800
|
* 200 response for GET DomainsCheck endpoint
|
|
@@ -2900,7 +2811,7 @@ export type GET_DomainsCheck = {
|
|
|
2900
2811
|
Specify one or more domains to check for availability.
|
|
2901
2812
|
|
|
2902
2813
|
*
|
|
2903
|
-
* @see {@link
|
|
2814
|
+
* @see {@link GET_DomainsCheck_Response} - The main response type definition
|
|
2904
2815
|
* @see {@link DomainCheck} - The actual schema type definition
|
|
2905
2816
|
*/
|
|
2906
2817
|
export type GET_DomainsCheck_Response_200 = DomainCheck
|
|
@@ -2920,7 +2831,7 @@ export type GET_DomainsCheck_Response_200 = DomainCheck
|
|
|
2920
2831
|
Specify one or more domains to check for availability.
|
|
2921
2832
|
|
|
2922
2833
|
*
|
|
2923
|
-
* @see {@link
|
|
2834
|
+
* @see {@link GET_DomainsCheck_Response} - The main response type definition
|
|
2924
2835
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2925
2836
|
*/
|
|
2926
2837
|
export type GET_DomainsCheck_Response_422 = HTTPValidationError
|
|
@@ -2944,9 +2855,7 @@ export type GET_DomainsCheck_Response_422 = HTTPValidationError
|
|
|
2944
2855
|
*
|
|
2945
2856
|
|
|
2946
2857
|
*/
|
|
2947
|
-
export type
|
|
2948
|
-
200: GET_DomainsSummary_Response_200
|
|
2949
|
-
}
|
|
2858
|
+
export type GET_DomainsSummary_Response = GET_DomainsSummary_Response_200;
|
|
2950
2859
|
|
|
2951
2860
|
/**
|
|
2952
2861
|
* 200 response for GET DomainsSummary endpoint
|
|
@@ -2960,7 +2869,7 @@ export type GET_DomainsSummary = {
|
|
|
2960
2869
|
*
|
|
2961
2870
|
* @path /v1/domains/summary
|
|
2962
2871
|
*
|
|
2963
|
-
* @see {@link
|
|
2872
|
+
* @see {@link GET_DomainsSummary_Response} - The main response type definition
|
|
2964
2873
|
* @see {@link DomainSummary} - The actual schema type definition
|
|
2965
2874
|
*/
|
|
2966
2875
|
export type GET_DomainsSummary_Response_200 = DomainSummary
|
|
@@ -2990,13 +2899,7 @@ This process can take up to 5 days, until the transfer is approved
|
|
|
2990
2899
|
*
|
|
2991
2900
|
|
|
2992
2901
|
*/
|
|
2993
|
-
export type
|
|
2994
|
-
201: POST_DomainsTransfer_Response_201
|
|
2995
|
-
400: POST_DomainsTransfer_Response_400
|
|
2996
|
-
404: POST_DomainsTransfer_Response_404
|
|
2997
|
-
409: POST_DomainsTransfer_Response_409
|
|
2998
|
-
422: POST_DomainsTransfer_Response_422
|
|
2999
|
-
}
|
|
2902
|
+
export type POST_DomainsTransfer_Response = POST_DomainsTransfer_Response_201 | POST_DomainsTransfer_Response_400 | POST_DomainsTransfer_Response_404 | POST_DomainsTransfer_Response_409 | POST_DomainsTransfer_Response_422;
|
|
3000
2903
|
|
|
3001
2904
|
/**
|
|
3002
2905
|
* 201 response for POST DomainsTransfer endpoint
|
|
@@ -3010,7 +2913,7 @@ export type POST_DomainsTransfer = {
|
|
|
3010
2913
|
*
|
|
3011
2914
|
* @path /v1/domains/transfer
|
|
3012
2915
|
*
|
|
3013
|
-
* @see {@link
|
|
2916
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3014
2917
|
* @see {@link Domain} - The actual schema type definition
|
|
3015
2918
|
*/
|
|
3016
2919
|
export type POST_DomainsTransfer_Response_201 = Domain
|
|
@@ -3027,7 +2930,7 @@ export type POST_DomainsTransfer_Response_201 = Domain
|
|
|
3027
2930
|
*
|
|
3028
2931
|
* @path /v1/domains/transfer
|
|
3029
2932
|
*
|
|
3030
|
-
* @see {@link
|
|
2933
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3031
2934
|
* @see {@link Problem} - The actual schema type definition
|
|
3032
2935
|
*/
|
|
3033
2936
|
export type POST_DomainsTransfer_Response_400 = Problem
|
|
@@ -3044,7 +2947,7 @@ export type POST_DomainsTransfer_Response_400 = Problem
|
|
|
3044
2947
|
*
|
|
3045
2948
|
* @path /v1/domains/transfer
|
|
3046
2949
|
*
|
|
3047
|
-
* @see {@link
|
|
2950
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3048
2951
|
* @see {@link Problem} - The actual schema type definition
|
|
3049
2952
|
*/
|
|
3050
2953
|
export type POST_DomainsTransfer_Response_404 = Problem
|
|
@@ -3061,7 +2964,7 @@ export type POST_DomainsTransfer_Response_404 = Problem
|
|
|
3061
2964
|
*
|
|
3062
2965
|
* @path /v1/domains/transfer
|
|
3063
2966
|
*
|
|
3064
|
-
* @see {@link
|
|
2967
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3065
2968
|
* @see {@link Problem} - The actual schema type definition
|
|
3066
2969
|
*/
|
|
3067
2970
|
export type POST_DomainsTransfer_Response_409 = Problem
|
|
@@ -3078,7 +2981,7 @@ export type POST_DomainsTransfer_Response_409 = Problem
|
|
|
3078
2981
|
*
|
|
3079
2982
|
* @path /v1/domains/transfer
|
|
3080
2983
|
*
|
|
3081
|
-
* @see {@link
|
|
2984
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3082
2985
|
* @see {@link Problem} - The actual schema type definition
|
|
3083
2986
|
*/
|
|
3084
2987
|
export type POST_DomainsTransfer_Response_422 = Problem
|
|
@@ -3105,10 +3008,7 @@ export type POST_DomainsTransfer_Response_422 = Problem
|
|
|
3105
3008
|
*
|
|
3106
3009
|
|
|
3107
3010
|
*/
|
|
3108
|
-
export type
|
|
3109
|
-
200: GET_EmailForwards_Response_200
|
|
3110
|
-
422: GET_EmailForwards_Response_422
|
|
3111
|
-
}
|
|
3011
|
+
export type GET_EmailForwards_Response = GET_EmailForwards_Response_200 | GET_EmailForwards_Response_422;
|
|
3112
3012
|
|
|
3113
3013
|
/**
|
|
3114
3014
|
* 200 response for GET EmailForwards endpoint
|
|
@@ -3125,7 +3025,7 @@ export type GET_EmailForwards = {
|
|
|
3125
3025
|
* @param source_address (query) - Optional source address to filter the results
|
|
3126
3026
|
* @param target_address (query) - Optional target address to filter the results
|
|
3127
3027
|
*
|
|
3128
|
-
* @see {@link
|
|
3028
|
+
* @see {@link GET_EmailForwards_Response} - The main response type definition
|
|
3129
3029
|
* @see {@link Pagination_EmailForward} - The actual schema type definition
|
|
3130
3030
|
*/
|
|
3131
3031
|
export type GET_EmailForwards_Response_200 = Pagination_EmailForward
|
|
@@ -3145,7 +3045,7 @@ export type GET_EmailForwards_Response_200 = Pagination_EmailForward
|
|
|
3145
3045
|
* @param source_address (query) - Optional source address to filter the results
|
|
3146
3046
|
* @param target_address (query) - Optional target address to filter the results
|
|
3147
3047
|
*
|
|
3148
|
-
* @see {@link
|
|
3048
|
+
* @see {@link GET_EmailForwards_Response} - The main response type definition
|
|
3149
3049
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3150
3050
|
*/
|
|
3151
3051
|
export type GET_EmailForwards_Response_422 = HTTPValidationError
|
|
@@ -3169,10 +3069,7 @@ export type GET_EmailForwards_Response_422 = HTTPValidationError
|
|
|
3169
3069
|
*
|
|
3170
3070
|
|
|
3171
3071
|
*/
|
|
3172
|
-
export type
|
|
3173
|
-
201: POST_EmailForwards_Response_201
|
|
3174
|
-
422: POST_EmailForwards_Response_422
|
|
3175
|
-
}
|
|
3072
|
+
export type POST_EmailForwards_Response = POST_EmailForwards_Response_201 | POST_EmailForwards_Response_422;
|
|
3176
3073
|
|
|
3177
3074
|
/**
|
|
3178
3075
|
* 201 response for POST EmailForwards endpoint
|
|
@@ -3186,7 +3083,7 @@ export type POST_EmailForwards = {
|
|
|
3186
3083
|
*
|
|
3187
3084
|
* @path /v1/email-forwards
|
|
3188
3085
|
*
|
|
3189
|
-
* @see {@link
|
|
3086
|
+
* @see {@link POST_EmailForwards_Response} - The main response type definition
|
|
3190
3087
|
* @see {@link EmailForward} - The actual schema type definition
|
|
3191
3088
|
*/
|
|
3192
3089
|
export type POST_EmailForwards_Response_201 = EmailForward
|
|
@@ -3203,7 +3100,7 @@ export type POST_EmailForwards_Response_201 = EmailForward
|
|
|
3203
3100
|
*
|
|
3204
3101
|
* @path /v1/email-forwards
|
|
3205
3102
|
*
|
|
3206
|
-
* @see {@link
|
|
3103
|
+
* @see {@link POST_EmailForwards_Response} - The main response type definition
|
|
3207
3104
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3208
3105
|
*/
|
|
3209
3106
|
export type POST_EmailForwards_Response_422 = HTTPValidationError
|
|
@@ -3227,10 +3124,7 @@ export type POST_EmailForwards_Response_422 = HTTPValidationError
|
|
|
3227
3124
|
*
|
|
3228
3125
|
|
|
3229
3126
|
*/
|
|
3230
|
-
export type
|
|
3231
|
-
200: POST_EmailForwardsBulkDelete_Response_200
|
|
3232
|
-
422: POST_EmailForwardsBulkDelete_Response_422
|
|
3233
|
-
}
|
|
3127
|
+
export type POST_EmailForwardsBulkDelete_Response = POST_EmailForwardsBulkDelete_Response_200 | POST_EmailForwardsBulkDelete_Response_422;
|
|
3234
3128
|
|
|
3235
3129
|
/**
|
|
3236
3130
|
* 200 response for POST EmailForwardsBulkDelete endpoint
|
|
@@ -3244,7 +3138,7 @@ export type POST_EmailForwardsBulkDelete = {
|
|
|
3244
3138
|
*
|
|
3245
3139
|
* @path /v1/email-forwards/bulk-delete
|
|
3246
3140
|
*
|
|
3247
|
-
* @see {@link
|
|
3141
|
+
* @see {@link POST_EmailForwardsBulkDelete_Response} - The main response type definition
|
|
3248
3142
|
* @see {@link EmailForwardBulkDeleteResult} - The actual schema type definition
|
|
3249
3143
|
*/
|
|
3250
3144
|
export type POST_EmailForwardsBulkDelete_Response_200 = EmailForwardBulkDeleteResult
|
|
@@ -3261,7 +3155,7 @@ export type POST_EmailForwardsBulkDelete_Response_200 = EmailForwardBulkDeleteRe
|
|
|
3261
3155
|
*
|
|
3262
3156
|
* @path /v1/email-forwards/bulk-delete
|
|
3263
3157
|
*
|
|
3264
|
-
* @see {@link
|
|
3158
|
+
* @see {@link POST_EmailForwardsBulkDelete_Response} - The main response type definition
|
|
3265
3159
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3266
3160
|
*/
|
|
3267
3161
|
export type POST_EmailForwardsBulkDelete_Response_422 = HTTPValidationError
|
|
@@ -3285,10 +3179,7 @@ export type POST_EmailForwardsBulkDelete_Response_422 = HTTPValidationError
|
|
|
3285
3179
|
*
|
|
3286
3180
|
|
|
3287
3181
|
*/
|
|
3288
|
-
export type
|
|
3289
|
-
200: PATCH_EmailForwardsBulkUpdate_Response_200
|
|
3290
|
-
422: PATCH_EmailForwardsBulkUpdate_Response_422
|
|
3291
|
-
}
|
|
3182
|
+
export type PATCH_EmailForwardsBulkUpdate_Response = PATCH_EmailForwardsBulkUpdate_Response_200 | PATCH_EmailForwardsBulkUpdate_Response_422;
|
|
3292
3183
|
|
|
3293
3184
|
/**
|
|
3294
3185
|
* 200 response for PATCH EmailForwardsBulkUpdate endpoint
|
|
@@ -3302,7 +3193,7 @@ export type PATCH_EmailForwardsBulkUpdate = {
|
|
|
3302
3193
|
*
|
|
3303
3194
|
* @path /v1/email-forwards/bulk-update
|
|
3304
3195
|
*
|
|
3305
|
-
* @see {@link
|
|
3196
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Response} - The main response type definition
|
|
3306
3197
|
* @see {@link EmailForwardBulkUpdateResult} - The actual schema type definition
|
|
3307
3198
|
*/
|
|
3308
3199
|
export type PATCH_EmailForwardsBulkUpdate_Response_200 = EmailForwardBulkUpdateResult
|
|
@@ -3319,7 +3210,7 @@ export type PATCH_EmailForwardsBulkUpdate_Response_200 = EmailForwardBulkUpdateR
|
|
|
3319
3210
|
*
|
|
3320
3211
|
* @path /v1/email-forwards/bulk-update
|
|
3321
3212
|
*
|
|
3322
|
-
* @see {@link
|
|
3213
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Response} - The main response type definition
|
|
3323
3214
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3324
3215
|
*/
|
|
3325
3216
|
export type PATCH_EmailForwardsBulkUpdate_Response_422 = HTTPValidationError
|
|
@@ -3342,9 +3233,7 @@ export type PATCH_EmailForwardsBulkUpdate_Response_422 = HTTPValidationError
|
|
|
3342
3233
|
*
|
|
3343
3234
|
|
|
3344
3235
|
*/
|
|
3345
|
-
export type
|
|
3346
|
-
422: DELETE_EmailForwardsByEmailForwardId_Response_422
|
|
3347
|
-
}
|
|
3236
|
+
export type DELETE_EmailForwardsByEmailForwardId_Response = DELETE_EmailForwardsByEmailForwardId_Response_422;
|
|
3348
3237
|
|
|
3349
3238
|
/**
|
|
3350
3239
|
* 422 response for DELETE EmailForwardsByEmailForwardId endpoint
|
|
@@ -3358,7 +3247,7 @@ export type DELETE_EmailForwardsByEmailForwardId = {
|
|
|
3358
3247
|
*
|
|
3359
3248
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3360
3249
|
*
|
|
3361
|
-
* @see {@link
|
|
3250
|
+
* @see {@link DELETE_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3362
3251
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3363
3252
|
*/
|
|
3364
3253
|
export type DELETE_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
@@ -3382,10 +3271,7 @@ export type DELETE_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationEr
|
|
|
3382
3271
|
*
|
|
3383
3272
|
|
|
3384
3273
|
*/
|
|
3385
|
-
export type
|
|
3386
|
-
200: GET_EmailForwardsByEmailForwardId_Response_200
|
|
3387
|
-
422: GET_EmailForwardsByEmailForwardId_Response_422
|
|
3388
|
-
}
|
|
3274
|
+
export type GET_EmailForwardsByEmailForwardId_Response = GET_EmailForwardsByEmailForwardId_Response_200 | GET_EmailForwardsByEmailForwardId_Response_422;
|
|
3389
3275
|
|
|
3390
3276
|
/**
|
|
3391
3277
|
* 200 response for GET EmailForwardsByEmailForwardId endpoint
|
|
@@ -3399,7 +3285,7 @@ export type GET_EmailForwardsByEmailForwardId = {
|
|
|
3399
3285
|
*
|
|
3400
3286
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3401
3287
|
*
|
|
3402
|
-
* @see {@link
|
|
3288
|
+
* @see {@link GET_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3403
3289
|
* @see {@link EmailForward} - The actual schema type definition
|
|
3404
3290
|
*/
|
|
3405
3291
|
export type GET_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
@@ -3416,7 +3302,7 @@ export type GET_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
|
3416
3302
|
*
|
|
3417
3303
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3418
3304
|
*
|
|
3419
|
-
* @see {@link
|
|
3305
|
+
* @see {@link GET_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3420
3306
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3421
3307
|
*/
|
|
3422
3308
|
export type GET_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
@@ -3440,10 +3326,7 @@ export type GET_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
|
3440
3326
|
*
|
|
3441
3327
|
|
|
3442
3328
|
*/
|
|
3443
|
-
export type
|
|
3444
|
-
200: PATCH_EmailForwardsByEmailForwardId_Response_200
|
|
3445
|
-
422: PATCH_EmailForwardsByEmailForwardId_Response_422
|
|
3446
|
-
}
|
|
3329
|
+
export type PATCH_EmailForwardsByEmailForwardId_Response = PATCH_EmailForwardsByEmailForwardId_Response_200 | PATCH_EmailForwardsByEmailForwardId_Response_422;
|
|
3447
3330
|
|
|
3448
3331
|
/**
|
|
3449
3332
|
* 200 response for PATCH EmailForwardsByEmailForwardId endpoint
|
|
@@ -3457,7 +3340,7 @@ export type PATCH_EmailForwardsByEmailForwardId = {
|
|
|
3457
3340
|
*
|
|
3458
3341
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3459
3342
|
*
|
|
3460
|
-
* @see {@link
|
|
3343
|
+
* @see {@link PATCH_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3461
3344
|
* @see {@link EmailForward} - The actual schema type definition
|
|
3462
3345
|
*/
|
|
3463
3346
|
export type PATCH_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
@@ -3474,7 +3357,7 @@ export type PATCH_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
|
3474
3357
|
*
|
|
3475
3358
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3476
3359
|
*
|
|
3477
|
-
* @see {@link
|
|
3360
|
+
* @see {@link PATCH_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3478
3361
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3479
3362
|
*/
|
|
3480
3363
|
export type PATCH_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
@@ -3499,11 +3382,7 @@ export type PATCH_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationErr
|
|
|
3499
3382
|
*
|
|
3500
3383
|
|
|
3501
3384
|
*/
|
|
3502
|
-
export type
|
|
3503
|
-
200: GET_Event_Response_200
|
|
3504
|
-
401: GET_Event_Response_401
|
|
3505
|
-
422: GET_Event_Response_422
|
|
3506
|
-
}
|
|
3385
|
+
export type GET_Event_Response = GET_Event_Response_200 | GET_Event_Response_401 | GET_Event_Response_422;
|
|
3507
3386
|
|
|
3508
3387
|
/**
|
|
3509
3388
|
* 200 response for GET Event endpoint
|
|
@@ -3517,7 +3396,7 @@ export type GET_Event = {
|
|
|
3517
3396
|
*
|
|
3518
3397
|
* @path /v1/event
|
|
3519
3398
|
*
|
|
3520
|
-
* @see {@link
|
|
3399
|
+
* @see {@link GET_Event_Response} - The main response type definition
|
|
3521
3400
|
* @see {@link Pagination_Event} - The actual schema type definition
|
|
3522
3401
|
*/
|
|
3523
3402
|
export type GET_Event_Response_200 = Pagination_Event
|
|
@@ -3534,7 +3413,7 @@ export type GET_Event_Response_200 = Pagination_Event
|
|
|
3534
3413
|
*
|
|
3535
3414
|
* @path /v1/event
|
|
3536
3415
|
*
|
|
3537
|
-
* @see {@link
|
|
3416
|
+
* @see {@link GET_Event_Response} - The main response type definition
|
|
3538
3417
|
* @see {@link Problem} - The actual schema type definition
|
|
3539
3418
|
*/
|
|
3540
3419
|
export type GET_Event_Response_401 = Problem
|
|
@@ -3551,7 +3430,7 @@ export type GET_Event_Response_401 = Problem
|
|
|
3551
3430
|
*
|
|
3552
3431
|
* @path /v1/event
|
|
3553
3432
|
*
|
|
3554
|
-
* @see {@link
|
|
3433
|
+
* @see {@link GET_Event_Response} - The main response type definition
|
|
3555
3434
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3556
3435
|
*/
|
|
3557
3436
|
export type GET_Event_Response_422 = HTTPValidationError
|
|
@@ -3577,12 +3456,7 @@ export type GET_Event_Response_422 = HTTPValidationError
|
|
|
3577
3456
|
*
|
|
3578
3457
|
|
|
3579
3458
|
*/
|
|
3580
|
-
export type
|
|
3581
|
-
200: GET_EventByEventId_Response_200
|
|
3582
|
-
401: GET_EventByEventId_Response_401
|
|
3583
|
-
404: GET_EventByEventId_Response_404
|
|
3584
|
-
422: GET_EventByEventId_Response_422
|
|
3585
|
-
}
|
|
3459
|
+
export type GET_EventByEventId_Response = GET_EventByEventId_Response_200 | GET_EventByEventId_Response_401 | GET_EventByEventId_Response_404 | GET_EventByEventId_Response_422;
|
|
3586
3460
|
|
|
3587
3461
|
/**
|
|
3588
3462
|
* 200 response for GET EventByEventId endpoint
|
|
@@ -3596,7 +3470,7 @@ export type GET_EventByEventId = {
|
|
|
3596
3470
|
*
|
|
3597
3471
|
* @path /v1/event/{event_id}
|
|
3598
3472
|
*
|
|
3599
|
-
* @see {@link
|
|
3473
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3600
3474
|
* @see {@link EventSchema} - The actual schema type definition
|
|
3601
3475
|
*/
|
|
3602
3476
|
export type GET_EventByEventId_Response_200 = EventSchema
|
|
@@ -3613,7 +3487,7 @@ export type GET_EventByEventId_Response_200 = EventSchema
|
|
|
3613
3487
|
*
|
|
3614
3488
|
* @path /v1/event/{event_id}
|
|
3615
3489
|
*
|
|
3616
|
-
* @see {@link
|
|
3490
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3617
3491
|
* @see {@link Problem} - The actual schema type definition
|
|
3618
3492
|
*/
|
|
3619
3493
|
export type GET_EventByEventId_Response_401 = Problem
|
|
@@ -3630,7 +3504,7 @@ export type GET_EventByEventId_Response_401 = Problem
|
|
|
3630
3504
|
*
|
|
3631
3505
|
* @path /v1/event/{event_id}
|
|
3632
3506
|
*
|
|
3633
|
-
* @see {@link
|
|
3507
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3634
3508
|
* @see {@link Problem} - The actual schema type definition
|
|
3635
3509
|
*/
|
|
3636
3510
|
export type GET_EventByEventId_Response_404 = Problem
|
|
@@ -3647,7 +3521,7 @@ export type GET_EventByEventId_Response_404 = Problem
|
|
|
3647
3521
|
*
|
|
3648
3522
|
* @path /v1/event/{event_id}
|
|
3649
3523
|
*
|
|
3650
|
-
* @see {@link
|
|
3524
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3651
3525
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3652
3526
|
*/
|
|
3653
3527
|
export type GET_EventByEventId_Response_422 = HTTPValidationError
|
|
@@ -3672,11 +3546,7 @@ export type GET_EventByEventId_Response_422 = HTTPValidationError
|
|
|
3672
3546
|
*
|
|
3673
3547
|
|
|
3674
3548
|
*/
|
|
3675
|
-
export type
|
|
3676
|
-
401: PATCH_EventByEventId_Response_401
|
|
3677
|
-
404: PATCH_EventByEventId_Response_404
|
|
3678
|
-
422: PATCH_EventByEventId_Response_422
|
|
3679
|
-
}
|
|
3549
|
+
export type PATCH_EventByEventId_Response = PATCH_EventByEventId_Response_401 | PATCH_EventByEventId_Response_404 | PATCH_EventByEventId_Response_422;
|
|
3680
3550
|
|
|
3681
3551
|
/**
|
|
3682
3552
|
* 401 response for PATCH EventByEventId endpoint
|
|
@@ -3690,7 +3560,7 @@ export type PATCH_EventByEventId = {
|
|
|
3690
3560
|
*
|
|
3691
3561
|
* @path /v1/event/{event_id}
|
|
3692
3562
|
*
|
|
3693
|
-
* @see {@link
|
|
3563
|
+
* @see {@link PATCH_EventByEventId_Response} - The main response type definition
|
|
3694
3564
|
* @see {@link Problem} - The actual schema type definition
|
|
3695
3565
|
*/
|
|
3696
3566
|
export type PATCH_EventByEventId_Response_401 = Problem
|
|
@@ -3707,7 +3577,7 @@ export type PATCH_EventByEventId_Response_401 = Problem
|
|
|
3707
3577
|
*
|
|
3708
3578
|
* @path /v1/event/{event_id}
|
|
3709
3579
|
*
|
|
3710
|
-
* @see {@link
|
|
3580
|
+
* @see {@link PATCH_EventByEventId_Response} - The main response type definition
|
|
3711
3581
|
* @see {@link Problem} - The actual schema type definition
|
|
3712
3582
|
*/
|
|
3713
3583
|
export type PATCH_EventByEventId_Response_404 = Problem
|
|
@@ -3724,7 +3594,7 @@ export type PATCH_EventByEventId_Response_404 = Problem
|
|
|
3724
3594
|
*
|
|
3725
3595
|
* @path /v1/event/{event_id}
|
|
3726
3596
|
*
|
|
3727
|
-
* @see {@link
|
|
3597
|
+
* @see {@link PATCH_EventByEventId_Response} - The main response type definition
|
|
3728
3598
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3729
3599
|
*/
|
|
3730
3600
|
export type PATCH_EventByEventId_Response_422 = HTTPValidationError
|
|
@@ -3748,10 +3618,7 @@ export type PATCH_EventByEventId_Response_422 = HTTPValidationError
|
|
|
3748
3618
|
*
|
|
3749
3619
|
|
|
3750
3620
|
*/
|
|
3751
|
-
export type
|
|
3752
|
-
200: GET_Notifications_Response_200
|
|
3753
|
-
422: GET_Notifications_Response_422
|
|
3754
|
-
}
|
|
3621
|
+
export type GET_Notifications_Response = GET_Notifications_Response_200 | GET_Notifications_Response_422;
|
|
3755
3622
|
|
|
3756
3623
|
/**
|
|
3757
3624
|
* 200 response for GET Notifications endpoint
|
|
@@ -3765,7 +3632,7 @@ export type GET_Notifications = {
|
|
|
3765
3632
|
*
|
|
3766
3633
|
* @path /v1/notifications
|
|
3767
3634
|
*
|
|
3768
|
-
* @see {@link
|
|
3635
|
+
* @see {@link GET_Notifications_Response} - The main response type definition
|
|
3769
3636
|
* @see {@link Pagination_UserNotificationSummary} - The actual schema type definition
|
|
3770
3637
|
*/
|
|
3771
3638
|
export type GET_Notifications_Response_200 = Pagination_UserNotificationSummary
|
|
@@ -3782,7 +3649,7 @@ export type GET_Notifications_Response_200 = Pagination_UserNotificationSummary
|
|
|
3782
3649
|
*
|
|
3783
3650
|
* @path /v1/notifications
|
|
3784
3651
|
*
|
|
3785
|
-
* @see {@link
|
|
3652
|
+
* @see {@link GET_Notifications_Response} - The main response type definition
|
|
3786
3653
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3787
3654
|
*/
|
|
3788
3655
|
export type GET_Notifications_Response_422 = HTTPValidationError
|
|
@@ -3806,10 +3673,7 @@ export type GET_Notifications_Response_422 = HTTPValidationError
|
|
|
3806
3673
|
*
|
|
3807
3674
|
|
|
3808
3675
|
*/
|
|
3809
|
-
export type
|
|
3810
|
-
201: POST_Notifications_Response_201
|
|
3811
|
-
422: POST_Notifications_Response_422
|
|
3812
|
-
}
|
|
3676
|
+
export type POST_Notifications_Response = POST_Notifications_Response_201 | POST_Notifications_Response_422;
|
|
3813
3677
|
|
|
3814
3678
|
/**
|
|
3815
3679
|
* 201 response for POST Notifications endpoint
|
|
@@ -3823,7 +3687,7 @@ export type POST_Notifications = {
|
|
|
3823
3687
|
*
|
|
3824
3688
|
* @path /v1/notifications
|
|
3825
3689
|
*
|
|
3826
|
-
* @see {@link
|
|
3690
|
+
* @see {@link POST_Notifications_Response} - The main response type definition
|
|
3827
3691
|
* @see {@link Notification} - The actual schema type definition
|
|
3828
3692
|
*/
|
|
3829
3693
|
export type POST_Notifications_Response_201 = Notification
|
|
@@ -3840,7 +3704,7 @@ export type POST_Notifications_Response_201 = Notification
|
|
|
3840
3704
|
*
|
|
3841
3705
|
* @path /v1/notifications
|
|
3842
3706
|
*
|
|
3843
|
-
* @see {@link
|
|
3707
|
+
* @see {@link POST_Notifications_Response} - The main response type definition
|
|
3844
3708
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3845
3709
|
*/
|
|
3846
3710
|
export type POST_Notifications_Response_422 = HTTPValidationError
|
|
@@ -3863,9 +3727,7 @@ export type POST_Notifications_Response_422 = HTTPValidationError
|
|
|
3863
3727
|
*
|
|
3864
3728
|
|
|
3865
3729
|
*/
|
|
3866
|
-
export type
|
|
3867
|
-
422: DELETE_NotificationsByNotificationId_Response_422
|
|
3868
|
-
}
|
|
3730
|
+
export type DELETE_NotificationsByNotificationId_Response = DELETE_NotificationsByNotificationId_Response_422;
|
|
3869
3731
|
|
|
3870
3732
|
/**
|
|
3871
3733
|
* 422 response for DELETE NotificationsByNotificationId endpoint
|
|
@@ -3879,7 +3741,7 @@ export type DELETE_NotificationsByNotificationId = {
|
|
|
3879
3741
|
*
|
|
3880
3742
|
* @path /v1/notifications/{notification_id}
|
|
3881
3743
|
*
|
|
3882
|
-
* @see {@link
|
|
3744
|
+
* @see {@link DELETE_NotificationsByNotificationId_Response} - The main response type definition
|
|
3883
3745
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3884
3746
|
*/
|
|
3885
3747
|
export type DELETE_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
@@ -3903,10 +3765,7 @@ export type DELETE_NotificationsByNotificationId_Response_422 = HTTPValidationEr
|
|
|
3903
3765
|
*
|
|
3904
3766
|
|
|
3905
3767
|
*/
|
|
3906
|
-
export type
|
|
3907
|
-
200: GET_NotificationsByNotificationId_Response_200
|
|
3908
|
-
422: GET_NotificationsByNotificationId_Response_422
|
|
3909
|
-
}
|
|
3768
|
+
export type GET_NotificationsByNotificationId_Response = GET_NotificationsByNotificationId_Response_200 | GET_NotificationsByNotificationId_Response_422;
|
|
3910
3769
|
|
|
3911
3770
|
/**
|
|
3912
3771
|
* 200 response for GET NotificationsByNotificationId endpoint
|
|
@@ -3920,7 +3779,7 @@ export type GET_NotificationsByNotificationId = {
|
|
|
3920
3779
|
*
|
|
3921
3780
|
* @path /v1/notifications/{notification_id}
|
|
3922
3781
|
*
|
|
3923
|
-
* @see {@link
|
|
3782
|
+
* @see {@link GET_NotificationsByNotificationId_Response} - The main response type definition
|
|
3924
3783
|
* @see {@link UserNotification} - The actual schema type definition
|
|
3925
3784
|
*/
|
|
3926
3785
|
export type GET_NotificationsByNotificationId_Response_200 = UserNotification
|
|
@@ -3937,7 +3796,7 @@ export type GET_NotificationsByNotificationId_Response_200 = UserNotification
|
|
|
3937
3796
|
*
|
|
3938
3797
|
* @path /v1/notifications/{notification_id}
|
|
3939
3798
|
*
|
|
3940
|
-
* @see {@link
|
|
3799
|
+
* @see {@link GET_NotificationsByNotificationId_Response} - The main response type definition
|
|
3941
3800
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3942
3801
|
*/
|
|
3943
3802
|
export type GET_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
@@ -3961,10 +3820,7 @@ export type GET_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
|
3961
3820
|
*
|
|
3962
3821
|
|
|
3963
3822
|
*/
|
|
3964
|
-
export type
|
|
3965
|
-
200: PUT_NotificationsByNotificationId_Response_200
|
|
3966
|
-
422: PUT_NotificationsByNotificationId_Response_422
|
|
3967
|
-
}
|
|
3823
|
+
export type PUT_NotificationsByNotificationId_Response = PUT_NotificationsByNotificationId_Response_200 | PUT_NotificationsByNotificationId_Response_422;
|
|
3968
3824
|
|
|
3969
3825
|
/**
|
|
3970
3826
|
* 200 response for PUT NotificationsByNotificationId endpoint
|
|
@@ -3978,7 +3834,7 @@ export type PUT_NotificationsByNotificationId = {
|
|
|
3978
3834
|
*
|
|
3979
3835
|
* @path /v1/notifications/{notification_id}
|
|
3980
3836
|
*
|
|
3981
|
-
* @see {@link
|
|
3837
|
+
* @see {@link PUT_NotificationsByNotificationId_Response} - The main response type definition
|
|
3982
3838
|
* @see {@link Notification} - The actual schema type definition
|
|
3983
3839
|
*/
|
|
3984
3840
|
export type PUT_NotificationsByNotificationId_Response_200 = Notification
|
|
@@ -3995,7 +3851,7 @@ export type PUT_NotificationsByNotificationId_Response_200 = Notification
|
|
|
3995
3851
|
*
|
|
3996
3852
|
* @path /v1/notifications/{notification_id}
|
|
3997
3853
|
*
|
|
3998
|
-
* @see {@link
|
|
3854
|
+
* @see {@link PUT_NotificationsByNotificationId_Response} - The main response type definition
|
|
3999
3855
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4000
3856
|
*/
|
|
4001
3857
|
export type PUT_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
@@ -4018,9 +3874,7 @@ export type PUT_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
|
4018
3874
|
*
|
|
4019
3875
|
|
|
4020
3876
|
*/
|
|
4021
|
-
export type
|
|
4022
|
-
422: PATCH_NotificationsByNotificationIdRead_Response_422
|
|
4023
|
-
}
|
|
3877
|
+
export type PATCH_NotificationsByNotificationIdRead_Response = PATCH_NotificationsByNotificationIdRead_Response_422;
|
|
4024
3878
|
|
|
4025
3879
|
/**
|
|
4026
3880
|
* 422 response for PATCH NotificationsByNotificationIdRead endpoint
|
|
@@ -4034,7 +3888,7 @@ export type PATCH_NotificationsByNotificationIdRead = {
|
|
|
4034
3888
|
*
|
|
4035
3889
|
* @path /v1/notifications/{notification_id}/read
|
|
4036
3890
|
*
|
|
4037
|
-
* @see {@link
|
|
3891
|
+
* @see {@link PATCH_NotificationsByNotificationIdRead_Response} - The main response type definition
|
|
4038
3892
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4039
3893
|
*/
|
|
4040
3894
|
export type PATCH_NotificationsByNotificationIdRead_Response_422 = HTTPValidationError
|
|
@@ -4058,10 +3912,7 @@ export type PATCH_NotificationsByNotificationIdRead_Response_422 = HTTPValidatio
|
|
|
4058
3912
|
*
|
|
4059
3913
|
|
|
4060
3914
|
*/
|
|
4061
|
-
export type
|
|
4062
|
-
200: GET_Organizations_Response_200
|
|
4063
|
-
422: GET_Organizations_Response_422
|
|
4064
|
-
}
|
|
3915
|
+
export type GET_Organizations_Response = GET_Organizations_Response_200 | GET_Organizations_Response_422;
|
|
4065
3916
|
|
|
4066
3917
|
/**
|
|
4067
3918
|
* 200 response for GET Organizations endpoint
|
|
@@ -4075,7 +3926,7 @@ export type GET_Organizations = {
|
|
|
4075
3926
|
*
|
|
4076
3927
|
* @path /v1/organizations
|
|
4077
3928
|
*
|
|
4078
|
-
* @see {@link
|
|
3929
|
+
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
4079
3930
|
* @see {@link Pagination_Organization} - The actual schema type definition
|
|
4080
3931
|
*/
|
|
4081
3932
|
export type GET_Organizations_Response_200 = Pagination_Organization
|
|
@@ -4092,7 +3943,7 @@ export type GET_Organizations_Response_200 = Pagination_Organization
|
|
|
4092
3943
|
*
|
|
4093
3944
|
* @path /v1/organizations
|
|
4094
3945
|
*
|
|
4095
|
-
* @see {@link
|
|
3946
|
+
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
4096
3947
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4097
3948
|
*/
|
|
4098
3949
|
export type GET_Organizations_Response_422 = HTTPValidationError
|
|
@@ -4116,10 +3967,7 @@ export type GET_Organizations_Response_422 = HTTPValidationError
|
|
|
4116
3967
|
*
|
|
4117
3968
|
|
|
4118
3969
|
*/
|
|
4119
|
-
export type
|
|
4120
|
-
200: POST_Organizations_Response_200
|
|
4121
|
-
422: POST_Organizations_Response_422
|
|
4122
|
-
}
|
|
3970
|
+
export type POST_Organizations_Response = POST_Organizations_Response_200 | POST_Organizations_Response_422;
|
|
4123
3971
|
|
|
4124
3972
|
/**
|
|
4125
3973
|
* 200 response for POST Organizations endpoint
|
|
@@ -4133,7 +3981,7 @@ export type POST_Organizations = {
|
|
|
4133
3981
|
*
|
|
4134
3982
|
* @path /v1/organizations
|
|
4135
3983
|
*
|
|
4136
|
-
* @see {@link
|
|
3984
|
+
* @see {@link POST_Organizations_Response} - The main response type definition
|
|
4137
3985
|
* @see {@link Organization} - The actual schema type definition
|
|
4138
3986
|
*/
|
|
4139
3987
|
export type POST_Organizations_Response_200 = Organization
|
|
@@ -4150,7 +3998,7 @@ export type POST_Organizations_Response_200 = Organization
|
|
|
4150
3998
|
*
|
|
4151
3999
|
* @path /v1/organizations
|
|
4152
4000
|
*
|
|
4153
|
-
* @see {@link
|
|
4001
|
+
* @see {@link POST_Organizations_Response} - The main response type definition
|
|
4154
4002
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4155
4003
|
*/
|
|
4156
4004
|
export type POST_Organizations_Response_422 = HTTPValidationError
|
|
@@ -4175,10 +4023,7 @@ export type POST_Organizations_Response_422 = HTTPValidationError
|
|
|
4175
4023
|
*
|
|
4176
4024
|
|
|
4177
4025
|
*/
|
|
4178
|
-
export type
|
|
4179
|
-
200: GET_OrganizationsAttributes_Response_200
|
|
4180
|
-
422: GET_OrganizationsAttributes_Response_422
|
|
4181
|
-
}
|
|
4026
|
+
export type GET_OrganizationsAttributes_Response = GET_OrganizationsAttributes_Response_200 | GET_OrganizationsAttributes_Response_422;
|
|
4182
4027
|
|
|
4183
4028
|
/**
|
|
4184
4029
|
* 200 response for GET OrganizationsAttributes endpoint
|
|
@@ -4193,7 +4038,7 @@ export type GET_OrganizationsAttributes = {
|
|
|
4193
4038
|
* @path /v1/organizations/attributes
|
|
4194
4039
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4195
4040
|
*
|
|
4196
|
-
* @see {@link
|
|
4041
|
+
* @see {@link GET_OrganizationsAttributes_Response} - The main response type definition
|
|
4197
4042
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4198
4043
|
*/
|
|
4199
4044
|
export type GET_OrganizationsAttributes_Response_200 = OrganizationAttribute2Array
|
|
@@ -4211,7 +4056,7 @@ export type GET_OrganizationsAttributes_Response_200 = OrganizationAttribute2Arr
|
|
|
4211
4056
|
* @path /v1/organizations/attributes
|
|
4212
4057
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4213
4058
|
*
|
|
4214
|
-
* @see {@link
|
|
4059
|
+
* @see {@link GET_OrganizationsAttributes_Response} - The main response type definition
|
|
4215
4060
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4216
4061
|
*/
|
|
4217
4062
|
export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
@@ -4235,10 +4080,7 @@ export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4235
4080
|
*
|
|
4236
4081
|
|
|
4237
4082
|
*/
|
|
4238
|
-
export type
|
|
4239
|
-
200: PATCH_OrganizationsAttributes_Response_200
|
|
4240
|
-
422: PATCH_OrganizationsAttributes_Response_422
|
|
4241
|
-
}
|
|
4083
|
+
export type PATCH_OrganizationsAttributes_Response = PATCH_OrganizationsAttributes_Response_200 | PATCH_OrganizationsAttributes_Response_422;
|
|
4242
4084
|
|
|
4243
4085
|
/**
|
|
4244
4086
|
* 200 response for PATCH OrganizationsAttributes endpoint
|
|
@@ -4252,7 +4094,7 @@ export type PATCH_OrganizationsAttributes = {
|
|
|
4252
4094
|
*
|
|
4253
4095
|
* @path /v1/organizations/attributes
|
|
4254
4096
|
*
|
|
4255
|
-
* @see {@link
|
|
4097
|
+
* @see {@link PATCH_OrganizationsAttributes_Response} - The main response type definition
|
|
4256
4098
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4257
4099
|
*/
|
|
4258
4100
|
export type PATCH_OrganizationsAttributes_Response_200 = OrganizationAttribute2Array
|
|
@@ -4269,7 +4111,7 @@ export type PATCH_OrganizationsAttributes_Response_200 = OrganizationAttribute2A
|
|
|
4269
4111
|
*
|
|
4270
4112
|
* @path /v1/organizations/attributes
|
|
4271
4113
|
*
|
|
4272
|
-
* @see {@link
|
|
4114
|
+
* @see {@link PATCH_OrganizationsAttributes_Response} - The main response type definition
|
|
4273
4115
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4274
4116
|
*/
|
|
4275
4117
|
export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
@@ -4294,10 +4136,7 @@ export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4294
4136
|
*
|
|
4295
4137
|
|
|
4296
4138
|
*/
|
|
4297
|
-
export type
|
|
4298
|
-
200: GET_OrganizationsAttributesByOrganizationId_Response_200
|
|
4299
|
-
422: GET_OrganizationsAttributesByOrganizationId_Response_422
|
|
4300
|
-
}
|
|
4139
|
+
export type GET_OrganizationsAttributesByOrganizationId_Response = GET_OrganizationsAttributesByOrganizationId_Response_200 | GET_OrganizationsAttributesByOrganizationId_Response_422;
|
|
4301
4140
|
|
|
4302
4141
|
/**
|
|
4303
4142
|
* 200 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
@@ -4312,7 +4151,7 @@ export type GET_OrganizationsAttributesByOrganizationId = {
|
|
|
4312
4151
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4313
4152
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4314
4153
|
*
|
|
4315
|
-
* @see {@link
|
|
4154
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4316
4155
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4317
4156
|
*/
|
|
4318
4157
|
export type GET_OrganizationsAttributesByOrganizationId_Response_200 = OrganizationAttribute2Array
|
|
@@ -4330,7 +4169,7 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_200 = Organizat
|
|
|
4330
4169
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4331
4170
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4332
4171
|
*
|
|
4333
|
-
* @see {@link
|
|
4172
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4334
4173
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4335
4174
|
*/
|
|
4336
4175
|
export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4354,10 +4193,7 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValid
|
|
|
4354
4193
|
*
|
|
4355
4194
|
|
|
4356
4195
|
*/
|
|
4357
|
-
export type
|
|
4358
|
-
200: PATCH_OrganizationsAttributesByOrganizationId_Response_200
|
|
4359
|
-
422: PATCH_OrganizationsAttributesByOrganizationId_Response_422
|
|
4360
|
-
}
|
|
4196
|
+
export type PATCH_OrganizationsAttributesByOrganizationId_Response = PATCH_OrganizationsAttributesByOrganizationId_Response_200 | PATCH_OrganizationsAttributesByOrganizationId_Response_422;
|
|
4361
4197
|
|
|
4362
4198
|
/**
|
|
4363
4199
|
* 200 response for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
@@ -4371,7 +4207,7 @@ export type PATCH_OrganizationsAttributesByOrganizationId = {
|
|
|
4371
4207
|
*
|
|
4372
4208
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4373
4209
|
*
|
|
4374
|
-
* @see {@link
|
|
4210
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4375
4211
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4376
4212
|
*/
|
|
4377
4213
|
export type PATCH_OrganizationsAttributesByOrganizationId_Response_200 = OrganizationAttribute2Array
|
|
@@ -4388,7 +4224,7 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_200 = Organiz
|
|
|
4388
4224
|
*
|
|
4389
4225
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4390
4226
|
*
|
|
4391
|
-
* @see {@link
|
|
4227
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4392
4228
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4393
4229
|
*/
|
|
4394
4230
|
export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4411,9 +4247,7 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPVal
|
|
|
4411
4247
|
*
|
|
4412
4248
|
|
|
4413
4249
|
*/
|
|
4414
|
-
export type
|
|
4415
|
-
422: DELETE_OrganizationsByOrganizationId_Response_422
|
|
4416
|
-
}
|
|
4250
|
+
export type DELETE_OrganizationsByOrganizationId_Response = DELETE_OrganizationsByOrganizationId_Response_422;
|
|
4417
4251
|
|
|
4418
4252
|
/**
|
|
4419
4253
|
* 422 response for DELETE OrganizationsByOrganizationId endpoint
|
|
@@ -4427,7 +4261,7 @@ export type DELETE_OrganizationsByOrganizationId = {
|
|
|
4427
4261
|
*
|
|
4428
4262
|
* @path /v1/organizations/{organization_id}
|
|
4429
4263
|
*
|
|
4430
|
-
* @see {@link
|
|
4264
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4431
4265
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4432
4266
|
*/
|
|
4433
4267
|
export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4451,10 +4285,7 @@ export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationEr
|
|
|
4451
4285
|
*
|
|
4452
4286
|
|
|
4453
4287
|
*/
|
|
4454
|
-
export type
|
|
4455
|
-
200: GET_OrganizationsByOrganizationId_Response_200
|
|
4456
|
-
422: GET_OrganizationsByOrganizationId_Response_422
|
|
4457
|
-
}
|
|
4288
|
+
export type GET_OrganizationsByOrganizationId_Response = GET_OrganizationsByOrganizationId_Response_200 | GET_OrganizationsByOrganizationId_Response_422;
|
|
4458
4289
|
|
|
4459
4290
|
/**
|
|
4460
4291
|
* 200 response for GET OrganizationsByOrganizationId endpoint
|
|
@@ -4468,7 +4299,7 @@ export type GET_OrganizationsByOrganizationId = {
|
|
|
4468
4299
|
*
|
|
4469
4300
|
* @path /v1/organizations/{organization_id}
|
|
4470
4301
|
*
|
|
4471
|
-
* @see {@link
|
|
4302
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4472
4303
|
* @see {@link OrganizationWithPlan} - The actual schema type definition
|
|
4473
4304
|
*/
|
|
4474
4305
|
export type GET_OrganizationsByOrganizationId_Response_200 = OrganizationWithPlan
|
|
@@ -4485,7 +4316,7 @@ export type GET_OrganizationsByOrganizationId_Response_200 = OrganizationWithPla
|
|
|
4485
4316
|
*
|
|
4486
4317
|
* @path /v1/organizations/{organization_id}
|
|
4487
4318
|
*
|
|
4488
|
-
* @see {@link
|
|
4319
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4489
4320
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4490
4321
|
*/
|
|
4491
4322
|
export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4509,10 +4340,7 @@ export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
|
4509
4340
|
*
|
|
4510
4341
|
|
|
4511
4342
|
*/
|
|
4512
|
-
export type
|
|
4513
|
-
200: PATCH_OrganizationsByOrganizationId_Response_200
|
|
4514
|
-
422: PATCH_OrganizationsByOrganizationId_Response_422
|
|
4515
|
-
}
|
|
4343
|
+
export type PATCH_OrganizationsByOrganizationId_Response = PATCH_OrganizationsByOrganizationId_Response_200 | PATCH_OrganizationsByOrganizationId_Response_422;
|
|
4516
4344
|
|
|
4517
4345
|
/**
|
|
4518
4346
|
* 200 response for PATCH OrganizationsByOrganizationId endpoint
|
|
@@ -4526,7 +4354,7 @@ export type PATCH_OrganizationsByOrganizationId = {
|
|
|
4526
4354
|
*
|
|
4527
4355
|
* @path /v1/organizations/{organization_id}
|
|
4528
4356
|
*
|
|
4529
|
-
* @see {@link
|
|
4357
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4530
4358
|
* @see {@link Organization} - The actual schema type definition
|
|
4531
4359
|
*/
|
|
4532
4360
|
export type PATCH_OrganizationsByOrganizationId_Response_200 = Organization
|
|
@@ -4543,7 +4371,7 @@ export type PATCH_OrganizationsByOrganizationId_Response_200 = Organization
|
|
|
4543
4371
|
*
|
|
4544
4372
|
* @path /v1/organizations/{organization_id}
|
|
4545
4373
|
*
|
|
4546
|
-
* @see {@link
|
|
4374
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4547
4375
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4548
4376
|
*/
|
|
4549
4377
|
export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4567,10 +4395,7 @@ export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationErr
|
|
|
4567
4395
|
*
|
|
4568
4396
|
|
|
4569
4397
|
*/
|
|
4570
|
-
export type
|
|
4571
|
-
200: PATCH_OrganizationsByOrganizationIdPlan_Response_200
|
|
4572
|
-
422: PATCH_OrganizationsByOrganizationIdPlan_Response_422
|
|
4573
|
-
}
|
|
4398
|
+
export type PATCH_OrganizationsByOrganizationIdPlan_Response = PATCH_OrganizationsByOrganizationIdPlan_Response_200 | PATCH_OrganizationsByOrganizationIdPlan_Response_422;
|
|
4574
4399
|
|
|
4575
4400
|
/**
|
|
4576
4401
|
* 200 response for PATCH OrganizationsByOrganizationIdPlan endpoint
|
|
@@ -4584,7 +4409,7 @@ export type PATCH_OrganizationsByOrganizationIdPlan = {
|
|
|
4584
4409
|
*
|
|
4585
4410
|
* @path /v1/organizations/{organization_id}/plan
|
|
4586
4411
|
*
|
|
4587
|
-
* @see {@link
|
|
4412
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdPlan_Response} - The main response type definition
|
|
4588
4413
|
* @see {@link OrganizationWithPlan} - The actual schema type definition
|
|
4589
4414
|
*/
|
|
4590
4415
|
export type PATCH_OrganizationsByOrganizationIdPlan_Response_200 = OrganizationWithPlan
|
|
@@ -4601,7 +4426,7 @@ export type PATCH_OrganizationsByOrganizationIdPlan_Response_200 = OrganizationW
|
|
|
4601
4426
|
*
|
|
4602
4427
|
* @path /v1/organizations/{organization_id}/plan
|
|
4603
4428
|
*
|
|
4604
|
-
* @see {@link
|
|
4429
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdPlan_Response} - The main response type definition
|
|
4605
4430
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4606
4431
|
*/
|
|
4607
4432
|
export type PATCH_OrganizationsByOrganizationIdPlan_Response_422 = HTTPValidationError
|
|
@@ -4625,9 +4450,7 @@ export type PATCH_OrganizationsByOrganizationIdPlan_Response_422 = HTTPValidatio
|
|
|
4625
4450
|
*
|
|
4626
4451
|
|
|
4627
4452
|
*/
|
|
4628
|
-
export type
|
|
4629
|
-
200: GET_OrganizationsIpRestrictions_Response_200
|
|
4630
|
-
}
|
|
4453
|
+
export type GET_OrganizationsIpRestrictions_Response = GET_OrganizationsIpRestrictions_Response_200;
|
|
4631
4454
|
|
|
4632
4455
|
/**
|
|
4633
4456
|
* 200 response for GET OrganizationsIpRestrictions endpoint
|
|
@@ -4641,7 +4464,7 @@ export type GET_OrganizationsIpRestrictions = {
|
|
|
4641
4464
|
*
|
|
4642
4465
|
* @path /v1/organizations/ip-restrictions
|
|
4643
4466
|
*
|
|
4644
|
-
* @see {@link
|
|
4467
|
+
* @see {@link GET_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4645
4468
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4646
4469
|
*/
|
|
4647
4470
|
export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
@@ -4666,10 +4489,7 @@ export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
|
4666
4489
|
*
|
|
4667
4490
|
|
|
4668
4491
|
*/
|
|
4669
|
-
export type
|
|
4670
|
-
200: POST_OrganizationsIpRestrictions_Response_200
|
|
4671
|
-
422: POST_OrganizationsIpRestrictions_Response_422
|
|
4672
|
-
}
|
|
4492
|
+
export type POST_OrganizationsIpRestrictions_Response = POST_OrganizationsIpRestrictions_Response_200 | POST_OrganizationsIpRestrictions_Response_422;
|
|
4673
4493
|
|
|
4674
4494
|
/**
|
|
4675
4495
|
* 200 response for POST OrganizationsIpRestrictions endpoint
|
|
@@ -4683,7 +4503,7 @@ export type POST_OrganizationsIpRestrictions = {
|
|
|
4683
4503
|
*
|
|
4684
4504
|
* @path /v1/organizations/ip-restrictions
|
|
4685
4505
|
*
|
|
4686
|
-
* @see {@link
|
|
4506
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4687
4507
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4688
4508
|
*/
|
|
4689
4509
|
export type POST_OrganizationsIpRestrictions_Response_200 = IpRestriction
|
|
@@ -4700,7 +4520,7 @@ export type POST_OrganizationsIpRestrictions_Response_200 = IpRestriction
|
|
|
4700
4520
|
*
|
|
4701
4521
|
* @path /v1/organizations/ip-restrictions
|
|
4702
4522
|
*
|
|
4703
|
-
* @see {@link
|
|
4523
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4704
4524
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4705
4525
|
*/
|
|
4706
4526
|
export type POST_OrganizationsIpRestrictions_Response_422 = HTTPValidationError
|
|
@@ -4724,9 +4544,7 @@ export type POST_OrganizationsIpRestrictions_Response_422 = HTTPValidationError
|
|
|
4724
4544
|
*
|
|
4725
4545
|
|
|
4726
4546
|
*/
|
|
4727
|
-
export type
|
|
4728
|
-
422: DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422
|
|
4729
|
-
}
|
|
4547
|
+
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response = DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4730
4548
|
|
|
4731
4549
|
/**
|
|
4732
4550
|
* 422 response for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4740,7 +4558,7 @@ export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId = {
|
|
|
4740
4558
|
*
|
|
4741
4559
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4742
4560
|
*
|
|
4743
|
-
* @see {@link
|
|
4561
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4744
4562
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4745
4563
|
*/
|
|
4746
4564
|
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTPValidationError
|
|
@@ -4765,10 +4583,7 @@ export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = H
|
|
|
4765
4583
|
*
|
|
4766
4584
|
|
|
4767
4585
|
*/
|
|
4768
|
-
export type
|
|
4769
|
-
200: GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200
|
|
4770
|
-
422: GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422
|
|
4771
|
-
}
|
|
4586
|
+
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response = GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4772
4587
|
|
|
4773
4588
|
/**
|
|
4774
4589
|
* 200 response for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4782,7 +4597,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId = {
|
|
|
4782
4597
|
*
|
|
4783
4598
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4784
4599
|
*
|
|
4785
|
-
* @see {@link
|
|
4600
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4786
4601
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4787
4602
|
*/
|
|
4788
4603
|
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRestriction
|
|
@@ -4799,7 +4614,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRe
|
|
|
4799
4614
|
*
|
|
4800
4615
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4801
4616
|
*
|
|
4802
|
-
* @see {@link
|
|
4617
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4803
4618
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4804
4619
|
*/
|
|
4805
4620
|
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTPValidationError
|
|
@@ -4824,10 +4639,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTP
|
|
|
4824
4639
|
*
|
|
4825
4640
|
|
|
4826
4641
|
*/
|
|
4827
|
-
export type
|
|
4828
|
-
200: PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200
|
|
4829
|
-
422: PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422
|
|
4830
|
-
}
|
|
4642
|
+
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response = PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4831
4643
|
|
|
4832
4644
|
/**
|
|
4833
4645
|
* 200 response for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4841,7 +4653,7 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId = {
|
|
|
4841
4653
|
*
|
|
4842
4654
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4843
4655
|
*
|
|
4844
|
-
* @see {@link
|
|
4656
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4845
4657
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4846
4658
|
*/
|
|
4847
4659
|
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRestriction
|
|
@@ -4858,7 +4670,7 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = Ip
|
|
|
4858
4670
|
*
|
|
4859
4671
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4860
4672
|
*
|
|
4861
|
-
* @see {@link
|
|
4673
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4862
4674
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4863
4675
|
*/
|
|
4864
4676
|
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTPValidationError
|
|
@@ -4881,8 +4693,7 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HT
|
|
|
4881
4693
|
*
|
|
4882
4694
|
|
|
4883
4695
|
*/
|
|
4884
|
-
export type
|
|
4885
|
-
}
|
|
4696
|
+
export type GET_OrganizationsRoles_Response = unknown;
|
|
4886
4697
|
|
|
4887
4698
|
/**
|
|
4888
4699
|
* Response types for GET OrganizationsUsers endpoint
|
|
@@ -4903,10 +4714,7 @@ export type GET_OrganizationsRoles = {
|
|
|
4903
4714
|
*
|
|
4904
4715
|
|
|
4905
4716
|
*/
|
|
4906
|
-
export type
|
|
4907
|
-
200: GET_OrganizationsUsers_Response_200
|
|
4908
|
-
422: GET_OrganizationsUsers_Response_422
|
|
4909
|
-
}
|
|
4717
|
+
export type GET_OrganizationsUsers_Response = GET_OrganizationsUsers_Response_200 | GET_OrganizationsUsers_Response_422;
|
|
4910
4718
|
|
|
4911
4719
|
/**
|
|
4912
4720
|
* 200 response for GET OrganizationsUsers endpoint
|
|
@@ -4920,7 +4728,7 @@ export type GET_OrganizationsUsers = {
|
|
|
4920
4728
|
*
|
|
4921
4729
|
* @path /v1/organizations/users
|
|
4922
4730
|
*
|
|
4923
|
-
* @see {@link
|
|
4731
|
+
* @see {@link GET_OrganizationsUsers_Response} - The main response type definition
|
|
4924
4732
|
* @see {@link Pagination_User} - The actual schema type definition
|
|
4925
4733
|
*/
|
|
4926
4734
|
export type GET_OrganizationsUsers_Response_200 = Pagination_User
|
|
@@ -4937,11 +4745,121 @@ export type GET_OrganizationsUsers_Response_200 = Pagination_User
|
|
|
4937
4745
|
*
|
|
4938
4746
|
* @path /v1/organizations/users
|
|
4939
4747
|
*
|
|
4940
|
-
* @see {@link
|
|
4748
|
+
* @see {@link GET_OrganizationsUsers_Response} - The main response type definition
|
|
4941
4749
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4942
4750
|
*/
|
|
4943
4751
|
export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
|
|
4944
4752
|
|
|
4753
|
+
/**
|
|
4754
|
+
* Response types for GET TldsByTld endpoint
|
|
4755
|
+
*
|
|
4756
|
+
* Get Tld Spec
|
|
4757
|
+
*
|
|
4758
|
+
* @remarks
|
|
4759
|
+
* This type defines all possible response structures for the GET TldsByTld endpoint.
|
|
4760
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
4761
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
4762
|
+
*
|
|
4763
|
+
|
|
4764
|
+
*
|
|
4765
|
+
* @path /v1/tlds/{tld}
|
|
4766
|
+
*
|
|
4767
|
+
* @see {@link GET_TldsByTld_Response_200} - 200 response type
|
|
4768
|
+
* @see {@link GET_TldsByTld_Response_404} - 404 response type
|
|
4769
|
+
* @see {@link GET_TldsByTld_Response_422} - 422 response type
|
|
4770
|
+
*
|
|
4771
|
+
|
|
4772
|
+
*/
|
|
4773
|
+
export type GET_TldsByTld_Response = GET_TldsByTld_Response_200 | GET_TldsByTld_Response_404 | GET_TldsByTld_Response_422;
|
|
4774
|
+
|
|
4775
|
+
/**
|
|
4776
|
+
* 200 response for GET TldsByTld endpoint
|
|
4777
|
+
*
|
|
4778
|
+
* @remarks
|
|
4779
|
+
* This type defines the response structure for the 200 status code
|
|
4780
|
+
* of the GET TldsByTld endpoint.
|
|
4781
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4782
|
+
*
|
|
4783
|
+
|
|
4784
|
+
*
|
|
4785
|
+
* @path /v1/tlds/{tld}
|
|
4786
|
+
*
|
|
4787
|
+
* @see {@link GET_TldsByTld_Response} - The main response type definition
|
|
4788
|
+
* @see {@link TldSpecification} - The actual schema type definition
|
|
4789
|
+
*/
|
|
4790
|
+
export type GET_TldsByTld_Response_200 = TldSpecification
|
|
4791
|
+
|
|
4792
|
+
/**
|
|
4793
|
+
* 404 response for GET TldsByTld endpoint
|
|
4794
|
+
*
|
|
4795
|
+
* @remarks
|
|
4796
|
+
* This type defines the response structure for the 404 status code
|
|
4797
|
+
* of the GET TldsByTld endpoint.
|
|
4798
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4799
|
+
*
|
|
4800
|
+
|
|
4801
|
+
*
|
|
4802
|
+
* @path /v1/tlds/{tld}
|
|
4803
|
+
*
|
|
4804
|
+
* @see {@link GET_TldsByTld_Response} - The main response type definition
|
|
4805
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4806
|
+
*/
|
|
4807
|
+
export type GET_TldsByTld_Response_404 = Problem
|
|
4808
|
+
|
|
4809
|
+
/**
|
|
4810
|
+
* 422 response for GET TldsByTld endpoint
|
|
4811
|
+
*
|
|
4812
|
+
* @remarks
|
|
4813
|
+
* This type defines the response structure for the 422 status code
|
|
4814
|
+
* of the GET TldsByTld endpoint.
|
|
4815
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4816
|
+
*
|
|
4817
|
+
|
|
4818
|
+
*
|
|
4819
|
+
* @path /v1/tlds/{tld}
|
|
4820
|
+
*
|
|
4821
|
+
* @see {@link GET_TldsByTld_Response} - The main response type definition
|
|
4822
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4823
|
+
*/
|
|
4824
|
+
export type GET_TldsByTld_Response_422 = HTTPValidationError
|
|
4825
|
+
|
|
4826
|
+
/**
|
|
4827
|
+
* Response types for GET TldsPortfolio endpoint
|
|
4828
|
+
*
|
|
4829
|
+
* Get Tld Portfolio
|
|
4830
|
+
*
|
|
4831
|
+
* @remarks
|
|
4832
|
+
* This type defines all possible response structures for the GET TldsPortfolio endpoint.
|
|
4833
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
4834
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
4835
|
+
*
|
|
4836
|
+
|
|
4837
|
+
*
|
|
4838
|
+
* @path /v1/tlds/portfolio
|
|
4839
|
+
*
|
|
4840
|
+
* @see {@link GET_TldsPortfolio_Response_200} - 200 response type
|
|
4841
|
+
*
|
|
4842
|
+
|
|
4843
|
+
*/
|
|
4844
|
+
export type GET_TldsPortfolio_Response = GET_TldsPortfolio_Response_200;
|
|
4845
|
+
|
|
4846
|
+
/**
|
|
4847
|
+
* 200 response for GET TldsPortfolio endpoint
|
|
4848
|
+
*
|
|
4849
|
+
* @remarks
|
|
4850
|
+
* This type defines the response structure for the 200 status code
|
|
4851
|
+
* of the GET TldsPortfolio endpoint.
|
|
4852
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4853
|
+
*
|
|
4854
|
+
|
|
4855
|
+
*
|
|
4856
|
+
* @path /v1/tlds/portfolio
|
|
4857
|
+
*
|
|
4858
|
+
* @see {@link GET_TldsPortfolio_Response} - The main response type definition
|
|
4859
|
+
* @see {@link TldResponseShort} - The actual schema type definition
|
|
4860
|
+
*/
|
|
4861
|
+
export type GET_TldsPortfolio_Response_200 = TldResponseShortArray
|
|
4862
|
+
|
|
4945
4863
|
/**
|
|
4946
4864
|
* Response types for POST Users endpoint
|
|
4947
4865
|
*
|
|
@@ -4961,10 +4879,7 @@ export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
|
|
|
4961
4879
|
*
|
|
4962
4880
|
|
|
4963
4881
|
*/
|
|
4964
|
-
export type
|
|
4965
|
-
200: POST_Users_Response_200
|
|
4966
|
-
422: POST_Users_Response_422
|
|
4967
|
-
}
|
|
4882
|
+
export type POST_Users_Response = POST_Users_Response_200 | POST_Users_Response_422;
|
|
4968
4883
|
|
|
4969
4884
|
/**
|
|
4970
4885
|
* 200 response for POST Users endpoint
|
|
@@ -4978,7 +4893,7 @@ export type POST_Users = {
|
|
|
4978
4893
|
*
|
|
4979
4894
|
* @path /v1/users
|
|
4980
4895
|
*
|
|
4981
|
-
* @see {@link
|
|
4896
|
+
* @see {@link POST_Users_Response} - The main response type definition
|
|
4982
4897
|
* @see {@link User} - The actual schema type definition
|
|
4983
4898
|
*/
|
|
4984
4899
|
export type POST_Users_Response_200 = User
|
|
@@ -4995,7 +4910,7 @@ export type POST_Users_Response_200 = User
|
|
|
4995
4910
|
*
|
|
4996
4911
|
* @path /v1/users
|
|
4997
4912
|
*
|
|
4998
|
-
* @see {@link
|
|
4913
|
+
* @see {@link POST_Users_Response} - The main response type definition
|
|
4999
4914
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5000
4915
|
*/
|
|
5001
4916
|
export type POST_Users_Response_422 = HTTPValidationError
|
|
@@ -5018,9 +4933,7 @@ export type POST_Users_Response_422 = HTTPValidationError
|
|
|
5018
4933
|
*
|
|
5019
4934
|
|
|
5020
4935
|
*/
|
|
5021
|
-
export type
|
|
5022
|
-
422: POST_UsersAcceptTos_Response_422
|
|
5023
|
-
}
|
|
4936
|
+
export type POST_UsersAcceptTos_Response = POST_UsersAcceptTos_Response_422;
|
|
5024
4937
|
|
|
5025
4938
|
/**
|
|
5026
4939
|
* 422 response for POST UsersAcceptTos endpoint
|
|
@@ -5034,7 +4947,7 @@ export type POST_UsersAcceptTos = {
|
|
|
5034
4947
|
*
|
|
5035
4948
|
* @path /v1/users/accept-tos
|
|
5036
4949
|
*
|
|
5037
|
-
* @see {@link
|
|
4950
|
+
* @see {@link POST_UsersAcceptTos_Response} - The main response type definition
|
|
5038
4951
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5039
4952
|
*/
|
|
5040
4953
|
export type POST_UsersAcceptTos_Response_422 = HTTPValidationError
|
|
@@ -5057,9 +4970,7 @@ export type POST_UsersAcceptTos_Response_422 = HTTPValidationError
|
|
|
5057
4970
|
*
|
|
5058
4971
|
|
|
5059
4972
|
*/
|
|
5060
|
-
export type
|
|
5061
|
-
422: DELETE_UsersByUserId_Response_422
|
|
5062
|
-
}
|
|
4973
|
+
export type DELETE_UsersByUserId_Response = DELETE_UsersByUserId_Response_422;
|
|
5063
4974
|
|
|
5064
4975
|
/**
|
|
5065
4976
|
* 422 response for DELETE UsersByUserId endpoint
|
|
@@ -5073,7 +4984,7 @@ export type DELETE_UsersByUserId = {
|
|
|
5073
4984
|
*
|
|
5074
4985
|
* @path /v1/users/{user_id}
|
|
5075
4986
|
*
|
|
5076
|
-
* @see {@link
|
|
4987
|
+
* @see {@link DELETE_UsersByUserId_Response} - The main response type definition
|
|
5077
4988
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5078
4989
|
*/
|
|
5079
4990
|
export type DELETE_UsersByUserId_Response_422 = HTTPValidationError
|
|
@@ -5097,10 +5008,7 @@ export type DELETE_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5097
5008
|
*
|
|
5098
5009
|
|
|
5099
5010
|
*/
|
|
5100
|
-
export type
|
|
5101
|
-
200: GET_UsersByUserId_Response_200
|
|
5102
|
-
422: GET_UsersByUserId_Response_422
|
|
5103
|
-
}
|
|
5011
|
+
export type GET_UsersByUserId_Response = GET_UsersByUserId_Response_200 | GET_UsersByUserId_Response_422;
|
|
5104
5012
|
|
|
5105
5013
|
/**
|
|
5106
5014
|
* 200 response for GET UsersByUserId endpoint
|
|
@@ -5114,7 +5022,7 @@ export type GET_UsersByUserId = {
|
|
|
5114
5022
|
*
|
|
5115
5023
|
* @path /v1/users/{user_id}
|
|
5116
5024
|
*
|
|
5117
|
-
* @see {@link
|
|
5025
|
+
* @see {@link GET_UsersByUserId_Response} - The main response type definition
|
|
5118
5026
|
* @see {@link UserWithAttributes} - The actual schema type definition
|
|
5119
5027
|
*/
|
|
5120
5028
|
export type GET_UsersByUserId_Response_200 = UserWithAttributes
|
|
@@ -5131,7 +5039,7 @@ export type GET_UsersByUserId_Response_200 = UserWithAttributes
|
|
|
5131
5039
|
*
|
|
5132
5040
|
* @path /v1/users/{user_id}
|
|
5133
5041
|
*
|
|
5134
|
-
* @see {@link
|
|
5042
|
+
* @see {@link GET_UsersByUserId_Response} - The main response type definition
|
|
5135
5043
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5136
5044
|
*/
|
|
5137
5045
|
export type GET_UsersByUserId_Response_422 = HTTPValidationError
|
|
@@ -5155,10 +5063,7 @@ export type GET_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5155
5063
|
*
|
|
5156
5064
|
|
|
5157
5065
|
*/
|
|
5158
|
-
export type
|
|
5159
|
-
200: PATCH_UsersByUserId_Response_200
|
|
5160
|
-
422: PATCH_UsersByUserId_Response_422
|
|
5161
|
-
}
|
|
5066
|
+
export type PATCH_UsersByUserId_Response = PATCH_UsersByUserId_Response_200 | PATCH_UsersByUserId_Response_422;
|
|
5162
5067
|
|
|
5163
5068
|
/**
|
|
5164
5069
|
* 200 response for PATCH UsersByUserId endpoint
|
|
@@ -5172,7 +5077,7 @@ export type PATCH_UsersByUserId = {
|
|
|
5172
5077
|
*
|
|
5173
5078
|
* @path /v1/users/{user_id}
|
|
5174
5079
|
*
|
|
5175
|
-
* @see {@link
|
|
5080
|
+
* @see {@link PATCH_UsersByUserId_Response} - The main response type definition
|
|
5176
5081
|
* @see {@link UserWithAttributes} - The actual schema type definition
|
|
5177
5082
|
*/
|
|
5178
5083
|
export type PATCH_UsersByUserId_Response_200 = UserWithAttributes
|
|
@@ -5189,7 +5094,7 @@ export type PATCH_UsersByUserId_Response_200 = UserWithAttributes
|
|
|
5189
5094
|
*
|
|
5190
5095
|
* @path /v1/users/{user_id}
|
|
5191
5096
|
*
|
|
5192
|
-
* @see {@link
|
|
5097
|
+
* @see {@link PATCH_UsersByUserId_Response} - The main response type definition
|
|
5193
5098
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5194
5099
|
*/
|
|
5195
5100
|
export type PATCH_UsersByUserId_Response_422 = HTTPValidationError
|
|
@@ -5213,10 +5118,7 @@ export type PATCH_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5213
5118
|
*
|
|
5214
5119
|
|
|
5215
5120
|
*/
|
|
5216
|
-
export type
|
|
5217
|
-
200: GET_UsersByUserIdPermissions_Response_200
|
|
5218
|
-
422: GET_UsersByUserIdPermissions_Response_422
|
|
5219
|
-
}
|
|
5121
|
+
export type GET_UsersByUserIdPermissions_Response = GET_UsersByUserIdPermissions_Response_200 | GET_UsersByUserIdPermissions_Response_422;
|
|
5220
5122
|
|
|
5221
5123
|
/**
|
|
5222
5124
|
* 200 response for GET UsersByUserIdPermissions endpoint
|
|
@@ -5230,7 +5132,7 @@ export type GET_UsersByUserIdPermissions = {
|
|
|
5230
5132
|
*
|
|
5231
5133
|
* @path /v1/users/{user_id}/permissions
|
|
5232
5134
|
*
|
|
5233
|
-
* @see {@link
|
|
5135
|
+
* @see {@link GET_UsersByUserIdPermissions_Response} - The main response type definition
|
|
5234
5136
|
* @see {@link PermissionSet} - The actual schema type definition
|
|
5235
5137
|
*/
|
|
5236
5138
|
export type GET_UsersByUserIdPermissions_Response_200 = PermissionSet
|
|
@@ -5247,7 +5149,7 @@ export type GET_UsersByUserIdPermissions_Response_200 = PermissionSet
|
|
|
5247
5149
|
*
|
|
5248
5150
|
* @path /v1/users/{user_id}/permissions
|
|
5249
5151
|
*
|
|
5250
|
-
* @see {@link
|
|
5152
|
+
* @see {@link GET_UsersByUserIdPermissions_Response} - The main response type definition
|
|
5251
5153
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5252
5154
|
*/
|
|
5253
5155
|
export type GET_UsersByUserIdPermissions_Response_422 = HTTPValidationError
|
|
@@ -5271,10 +5173,7 @@ export type GET_UsersByUserIdPermissions_Response_422 = HTTPValidationError
|
|
|
5271
5173
|
*
|
|
5272
5174
|
|
|
5273
5175
|
*/
|
|
5274
|
-
export type
|
|
5275
|
-
200: GET_UsersByUserIdRoles_Response_200
|
|
5276
|
-
422: GET_UsersByUserIdRoles_Response_422
|
|
5277
|
-
}
|
|
5176
|
+
export type GET_UsersByUserIdRoles_Response = GET_UsersByUserIdRoles_Response_200 | GET_UsersByUserIdRoles_Response_422;
|
|
5278
5177
|
|
|
5279
5178
|
/**
|
|
5280
5179
|
* 200 response for GET UsersByUserIdRoles endpoint
|
|
@@ -5288,7 +5187,7 @@ export type GET_UsersByUserIdRoles = {
|
|
|
5288
5187
|
*
|
|
5289
5188
|
* @path /v1/users/{user_id}/roles
|
|
5290
5189
|
*
|
|
5291
|
-
* @see {@link
|
|
5190
|
+
* @see {@link GET_UsersByUserIdRoles_Response} - The main response type definition
|
|
5292
5191
|
* @see {@link RelationSet} - The actual schema type definition
|
|
5293
5192
|
*/
|
|
5294
5193
|
export type GET_UsersByUserIdRoles_Response_200 = RelationSet
|
|
@@ -5305,7 +5204,7 @@ export type GET_UsersByUserIdRoles_Response_200 = RelationSet
|
|
|
5305
5204
|
*
|
|
5306
5205
|
* @path /v1/users/{user_id}/roles
|
|
5307
5206
|
*
|
|
5308
|
-
* @see {@link
|
|
5207
|
+
* @see {@link GET_UsersByUserIdRoles_Response} - The main response type definition
|
|
5309
5208
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5310
5209
|
*/
|
|
5311
5210
|
export type GET_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
@@ -5329,10 +5228,7 @@ export type GET_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5329
5228
|
*
|
|
5330
5229
|
|
|
5331
5230
|
*/
|
|
5332
|
-
export type
|
|
5333
|
-
200: PATCH_UsersByUserIdRoles_Response_200
|
|
5334
|
-
422: PATCH_UsersByUserIdRoles_Response_422
|
|
5335
|
-
}
|
|
5231
|
+
export type PATCH_UsersByUserIdRoles_Response = PATCH_UsersByUserIdRoles_Response_200 | PATCH_UsersByUserIdRoles_Response_422;
|
|
5336
5232
|
|
|
5337
5233
|
/**
|
|
5338
5234
|
* 200 response for PATCH UsersByUserIdRoles endpoint
|
|
@@ -5346,7 +5242,7 @@ export type PATCH_UsersByUserIdRoles = {
|
|
|
5346
5242
|
*
|
|
5347
5243
|
* @path /v1/users/{user_id}/roles
|
|
5348
5244
|
*
|
|
5349
|
-
* @see {@link
|
|
5245
|
+
* @see {@link PATCH_UsersByUserIdRoles_Response} - The main response type definition
|
|
5350
5246
|
* @see {@link RelationSet} - The actual schema type definition
|
|
5351
5247
|
*/
|
|
5352
5248
|
export type PATCH_UsersByUserIdRoles_Response_200 = RelationSet
|
|
@@ -5363,7 +5259,7 @@ export type PATCH_UsersByUserIdRoles_Response_200 = RelationSet
|
|
|
5363
5259
|
*
|
|
5364
5260
|
* @path /v1/users/{user_id}/roles
|
|
5365
5261
|
*
|
|
5366
|
-
* @see {@link
|
|
5262
|
+
* @see {@link PATCH_UsersByUserIdRoles_Response} - The main response type definition
|
|
5367
5263
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5368
5264
|
*/
|
|
5369
5265
|
export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
@@ -5387,10 +5283,7 @@ export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5387
5283
|
*
|
|
5388
5284
|
|
|
5389
5285
|
*/
|
|
5390
|
-
export type
|
|
5391
|
-
200: GET_UsersMe_Response_200
|
|
5392
|
-
422: GET_UsersMe_Response_422
|
|
5393
|
-
}
|
|
5286
|
+
export type GET_UsersMe_Response = GET_UsersMe_Response_200 | GET_UsersMe_Response_422;
|
|
5394
5287
|
|
|
5395
5288
|
/**
|
|
5396
5289
|
* 200 response for GET UsersMe endpoint
|
|
@@ -5404,7 +5297,7 @@ export type GET_UsersMe = {
|
|
|
5404
5297
|
*
|
|
5405
5298
|
* @path /v1/users/me
|
|
5406
5299
|
*
|
|
5407
|
-
* @see {@link
|
|
5300
|
+
* @see {@link GET_UsersMe_Response} - The main response type definition
|
|
5408
5301
|
* @see {@link UserWithRelationPermissions} - The actual schema type definition
|
|
5409
5302
|
*/
|
|
5410
5303
|
export type GET_UsersMe_Response_200 = UserWithRelationPermissions
|
|
@@ -5421,7 +5314,7 @@ export type GET_UsersMe_Response_200 = UserWithRelationPermissions
|
|
|
5421
5314
|
*
|
|
5422
5315
|
* @path /v1/users/me
|
|
5423
5316
|
*
|
|
5424
|
-
* @see {@link
|
|
5317
|
+
* @see {@link GET_UsersMe_Response} - The main response type definition
|
|
5425
5318
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5426
5319
|
*/
|
|
5427
5320
|
export type GET_UsersMe_Response_422 = HTTPValidationError
|