@opusdns/api 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/helpers/constants.ts +771 -1
- package/src/helpers/index.ts +1 -0
- package/src/helpers/keys.ts +8077 -4699
- package/src/helpers/requests.ts +501 -441
- package/src/helpers/responses.ts +385 -547
- package/src/helpers/schemas-arrays.ts +169 -1
- package/src/helpers/schemas.ts +624 -0
- package/src/openapi.yaml +948 -1
- package/src/schema.d.ts +682 -0
- /package/src/{index.ts → index.d.ts} +0 -0
package/src/helpers/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,7 +254,7 @@ 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
|
|
@@ -289,9 +277,7 @@ export type DELETE_AuthClientCredentialsByApiKeyId_Response_422 = HTTPValidation
|
|
|
289
277
|
*
|
|
290
278
|
|
|
291
279
|
*/
|
|
292
|
-
export type
|
|
293
|
-
401: POST_AuthLogout_Response_401
|
|
294
|
-
}
|
|
280
|
+
export type POST_AuthLogout_Response = POST_AuthLogout_Response_401;
|
|
295
281
|
|
|
296
282
|
/**
|
|
297
283
|
* 401 response for POST AuthLogout endpoint
|
|
@@ -305,7 +291,7 @@ export type POST_AuthLogout = {
|
|
|
305
291
|
*
|
|
306
292
|
* @path /v1/auth/logout
|
|
307
293
|
*
|
|
308
|
-
* @see {@link
|
|
294
|
+
* @see {@link POST_AuthLogout_Response} - The main response type definition
|
|
309
295
|
* @see {@link Problem} - The actual schema type definition
|
|
310
296
|
*/
|
|
311
297
|
export type POST_AuthLogout_Response_401 = Problem
|
|
@@ -329,10 +315,7 @@ export type POST_AuthLogout_Response_401 = Problem
|
|
|
329
315
|
*
|
|
330
316
|
|
|
331
317
|
*/
|
|
332
|
-
export type
|
|
333
|
-
409: POST_AuthSignup_Response_409
|
|
334
|
-
422: POST_AuthSignup_Response_422
|
|
335
|
-
}
|
|
318
|
+
export type POST_AuthSignup_Response = POST_AuthSignup_Response_409 | POST_AuthSignup_Response_422;
|
|
336
319
|
|
|
337
320
|
/**
|
|
338
321
|
* 409 response for POST AuthSignup endpoint
|
|
@@ -346,7 +329,7 @@ export type POST_AuthSignup = {
|
|
|
346
329
|
*
|
|
347
330
|
* @path /v1/auth/signup
|
|
348
331
|
*
|
|
349
|
-
* @see {@link
|
|
332
|
+
* @see {@link POST_AuthSignup_Response} - The main response type definition
|
|
350
333
|
* @see {@link Problem} - The actual schema type definition
|
|
351
334
|
*/
|
|
352
335
|
export type POST_AuthSignup_Response_409 = Problem
|
|
@@ -363,7 +346,7 @@ export type POST_AuthSignup_Response_409 = Problem
|
|
|
363
346
|
*
|
|
364
347
|
* @path /v1/auth/signup
|
|
365
348
|
*
|
|
366
|
-
* @see {@link
|
|
349
|
+
* @see {@link POST_AuthSignup_Response} - The main response type definition
|
|
367
350
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
368
351
|
*/
|
|
369
352
|
export type POST_AuthSignup_Response_422 = HTTPValidationError
|
|
@@ -387,10 +370,7 @@ export type POST_AuthSignup_Response_422 = HTTPValidationError
|
|
|
387
370
|
*
|
|
388
371
|
|
|
389
372
|
*/
|
|
390
|
-
export type
|
|
391
|
-
401: POST_AuthToken_Response_401
|
|
392
|
-
422: POST_AuthToken_Response_422
|
|
393
|
-
}
|
|
373
|
+
export type POST_AuthToken_Response = POST_AuthToken_Response_401 | POST_AuthToken_Response_422;
|
|
394
374
|
|
|
395
375
|
/**
|
|
396
376
|
* 401 response for POST AuthToken endpoint
|
|
@@ -404,7 +384,7 @@ export type POST_AuthToken = {
|
|
|
404
384
|
*
|
|
405
385
|
* @path /v1/auth/token
|
|
406
386
|
*
|
|
407
|
-
* @see {@link
|
|
387
|
+
* @see {@link POST_AuthToken_Response} - The main response type definition
|
|
408
388
|
* @see {@link Problem} - The actual schema type definition
|
|
409
389
|
*/
|
|
410
390
|
export type POST_AuthToken_Response_401 = Problem
|
|
@@ -421,7 +401,7 @@ export type POST_AuthToken_Response_401 = Problem
|
|
|
421
401
|
*
|
|
422
402
|
* @path /v1/auth/token
|
|
423
403
|
*
|
|
424
|
-
* @see {@link
|
|
404
|
+
* @see {@link POST_AuthToken_Response} - The main response type definition
|
|
425
405
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
426
406
|
*/
|
|
427
407
|
export type POST_AuthToken_Response_422 = HTTPValidationError
|
|
@@ -451,12 +431,7 @@ Specify one or more domains to check for availability.
|
|
|
451
431
|
*
|
|
452
432
|
|
|
453
433
|
*/
|
|
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
|
-
}
|
|
434
|
+
export type GET_Availability_Response = GET_Availability_Response_200 | GET_Availability_Response_401 | GET_Availability_Response_422 | GET_Availability_Response_502;
|
|
460
435
|
|
|
461
436
|
/**
|
|
462
437
|
* 200 response for GET Availability endpoint
|
|
@@ -473,7 +448,7 @@ export type GET_Availability = {
|
|
|
473
448
|
Specify one or more domains to check for availability.
|
|
474
449
|
|
|
475
450
|
*
|
|
476
|
-
* @see {@link
|
|
451
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
477
452
|
* @see {@link DomainAvailabilityList} - The actual schema type definition
|
|
478
453
|
*/
|
|
479
454
|
export type GET_Availability_Response_200 = DomainAvailabilityList
|
|
@@ -493,7 +468,7 @@ export type GET_Availability_Response_200 = DomainAvailabilityList
|
|
|
493
468
|
Specify one or more domains to check for availability.
|
|
494
469
|
|
|
495
470
|
*
|
|
496
|
-
* @see {@link
|
|
471
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
497
472
|
* @see {@link Problem} - The actual schema type definition
|
|
498
473
|
*/
|
|
499
474
|
export type GET_Availability_Response_401 = Problem
|
|
@@ -513,7 +488,7 @@ export type GET_Availability_Response_401 = Problem
|
|
|
513
488
|
Specify one or more domains to check for availability.
|
|
514
489
|
|
|
515
490
|
*
|
|
516
|
-
* @see {@link
|
|
491
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
517
492
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
518
493
|
*/
|
|
519
494
|
export type GET_Availability_Response_422 = HTTPValidationError
|
|
@@ -533,7 +508,7 @@ export type GET_Availability_Response_422 = HTTPValidationError
|
|
|
533
508
|
Specify one or more domains to check for availability.
|
|
534
509
|
|
|
535
510
|
*
|
|
536
|
-
* @see {@link
|
|
511
|
+
* @see {@link GET_Availability_Response} - The main response type definition
|
|
537
512
|
* @see {@link Problem} - The actual schema type definition
|
|
538
513
|
*/
|
|
539
514
|
export type GET_Availability_Response_502 = Problem
|
|
@@ -562,11 +537,7 @@ Specify one or more domains to check for availability.
|
|
|
562
537
|
*
|
|
563
538
|
|
|
564
539
|
*/
|
|
565
|
-
export type
|
|
566
|
-
401: GET_AvailabilityStream_Response_401
|
|
567
|
-
422: GET_AvailabilityStream_Response_422
|
|
568
|
-
502: GET_AvailabilityStream_Response_502
|
|
569
|
-
}
|
|
540
|
+
export type GET_AvailabilityStream_Response = GET_AvailabilityStream_Response_401 | GET_AvailabilityStream_Response_422 | GET_AvailabilityStream_Response_502;
|
|
570
541
|
|
|
571
542
|
/**
|
|
572
543
|
* 401 response for GET AvailabilityStream endpoint
|
|
@@ -583,7 +554,7 @@ export type GET_AvailabilityStream = {
|
|
|
583
554
|
Specify one or more domains to check for availability.
|
|
584
555
|
|
|
585
556
|
*
|
|
586
|
-
* @see {@link
|
|
557
|
+
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
587
558
|
* @see {@link Problem} - The actual schema type definition
|
|
588
559
|
*/
|
|
589
560
|
export type GET_AvailabilityStream_Response_401 = Problem
|
|
@@ -603,7 +574,7 @@ export type GET_AvailabilityStream_Response_401 = Problem
|
|
|
603
574
|
Specify one or more domains to check for availability.
|
|
604
575
|
|
|
605
576
|
*
|
|
606
|
-
* @see {@link
|
|
577
|
+
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
607
578
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
608
579
|
*/
|
|
609
580
|
export type GET_AvailabilityStream_Response_422 = HTTPValidationError
|
|
@@ -623,7 +594,7 @@ export type GET_AvailabilityStream_Response_422 = HTTPValidationError
|
|
|
623
594
|
Specify one or more domains to check for availability.
|
|
624
595
|
|
|
625
596
|
*
|
|
626
|
-
* @see {@link
|
|
597
|
+
* @see {@link GET_AvailabilityStream_Response} - The main response type definition
|
|
627
598
|
* @see {@link Problem} - The actual schema type definition
|
|
628
599
|
*/
|
|
629
600
|
export type GET_AvailabilityStream_Response_502 = Problem
|
|
@@ -648,10 +619,7 @@ export type GET_AvailabilityStream_Response_502 = Problem
|
|
|
648
619
|
*
|
|
649
620
|
|
|
650
621
|
*/
|
|
651
|
-
export type
|
|
652
|
-
200: GET_Contacts_Response_200
|
|
653
|
-
422: GET_Contacts_Response_422
|
|
654
|
-
}
|
|
622
|
+
export type GET_Contacts_Response = GET_Contacts_Response_200 | GET_Contacts_Response_422;
|
|
655
623
|
|
|
656
624
|
/**
|
|
657
625
|
* 200 response for GET Contacts endpoint
|
|
@@ -665,7 +633,7 @@ export type GET_Contacts = {
|
|
|
665
633
|
*
|
|
666
634
|
* @path /v1/contacts
|
|
667
635
|
*
|
|
668
|
-
* @see {@link
|
|
636
|
+
* @see {@link GET_Contacts_Response} - The main response type definition
|
|
669
637
|
* @see {@link Pagination_ContactSchema} - The actual schema type definition
|
|
670
638
|
*/
|
|
671
639
|
export type GET_Contacts_Response_200 = Pagination_ContactSchema
|
|
@@ -682,7 +650,7 @@ export type GET_Contacts_Response_200 = Pagination_ContactSchema
|
|
|
682
650
|
*
|
|
683
651
|
* @path /v1/contacts
|
|
684
652
|
*
|
|
685
|
-
* @see {@link
|
|
653
|
+
* @see {@link GET_Contacts_Response} - The main response type definition
|
|
686
654
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
687
655
|
*/
|
|
688
656
|
export type GET_Contacts_Response_422 = HTTPValidationError
|
|
@@ -707,10 +675,7 @@ export type GET_Contacts_Response_422 = HTTPValidationError
|
|
|
707
675
|
*
|
|
708
676
|
|
|
709
677
|
*/
|
|
710
|
-
export type
|
|
711
|
-
201: POST_Contacts_Response_201
|
|
712
|
-
422: POST_Contacts_Response_422
|
|
713
|
-
}
|
|
678
|
+
export type POST_Contacts_Response = POST_Contacts_Response_201 | POST_Contacts_Response_422;
|
|
714
679
|
|
|
715
680
|
/**
|
|
716
681
|
* 201 response for POST Contacts endpoint
|
|
@@ -724,7 +689,7 @@ export type POST_Contacts = {
|
|
|
724
689
|
*
|
|
725
690
|
* @path /v1/contacts
|
|
726
691
|
*
|
|
727
|
-
* @see {@link
|
|
692
|
+
* @see {@link POST_Contacts_Response} - The main response type definition
|
|
728
693
|
* @see {@link ContactSchema} - The actual schema type definition
|
|
729
694
|
*/
|
|
730
695
|
export type POST_Contacts_Response_201 = ContactSchema
|
|
@@ -741,7 +706,7 @@ export type POST_Contacts_Response_201 = ContactSchema
|
|
|
741
706
|
*
|
|
742
707
|
* @path /v1/contacts
|
|
743
708
|
*
|
|
744
|
-
* @see {@link
|
|
709
|
+
* @see {@link POST_Contacts_Response} - The main response type definition
|
|
745
710
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
746
711
|
*/
|
|
747
712
|
export type POST_Contacts_Response_422 = HTTPValidationError
|
|
@@ -767,11 +732,7 @@ export type POST_Contacts_Response_422 = HTTPValidationError
|
|
|
767
732
|
*
|
|
768
733
|
|
|
769
734
|
*/
|
|
770
|
-
export type
|
|
771
|
-
404: DELETE_ContactsByContactId_Response_404
|
|
772
|
-
409: DELETE_ContactsByContactId_Response_409
|
|
773
|
-
422: DELETE_ContactsByContactId_Response_422
|
|
774
|
-
}
|
|
735
|
+
export type DELETE_ContactsByContactId_Response = DELETE_ContactsByContactId_Response_404 | DELETE_ContactsByContactId_Response_409 | DELETE_ContactsByContactId_Response_422;
|
|
775
736
|
|
|
776
737
|
/**
|
|
777
738
|
* 404 response for DELETE ContactsByContactId endpoint
|
|
@@ -785,7 +746,7 @@ export type DELETE_ContactsByContactId = {
|
|
|
785
746
|
*
|
|
786
747
|
* @path /v1/contacts/{contact_id}
|
|
787
748
|
*
|
|
788
|
-
* @see {@link
|
|
749
|
+
* @see {@link DELETE_ContactsByContactId_Response} - The main response type definition
|
|
789
750
|
* @see {@link Problem} - The actual schema type definition
|
|
790
751
|
*/
|
|
791
752
|
export type DELETE_ContactsByContactId_Response_404 = Problem
|
|
@@ -802,7 +763,7 @@ export type DELETE_ContactsByContactId_Response_404 = Problem
|
|
|
802
763
|
*
|
|
803
764
|
* @path /v1/contacts/{contact_id}
|
|
804
765
|
*
|
|
805
|
-
* @see {@link
|
|
766
|
+
* @see {@link DELETE_ContactsByContactId_Response} - The main response type definition
|
|
806
767
|
* @see {@link Problem} - The actual schema type definition
|
|
807
768
|
*/
|
|
808
769
|
export type DELETE_ContactsByContactId_Response_409 = Problem
|
|
@@ -819,7 +780,7 @@ export type DELETE_ContactsByContactId_Response_409 = Problem
|
|
|
819
780
|
*
|
|
820
781
|
* @path /v1/contacts/{contact_id}
|
|
821
782
|
*
|
|
822
|
-
* @see {@link
|
|
783
|
+
* @see {@link DELETE_ContactsByContactId_Response} - The main response type definition
|
|
823
784
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
824
785
|
*/
|
|
825
786
|
export type DELETE_ContactsByContactId_Response_422 = HTTPValidationError
|
|
@@ -845,11 +806,7 @@ export type DELETE_ContactsByContactId_Response_422 = HTTPValidationError
|
|
|
845
806
|
*
|
|
846
807
|
|
|
847
808
|
*/
|
|
848
|
-
export type
|
|
849
|
-
200: GET_ContactsByContactId_Response_200
|
|
850
|
-
404: GET_ContactsByContactId_Response_404
|
|
851
|
-
422: GET_ContactsByContactId_Response_422
|
|
852
|
-
}
|
|
809
|
+
export type GET_ContactsByContactId_Response = GET_ContactsByContactId_Response_200 | GET_ContactsByContactId_Response_404 | GET_ContactsByContactId_Response_422;
|
|
853
810
|
|
|
854
811
|
/**
|
|
855
812
|
* 200 response for GET ContactsByContactId endpoint
|
|
@@ -863,7 +820,7 @@ export type GET_ContactsByContactId = {
|
|
|
863
820
|
*
|
|
864
821
|
* @path /v1/contacts/{contact_id}
|
|
865
822
|
*
|
|
866
|
-
* @see {@link
|
|
823
|
+
* @see {@link GET_ContactsByContactId_Response} - The main response type definition
|
|
867
824
|
* @see {@link ContactSchema} - The actual schema type definition
|
|
868
825
|
*/
|
|
869
826
|
export type GET_ContactsByContactId_Response_200 = ContactSchema
|
|
@@ -880,7 +837,7 @@ export type GET_ContactsByContactId_Response_200 = ContactSchema
|
|
|
880
837
|
*
|
|
881
838
|
* @path /v1/contacts/{contact_id}
|
|
882
839
|
*
|
|
883
|
-
* @see {@link
|
|
840
|
+
* @see {@link GET_ContactsByContactId_Response} - The main response type definition
|
|
884
841
|
* @see {@link Problem} - The actual schema type definition
|
|
885
842
|
*/
|
|
886
843
|
export type GET_ContactsByContactId_Response_404 = Problem
|
|
@@ -897,7 +854,7 @@ export type GET_ContactsByContactId_Response_404 = Problem
|
|
|
897
854
|
*
|
|
898
855
|
* @path /v1/contacts/{contact_id}
|
|
899
856
|
*
|
|
900
|
-
* @see {@link
|
|
857
|
+
* @see {@link GET_ContactsByContactId_Response} - The main response type definition
|
|
901
858
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
902
859
|
*/
|
|
903
860
|
export type GET_ContactsByContactId_Response_422 = HTTPValidationError
|
|
@@ -923,11 +880,7 @@ export type GET_ContactsByContactId_Response_422 = HTTPValidationError
|
|
|
923
880
|
*
|
|
924
881
|
|
|
925
882
|
*/
|
|
926
|
-
export type
|
|
927
|
-
401: DELETE_ContactsByContactIdVerification_Response_401
|
|
928
|
-
404: DELETE_ContactsByContactIdVerification_Response_404
|
|
929
|
-
422: DELETE_ContactsByContactIdVerification_Response_422
|
|
930
|
-
}
|
|
883
|
+
export type DELETE_ContactsByContactIdVerification_Response = DELETE_ContactsByContactIdVerification_Response_401 | DELETE_ContactsByContactIdVerification_Response_404 | DELETE_ContactsByContactIdVerification_Response_422;
|
|
931
884
|
|
|
932
885
|
/**
|
|
933
886
|
* 401 response for DELETE ContactsByContactIdVerification endpoint
|
|
@@ -941,7 +894,7 @@ export type DELETE_ContactsByContactIdVerification = {
|
|
|
941
894
|
*
|
|
942
895
|
* @path /v1/contacts/{contact_id}/verification
|
|
943
896
|
*
|
|
944
|
-
* @see {@link
|
|
897
|
+
* @see {@link DELETE_ContactsByContactIdVerification_Response} - The main response type definition
|
|
945
898
|
* @see {@link Problem} - The actual schema type definition
|
|
946
899
|
*/
|
|
947
900
|
export type DELETE_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -958,7 +911,7 @@ export type DELETE_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
958
911
|
*
|
|
959
912
|
* @path /v1/contacts/{contact_id}/verification
|
|
960
913
|
*
|
|
961
|
-
* @see {@link
|
|
914
|
+
* @see {@link DELETE_ContactsByContactIdVerification_Response} - The main response type definition
|
|
962
915
|
* @see {@link Problem} - The actual schema type definition
|
|
963
916
|
*/
|
|
964
917
|
export type DELETE_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -975,7 +928,7 @@ export type DELETE_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
975
928
|
*
|
|
976
929
|
* @path /v1/contacts/{contact_id}/verification
|
|
977
930
|
*
|
|
978
|
-
* @see {@link
|
|
931
|
+
* @see {@link DELETE_ContactsByContactIdVerification_Response} - The main response type definition
|
|
979
932
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
980
933
|
*/
|
|
981
934
|
export type DELETE_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1002,12 +955,7 @@ export type DELETE_ContactsByContactIdVerification_Response_422 = HTTPValidation
|
|
|
1002
955
|
*
|
|
1003
956
|
|
|
1004
957
|
*/
|
|
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
|
-
}
|
|
958
|
+
export type GET_ContactsByContactIdVerification_Response = GET_ContactsByContactIdVerification_Response_200 | GET_ContactsByContactIdVerification_Response_401 | GET_ContactsByContactIdVerification_Response_404 | GET_ContactsByContactIdVerification_Response_422;
|
|
1011
959
|
|
|
1012
960
|
/**
|
|
1013
961
|
* 200 response for GET ContactsByContactIdVerification endpoint
|
|
@@ -1021,7 +969,7 @@ export type GET_ContactsByContactIdVerification = {
|
|
|
1021
969
|
*
|
|
1022
970
|
* @path /v1/contacts/{contact_id}/verification
|
|
1023
971
|
*
|
|
1024
|
-
* @see {@link
|
|
972
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1025
973
|
* @see {@link ContactVerification} - The actual schema type definition
|
|
1026
974
|
*/
|
|
1027
975
|
export type GET_ContactsByContactIdVerification_Response_200 = ContactVerification
|
|
@@ -1038,7 +986,7 @@ export type GET_ContactsByContactIdVerification_Response_200 = ContactVerificati
|
|
|
1038
986
|
*
|
|
1039
987
|
* @path /v1/contacts/{contact_id}/verification
|
|
1040
988
|
*
|
|
1041
|
-
* @see {@link
|
|
989
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1042
990
|
* @see {@link Problem} - The actual schema type definition
|
|
1043
991
|
*/
|
|
1044
992
|
export type GET_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -1055,7 +1003,7 @@ export type GET_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
1055
1003
|
*
|
|
1056
1004
|
* @path /v1/contacts/{contact_id}/verification
|
|
1057
1005
|
*
|
|
1058
|
-
* @see {@link
|
|
1006
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1059
1007
|
* @see {@link Problem} - The actual schema type definition
|
|
1060
1008
|
*/
|
|
1061
1009
|
export type GET_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -1072,7 +1020,7 @@ export type GET_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
1072
1020
|
*
|
|
1073
1021
|
* @path /v1/contacts/{contact_id}/verification
|
|
1074
1022
|
*
|
|
1075
|
-
* @see {@link
|
|
1023
|
+
* @see {@link GET_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1076
1024
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1077
1025
|
*/
|
|
1078
1026
|
export type GET_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1099,12 +1047,7 @@ export type GET_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
|
|
|
1099
1047
|
*
|
|
1100
1048
|
|
|
1101
1049
|
*/
|
|
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
|
-
}
|
|
1050
|
+
export type POST_ContactsByContactIdVerification_Response = POST_ContactsByContactIdVerification_Response_401 | POST_ContactsByContactIdVerification_Response_404 | POST_ContactsByContactIdVerification_Response_405 | POST_ContactsByContactIdVerification_Response_422;
|
|
1108
1051
|
|
|
1109
1052
|
/**
|
|
1110
1053
|
* 401 response for POST ContactsByContactIdVerification endpoint
|
|
@@ -1118,7 +1061,7 @@ export type POST_ContactsByContactIdVerification = {
|
|
|
1118
1061
|
*
|
|
1119
1062
|
* @path /v1/contacts/{contact_id}/verification
|
|
1120
1063
|
*
|
|
1121
|
-
* @see {@link
|
|
1064
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1122
1065
|
* @see {@link Problem} - The actual schema type definition
|
|
1123
1066
|
*/
|
|
1124
1067
|
export type POST_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -1135,7 +1078,7 @@ export type POST_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
1135
1078
|
*
|
|
1136
1079
|
* @path /v1/contacts/{contact_id}/verification
|
|
1137
1080
|
*
|
|
1138
|
-
* @see {@link
|
|
1081
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1139
1082
|
* @see {@link Problem} - The actual schema type definition
|
|
1140
1083
|
*/
|
|
1141
1084
|
export type POST_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -1152,7 +1095,7 @@ export type POST_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
1152
1095
|
*
|
|
1153
1096
|
* @path /v1/contacts/{contact_id}/verification
|
|
1154
1097
|
*
|
|
1155
|
-
* @see {@link
|
|
1098
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1156
1099
|
* @see {@link Problem} - The actual schema type definition
|
|
1157
1100
|
*/
|
|
1158
1101
|
export type POST_ContactsByContactIdVerification_Response_405 = Problem
|
|
@@ -1169,7 +1112,7 @@ export type POST_ContactsByContactIdVerification_Response_405 = Problem
|
|
|
1169
1112
|
*
|
|
1170
1113
|
* @path /v1/contacts/{contact_id}/verification
|
|
1171
1114
|
*
|
|
1172
|
-
* @see {@link
|
|
1115
|
+
* @see {@link POST_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1173
1116
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1174
1117
|
*/
|
|
1175
1118
|
export type POST_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1197,13 +1140,7 @@ export type POST_ContactsByContactIdVerification_Response_422 = HTTPValidationEr
|
|
|
1197
1140
|
*
|
|
1198
1141
|
|
|
1199
1142
|
*/
|
|
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
|
-
}
|
|
1143
|
+
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
1144
|
|
|
1208
1145
|
/**
|
|
1209
1146
|
* 400 response for PUT ContactsByContactIdVerification endpoint
|
|
@@ -1217,7 +1154,7 @@ export type PUT_ContactsByContactIdVerification = {
|
|
|
1217
1154
|
*
|
|
1218
1155
|
* @path /v1/contacts/{contact_id}/verification
|
|
1219
1156
|
*
|
|
1220
|
-
* @see {@link
|
|
1157
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1221
1158
|
* @see {@link Problem} - The actual schema type definition
|
|
1222
1159
|
*/
|
|
1223
1160
|
export type PUT_ContactsByContactIdVerification_Response_400 = Problem
|
|
@@ -1234,7 +1171,7 @@ export type PUT_ContactsByContactIdVerification_Response_400 = Problem
|
|
|
1234
1171
|
*
|
|
1235
1172
|
* @path /v1/contacts/{contact_id}/verification
|
|
1236
1173
|
*
|
|
1237
|
-
* @see {@link
|
|
1174
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1238
1175
|
* @see {@link Problem} - The actual schema type definition
|
|
1239
1176
|
*/
|
|
1240
1177
|
export type PUT_ContactsByContactIdVerification_Response_401 = Problem
|
|
@@ -1251,7 +1188,7 @@ export type PUT_ContactsByContactIdVerification_Response_401 = Problem
|
|
|
1251
1188
|
*
|
|
1252
1189
|
* @path /v1/contacts/{contact_id}/verification
|
|
1253
1190
|
*
|
|
1254
|
-
* @see {@link
|
|
1191
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1255
1192
|
* @see {@link Problem} - The actual schema type definition
|
|
1256
1193
|
*/
|
|
1257
1194
|
export type PUT_ContactsByContactIdVerification_Response_403 = Problem
|
|
@@ -1268,7 +1205,7 @@ export type PUT_ContactsByContactIdVerification_Response_403 = Problem
|
|
|
1268
1205
|
*
|
|
1269
1206
|
* @path /v1/contacts/{contact_id}/verification
|
|
1270
1207
|
*
|
|
1271
|
-
* @see {@link
|
|
1208
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1272
1209
|
* @see {@link Problem} - The actual schema type definition
|
|
1273
1210
|
*/
|
|
1274
1211
|
export type PUT_ContactsByContactIdVerification_Response_404 = Problem
|
|
@@ -1285,7 +1222,7 @@ export type PUT_ContactsByContactIdVerification_Response_404 = Problem
|
|
|
1285
1222
|
*
|
|
1286
1223
|
* @path /v1/contacts/{contact_id}/verification
|
|
1287
1224
|
*
|
|
1288
|
-
* @see {@link
|
|
1225
|
+
* @see {@link PUT_ContactsByContactIdVerification_Response} - The main response type definition
|
|
1289
1226
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1290
1227
|
*/
|
|
1291
1228
|
export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationError
|
|
@@ -1312,12 +1249,7 @@ export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
|
|
|
1312
1249
|
*
|
|
1313
1250
|
|
|
1314
1251
|
*/
|
|
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
|
-
}
|
|
1252
|
+
export type GET_ContactsVerification_Response = GET_ContactsVerification_Response_200 | GET_ContactsVerification_Response_401 | GET_ContactsVerification_Response_404 | GET_ContactsVerification_Response_422;
|
|
1321
1253
|
|
|
1322
1254
|
/**
|
|
1323
1255
|
* 200 response for GET ContactsVerification endpoint
|
|
@@ -1331,7 +1263,7 @@ export type GET_ContactsVerification = {
|
|
|
1331
1263
|
*
|
|
1332
1264
|
* @path /v1/contacts/verification
|
|
1333
1265
|
*
|
|
1334
|
-
* @see {@link
|
|
1266
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1335
1267
|
* @see {@link Contact} - The actual schema type definition
|
|
1336
1268
|
*/
|
|
1337
1269
|
export type GET_ContactsVerification_Response_200 = Contact
|
|
@@ -1348,7 +1280,7 @@ export type GET_ContactsVerification_Response_200 = Contact
|
|
|
1348
1280
|
*
|
|
1349
1281
|
* @path /v1/contacts/verification
|
|
1350
1282
|
*
|
|
1351
|
-
* @see {@link
|
|
1283
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1352
1284
|
* @see {@link Problem} - The actual schema type definition
|
|
1353
1285
|
*/
|
|
1354
1286
|
export type GET_ContactsVerification_Response_401 = Problem
|
|
@@ -1365,7 +1297,7 @@ export type GET_ContactsVerification_Response_401 = Problem
|
|
|
1365
1297
|
*
|
|
1366
1298
|
* @path /v1/contacts/verification
|
|
1367
1299
|
*
|
|
1368
|
-
* @see {@link
|
|
1300
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1369
1301
|
* @see {@link Problem} - The actual schema type definition
|
|
1370
1302
|
*/
|
|
1371
1303
|
export type GET_ContactsVerification_Response_404 = Problem
|
|
@@ -1382,7 +1314,7 @@ export type GET_ContactsVerification_Response_404 = Problem
|
|
|
1382
1314
|
*
|
|
1383
1315
|
* @path /v1/contacts/verification
|
|
1384
1316
|
*
|
|
1385
|
-
* @see {@link
|
|
1317
|
+
* @see {@link GET_ContactsVerification_Response} - The main response type definition
|
|
1386
1318
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1387
1319
|
*/
|
|
1388
1320
|
export type GET_ContactsVerification_Response_422 = HTTPValidationError
|
|
@@ -1409,12 +1341,7 @@ export type GET_ContactsVerification_Response_422 = HTTPValidationError
|
|
|
1409
1341
|
*
|
|
1410
1342
|
|
|
1411
1343
|
*/
|
|
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
|
-
}
|
|
1344
|
+
export type PUT_ContactsVerification_Response = PUT_ContactsVerification_Response_400 | PUT_ContactsVerification_Response_401 | PUT_ContactsVerification_Response_404 | PUT_ContactsVerification_Response_422;
|
|
1418
1345
|
|
|
1419
1346
|
/**
|
|
1420
1347
|
* 400 response for PUT ContactsVerification endpoint
|
|
@@ -1428,7 +1355,7 @@ export type PUT_ContactsVerification = {
|
|
|
1428
1355
|
*
|
|
1429
1356
|
* @path /v1/contacts/verification
|
|
1430
1357
|
*
|
|
1431
|
-
* @see {@link
|
|
1358
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1432
1359
|
* @see {@link Problem} - The actual schema type definition
|
|
1433
1360
|
*/
|
|
1434
1361
|
export type PUT_ContactsVerification_Response_400 = Problem
|
|
@@ -1445,7 +1372,7 @@ export type PUT_ContactsVerification_Response_400 = Problem
|
|
|
1445
1372
|
*
|
|
1446
1373
|
* @path /v1/contacts/verification
|
|
1447
1374
|
*
|
|
1448
|
-
* @see {@link
|
|
1375
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1449
1376
|
* @see {@link Problem} - The actual schema type definition
|
|
1450
1377
|
*/
|
|
1451
1378
|
export type PUT_ContactsVerification_Response_401 = Problem
|
|
@@ -1462,7 +1389,7 @@ export type PUT_ContactsVerification_Response_401 = Problem
|
|
|
1462
1389
|
*
|
|
1463
1390
|
* @path /v1/contacts/verification
|
|
1464
1391
|
*
|
|
1465
|
-
* @see {@link
|
|
1392
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1466
1393
|
* @see {@link Problem} - The actual schema type definition
|
|
1467
1394
|
*/
|
|
1468
1395
|
export type PUT_ContactsVerification_Response_404 = Problem
|
|
@@ -1479,7 +1406,7 @@ export type PUT_ContactsVerification_Response_404 = Problem
|
|
|
1479
1406
|
*
|
|
1480
1407
|
* @path /v1/contacts/verification
|
|
1481
1408
|
*
|
|
1482
|
-
* @see {@link
|
|
1409
|
+
* @see {@link PUT_ContactsVerification_Response} - The main response type definition
|
|
1483
1410
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1484
1411
|
*/
|
|
1485
1412
|
export type PUT_ContactsVerification_Response_422 = HTTPValidationError
|
|
@@ -1502,9 +1429,7 @@ export type PUT_ContactsVerification_Response_422 = HTTPValidationError
|
|
|
1502
1429
|
*
|
|
1503
1430
|
|
|
1504
1431
|
*/
|
|
1505
|
-
export type
|
|
1506
|
-
422: GET_ContactsVerify_Response_422
|
|
1507
|
-
}
|
|
1432
|
+
export type GET_ContactsVerify_Response = GET_ContactsVerify_Response_422;
|
|
1508
1433
|
|
|
1509
1434
|
/**
|
|
1510
1435
|
* 422 response for GET ContactsVerify endpoint
|
|
@@ -1518,7 +1443,7 @@ export type GET_ContactsVerify = {
|
|
|
1518
1443
|
*
|
|
1519
1444
|
* @path /v1/contacts/verify
|
|
1520
1445
|
*
|
|
1521
|
-
* @see {@link
|
|
1446
|
+
* @see {@link GET_ContactsVerify_Response} - The main response type definition
|
|
1522
1447
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1523
1448
|
*/
|
|
1524
1449
|
export type GET_ContactsVerify_Response_422 = HTTPValidationError
|
|
@@ -1542,10 +1467,7 @@ export type GET_ContactsVerify_Response_422 = HTTPValidationError
|
|
|
1542
1467
|
*
|
|
1543
1468
|
|
|
1544
1469
|
*/
|
|
1545
|
-
export type
|
|
1546
|
-
200: GET_Dns_Response_200
|
|
1547
|
-
422: GET_Dns_Response_422
|
|
1548
|
-
}
|
|
1470
|
+
export type GET_Dns_Response = GET_Dns_Response_200 | GET_Dns_Response_422;
|
|
1549
1471
|
|
|
1550
1472
|
/**
|
|
1551
1473
|
* 200 response for GET Dns endpoint
|
|
@@ -1559,7 +1481,7 @@ export type GET_Dns = {
|
|
|
1559
1481
|
*
|
|
1560
1482
|
* @path /v1/dns
|
|
1561
1483
|
*
|
|
1562
|
-
* @see {@link
|
|
1484
|
+
* @see {@link GET_Dns_Response} - The main response type definition
|
|
1563
1485
|
* @see {@link Pagination_DnsZone} - The actual schema type definition
|
|
1564
1486
|
*/
|
|
1565
1487
|
export type GET_Dns_Response_200 = Pagination_DnsZone
|
|
@@ -1576,7 +1498,7 @@ export type GET_Dns_Response_200 = Pagination_DnsZone
|
|
|
1576
1498
|
*
|
|
1577
1499
|
* @path /v1/dns
|
|
1578
1500
|
*
|
|
1579
|
-
* @see {@link
|
|
1501
|
+
* @see {@link GET_Dns_Response} - The main response type definition
|
|
1580
1502
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1581
1503
|
*/
|
|
1582
1504
|
export type GET_Dns_Response_422 = HTTPValidationError
|
|
@@ -1599,9 +1521,7 @@ export type GET_Dns_Response_422 = HTTPValidationError
|
|
|
1599
1521
|
*
|
|
1600
1522
|
|
|
1601
1523
|
*/
|
|
1602
|
-
export type
|
|
1603
|
-
422: POST_Dns_Response_422
|
|
1604
|
-
}
|
|
1524
|
+
export type POST_Dns_Response = POST_Dns_Response_422;
|
|
1605
1525
|
|
|
1606
1526
|
/**
|
|
1607
1527
|
* 422 response for POST Dns endpoint
|
|
@@ -1615,7 +1535,7 @@ export type POST_Dns = {
|
|
|
1615
1535
|
*
|
|
1616
1536
|
* @path /v1/dns
|
|
1617
1537
|
*
|
|
1618
|
-
* @see {@link
|
|
1538
|
+
* @see {@link POST_Dns_Response} - The main response type definition
|
|
1619
1539
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1620
1540
|
*/
|
|
1621
1541
|
export type POST_Dns_Response_422 = HTTPValidationError
|
|
@@ -1639,9 +1559,7 @@ export type POST_Dns_Response_422 = HTTPValidationError
|
|
|
1639
1559
|
*
|
|
1640
1560
|
|
|
1641
1561
|
*/
|
|
1642
|
-
export type
|
|
1643
|
-
422: DELETE_DnsByZoneName_Response_422
|
|
1644
|
-
}
|
|
1562
|
+
export type DELETE_DnsByZoneName_Response = DELETE_DnsByZoneName_Response_422;
|
|
1645
1563
|
|
|
1646
1564
|
/**
|
|
1647
1565
|
* 422 response for DELETE DnsByZoneName endpoint
|
|
@@ -1656,7 +1574,7 @@ export type DELETE_DnsByZoneName = {
|
|
|
1656
1574
|
* @path /v1/dns/{zone_name}
|
|
1657
1575
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1658
1576
|
*
|
|
1659
|
-
* @see {@link
|
|
1577
|
+
* @see {@link DELETE_DnsByZoneName_Response} - The main response type definition
|
|
1660
1578
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1661
1579
|
*/
|
|
1662
1580
|
export type DELETE_DnsByZoneName_Response_422 = HTTPValidationError
|
|
@@ -1681,10 +1599,7 @@ export type DELETE_DnsByZoneName_Response_422 = HTTPValidationError
|
|
|
1681
1599
|
*
|
|
1682
1600
|
|
|
1683
1601
|
*/
|
|
1684
|
-
export type
|
|
1685
|
-
200: GET_DnsByZoneName_Response_200
|
|
1686
|
-
422: GET_DnsByZoneName_Response_422
|
|
1687
|
-
}
|
|
1602
|
+
export type GET_DnsByZoneName_Response = GET_DnsByZoneName_Response_200 | GET_DnsByZoneName_Response_422;
|
|
1688
1603
|
|
|
1689
1604
|
/**
|
|
1690
1605
|
* 200 response for GET DnsByZoneName endpoint
|
|
@@ -1699,7 +1614,7 @@ export type GET_DnsByZoneName = {
|
|
|
1699
1614
|
* @path /v1/dns/{zone_name}
|
|
1700
1615
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1701
1616
|
*
|
|
1702
|
-
* @see {@link
|
|
1617
|
+
* @see {@link GET_DnsByZoneName_Response} - The main response type definition
|
|
1703
1618
|
* @see {@link DnsZone} - The actual schema type definition
|
|
1704
1619
|
*/
|
|
1705
1620
|
export type GET_DnsByZoneName_Response_200 = DnsZone
|
|
@@ -1717,7 +1632,7 @@ export type GET_DnsByZoneName_Response_200 = DnsZone
|
|
|
1717
1632
|
* @path /v1/dns/{zone_name}
|
|
1718
1633
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1719
1634
|
*
|
|
1720
|
-
* @see {@link
|
|
1635
|
+
* @see {@link GET_DnsByZoneName_Response} - The main response type definition
|
|
1721
1636
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1722
1637
|
*/
|
|
1723
1638
|
export type GET_DnsByZoneName_Response_422 = HTTPValidationError
|
|
@@ -1742,10 +1657,7 @@ export type GET_DnsByZoneName_Response_422 = HTTPValidationError
|
|
|
1742
1657
|
*
|
|
1743
1658
|
|
|
1744
1659
|
*/
|
|
1745
|
-
export type
|
|
1746
|
-
200: POST_DnsByZoneNameDnssecDisable_Response_200
|
|
1747
|
-
422: POST_DnsByZoneNameDnssecDisable_Response_422
|
|
1748
|
-
}
|
|
1660
|
+
export type POST_DnsByZoneNameDnssecDisable_Response = POST_DnsByZoneNameDnssecDisable_Response_200 | POST_DnsByZoneNameDnssecDisable_Response_422;
|
|
1749
1661
|
|
|
1750
1662
|
/**
|
|
1751
1663
|
* 200 response for POST DnsByZoneNameDnssecDisable endpoint
|
|
@@ -1760,7 +1672,7 @@ export type POST_DnsByZoneNameDnssecDisable = {
|
|
|
1760
1672
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
1761
1673
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1762
1674
|
*
|
|
1763
|
-
* @see {@link
|
|
1675
|
+
* @see {@link POST_DnsByZoneNameDnssecDisable_Response} - The main response type definition
|
|
1764
1676
|
* @see {@link DnsChanges} - The actual schema type definition
|
|
1765
1677
|
*/
|
|
1766
1678
|
export type POST_DnsByZoneNameDnssecDisable_Response_200 = DnsChanges
|
|
@@ -1778,7 +1690,7 @@ export type POST_DnsByZoneNameDnssecDisable_Response_200 = DnsChanges
|
|
|
1778
1690
|
* @path /v1/dns/{zone_name}/dnssec/disable
|
|
1779
1691
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1780
1692
|
*
|
|
1781
|
-
* @see {@link
|
|
1693
|
+
* @see {@link POST_DnsByZoneNameDnssecDisable_Response} - The main response type definition
|
|
1782
1694
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1783
1695
|
*/
|
|
1784
1696
|
export type POST_DnsByZoneNameDnssecDisable_Response_422 = HTTPValidationError
|
|
@@ -1803,10 +1715,7 @@ export type POST_DnsByZoneNameDnssecDisable_Response_422 = HTTPValidationError
|
|
|
1803
1715
|
*
|
|
1804
1716
|
|
|
1805
1717
|
*/
|
|
1806
|
-
export type
|
|
1807
|
-
200: POST_DnsByZoneNameDnssecEnable_Response_200
|
|
1808
|
-
422: POST_DnsByZoneNameDnssecEnable_Response_422
|
|
1809
|
-
}
|
|
1718
|
+
export type POST_DnsByZoneNameDnssecEnable_Response = POST_DnsByZoneNameDnssecEnable_Response_200 | POST_DnsByZoneNameDnssecEnable_Response_422;
|
|
1810
1719
|
|
|
1811
1720
|
/**
|
|
1812
1721
|
* 200 response for POST DnsByZoneNameDnssecEnable endpoint
|
|
@@ -1821,7 +1730,7 @@ export type POST_DnsByZoneNameDnssecEnable = {
|
|
|
1821
1730
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
1822
1731
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1823
1732
|
*
|
|
1824
|
-
* @see {@link
|
|
1733
|
+
* @see {@link POST_DnsByZoneNameDnssecEnable_Response} - The main response type definition
|
|
1825
1734
|
* @see {@link DnsChanges} - The actual schema type definition
|
|
1826
1735
|
*/
|
|
1827
1736
|
export type POST_DnsByZoneNameDnssecEnable_Response_200 = DnsChanges
|
|
@@ -1839,7 +1748,7 @@ export type POST_DnsByZoneNameDnssecEnable_Response_200 = DnsChanges
|
|
|
1839
1748
|
* @path /v1/dns/{zone_name}/dnssec/enable
|
|
1840
1749
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1841
1750
|
*
|
|
1842
|
-
* @see {@link
|
|
1751
|
+
* @see {@link POST_DnsByZoneNameDnssecEnable_Response} - The main response type definition
|
|
1843
1752
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1844
1753
|
*/
|
|
1845
1754
|
export type POST_DnsByZoneNameDnssecEnable_Response_422 = HTTPValidationError
|
|
@@ -1863,9 +1772,7 @@ export type POST_DnsByZoneNameDnssecEnable_Response_422 = HTTPValidationError
|
|
|
1863
1772
|
*
|
|
1864
1773
|
|
|
1865
1774
|
*/
|
|
1866
|
-
export type
|
|
1867
|
-
422: PATCH_DnsByZoneNameRecords_Response_422
|
|
1868
|
-
}
|
|
1775
|
+
export type PATCH_DnsByZoneNameRecords_Response = PATCH_DnsByZoneNameRecords_Response_422;
|
|
1869
1776
|
|
|
1870
1777
|
/**
|
|
1871
1778
|
* 422 response for PATCH DnsByZoneNameRecords endpoint
|
|
@@ -1880,7 +1787,7 @@ export type PATCH_DnsByZoneNameRecords = {
|
|
|
1880
1787
|
* @path /v1/dns/{zone_name}/records
|
|
1881
1788
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1882
1789
|
*
|
|
1883
|
-
* @see {@link
|
|
1790
|
+
* @see {@link PATCH_DnsByZoneNameRecords_Response} - The main response type definition
|
|
1884
1791
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1885
1792
|
*/
|
|
1886
1793
|
export type PATCH_DnsByZoneNameRecords_Response_422 = HTTPValidationError
|
|
@@ -1904,9 +1811,7 @@ export type PATCH_DnsByZoneNameRecords_Response_422 = HTTPValidationError
|
|
|
1904
1811
|
*
|
|
1905
1812
|
|
|
1906
1813
|
*/
|
|
1907
|
-
export type
|
|
1908
|
-
422: PATCH_DnsByZoneNameRrsets_Response_422
|
|
1909
|
-
}
|
|
1814
|
+
export type PATCH_DnsByZoneNameRrsets_Response = PATCH_DnsByZoneNameRrsets_Response_422;
|
|
1910
1815
|
|
|
1911
1816
|
/**
|
|
1912
1817
|
* 422 response for PATCH DnsByZoneNameRrsets endpoint
|
|
@@ -1921,7 +1826,7 @@ export type PATCH_DnsByZoneNameRrsets = {
|
|
|
1921
1826
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1922
1827
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1923
1828
|
*
|
|
1924
|
-
* @see {@link
|
|
1829
|
+
* @see {@link PATCH_DnsByZoneNameRrsets_Response} - The main response type definition
|
|
1925
1830
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1926
1831
|
*/
|
|
1927
1832
|
export type PATCH_DnsByZoneNameRrsets_Response_422 = HTTPValidationError
|
|
@@ -1945,9 +1850,7 @@ export type PATCH_DnsByZoneNameRrsets_Response_422 = HTTPValidationError
|
|
|
1945
1850
|
*
|
|
1946
1851
|
|
|
1947
1852
|
*/
|
|
1948
|
-
export type
|
|
1949
|
-
422: PUT_DnsByZoneNameRrsets_Response_422
|
|
1950
|
-
}
|
|
1853
|
+
export type PUT_DnsByZoneNameRrsets_Response = PUT_DnsByZoneNameRrsets_Response_422;
|
|
1951
1854
|
|
|
1952
1855
|
/**
|
|
1953
1856
|
* 422 response for PUT DnsByZoneNameRrsets endpoint
|
|
@@ -1962,7 +1865,7 @@ export type PUT_DnsByZoneNameRrsets = {
|
|
|
1962
1865
|
* @path /v1/dns/{zone_name}/rrsets
|
|
1963
1866
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1964
1867
|
*
|
|
1965
|
-
* @see {@link
|
|
1868
|
+
* @see {@link PUT_DnsByZoneNameRrsets_Response} - The main response type definition
|
|
1966
1869
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
1967
1870
|
*/
|
|
1968
1871
|
export type PUT_DnsByZoneNameRrsets_Response_422 = HTTPValidationError
|
|
@@ -1994,12 +1897,7 @@ Specify one or more TLDs to include in the search.
|
|
|
1994
1897
|
*
|
|
1995
1898
|
|
|
1996
1899
|
*/
|
|
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
|
-
}
|
|
1900
|
+
export type GET_DomainSearchSuggest_Response = GET_DomainSearchSuggest_Response_200 | GET_DomainSearchSuggest_Response_401 | GET_DomainSearchSuggest_Response_422 | GET_DomainSearchSuggest_Response_502;
|
|
2003
1901
|
|
|
2004
1902
|
/**
|
|
2005
1903
|
* 200 response for GET DomainSearchSuggest endpoint
|
|
@@ -2019,7 +1917,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2019
1917
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2020
1918
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2021
1919
|
*
|
|
2022
|
-
* @see {@link
|
|
1920
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2023
1921
|
* @see {@link DomainSearch} - The actual schema type definition
|
|
2024
1922
|
*/
|
|
2025
1923
|
export type GET_DomainSearchSuggest_Response_200 = DomainSearch
|
|
@@ -2042,7 +1940,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2042
1940
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2043
1941
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2044
1942
|
*
|
|
2045
|
-
* @see {@link
|
|
1943
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2046
1944
|
* @see {@link Problem} - The actual schema type definition
|
|
2047
1945
|
*/
|
|
2048
1946
|
export type GET_DomainSearchSuggest_Response_401 = Problem
|
|
@@ -2065,7 +1963,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2065
1963
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2066
1964
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2067
1965
|
*
|
|
2068
|
-
* @see {@link
|
|
1966
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2069
1967
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2070
1968
|
*/
|
|
2071
1969
|
export type GET_DomainSearchSuggest_Response_422 = HTTPValidationError
|
|
@@ -2088,7 +1986,7 @@ Specify one or more TLDs to include in the search.
|
|
|
2088
1986
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2089
1987
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2090
1988
|
*
|
|
2091
|
-
* @see {@link
|
|
1989
|
+
* @see {@link GET_DomainSearchSuggest_Response} - The main response type definition
|
|
2092
1990
|
* @see {@link Problem} - The actual schema type definition
|
|
2093
1991
|
*/
|
|
2094
1992
|
export type GET_DomainSearchSuggest_Response_502 = Problem
|
|
@@ -2113,10 +2011,7 @@ export type GET_DomainSearchSuggest_Response_502 = Problem
|
|
|
2113
2011
|
*
|
|
2114
2012
|
|
|
2115
2013
|
*/
|
|
2116
|
-
export type
|
|
2117
|
-
200: GET_Domains_Response_200
|
|
2118
|
-
422: GET_Domains_Response_422
|
|
2119
|
-
}
|
|
2014
|
+
export type GET_Domains_Response = GET_Domains_Response_200 | GET_Domains_Response_422;
|
|
2120
2015
|
|
|
2121
2016
|
/**
|
|
2122
2017
|
* 200 response for GET Domains endpoint
|
|
@@ -2130,7 +2025,7 @@ export type GET_Domains = {
|
|
|
2130
2025
|
*
|
|
2131
2026
|
* @path /v1/domains
|
|
2132
2027
|
*
|
|
2133
|
-
* @see {@link
|
|
2028
|
+
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2134
2029
|
* @see {@link Pagination_Domain} - The actual schema type definition
|
|
2135
2030
|
*/
|
|
2136
2031
|
export type GET_Domains_Response_200 = Pagination_Domain
|
|
@@ -2147,7 +2042,7 @@ export type GET_Domains_Response_200 = Pagination_Domain
|
|
|
2147
2042
|
*
|
|
2148
2043
|
* @path /v1/domains
|
|
2149
2044
|
*
|
|
2150
|
-
* @see {@link
|
|
2045
|
+
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2151
2046
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2152
2047
|
*/
|
|
2153
2048
|
export type GET_Domains_Response_422 = HTTPValidationError
|
|
@@ -2175,13 +2070,7 @@ export type GET_Domains_Response_422 = HTTPValidationError
|
|
|
2175
2070
|
*
|
|
2176
2071
|
|
|
2177
2072
|
*/
|
|
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
|
-
}
|
|
2073
|
+
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
2074
|
|
|
2186
2075
|
/**
|
|
2187
2076
|
* 201 response for POST Domains endpoint
|
|
@@ -2195,7 +2084,7 @@ export type POST_Domains = {
|
|
|
2195
2084
|
*
|
|
2196
2085
|
* @path /v1/domains
|
|
2197
2086
|
*
|
|
2198
|
-
* @see {@link
|
|
2087
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2199
2088
|
* @see {@link Domain} - The actual schema type definition
|
|
2200
2089
|
*/
|
|
2201
2090
|
export type POST_Domains_Response_201 = Domain
|
|
@@ -2212,7 +2101,7 @@ export type POST_Domains_Response_201 = Domain
|
|
|
2212
2101
|
*
|
|
2213
2102
|
* @path /v1/domains
|
|
2214
2103
|
*
|
|
2215
|
-
* @see {@link
|
|
2104
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2216
2105
|
* @see {@link Problem} - The actual schema type definition
|
|
2217
2106
|
*/
|
|
2218
2107
|
export type POST_Domains_Response_400 = Problem
|
|
@@ -2229,7 +2118,7 @@ export type POST_Domains_Response_400 = Problem
|
|
|
2229
2118
|
*
|
|
2230
2119
|
* @path /v1/domains
|
|
2231
2120
|
*
|
|
2232
|
-
* @see {@link
|
|
2121
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2233
2122
|
* @see {@link Problem} - The actual schema type definition
|
|
2234
2123
|
*/
|
|
2235
2124
|
export type POST_Domains_Response_404 = Problem
|
|
@@ -2246,7 +2135,7 @@ export type POST_Domains_Response_404 = Problem
|
|
|
2246
2135
|
*
|
|
2247
2136
|
* @path /v1/domains
|
|
2248
2137
|
*
|
|
2249
|
-
* @see {@link
|
|
2138
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2250
2139
|
* @see {@link Problem} - The actual schema type definition
|
|
2251
2140
|
*/
|
|
2252
2141
|
export type POST_Domains_Response_409 = Problem
|
|
@@ -2263,7 +2152,7 @@ export type POST_Domains_Response_409 = Problem
|
|
|
2263
2152
|
*
|
|
2264
2153
|
* @path /v1/domains
|
|
2265
2154
|
*
|
|
2266
|
-
* @see {@link
|
|
2155
|
+
* @see {@link POST_Domains_Response} - The main response type definition
|
|
2267
2156
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2268
2157
|
*/
|
|
2269
2158
|
export type POST_Domains_Response_422 = HTTPValidationError
|
|
@@ -2290,11 +2179,7 @@ and will enter a redemption period during which it may be restored.
|
|
|
2290
2179
|
*
|
|
2291
2180
|
|
|
2292
2181
|
*/
|
|
2293
|
-
export type
|
|
2294
|
-
404: DELETE_DomainsByDomainReference_Response_404
|
|
2295
|
-
409: DELETE_DomainsByDomainReference_Response_409
|
|
2296
|
-
422: DELETE_DomainsByDomainReference_Response_422
|
|
2297
|
-
}
|
|
2182
|
+
export type DELETE_DomainsByDomainReference_Response = DELETE_DomainsByDomainReference_Response_404 | DELETE_DomainsByDomainReference_Response_409 | DELETE_DomainsByDomainReference_Response_422;
|
|
2298
2183
|
|
|
2299
2184
|
/**
|
|
2300
2185
|
* 404 response for DELETE DomainsByDomainReference endpoint
|
|
@@ -2308,7 +2193,7 @@ export type DELETE_DomainsByDomainReference = {
|
|
|
2308
2193
|
*
|
|
2309
2194
|
* @path /v1/domains/{domain_reference}
|
|
2310
2195
|
*
|
|
2311
|
-
* @see {@link
|
|
2196
|
+
* @see {@link DELETE_DomainsByDomainReference_Response} - The main response type definition
|
|
2312
2197
|
* @see {@link Problem} - The actual schema type definition
|
|
2313
2198
|
*/
|
|
2314
2199
|
export type DELETE_DomainsByDomainReference_Response_404 = Problem
|
|
@@ -2325,7 +2210,7 @@ export type DELETE_DomainsByDomainReference_Response_404 = Problem
|
|
|
2325
2210
|
*
|
|
2326
2211
|
* @path /v1/domains/{domain_reference}
|
|
2327
2212
|
*
|
|
2328
|
-
* @see {@link
|
|
2213
|
+
* @see {@link DELETE_DomainsByDomainReference_Response} - The main response type definition
|
|
2329
2214
|
* @see {@link Problem} - The actual schema type definition
|
|
2330
2215
|
*/
|
|
2331
2216
|
export type DELETE_DomainsByDomainReference_Response_409 = Problem
|
|
@@ -2342,7 +2227,7 @@ export type DELETE_DomainsByDomainReference_Response_409 = Problem
|
|
|
2342
2227
|
*
|
|
2343
2228
|
* @path /v1/domains/{domain_reference}
|
|
2344
2229
|
*
|
|
2345
|
-
* @see {@link
|
|
2230
|
+
* @see {@link DELETE_DomainsByDomainReference_Response} - The main response type definition
|
|
2346
2231
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2347
2232
|
*/
|
|
2348
2233
|
export type DELETE_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
@@ -2368,11 +2253,7 @@ export type DELETE_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
|
2368
2253
|
*
|
|
2369
2254
|
|
|
2370
2255
|
*/
|
|
2371
|
-
export type
|
|
2372
|
-
200: GET_DomainsByDomainReference_Response_200
|
|
2373
|
-
404: GET_DomainsByDomainReference_Response_404
|
|
2374
|
-
422: GET_DomainsByDomainReference_Response_422
|
|
2375
|
-
}
|
|
2256
|
+
export type GET_DomainsByDomainReference_Response = GET_DomainsByDomainReference_Response_200 | GET_DomainsByDomainReference_Response_404 | GET_DomainsByDomainReference_Response_422;
|
|
2376
2257
|
|
|
2377
2258
|
/**
|
|
2378
2259
|
* 200 response for GET DomainsByDomainReference endpoint
|
|
@@ -2386,7 +2267,7 @@ export type GET_DomainsByDomainReference = {
|
|
|
2386
2267
|
*
|
|
2387
2268
|
* @path /v1/domains/{domain_reference}
|
|
2388
2269
|
*
|
|
2389
|
-
* @see {@link
|
|
2270
|
+
* @see {@link GET_DomainsByDomainReference_Response} - The main response type definition
|
|
2390
2271
|
* @see {@link Domain} - The actual schema type definition
|
|
2391
2272
|
*/
|
|
2392
2273
|
export type GET_DomainsByDomainReference_Response_200 = Domain
|
|
@@ -2403,7 +2284,7 @@ export type GET_DomainsByDomainReference_Response_200 = Domain
|
|
|
2403
2284
|
*
|
|
2404
2285
|
* @path /v1/domains/{domain_reference}
|
|
2405
2286
|
*
|
|
2406
|
-
* @see {@link
|
|
2287
|
+
* @see {@link GET_DomainsByDomainReference_Response} - The main response type definition
|
|
2407
2288
|
* @see {@link Problem} - The actual schema type definition
|
|
2408
2289
|
*/
|
|
2409
2290
|
export type GET_DomainsByDomainReference_Response_404 = Problem
|
|
@@ -2420,7 +2301,7 @@ export type GET_DomainsByDomainReference_Response_404 = Problem
|
|
|
2420
2301
|
*
|
|
2421
2302
|
* @path /v1/domains/{domain_reference}
|
|
2422
2303
|
*
|
|
2423
|
-
* @see {@link
|
|
2304
|
+
* @see {@link GET_DomainsByDomainReference_Response} - The main response type definition
|
|
2424
2305
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2425
2306
|
*/
|
|
2426
2307
|
export type GET_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
@@ -2448,11 +2329,7 @@ Providing `clientTransferProhibited` as a status will set the `transfer_lock` pr
|
|
|
2448
2329
|
*
|
|
2449
2330
|
|
|
2450
2331
|
*/
|
|
2451
|
-
export type
|
|
2452
|
-
200: PATCH_DomainsByDomainReference_Response_200
|
|
2453
|
-
404: PATCH_DomainsByDomainReference_Response_404
|
|
2454
|
-
422: PATCH_DomainsByDomainReference_Response_422
|
|
2455
|
-
}
|
|
2332
|
+
export type PATCH_DomainsByDomainReference_Response = PATCH_DomainsByDomainReference_Response_200 | PATCH_DomainsByDomainReference_Response_404 | PATCH_DomainsByDomainReference_Response_422;
|
|
2456
2333
|
|
|
2457
2334
|
/**
|
|
2458
2335
|
* 200 response for PATCH DomainsByDomainReference endpoint
|
|
@@ -2466,7 +2343,7 @@ export type PATCH_DomainsByDomainReference = {
|
|
|
2466
2343
|
*
|
|
2467
2344
|
* @path /v1/domains/{domain_reference}
|
|
2468
2345
|
*
|
|
2469
|
-
* @see {@link
|
|
2346
|
+
* @see {@link PATCH_DomainsByDomainReference_Response} - The main response type definition
|
|
2470
2347
|
* @see {@link Domain} - The actual schema type definition
|
|
2471
2348
|
*/
|
|
2472
2349
|
export type PATCH_DomainsByDomainReference_Response_200 = Domain
|
|
@@ -2483,7 +2360,7 @@ export type PATCH_DomainsByDomainReference_Response_200 = Domain
|
|
|
2483
2360
|
*
|
|
2484
2361
|
* @path /v1/domains/{domain_reference}
|
|
2485
2362
|
*
|
|
2486
|
-
* @see {@link
|
|
2363
|
+
* @see {@link PATCH_DomainsByDomainReference_Response} - The main response type definition
|
|
2487
2364
|
* @see {@link Problem} - The actual schema type definition
|
|
2488
2365
|
*/
|
|
2489
2366
|
export type PATCH_DomainsByDomainReference_Response_404 = Problem
|
|
@@ -2500,7 +2377,7 @@ export type PATCH_DomainsByDomainReference_Response_404 = Problem
|
|
|
2500
2377
|
*
|
|
2501
2378
|
* @path /v1/domains/{domain_reference}
|
|
2502
2379
|
*
|
|
2503
|
-
* @see {@link
|
|
2380
|
+
* @see {@link PATCH_DomainsByDomainReference_Response} - The main response type definition
|
|
2504
2381
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2505
2382
|
*/
|
|
2506
2383
|
export type PATCH_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
@@ -2525,10 +2402,7 @@ export type PATCH_DomainsByDomainReference_Response_422 = HTTPValidationError
|
|
|
2525
2402
|
*
|
|
2526
2403
|
|
|
2527
2404
|
*/
|
|
2528
|
-
export type
|
|
2529
|
-
404: DELETE_DomainsByDomainReferenceDnssec_Response_404
|
|
2530
|
-
422: DELETE_DomainsByDomainReferenceDnssec_Response_422
|
|
2531
|
-
}
|
|
2405
|
+
export type DELETE_DomainsByDomainReferenceDnssec_Response = DELETE_DomainsByDomainReferenceDnssec_Response_404 | DELETE_DomainsByDomainReferenceDnssec_Response_422;
|
|
2532
2406
|
|
|
2533
2407
|
/**
|
|
2534
2408
|
* 404 response for DELETE DomainsByDomainReferenceDnssec endpoint
|
|
@@ -2542,7 +2416,7 @@ export type DELETE_DomainsByDomainReferenceDnssec = {
|
|
|
2542
2416
|
*
|
|
2543
2417
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2544
2418
|
*
|
|
2545
|
-
* @see {@link
|
|
2419
|
+
* @see {@link DELETE_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2546
2420
|
* @see {@link Problem} - The actual schema type definition
|
|
2547
2421
|
*/
|
|
2548
2422
|
export type DELETE_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
@@ -2559,7 +2433,7 @@ export type DELETE_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2559
2433
|
*
|
|
2560
2434
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2561
2435
|
*
|
|
2562
|
-
* @see {@link
|
|
2436
|
+
* @see {@link DELETE_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2563
2437
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2564
2438
|
*/
|
|
2565
2439
|
export type DELETE_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationError
|
|
@@ -2585,11 +2459,7 @@ export type DELETE_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationE
|
|
|
2585
2459
|
*
|
|
2586
2460
|
|
|
2587
2461
|
*/
|
|
2588
|
-
export type
|
|
2589
|
-
200: GET_DomainsByDomainReferenceDnssec_Response_200
|
|
2590
|
-
404: GET_DomainsByDomainReferenceDnssec_Response_404
|
|
2591
|
-
422: GET_DomainsByDomainReferenceDnssec_Response_422
|
|
2592
|
-
}
|
|
2462
|
+
export type GET_DomainsByDomainReferenceDnssec_Response = GET_DomainsByDomainReferenceDnssec_Response_200 | GET_DomainsByDomainReferenceDnssec_Response_404 | GET_DomainsByDomainReferenceDnssec_Response_422;
|
|
2593
2463
|
|
|
2594
2464
|
/**
|
|
2595
2465
|
* 200 response for GET DomainsByDomainReferenceDnssec endpoint
|
|
@@ -2603,7 +2473,7 @@ export type GET_DomainsByDomainReferenceDnssec = {
|
|
|
2603
2473
|
*
|
|
2604
2474
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2605
2475
|
*
|
|
2606
|
-
* @see {@link
|
|
2476
|
+
* @see {@link GET_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2607
2477
|
* @see {@link DomainDnssecData} - The actual schema type definition
|
|
2608
2478
|
*/
|
|
2609
2479
|
export type GET_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataArray
|
|
@@ -2620,7 +2490,7 @@ export type GET_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataAr
|
|
|
2620
2490
|
*
|
|
2621
2491
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2622
2492
|
*
|
|
2623
|
-
* @see {@link
|
|
2493
|
+
* @see {@link GET_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2624
2494
|
* @see {@link Problem} - The actual schema type definition
|
|
2625
2495
|
*/
|
|
2626
2496
|
export type GET_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
@@ -2637,7 +2507,7 @@ export type GET_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2637
2507
|
*
|
|
2638
2508
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2639
2509
|
*
|
|
2640
|
-
* @see {@link
|
|
2510
|
+
* @see {@link GET_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2641
2511
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2642
2512
|
*/
|
|
2643
2513
|
export type GET_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationError
|
|
@@ -2663,11 +2533,7 @@ export type GET_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationErro
|
|
|
2663
2533
|
*
|
|
2664
2534
|
|
|
2665
2535
|
*/
|
|
2666
|
-
export type
|
|
2667
|
-
200: PUT_DomainsByDomainReferenceDnssec_Response_200
|
|
2668
|
-
404: PUT_DomainsByDomainReferenceDnssec_Response_404
|
|
2669
|
-
422: PUT_DomainsByDomainReferenceDnssec_Response_422
|
|
2670
|
-
}
|
|
2536
|
+
export type PUT_DomainsByDomainReferenceDnssec_Response = PUT_DomainsByDomainReferenceDnssec_Response_200 | PUT_DomainsByDomainReferenceDnssec_Response_404 | PUT_DomainsByDomainReferenceDnssec_Response_422;
|
|
2671
2537
|
|
|
2672
2538
|
/**
|
|
2673
2539
|
* 200 response for PUT DomainsByDomainReferenceDnssec endpoint
|
|
@@ -2681,7 +2547,7 @@ export type PUT_DomainsByDomainReferenceDnssec = {
|
|
|
2681
2547
|
*
|
|
2682
2548
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2683
2549
|
*
|
|
2684
|
-
* @see {@link
|
|
2550
|
+
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2685
2551
|
* @see {@link DomainDnssecData} - The actual schema type definition
|
|
2686
2552
|
*/
|
|
2687
2553
|
export type PUT_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataArray
|
|
@@ -2698,7 +2564,7 @@ export type PUT_DomainsByDomainReferenceDnssec_Response_200 = DomainDnssecDataAr
|
|
|
2698
2564
|
*
|
|
2699
2565
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2700
2566
|
*
|
|
2701
|
-
* @see {@link
|
|
2567
|
+
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2702
2568
|
* @see {@link Problem} - The actual schema type definition
|
|
2703
2569
|
*/
|
|
2704
2570
|
export type PUT_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
@@ -2715,7 +2581,7 @@ export type PUT_DomainsByDomainReferenceDnssec_Response_404 = Problem
|
|
|
2715
2581
|
*
|
|
2716
2582
|
* @path /v1/domains/{domain_reference}/dnssec
|
|
2717
2583
|
*
|
|
2718
|
-
* @see {@link
|
|
2584
|
+
* @see {@link PUT_DomainsByDomainReferenceDnssec_Response} - The main response type definition
|
|
2719
2585
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2720
2586
|
*/
|
|
2721
2587
|
export type PUT_DomainsByDomainReferenceDnssec_Response_422 = HTTPValidationError
|
|
@@ -2741,10 +2607,7 @@ to the current expiration date of the domain.
|
|
|
2741
2607
|
*
|
|
2742
2608
|
|
|
2743
2609
|
*/
|
|
2744
|
-
export type
|
|
2745
|
-
200: POST_DomainsByDomainReferenceRenew_Response_200
|
|
2746
|
-
422: POST_DomainsByDomainReferenceRenew_Response_422
|
|
2747
|
-
}
|
|
2610
|
+
export type POST_DomainsByDomainReferenceRenew_Response = POST_DomainsByDomainReferenceRenew_Response_200 | POST_DomainsByDomainReferenceRenew_Response_422;
|
|
2748
2611
|
|
|
2749
2612
|
/**
|
|
2750
2613
|
* 200 response for POST DomainsByDomainReferenceRenew endpoint
|
|
@@ -2758,7 +2621,7 @@ export type POST_DomainsByDomainReferenceRenew = {
|
|
|
2758
2621
|
*
|
|
2759
2622
|
* @path /v1/domains/{domain_reference}/renew
|
|
2760
2623
|
*
|
|
2761
|
-
* @see {@link
|
|
2624
|
+
* @see {@link POST_DomainsByDomainReferenceRenew_Response} - The main response type definition
|
|
2762
2625
|
* @see {@link DomainRenew} - The actual schema type definition
|
|
2763
2626
|
*/
|
|
2764
2627
|
export type POST_DomainsByDomainReferenceRenew_Response_200 = DomainRenew
|
|
@@ -2775,7 +2638,7 @@ export type POST_DomainsByDomainReferenceRenew_Response_200 = DomainRenew
|
|
|
2775
2638
|
*
|
|
2776
2639
|
* @path /v1/domains/{domain_reference}/renew
|
|
2777
2640
|
*
|
|
2778
|
-
* @see {@link
|
|
2641
|
+
* @see {@link POST_DomainsByDomainReferenceRenew_Response} - The main response type definition
|
|
2779
2642
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2780
2643
|
*/
|
|
2781
2644
|
export type POST_DomainsByDomainReferenceRenew_Response_422 = HTTPValidationError
|
|
@@ -2801,11 +2664,7 @@ export type POST_DomainsByDomainReferenceRenew_Response_422 = HTTPValidationErro
|
|
|
2801
2664
|
*
|
|
2802
2665
|
|
|
2803
2666
|
*/
|
|
2804
|
-
export type
|
|
2805
|
-
404: DELETE_DomainsByDomainReferenceTransfer_Response_404
|
|
2806
|
-
409: DELETE_DomainsByDomainReferenceTransfer_Response_409
|
|
2807
|
-
422: DELETE_DomainsByDomainReferenceTransfer_Response_422
|
|
2808
|
-
}
|
|
2667
|
+
export type DELETE_DomainsByDomainReferenceTransfer_Response = DELETE_DomainsByDomainReferenceTransfer_Response_404 | DELETE_DomainsByDomainReferenceTransfer_Response_409 | DELETE_DomainsByDomainReferenceTransfer_Response_422;
|
|
2809
2668
|
|
|
2810
2669
|
/**
|
|
2811
2670
|
* 404 response for DELETE DomainsByDomainReferenceTransfer endpoint
|
|
@@ -2819,7 +2678,7 @@ export type DELETE_DomainsByDomainReferenceTransfer = {
|
|
|
2819
2678
|
*
|
|
2820
2679
|
* @path /v1/domains/{domain_reference}/transfer
|
|
2821
2680
|
*
|
|
2822
|
-
* @see {@link
|
|
2681
|
+
* @see {@link DELETE_DomainsByDomainReferenceTransfer_Response} - The main response type definition
|
|
2823
2682
|
* @see {@link Problem} - The actual schema type definition
|
|
2824
2683
|
*/
|
|
2825
2684
|
export type DELETE_DomainsByDomainReferenceTransfer_Response_404 = Problem
|
|
@@ -2836,7 +2695,7 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_404 = Problem
|
|
|
2836
2695
|
*
|
|
2837
2696
|
* @path /v1/domains/{domain_reference}/transfer
|
|
2838
2697
|
*
|
|
2839
|
-
* @see {@link
|
|
2698
|
+
* @see {@link DELETE_DomainsByDomainReferenceTransfer_Response} - The main response type definition
|
|
2840
2699
|
* @see {@link Problem} - The actual schema type definition
|
|
2841
2700
|
*/
|
|
2842
2701
|
export type DELETE_DomainsByDomainReferenceTransfer_Response_409 = Problem
|
|
@@ -2853,7 +2712,7 @@ export type DELETE_DomainsByDomainReferenceTransfer_Response_409 = Problem
|
|
|
2853
2712
|
*
|
|
2854
2713
|
* @path /v1/domains/{domain_reference}/transfer
|
|
2855
2714
|
*
|
|
2856
|
-
* @see {@link
|
|
2715
|
+
* @see {@link DELETE_DomainsByDomainReferenceTransfer_Response} - The main response type definition
|
|
2857
2716
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2858
2717
|
*/
|
|
2859
2718
|
export type DELETE_DomainsByDomainReferenceTransfer_Response_422 = HTTPValidationError
|
|
@@ -2880,10 +2739,7 @@ Specify one or more domains to check for availability.
|
|
|
2880
2739
|
*
|
|
2881
2740
|
|
|
2882
2741
|
*/
|
|
2883
|
-
export type
|
|
2884
|
-
200: GET_DomainsCheck_Response_200
|
|
2885
|
-
422: GET_DomainsCheck_Response_422
|
|
2886
|
-
}
|
|
2742
|
+
export type GET_DomainsCheck_Response = GET_DomainsCheck_Response_200 | GET_DomainsCheck_Response_422;
|
|
2887
2743
|
|
|
2888
2744
|
/**
|
|
2889
2745
|
* 200 response for GET DomainsCheck endpoint
|
|
@@ -2900,7 +2756,7 @@ export type GET_DomainsCheck = {
|
|
|
2900
2756
|
Specify one or more domains to check for availability.
|
|
2901
2757
|
|
|
2902
2758
|
*
|
|
2903
|
-
* @see {@link
|
|
2759
|
+
* @see {@link GET_DomainsCheck_Response} - The main response type definition
|
|
2904
2760
|
* @see {@link DomainCheck} - The actual schema type definition
|
|
2905
2761
|
*/
|
|
2906
2762
|
export type GET_DomainsCheck_Response_200 = DomainCheck
|
|
@@ -2920,7 +2776,7 @@ export type GET_DomainsCheck_Response_200 = DomainCheck
|
|
|
2920
2776
|
Specify one or more domains to check for availability.
|
|
2921
2777
|
|
|
2922
2778
|
*
|
|
2923
|
-
* @see {@link
|
|
2779
|
+
* @see {@link GET_DomainsCheck_Response} - The main response type definition
|
|
2924
2780
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
2925
2781
|
*/
|
|
2926
2782
|
export type GET_DomainsCheck_Response_422 = HTTPValidationError
|
|
@@ -2944,9 +2800,7 @@ export type GET_DomainsCheck_Response_422 = HTTPValidationError
|
|
|
2944
2800
|
*
|
|
2945
2801
|
|
|
2946
2802
|
*/
|
|
2947
|
-
export type
|
|
2948
|
-
200: GET_DomainsSummary_Response_200
|
|
2949
|
-
}
|
|
2803
|
+
export type GET_DomainsSummary_Response = GET_DomainsSummary_Response_200;
|
|
2950
2804
|
|
|
2951
2805
|
/**
|
|
2952
2806
|
* 200 response for GET DomainsSummary endpoint
|
|
@@ -2960,7 +2814,7 @@ export type GET_DomainsSummary = {
|
|
|
2960
2814
|
*
|
|
2961
2815
|
* @path /v1/domains/summary
|
|
2962
2816
|
*
|
|
2963
|
-
* @see {@link
|
|
2817
|
+
* @see {@link GET_DomainsSummary_Response} - The main response type definition
|
|
2964
2818
|
* @see {@link DomainSummary} - The actual schema type definition
|
|
2965
2819
|
*/
|
|
2966
2820
|
export type GET_DomainsSummary_Response_200 = DomainSummary
|
|
@@ -2990,13 +2844,7 @@ This process can take up to 5 days, until the transfer is approved
|
|
|
2990
2844
|
*
|
|
2991
2845
|
|
|
2992
2846
|
*/
|
|
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
|
-
}
|
|
2847
|
+
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
2848
|
|
|
3001
2849
|
/**
|
|
3002
2850
|
* 201 response for POST DomainsTransfer endpoint
|
|
@@ -3010,7 +2858,7 @@ export type POST_DomainsTransfer = {
|
|
|
3010
2858
|
*
|
|
3011
2859
|
* @path /v1/domains/transfer
|
|
3012
2860
|
*
|
|
3013
|
-
* @see {@link
|
|
2861
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3014
2862
|
* @see {@link Domain} - The actual schema type definition
|
|
3015
2863
|
*/
|
|
3016
2864
|
export type POST_DomainsTransfer_Response_201 = Domain
|
|
@@ -3027,7 +2875,7 @@ export type POST_DomainsTransfer_Response_201 = Domain
|
|
|
3027
2875
|
*
|
|
3028
2876
|
* @path /v1/domains/transfer
|
|
3029
2877
|
*
|
|
3030
|
-
* @see {@link
|
|
2878
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3031
2879
|
* @see {@link Problem} - The actual schema type definition
|
|
3032
2880
|
*/
|
|
3033
2881
|
export type POST_DomainsTransfer_Response_400 = Problem
|
|
@@ -3044,7 +2892,7 @@ export type POST_DomainsTransfer_Response_400 = Problem
|
|
|
3044
2892
|
*
|
|
3045
2893
|
* @path /v1/domains/transfer
|
|
3046
2894
|
*
|
|
3047
|
-
* @see {@link
|
|
2895
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3048
2896
|
* @see {@link Problem} - The actual schema type definition
|
|
3049
2897
|
*/
|
|
3050
2898
|
export type POST_DomainsTransfer_Response_404 = Problem
|
|
@@ -3061,7 +2909,7 @@ export type POST_DomainsTransfer_Response_404 = Problem
|
|
|
3061
2909
|
*
|
|
3062
2910
|
* @path /v1/domains/transfer
|
|
3063
2911
|
*
|
|
3064
|
-
* @see {@link
|
|
2912
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3065
2913
|
* @see {@link Problem} - The actual schema type definition
|
|
3066
2914
|
*/
|
|
3067
2915
|
export type POST_DomainsTransfer_Response_409 = Problem
|
|
@@ -3078,7 +2926,7 @@ export type POST_DomainsTransfer_Response_409 = Problem
|
|
|
3078
2926
|
*
|
|
3079
2927
|
* @path /v1/domains/transfer
|
|
3080
2928
|
*
|
|
3081
|
-
* @see {@link
|
|
2929
|
+
* @see {@link POST_DomainsTransfer_Response} - The main response type definition
|
|
3082
2930
|
* @see {@link Problem} - The actual schema type definition
|
|
3083
2931
|
*/
|
|
3084
2932
|
export type POST_DomainsTransfer_Response_422 = Problem
|
|
@@ -3105,10 +2953,7 @@ export type POST_DomainsTransfer_Response_422 = Problem
|
|
|
3105
2953
|
*
|
|
3106
2954
|
|
|
3107
2955
|
*/
|
|
3108
|
-
export type
|
|
3109
|
-
200: GET_EmailForwards_Response_200
|
|
3110
|
-
422: GET_EmailForwards_Response_422
|
|
3111
|
-
}
|
|
2956
|
+
export type GET_EmailForwards_Response = GET_EmailForwards_Response_200 | GET_EmailForwards_Response_422;
|
|
3112
2957
|
|
|
3113
2958
|
/**
|
|
3114
2959
|
* 200 response for GET EmailForwards endpoint
|
|
@@ -3125,7 +2970,7 @@ export type GET_EmailForwards = {
|
|
|
3125
2970
|
* @param source_address (query) - Optional source address to filter the results
|
|
3126
2971
|
* @param target_address (query) - Optional target address to filter the results
|
|
3127
2972
|
*
|
|
3128
|
-
* @see {@link
|
|
2973
|
+
* @see {@link GET_EmailForwards_Response} - The main response type definition
|
|
3129
2974
|
* @see {@link Pagination_EmailForward} - The actual schema type definition
|
|
3130
2975
|
*/
|
|
3131
2976
|
export type GET_EmailForwards_Response_200 = Pagination_EmailForward
|
|
@@ -3145,7 +2990,7 @@ export type GET_EmailForwards_Response_200 = Pagination_EmailForward
|
|
|
3145
2990
|
* @param source_address (query) - Optional source address to filter the results
|
|
3146
2991
|
* @param target_address (query) - Optional target address to filter the results
|
|
3147
2992
|
*
|
|
3148
|
-
* @see {@link
|
|
2993
|
+
* @see {@link GET_EmailForwards_Response} - The main response type definition
|
|
3149
2994
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3150
2995
|
*/
|
|
3151
2996
|
export type GET_EmailForwards_Response_422 = HTTPValidationError
|
|
@@ -3169,10 +3014,7 @@ export type GET_EmailForwards_Response_422 = HTTPValidationError
|
|
|
3169
3014
|
*
|
|
3170
3015
|
|
|
3171
3016
|
*/
|
|
3172
|
-
export type
|
|
3173
|
-
201: POST_EmailForwards_Response_201
|
|
3174
|
-
422: POST_EmailForwards_Response_422
|
|
3175
|
-
}
|
|
3017
|
+
export type POST_EmailForwards_Response = POST_EmailForwards_Response_201 | POST_EmailForwards_Response_422;
|
|
3176
3018
|
|
|
3177
3019
|
/**
|
|
3178
3020
|
* 201 response for POST EmailForwards endpoint
|
|
@@ -3186,7 +3028,7 @@ export type POST_EmailForwards = {
|
|
|
3186
3028
|
*
|
|
3187
3029
|
* @path /v1/email-forwards
|
|
3188
3030
|
*
|
|
3189
|
-
* @see {@link
|
|
3031
|
+
* @see {@link POST_EmailForwards_Response} - The main response type definition
|
|
3190
3032
|
* @see {@link EmailForward} - The actual schema type definition
|
|
3191
3033
|
*/
|
|
3192
3034
|
export type POST_EmailForwards_Response_201 = EmailForward
|
|
@@ -3203,7 +3045,7 @@ export type POST_EmailForwards_Response_201 = EmailForward
|
|
|
3203
3045
|
*
|
|
3204
3046
|
* @path /v1/email-forwards
|
|
3205
3047
|
*
|
|
3206
|
-
* @see {@link
|
|
3048
|
+
* @see {@link POST_EmailForwards_Response} - The main response type definition
|
|
3207
3049
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3208
3050
|
*/
|
|
3209
3051
|
export type POST_EmailForwards_Response_422 = HTTPValidationError
|
|
@@ -3227,10 +3069,7 @@ export type POST_EmailForwards_Response_422 = HTTPValidationError
|
|
|
3227
3069
|
*
|
|
3228
3070
|
|
|
3229
3071
|
*/
|
|
3230
|
-
export type
|
|
3231
|
-
200: POST_EmailForwardsBulkDelete_Response_200
|
|
3232
|
-
422: POST_EmailForwardsBulkDelete_Response_422
|
|
3233
|
-
}
|
|
3072
|
+
export type POST_EmailForwardsBulkDelete_Response = POST_EmailForwardsBulkDelete_Response_200 | POST_EmailForwardsBulkDelete_Response_422;
|
|
3234
3073
|
|
|
3235
3074
|
/**
|
|
3236
3075
|
* 200 response for POST EmailForwardsBulkDelete endpoint
|
|
@@ -3244,7 +3083,7 @@ export type POST_EmailForwardsBulkDelete = {
|
|
|
3244
3083
|
*
|
|
3245
3084
|
* @path /v1/email-forwards/bulk-delete
|
|
3246
3085
|
*
|
|
3247
|
-
* @see {@link
|
|
3086
|
+
* @see {@link POST_EmailForwardsBulkDelete_Response} - The main response type definition
|
|
3248
3087
|
* @see {@link EmailForwardBulkDeleteResult} - The actual schema type definition
|
|
3249
3088
|
*/
|
|
3250
3089
|
export type POST_EmailForwardsBulkDelete_Response_200 = EmailForwardBulkDeleteResult
|
|
@@ -3261,7 +3100,7 @@ export type POST_EmailForwardsBulkDelete_Response_200 = EmailForwardBulkDeleteRe
|
|
|
3261
3100
|
*
|
|
3262
3101
|
* @path /v1/email-forwards/bulk-delete
|
|
3263
3102
|
*
|
|
3264
|
-
* @see {@link
|
|
3103
|
+
* @see {@link POST_EmailForwardsBulkDelete_Response} - The main response type definition
|
|
3265
3104
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3266
3105
|
*/
|
|
3267
3106
|
export type POST_EmailForwardsBulkDelete_Response_422 = HTTPValidationError
|
|
@@ -3285,10 +3124,7 @@ export type POST_EmailForwardsBulkDelete_Response_422 = HTTPValidationError
|
|
|
3285
3124
|
*
|
|
3286
3125
|
|
|
3287
3126
|
*/
|
|
3288
|
-
export type
|
|
3289
|
-
200: PATCH_EmailForwardsBulkUpdate_Response_200
|
|
3290
|
-
422: PATCH_EmailForwardsBulkUpdate_Response_422
|
|
3291
|
-
}
|
|
3127
|
+
export type PATCH_EmailForwardsBulkUpdate_Response = PATCH_EmailForwardsBulkUpdate_Response_200 | PATCH_EmailForwardsBulkUpdate_Response_422;
|
|
3292
3128
|
|
|
3293
3129
|
/**
|
|
3294
3130
|
* 200 response for PATCH EmailForwardsBulkUpdate endpoint
|
|
@@ -3302,7 +3138,7 @@ export type PATCH_EmailForwardsBulkUpdate = {
|
|
|
3302
3138
|
*
|
|
3303
3139
|
* @path /v1/email-forwards/bulk-update
|
|
3304
3140
|
*
|
|
3305
|
-
* @see {@link
|
|
3141
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Response} - The main response type definition
|
|
3306
3142
|
* @see {@link EmailForwardBulkUpdateResult} - The actual schema type definition
|
|
3307
3143
|
*/
|
|
3308
3144
|
export type PATCH_EmailForwardsBulkUpdate_Response_200 = EmailForwardBulkUpdateResult
|
|
@@ -3319,7 +3155,7 @@ export type PATCH_EmailForwardsBulkUpdate_Response_200 = EmailForwardBulkUpdateR
|
|
|
3319
3155
|
*
|
|
3320
3156
|
* @path /v1/email-forwards/bulk-update
|
|
3321
3157
|
*
|
|
3322
|
-
* @see {@link
|
|
3158
|
+
* @see {@link PATCH_EmailForwardsBulkUpdate_Response} - The main response type definition
|
|
3323
3159
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3324
3160
|
*/
|
|
3325
3161
|
export type PATCH_EmailForwardsBulkUpdate_Response_422 = HTTPValidationError
|
|
@@ -3342,9 +3178,7 @@ export type PATCH_EmailForwardsBulkUpdate_Response_422 = HTTPValidationError
|
|
|
3342
3178
|
*
|
|
3343
3179
|
|
|
3344
3180
|
*/
|
|
3345
|
-
export type
|
|
3346
|
-
422: DELETE_EmailForwardsByEmailForwardId_Response_422
|
|
3347
|
-
}
|
|
3181
|
+
export type DELETE_EmailForwardsByEmailForwardId_Response = DELETE_EmailForwardsByEmailForwardId_Response_422;
|
|
3348
3182
|
|
|
3349
3183
|
/**
|
|
3350
3184
|
* 422 response for DELETE EmailForwardsByEmailForwardId endpoint
|
|
@@ -3358,7 +3192,7 @@ export type DELETE_EmailForwardsByEmailForwardId = {
|
|
|
3358
3192
|
*
|
|
3359
3193
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3360
3194
|
*
|
|
3361
|
-
* @see {@link
|
|
3195
|
+
* @see {@link DELETE_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3362
3196
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3363
3197
|
*/
|
|
3364
3198
|
export type DELETE_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
@@ -3382,10 +3216,7 @@ export type DELETE_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationEr
|
|
|
3382
3216
|
*
|
|
3383
3217
|
|
|
3384
3218
|
*/
|
|
3385
|
-
export type
|
|
3386
|
-
200: GET_EmailForwardsByEmailForwardId_Response_200
|
|
3387
|
-
422: GET_EmailForwardsByEmailForwardId_Response_422
|
|
3388
|
-
}
|
|
3219
|
+
export type GET_EmailForwardsByEmailForwardId_Response = GET_EmailForwardsByEmailForwardId_Response_200 | GET_EmailForwardsByEmailForwardId_Response_422;
|
|
3389
3220
|
|
|
3390
3221
|
/**
|
|
3391
3222
|
* 200 response for GET EmailForwardsByEmailForwardId endpoint
|
|
@@ -3399,7 +3230,7 @@ export type GET_EmailForwardsByEmailForwardId = {
|
|
|
3399
3230
|
*
|
|
3400
3231
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3401
3232
|
*
|
|
3402
|
-
* @see {@link
|
|
3233
|
+
* @see {@link GET_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3403
3234
|
* @see {@link EmailForward} - The actual schema type definition
|
|
3404
3235
|
*/
|
|
3405
3236
|
export type GET_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
@@ -3416,7 +3247,7 @@ export type GET_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
|
3416
3247
|
*
|
|
3417
3248
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3418
3249
|
*
|
|
3419
|
-
* @see {@link
|
|
3250
|
+
* @see {@link GET_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3420
3251
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3421
3252
|
*/
|
|
3422
3253
|
export type GET_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
@@ -3440,10 +3271,7 @@ export type GET_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
|
3440
3271
|
*
|
|
3441
3272
|
|
|
3442
3273
|
*/
|
|
3443
|
-
export type
|
|
3444
|
-
200: PATCH_EmailForwardsByEmailForwardId_Response_200
|
|
3445
|
-
422: PATCH_EmailForwardsByEmailForwardId_Response_422
|
|
3446
|
-
}
|
|
3274
|
+
export type PATCH_EmailForwardsByEmailForwardId_Response = PATCH_EmailForwardsByEmailForwardId_Response_200 | PATCH_EmailForwardsByEmailForwardId_Response_422;
|
|
3447
3275
|
|
|
3448
3276
|
/**
|
|
3449
3277
|
* 200 response for PATCH EmailForwardsByEmailForwardId endpoint
|
|
@@ -3457,7 +3285,7 @@ export type PATCH_EmailForwardsByEmailForwardId = {
|
|
|
3457
3285
|
*
|
|
3458
3286
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3459
3287
|
*
|
|
3460
|
-
* @see {@link
|
|
3288
|
+
* @see {@link PATCH_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3461
3289
|
* @see {@link EmailForward} - The actual schema type definition
|
|
3462
3290
|
*/
|
|
3463
3291
|
export type PATCH_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
@@ -3474,7 +3302,7 @@ export type PATCH_EmailForwardsByEmailForwardId_Response_200 = EmailForward
|
|
|
3474
3302
|
*
|
|
3475
3303
|
* @path /v1/email-forwards/{email_forward_id}
|
|
3476
3304
|
*
|
|
3477
|
-
* @see {@link
|
|
3305
|
+
* @see {@link PATCH_EmailForwardsByEmailForwardId_Response} - The main response type definition
|
|
3478
3306
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3479
3307
|
*/
|
|
3480
3308
|
export type PATCH_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationError
|
|
@@ -3499,11 +3327,7 @@ export type PATCH_EmailForwardsByEmailForwardId_Response_422 = HTTPValidationErr
|
|
|
3499
3327
|
*
|
|
3500
3328
|
|
|
3501
3329
|
*/
|
|
3502
|
-
export type
|
|
3503
|
-
200: GET_Event_Response_200
|
|
3504
|
-
401: GET_Event_Response_401
|
|
3505
|
-
422: GET_Event_Response_422
|
|
3506
|
-
}
|
|
3330
|
+
export type GET_Event_Response = GET_Event_Response_200 | GET_Event_Response_401 | GET_Event_Response_422;
|
|
3507
3331
|
|
|
3508
3332
|
/**
|
|
3509
3333
|
* 200 response for GET Event endpoint
|
|
@@ -3517,7 +3341,7 @@ export type GET_Event = {
|
|
|
3517
3341
|
*
|
|
3518
3342
|
* @path /v1/event
|
|
3519
3343
|
*
|
|
3520
|
-
* @see {@link
|
|
3344
|
+
* @see {@link GET_Event_Response} - The main response type definition
|
|
3521
3345
|
* @see {@link Pagination_Event} - The actual schema type definition
|
|
3522
3346
|
*/
|
|
3523
3347
|
export type GET_Event_Response_200 = Pagination_Event
|
|
@@ -3534,7 +3358,7 @@ export type GET_Event_Response_200 = Pagination_Event
|
|
|
3534
3358
|
*
|
|
3535
3359
|
* @path /v1/event
|
|
3536
3360
|
*
|
|
3537
|
-
* @see {@link
|
|
3361
|
+
* @see {@link GET_Event_Response} - The main response type definition
|
|
3538
3362
|
* @see {@link Problem} - The actual schema type definition
|
|
3539
3363
|
*/
|
|
3540
3364
|
export type GET_Event_Response_401 = Problem
|
|
@@ -3551,7 +3375,7 @@ export type GET_Event_Response_401 = Problem
|
|
|
3551
3375
|
*
|
|
3552
3376
|
* @path /v1/event
|
|
3553
3377
|
*
|
|
3554
|
-
* @see {@link
|
|
3378
|
+
* @see {@link GET_Event_Response} - The main response type definition
|
|
3555
3379
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3556
3380
|
*/
|
|
3557
3381
|
export type GET_Event_Response_422 = HTTPValidationError
|
|
@@ -3577,12 +3401,7 @@ export type GET_Event_Response_422 = HTTPValidationError
|
|
|
3577
3401
|
*
|
|
3578
3402
|
|
|
3579
3403
|
*/
|
|
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
|
-
}
|
|
3404
|
+
export type GET_EventByEventId_Response = GET_EventByEventId_Response_200 | GET_EventByEventId_Response_401 | GET_EventByEventId_Response_404 | GET_EventByEventId_Response_422;
|
|
3586
3405
|
|
|
3587
3406
|
/**
|
|
3588
3407
|
* 200 response for GET EventByEventId endpoint
|
|
@@ -3596,7 +3415,7 @@ export type GET_EventByEventId = {
|
|
|
3596
3415
|
*
|
|
3597
3416
|
* @path /v1/event/{event_id}
|
|
3598
3417
|
*
|
|
3599
|
-
* @see {@link
|
|
3418
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3600
3419
|
* @see {@link EventSchema} - The actual schema type definition
|
|
3601
3420
|
*/
|
|
3602
3421
|
export type GET_EventByEventId_Response_200 = EventSchema
|
|
@@ -3613,7 +3432,7 @@ export type GET_EventByEventId_Response_200 = EventSchema
|
|
|
3613
3432
|
*
|
|
3614
3433
|
* @path /v1/event/{event_id}
|
|
3615
3434
|
*
|
|
3616
|
-
* @see {@link
|
|
3435
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3617
3436
|
* @see {@link Problem} - The actual schema type definition
|
|
3618
3437
|
*/
|
|
3619
3438
|
export type GET_EventByEventId_Response_401 = Problem
|
|
@@ -3630,7 +3449,7 @@ export type GET_EventByEventId_Response_401 = Problem
|
|
|
3630
3449
|
*
|
|
3631
3450
|
* @path /v1/event/{event_id}
|
|
3632
3451
|
*
|
|
3633
|
-
* @see {@link
|
|
3452
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3634
3453
|
* @see {@link Problem} - The actual schema type definition
|
|
3635
3454
|
*/
|
|
3636
3455
|
export type GET_EventByEventId_Response_404 = Problem
|
|
@@ -3647,7 +3466,7 @@ export type GET_EventByEventId_Response_404 = Problem
|
|
|
3647
3466
|
*
|
|
3648
3467
|
* @path /v1/event/{event_id}
|
|
3649
3468
|
*
|
|
3650
|
-
* @see {@link
|
|
3469
|
+
* @see {@link GET_EventByEventId_Response} - The main response type definition
|
|
3651
3470
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3652
3471
|
*/
|
|
3653
3472
|
export type GET_EventByEventId_Response_422 = HTTPValidationError
|
|
@@ -3672,11 +3491,7 @@ export type GET_EventByEventId_Response_422 = HTTPValidationError
|
|
|
3672
3491
|
*
|
|
3673
3492
|
|
|
3674
3493
|
*/
|
|
3675
|
-
export type
|
|
3676
|
-
401: PATCH_EventByEventId_Response_401
|
|
3677
|
-
404: PATCH_EventByEventId_Response_404
|
|
3678
|
-
422: PATCH_EventByEventId_Response_422
|
|
3679
|
-
}
|
|
3494
|
+
export type PATCH_EventByEventId_Response = PATCH_EventByEventId_Response_401 | PATCH_EventByEventId_Response_404 | PATCH_EventByEventId_Response_422;
|
|
3680
3495
|
|
|
3681
3496
|
/**
|
|
3682
3497
|
* 401 response for PATCH EventByEventId endpoint
|
|
@@ -3690,7 +3505,7 @@ export type PATCH_EventByEventId = {
|
|
|
3690
3505
|
*
|
|
3691
3506
|
* @path /v1/event/{event_id}
|
|
3692
3507
|
*
|
|
3693
|
-
* @see {@link
|
|
3508
|
+
* @see {@link PATCH_EventByEventId_Response} - The main response type definition
|
|
3694
3509
|
* @see {@link Problem} - The actual schema type definition
|
|
3695
3510
|
*/
|
|
3696
3511
|
export type PATCH_EventByEventId_Response_401 = Problem
|
|
@@ -3707,7 +3522,7 @@ export type PATCH_EventByEventId_Response_401 = Problem
|
|
|
3707
3522
|
*
|
|
3708
3523
|
* @path /v1/event/{event_id}
|
|
3709
3524
|
*
|
|
3710
|
-
* @see {@link
|
|
3525
|
+
* @see {@link PATCH_EventByEventId_Response} - The main response type definition
|
|
3711
3526
|
* @see {@link Problem} - The actual schema type definition
|
|
3712
3527
|
*/
|
|
3713
3528
|
export type PATCH_EventByEventId_Response_404 = Problem
|
|
@@ -3724,7 +3539,7 @@ export type PATCH_EventByEventId_Response_404 = Problem
|
|
|
3724
3539
|
*
|
|
3725
3540
|
* @path /v1/event/{event_id}
|
|
3726
3541
|
*
|
|
3727
|
-
* @see {@link
|
|
3542
|
+
* @see {@link PATCH_EventByEventId_Response} - The main response type definition
|
|
3728
3543
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3729
3544
|
*/
|
|
3730
3545
|
export type PATCH_EventByEventId_Response_422 = HTTPValidationError
|
|
@@ -3748,10 +3563,7 @@ export type PATCH_EventByEventId_Response_422 = HTTPValidationError
|
|
|
3748
3563
|
*
|
|
3749
3564
|
|
|
3750
3565
|
*/
|
|
3751
|
-
export type
|
|
3752
|
-
200: GET_Notifications_Response_200
|
|
3753
|
-
422: GET_Notifications_Response_422
|
|
3754
|
-
}
|
|
3566
|
+
export type GET_Notifications_Response = GET_Notifications_Response_200 | GET_Notifications_Response_422;
|
|
3755
3567
|
|
|
3756
3568
|
/**
|
|
3757
3569
|
* 200 response for GET Notifications endpoint
|
|
@@ -3765,7 +3577,7 @@ export type GET_Notifications = {
|
|
|
3765
3577
|
*
|
|
3766
3578
|
* @path /v1/notifications
|
|
3767
3579
|
*
|
|
3768
|
-
* @see {@link
|
|
3580
|
+
* @see {@link GET_Notifications_Response} - The main response type definition
|
|
3769
3581
|
* @see {@link Pagination_UserNotificationSummary} - The actual schema type definition
|
|
3770
3582
|
*/
|
|
3771
3583
|
export type GET_Notifications_Response_200 = Pagination_UserNotificationSummary
|
|
@@ -3782,7 +3594,7 @@ export type GET_Notifications_Response_200 = Pagination_UserNotificationSummary
|
|
|
3782
3594
|
*
|
|
3783
3595
|
* @path /v1/notifications
|
|
3784
3596
|
*
|
|
3785
|
-
* @see {@link
|
|
3597
|
+
* @see {@link GET_Notifications_Response} - The main response type definition
|
|
3786
3598
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3787
3599
|
*/
|
|
3788
3600
|
export type GET_Notifications_Response_422 = HTTPValidationError
|
|
@@ -3806,10 +3618,7 @@ export type GET_Notifications_Response_422 = HTTPValidationError
|
|
|
3806
3618
|
*
|
|
3807
3619
|
|
|
3808
3620
|
*/
|
|
3809
|
-
export type
|
|
3810
|
-
201: POST_Notifications_Response_201
|
|
3811
|
-
422: POST_Notifications_Response_422
|
|
3812
|
-
}
|
|
3621
|
+
export type POST_Notifications_Response = POST_Notifications_Response_201 | POST_Notifications_Response_422;
|
|
3813
3622
|
|
|
3814
3623
|
/**
|
|
3815
3624
|
* 201 response for POST Notifications endpoint
|
|
@@ -3823,7 +3632,7 @@ export type POST_Notifications = {
|
|
|
3823
3632
|
*
|
|
3824
3633
|
* @path /v1/notifications
|
|
3825
3634
|
*
|
|
3826
|
-
* @see {@link
|
|
3635
|
+
* @see {@link POST_Notifications_Response} - The main response type definition
|
|
3827
3636
|
* @see {@link Notification} - The actual schema type definition
|
|
3828
3637
|
*/
|
|
3829
3638
|
export type POST_Notifications_Response_201 = Notification
|
|
@@ -3840,7 +3649,7 @@ export type POST_Notifications_Response_201 = Notification
|
|
|
3840
3649
|
*
|
|
3841
3650
|
* @path /v1/notifications
|
|
3842
3651
|
*
|
|
3843
|
-
* @see {@link
|
|
3652
|
+
* @see {@link POST_Notifications_Response} - The main response type definition
|
|
3844
3653
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3845
3654
|
*/
|
|
3846
3655
|
export type POST_Notifications_Response_422 = HTTPValidationError
|
|
@@ -3863,9 +3672,7 @@ export type POST_Notifications_Response_422 = HTTPValidationError
|
|
|
3863
3672
|
*
|
|
3864
3673
|
|
|
3865
3674
|
*/
|
|
3866
|
-
export type
|
|
3867
|
-
422: DELETE_NotificationsByNotificationId_Response_422
|
|
3868
|
-
}
|
|
3675
|
+
export type DELETE_NotificationsByNotificationId_Response = DELETE_NotificationsByNotificationId_Response_422;
|
|
3869
3676
|
|
|
3870
3677
|
/**
|
|
3871
3678
|
* 422 response for DELETE NotificationsByNotificationId endpoint
|
|
@@ -3879,7 +3686,7 @@ export type DELETE_NotificationsByNotificationId = {
|
|
|
3879
3686
|
*
|
|
3880
3687
|
* @path /v1/notifications/{notification_id}
|
|
3881
3688
|
*
|
|
3882
|
-
* @see {@link
|
|
3689
|
+
* @see {@link DELETE_NotificationsByNotificationId_Response} - The main response type definition
|
|
3883
3690
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3884
3691
|
*/
|
|
3885
3692
|
export type DELETE_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
@@ -3903,10 +3710,7 @@ export type DELETE_NotificationsByNotificationId_Response_422 = HTTPValidationEr
|
|
|
3903
3710
|
*
|
|
3904
3711
|
|
|
3905
3712
|
*/
|
|
3906
|
-
export type
|
|
3907
|
-
200: GET_NotificationsByNotificationId_Response_200
|
|
3908
|
-
422: GET_NotificationsByNotificationId_Response_422
|
|
3909
|
-
}
|
|
3713
|
+
export type GET_NotificationsByNotificationId_Response = GET_NotificationsByNotificationId_Response_200 | GET_NotificationsByNotificationId_Response_422;
|
|
3910
3714
|
|
|
3911
3715
|
/**
|
|
3912
3716
|
* 200 response for GET NotificationsByNotificationId endpoint
|
|
@@ -3920,7 +3724,7 @@ export type GET_NotificationsByNotificationId = {
|
|
|
3920
3724
|
*
|
|
3921
3725
|
* @path /v1/notifications/{notification_id}
|
|
3922
3726
|
*
|
|
3923
|
-
* @see {@link
|
|
3727
|
+
* @see {@link GET_NotificationsByNotificationId_Response} - The main response type definition
|
|
3924
3728
|
* @see {@link UserNotification} - The actual schema type definition
|
|
3925
3729
|
*/
|
|
3926
3730
|
export type GET_NotificationsByNotificationId_Response_200 = UserNotification
|
|
@@ -3937,7 +3741,7 @@ export type GET_NotificationsByNotificationId_Response_200 = UserNotification
|
|
|
3937
3741
|
*
|
|
3938
3742
|
* @path /v1/notifications/{notification_id}
|
|
3939
3743
|
*
|
|
3940
|
-
* @see {@link
|
|
3744
|
+
* @see {@link GET_NotificationsByNotificationId_Response} - The main response type definition
|
|
3941
3745
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
3942
3746
|
*/
|
|
3943
3747
|
export type GET_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
@@ -3961,10 +3765,7 @@ export type GET_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
|
3961
3765
|
*
|
|
3962
3766
|
|
|
3963
3767
|
*/
|
|
3964
|
-
export type
|
|
3965
|
-
200: PUT_NotificationsByNotificationId_Response_200
|
|
3966
|
-
422: PUT_NotificationsByNotificationId_Response_422
|
|
3967
|
-
}
|
|
3768
|
+
export type PUT_NotificationsByNotificationId_Response = PUT_NotificationsByNotificationId_Response_200 | PUT_NotificationsByNotificationId_Response_422;
|
|
3968
3769
|
|
|
3969
3770
|
/**
|
|
3970
3771
|
* 200 response for PUT NotificationsByNotificationId endpoint
|
|
@@ -3978,7 +3779,7 @@ export type PUT_NotificationsByNotificationId = {
|
|
|
3978
3779
|
*
|
|
3979
3780
|
* @path /v1/notifications/{notification_id}
|
|
3980
3781
|
*
|
|
3981
|
-
* @see {@link
|
|
3782
|
+
* @see {@link PUT_NotificationsByNotificationId_Response} - The main response type definition
|
|
3982
3783
|
* @see {@link Notification} - The actual schema type definition
|
|
3983
3784
|
*/
|
|
3984
3785
|
export type PUT_NotificationsByNotificationId_Response_200 = Notification
|
|
@@ -3995,7 +3796,7 @@ export type PUT_NotificationsByNotificationId_Response_200 = Notification
|
|
|
3995
3796
|
*
|
|
3996
3797
|
* @path /v1/notifications/{notification_id}
|
|
3997
3798
|
*
|
|
3998
|
-
* @see {@link
|
|
3799
|
+
* @see {@link PUT_NotificationsByNotificationId_Response} - The main response type definition
|
|
3999
3800
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4000
3801
|
*/
|
|
4001
3802
|
export type PUT_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
@@ -4018,9 +3819,7 @@ export type PUT_NotificationsByNotificationId_Response_422 = HTTPValidationError
|
|
|
4018
3819
|
*
|
|
4019
3820
|
|
|
4020
3821
|
*/
|
|
4021
|
-
export type
|
|
4022
|
-
422: PATCH_NotificationsByNotificationIdRead_Response_422
|
|
4023
|
-
}
|
|
3822
|
+
export type PATCH_NotificationsByNotificationIdRead_Response = PATCH_NotificationsByNotificationIdRead_Response_422;
|
|
4024
3823
|
|
|
4025
3824
|
/**
|
|
4026
3825
|
* 422 response for PATCH NotificationsByNotificationIdRead endpoint
|
|
@@ -4034,7 +3833,7 @@ export type PATCH_NotificationsByNotificationIdRead = {
|
|
|
4034
3833
|
*
|
|
4035
3834
|
* @path /v1/notifications/{notification_id}/read
|
|
4036
3835
|
*
|
|
4037
|
-
* @see {@link
|
|
3836
|
+
* @see {@link PATCH_NotificationsByNotificationIdRead_Response} - The main response type definition
|
|
4038
3837
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4039
3838
|
*/
|
|
4040
3839
|
export type PATCH_NotificationsByNotificationIdRead_Response_422 = HTTPValidationError
|
|
@@ -4058,10 +3857,7 @@ export type PATCH_NotificationsByNotificationIdRead_Response_422 = HTTPValidatio
|
|
|
4058
3857
|
*
|
|
4059
3858
|
|
|
4060
3859
|
*/
|
|
4061
|
-
export type
|
|
4062
|
-
200: GET_Organizations_Response_200
|
|
4063
|
-
422: GET_Organizations_Response_422
|
|
4064
|
-
}
|
|
3860
|
+
export type GET_Organizations_Response = GET_Organizations_Response_200 | GET_Organizations_Response_422;
|
|
4065
3861
|
|
|
4066
3862
|
/**
|
|
4067
3863
|
* 200 response for GET Organizations endpoint
|
|
@@ -4075,7 +3871,7 @@ export type GET_Organizations = {
|
|
|
4075
3871
|
*
|
|
4076
3872
|
* @path /v1/organizations
|
|
4077
3873
|
*
|
|
4078
|
-
* @see {@link
|
|
3874
|
+
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
4079
3875
|
* @see {@link Pagination_Organization} - The actual schema type definition
|
|
4080
3876
|
*/
|
|
4081
3877
|
export type GET_Organizations_Response_200 = Pagination_Organization
|
|
@@ -4092,7 +3888,7 @@ export type GET_Organizations_Response_200 = Pagination_Organization
|
|
|
4092
3888
|
*
|
|
4093
3889
|
* @path /v1/organizations
|
|
4094
3890
|
*
|
|
4095
|
-
* @see {@link
|
|
3891
|
+
* @see {@link GET_Organizations_Response} - The main response type definition
|
|
4096
3892
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4097
3893
|
*/
|
|
4098
3894
|
export type GET_Organizations_Response_422 = HTTPValidationError
|
|
@@ -4116,10 +3912,7 @@ export type GET_Organizations_Response_422 = HTTPValidationError
|
|
|
4116
3912
|
*
|
|
4117
3913
|
|
|
4118
3914
|
*/
|
|
4119
|
-
export type
|
|
4120
|
-
200: POST_Organizations_Response_200
|
|
4121
|
-
422: POST_Organizations_Response_422
|
|
4122
|
-
}
|
|
3915
|
+
export type POST_Organizations_Response = POST_Organizations_Response_200 | POST_Organizations_Response_422;
|
|
4123
3916
|
|
|
4124
3917
|
/**
|
|
4125
3918
|
* 200 response for POST Organizations endpoint
|
|
@@ -4133,7 +3926,7 @@ export type POST_Organizations = {
|
|
|
4133
3926
|
*
|
|
4134
3927
|
* @path /v1/organizations
|
|
4135
3928
|
*
|
|
4136
|
-
* @see {@link
|
|
3929
|
+
* @see {@link POST_Organizations_Response} - The main response type definition
|
|
4137
3930
|
* @see {@link Organization} - The actual schema type definition
|
|
4138
3931
|
*/
|
|
4139
3932
|
export type POST_Organizations_Response_200 = Organization
|
|
@@ -4150,7 +3943,7 @@ export type POST_Organizations_Response_200 = Organization
|
|
|
4150
3943
|
*
|
|
4151
3944
|
* @path /v1/organizations
|
|
4152
3945
|
*
|
|
4153
|
-
* @see {@link
|
|
3946
|
+
* @see {@link POST_Organizations_Response} - The main response type definition
|
|
4154
3947
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4155
3948
|
*/
|
|
4156
3949
|
export type POST_Organizations_Response_422 = HTTPValidationError
|
|
@@ -4175,10 +3968,7 @@ export type POST_Organizations_Response_422 = HTTPValidationError
|
|
|
4175
3968
|
*
|
|
4176
3969
|
|
|
4177
3970
|
*/
|
|
4178
|
-
export type
|
|
4179
|
-
200: GET_OrganizationsAttributes_Response_200
|
|
4180
|
-
422: GET_OrganizationsAttributes_Response_422
|
|
4181
|
-
}
|
|
3971
|
+
export type GET_OrganizationsAttributes_Response = GET_OrganizationsAttributes_Response_200 | GET_OrganizationsAttributes_Response_422;
|
|
4182
3972
|
|
|
4183
3973
|
/**
|
|
4184
3974
|
* 200 response for GET OrganizationsAttributes endpoint
|
|
@@ -4193,7 +3983,7 @@ export type GET_OrganizationsAttributes = {
|
|
|
4193
3983
|
* @path /v1/organizations/attributes
|
|
4194
3984
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4195
3985
|
*
|
|
4196
|
-
* @see {@link
|
|
3986
|
+
* @see {@link GET_OrganizationsAttributes_Response} - The main response type definition
|
|
4197
3987
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4198
3988
|
*/
|
|
4199
3989
|
export type GET_OrganizationsAttributes_Response_200 = OrganizationAttribute2Array
|
|
@@ -4211,7 +4001,7 @@ export type GET_OrganizationsAttributes_Response_200 = OrganizationAttribute2Arr
|
|
|
4211
4001
|
* @path /v1/organizations/attributes
|
|
4212
4002
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4213
4003
|
*
|
|
4214
|
-
* @see {@link
|
|
4004
|
+
* @see {@link GET_OrganizationsAttributes_Response} - The main response type definition
|
|
4215
4005
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4216
4006
|
*/
|
|
4217
4007
|
export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
@@ -4235,10 +4025,7 @@ export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4235
4025
|
*
|
|
4236
4026
|
|
|
4237
4027
|
*/
|
|
4238
|
-
export type
|
|
4239
|
-
200: PATCH_OrganizationsAttributes_Response_200
|
|
4240
|
-
422: PATCH_OrganizationsAttributes_Response_422
|
|
4241
|
-
}
|
|
4028
|
+
export type PATCH_OrganizationsAttributes_Response = PATCH_OrganizationsAttributes_Response_200 | PATCH_OrganizationsAttributes_Response_422;
|
|
4242
4029
|
|
|
4243
4030
|
/**
|
|
4244
4031
|
* 200 response for PATCH OrganizationsAttributes endpoint
|
|
@@ -4252,7 +4039,7 @@ export type PATCH_OrganizationsAttributes = {
|
|
|
4252
4039
|
*
|
|
4253
4040
|
* @path /v1/organizations/attributes
|
|
4254
4041
|
*
|
|
4255
|
-
* @see {@link
|
|
4042
|
+
* @see {@link PATCH_OrganizationsAttributes_Response} - The main response type definition
|
|
4256
4043
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4257
4044
|
*/
|
|
4258
4045
|
export type PATCH_OrganizationsAttributes_Response_200 = OrganizationAttribute2Array
|
|
@@ -4269,7 +4056,7 @@ export type PATCH_OrganizationsAttributes_Response_200 = OrganizationAttribute2A
|
|
|
4269
4056
|
*
|
|
4270
4057
|
* @path /v1/organizations/attributes
|
|
4271
4058
|
*
|
|
4272
|
-
* @see {@link
|
|
4059
|
+
* @see {@link PATCH_OrganizationsAttributes_Response} - The main response type definition
|
|
4273
4060
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4274
4061
|
*/
|
|
4275
4062
|
export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
@@ -4294,10 +4081,7 @@ export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4294
4081
|
*
|
|
4295
4082
|
|
|
4296
4083
|
*/
|
|
4297
|
-
export type
|
|
4298
|
-
200: GET_OrganizationsAttributesByOrganizationId_Response_200
|
|
4299
|
-
422: GET_OrganizationsAttributesByOrganizationId_Response_422
|
|
4300
|
-
}
|
|
4084
|
+
export type GET_OrganizationsAttributesByOrganizationId_Response = GET_OrganizationsAttributesByOrganizationId_Response_200 | GET_OrganizationsAttributesByOrganizationId_Response_422;
|
|
4301
4085
|
|
|
4302
4086
|
/**
|
|
4303
4087
|
* 200 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
@@ -4312,7 +4096,7 @@ export type GET_OrganizationsAttributesByOrganizationId = {
|
|
|
4312
4096
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4313
4097
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4314
4098
|
*
|
|
4315
|
-
* @see {@link
|
|
4099
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4316
4100
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4317
4101
|
*/
|
|
4318
4102
|
export type GET_OrganizationsAttributesByOrganizationId_Response_200 = OrganizationAttribute2Array
|
|
@@ -4330,7 +4114,7 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_200 = Organizat
|
|
|
4330
4114
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4331
4115
|
* @param keys (query) - Optional list of attribute keys to filter
|
|
4332
4116
|
*
|
|
4333
|
-
* @see {@link
|
|
4117
|
+
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4334
4118
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4335
4119
|
*/
|
|
4336
4120
|
export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4354,10 +4138,7 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValid
|
|
|
4354
4138
|
*
|
|
4355
4139
|
|
|
4356
4140
|
*/
|
|
4357
|
-
export type
|
|
4358
|
-
200: PATCH_OrganizationsAttributesByOrganizationId_Response_200
|
|
4359
|
-
422: PATCH_OrganizationsAttributesByOrganizationId_Response_422
|
|
4360
|
-
}
|
|
4141
|
+
export type PATCH_OrganizationsAttributesByOrganizationId_Response = PATCH_OrganizationsAttributesByOrganizationId_Response_200 | PATCH_OrganizationsAttributesByOrganizationId_Response_422;
|
|
4361
4142
|
|
|
4362
4143
|
/**
|
|
4363
4144
|
* 200 response for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
@@ -4371,7 +4152,7 @@ export type PATCH_OrganizationsAttributesByOrganizationId = {
|
|
|
4371
4152
|
*
|
|
4372
4153
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4373
4154
|
*
|
|
4374
|
-
* @see {@link
|
|
4155
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4375
4156
|
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
4376
4157
|
*/
|
|
4377
4158
|
export type PATCH_OrganizationsAttributesByOrganizationId_Response_200 = OrganizationAttribute2Array
|
|
@@ -4388,7 +4169,7 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_200 = Organiz
|
|
|
4388
4169
|
*
|
|
4389
4170
|
* @path /v1/organizations/attributes/{organization_id}
|
|
4390
4171
|
*
|
|
4391
|
-
* @see {@link
|
|
4172
|
+
* @see {@link PATCH_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
4392
4173
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4393
4174
|
*/
|
|
4394
4175
|
export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4411,9 +4192,7 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPVal
|
|
|
4411
4192
|
*
|
|
4412
4193
|
|
|
4413
4194
|
*/
|
|
4414
|
-
export type
|
|
4415
|
-
422: DELETE_OrganizationsByOrganizationId_Response_422
|
|
4416
|
-
}
|
|
4195
|
+
export type DELETE_OrganizationsByOrganizationId_Response = DELETE_OrganizationsByOrganizationId_Response_422;
|
|
4417
4196
|
|
|
4418
4197
|
/**
|
|
4419
4198
|
* 422 response for DELETE OrganizationsByOrganizationId endpoint
|
|
@@ -4427,7 +4206,7 @@ export type DELETE_OrganizationsByOrganizationId = {
|
|
|
4427
4206
|
*
|
|
4428
4207
|
* @path /v1/organizations/{organization_id}
|
|
4429
4208
|
*
|
|
4430
|
-
* @see {@link
|
|
4209
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4431
4210
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4432
4211
|
*/
|
|
4433
4212
|
export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4451,10 +4230,7 @@ export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationEr
|
|
|
4451
4230
|
*
|
|
4452
4231
|
|
|
4453
4232
|
*/
|
|
4454
|
-
export type
|
|
4455
|
-
200: GET_OrganizationsByOrganizationId_Response_200
|
|
4456
|
-
422: GET_OrganizationsByOrganizationId_Response_422
|
|
4457
|
-
}
|
|
4233
|
+
export type GET_OrganizationsByOrganizationId_Response = GET_OrganizationsByOrganizationId_Response_200 | GET_OrganizationsByOrganizationId_Response_422;
|
|
4458
4234
|
|
|
4459
4235
|
/**
|
|
4460
4236
|
* 200 response for GET OrganizationsByOrganizationId endpoint
|
|
@@ -4468,7 +4244,7 @@ export type GET_OrganizationsByOrganizationId = {
|
|
|
4468
4244
|
*
|
|
4469
4245
|
* @path /v1/organizations/{organization_id}
|
|
4470
4246
|
*
|
|
4471
|
-
* @see {@link
|
|
4247
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4472
4248
|
* @see {@link OrganizationWithPlan} - The actual schema type definition
|
|
4473
4249
|
*/
|
|
4474
4250
|
export type GET_OrganizationsByOrganizationId_Response_200 = OrganizationWithPlan
|
|
@@ -4485,7 +4261,7 @@ export type GET_OrganizationsByOrganizationId_Response_200 = OrganizationWithPla
|
|
|
4485
4261
|
*
|
|
4486
4262
|
* @path /v1/organizations/{organization_id}
|
|
4487
4263
|
*
|
|
4488
|
-
* @see {@link
|
|
4264
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4489
4265
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4490
4266
|
*/
|
|
4491
4267
|
export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4509,10 +4285,7 @@ export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
|
4509
4285
|
*
|
|
4510
4286
|
|
|
4511
4287
|
*/
|
|
4512
|
-
export type
|
|
4513
|
-
200: PATCH_OrganizationsByOrganizationId_Response_200
|
|
4514
|
-
422: PATCH_OrganizationsByOrganizationId_Response_422
|
|
4515
|
-
}
|
|
4288
|
+
export type PATCH_OrganizationsByOrganizationId_Response = PATCH_OrganizationsByOrganizationId_Response_200 | PATCH_OrganizationsByOrganizationId_Response_422;
|
|
4516
4289
|
|
|
4517
4290
|
/**
|
|
4518
4291
|
* 200 response for PATCH OrganizationsByOrganizationId endpoint
|
|
@@ -4526,7 +4299,7 @@ export type PATCH_OrganizationsByOrganizationId = {
|
|
|
4526
4299
|
*
|
|
4527
4300
|
* @path /v1/organizations/{organization_id}
|
|
4528
4301
|
*
|
|
4529
|
-
* @see {@link
|
|
4302
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4530
4303
|
* @see {@link Organization} - The actual schema type definition
|
|
4531
4304
|
*/
|
|
4532
4305
|
export type PATCH_OrganizationsByOrganizationId_Response_200 = Organization
|
|
@@ -4543,7 +4316,7 @@ export type PATCH_OrganizationsByOrganizationId_Response_200 = Organization
|
|
|
4543
4316
|
*
|
|
4544
4317
|
* @path /v1/organizations/{organization_id}
|
|
4545
4318
|
*
|
|
4546
|
-
* @see {@link
|
|
4319
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
4547
4320
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4548
4321
|
*/
|
|
4549
4322
|
export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
@@ -4567,10 +4340,7 @@ export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationErr
|
|
|
4567
4340
|
*
|
|
4568
4341
|
|
|
4569
4342
|
*/
|
|
4570
|
-
export type
|
|
4571
|
-
200: PATCH_OrganizationsByOrganizationIdPlan_Response_200
|
|
4572
|
-
422: PATCH_OrganizationsByOrganizationIdPlan_Response_422
|
|
4573
|
-
}
|
|
4343
|
+
export type PATCH_OrganizationsByOrganizationIdPlan_Response = PATCH_OrganizationsByOrganizationIdPlan_Response_200 | PATCH_OrganizationsByOrganizationIdPlan_Response_422;
|
|
4574
4344
|
|
|
4575
4345
|
/**
|
|
4576
4346
|
* 200 response for PATCH OrganizationsByOrganizationIdPlan endpoint
|
|
@@ -4584,7 +4354,7 @@ export type PATCH_OrganizationsByOrganizationIdPlan = {
|
|
|
4584
4354
|
*
|
|
4585
4355
|
* @path /v1/organizations/{organization_id}/plan
|
|
4586
4356
|
*
|
|
4587
|
-
* @see {@link
|
|
4357
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdPlan_Response} - The main response type definition
|
|
4588
4358
|
* @see {@link OrganizationWithPlan} - The actual schema type definition
|
|
4589
4359
|
*/
|
|
4590
4360
|
export type PATCH_OrganizationsByOrganizationIdPlan_Response_200 = OrganizationWithPlan
|
|
@@ -4601,7 +4371,7 @@ export type PATCH_OrganizationsByOrganizationIdPlan_Response_200 = OrganizationW
|
|
|
4601
4371
|
*
|
|
4602
4372
|
* @path /v1/organizations/{organization_id}/plan
|
|
4603
4373
|
*
|
|
4604
|
-
* @see {@link
|
|
4374
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdPlan_Response} - The main response type definition
|
|
4605
4375
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4606
4376
|
*/
|
|
4607
4377
|
export type PATCH_OrganizationsByOrganizationIdPlan_Response_422 = HTTPValidationError
|
|
@@ -4625,9 +4395,7 @@ export type PATCH_OrganizationsByOrganizationIdPlan_Response_422 = HTTPValidatio
|
|
|
4625
4395
|
*
|
|
4626
4396
|
|
|
4627
4397
|
*/
|
|
4628
|
-
export type
|
|
4629
|
-
200: GET_OrganizationsIpRestrictions_Response_200
|
|
4630
|
-
}
|
|
4398
|
+
export type GET_OrganizationsIpRestrictions_Response = GET_OrganizationsIpRestrictions_Response_200;
|
|
4631
4399
|
|
|
4632
4400
|
/**
|
|
4633
4401
|
* 200 response for GET OrganizationsIpRestrictions endpoint
|
|
@@ -4641,7 +4409,7 @@ export type GET_OrganizationsIpRestrictions = {
|
|
|
4641
4409
|
*
|
|
4642
4410
|
* @path /v1/organizations/ip-restrictions
|
|
4643
4411
|
*
|
|
4644
|
-
* @see {@link
|
|
4412
|
+
* @see {@link GET_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4645
4413
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4646
4414
|
*/
|
|
4647
4415
|
export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
@@ -4666,10 +4434,7 @@ export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
|
4666
4434
|
*
|
|
4667
4435
|
|
|
4668
4436
|
*/
|
|
4669
|
-
export type
|
|
4670
|
-
200: POST_OrganizationsIpRestrictions_Response_200
|
|
4671
|
-
422: POST_OrganizationsIpRestrictions_Response_422
|
|
4672
|
-
}
|
|
4437
|
+
export type POST_OrganizationsIpRestrictions_Response = POST_OrganizationsIpRestrictions_Response_200 | POST_OrganizationsIpRestrictions_Response_422;
|
|
4673
4438
|
|
|
4674
4439
|
/**
|
|
4675
4440
|
* 200 response for POST OrganizationsIpRestrictions endpoint
|
|
@@ -4683,7 +4448,7 @@ export type POST_OrganizationsIpRestrictions = {
|
|
|
4683
4448
|
*
|
|
4684
4449
|
* @path /v1/organizations/ip-restrictions
|
|
4685
4450
|
*
|
|
4686
|
-
* @see {@link
|
|
4451
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4687
4452
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4688
4453
|
*/
|
|
4689
4454
|
export type POST_OrganizationsIpRestrictions_Response_200 = IpRestriction
|
|
@@ -4700,7 +4465,7 @@ export type POST_OrganizationsIpRestrictions_Response_200 = IpRestriction
|
|
|
4700
4465
|
*
|
|
4701
4466
|
* @path /v1/organizations/ip-restrictions
|
|
4702
4467
|
*
|
|
4703
|
-
* @see {@link
|
|
4468
|
+
* @see {@link POST_OrganizationsIpRestrictions_Response} - The main response type definition
|
|
4704
4469
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4705
4470
|
*/
|
|
4706
4471
|
export type POST_OrganizationsIpRestrictions_Response_422 = HTTPValidationError
|
|
@@ -4724,9 +4489,7 @@ export type POST_OrganizationsIpRestrictions_Response_422 = HTTPValidationError
|
|
|
4724
4489
|
*
|
|
4725
4490
|
|
|
4726
4491
|
*/
|
|
4727
|
-
export type
|
|
4728
|
-
422: DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422
|
|
4729
|
-
}
|
|
4492
|
+
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response = DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4730
4493
|
|
|
4731
4494
|
/**
|
|
4732
4495
|
* 422 response for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4740,7 +4503,7 @@ export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId = {
|
|
|
4740
4503
|
*
|
|
4741
4504
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4742
4505
|
*
|
|
4743
|
-
* @see {@link
|
|
4506
|
+
* @see {@link DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4744
4507
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4745
4508
|
*/
|
|
4746
4509
|
export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTPValidationError
|
|
@@ -4765,10 +4528,7 @@ export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = H
|
|
|
4765
4528
|
*
|
|
4766
4529
|
|
|
4767
4530
|
*/
|
|
4768
|
-
export type
|
|
4769
|
-
200: GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200
|
|
4770
|
-
422: GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422
|
|
4771
|
-
}
|
|
4531
|
+
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response = GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4772
4532
|
|
|
4773
4533
|
/**
|
|
4774
4534
|
* 200 response for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4782,7 +4542,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId = {
|
|
|
4782
4542
|
*
|
|
4783
4543
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4784
4544
|
*
|
|
4785
|
-
* @see {@link
|
|
4545
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4786
4546
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4787
4547
|
*/
|
|
4788
4548
|
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRestriction
|
|
@@ -4799,7 +4559,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRe
|
|
|
4799
4559
|
*
|
|
4800
4560
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4801
4561
|
*
|
|
4802
|
-
* @see {@link
|
|
4562
|
+
* @see {@link GET_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4803
4563
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4804
4564
|
*/
|
|
4805
4565
|
export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTPValidationError
|
|
@@ -4824,10 +4584,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTP
|
|
|
4824
4584
|
*
|
|
4825
4585
|
|
|
4826
4586
|
*/
|
|
4827
|
-
export type
|
|
4828
|
-
200: PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200
|
|
4829
|
-
422: PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422
|
|
4830
|
-
}
|
|
4587
|
+
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response = PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 | PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422;
|
|
4831
4588
|
|
|
4832
4589
|
/**
|
|
4833
4590
|
* 200 response for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
@@ -4841,7 +4598,7 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId = {
|
|
|
4841
4598
|
*
|
|
4842
4599
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4843
4600
|
*
|
|
4844
|
-
* @see {@link
|
|
4601
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4845
4602
|
* @see {@link IpRestriction} - The actual schema type definition
|
|
4846
4603
|
*/
|
|
4847
4604
|
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = IpRestriction
|
|
@@ -4858,7 +4615,7 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_200 = Ip
|
|
|
4858
4615
|
*
|
|
4859
4616
|
* @path /v1/organizations/ip-restrictions/{ip_restriction_id}
|
|
4860
4617
|
*
|
|
4861
|
-
* @see {@link
|
|
4618
|
+
* @see {@link PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response} - The main response type definition
|
|
4862
4619
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4863
4620
|
*/
|
|
4864
4621
|
export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTPValidationError
|
|
@@ -4881,8 +4638,7 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HT
|
|
|
4881
4638
|
*
|
|
4882
4639
|
|
|
4883
4640
|
*/
|
|
4884
|
-
export type
|
|
4885
|
-
}
|
|
4641
|
+
export type GET_OrganizationsRoles_Response = unknown;
|
|
4886
4642
|
|
|
4887
4643
|
/**
|
|
4888
4644
|
* Response types for GET OrganizationsUsers endpoint
|
|
@@ -4903,10 +4659,7 @@ export type GET_OrganizationsRoles = {
|
|
|
4903
4659
|
*
|
|
4904
4660
|
|
|
4905
4661
|
*/
|
|
4906
|
-
export type
|
|
4907
|
-
200: GET_OrganizationsUsers_Response_200
|
|
4908
|
-
422: GET_OrganizationsUsers_Response_422
|
|
4909
|
-
}
|
|
4662
|
+
export type GET_OrganizationsUsers_Response = GET_OrganizationsUsers_Response_200 | GET_OrganizationsUsers_Response_422;
|
|
4910
4663
|
|
|
4911
4664
|
/**
|
|
4912
4665
|
* 200 response for GET OrganizationsUsers endpoint
|
|
@@ -4920,7 +4673,7 @@ export type GET_OrganizationsUsers = {
|
|
|
4920
4673
|
*
|
|
4921
4674
|
* @path /v1/organizations/users
|
|
4922
4675
|
*
|
|
4923
|
-
* @see {@link
|
|
4676
|
+
* @see {@link GET_OrganizationsUsers_Response} - The main response type definition
|
|
4924
4677
|
* @see {@link Pagination_User} - The actual schema type definition
|
|
4925
4678
|
*/
|
|
4926
4679
|
export type GET_OrganizationsUsers_Response_200 = Pagination_User
|
|
@@ -4937,11 +4690,121 @@ export type GET_OrganizationsUsers_Response_200 = Pagination_User
|
|
|
4937
4690
|
*
|
|
4938
4691
|
* @path /v1/organizations/users
|
|
4939
4692
|
*
|
|
4940
|
-
* @see {@link
|
|
4693
|
+
* @see {@link GET_OrganizationsUsers_Response} - The main response type definition
|
|
4941
4694
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4942
4695
|
*/
|
|
4943
4696
|
export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
|
|
4944
4697
|
|
|
4698
|
+
/**
|
|
4699
|
+
* Response types for GET TldsByTld endpoint
|
|
4700
|
+
*
|
|
4701
|
+
* Get Tld Spec
|
|
4702
|
+
*
|
|
4703
|
+
* @remarks
|
|
4704
|
+
* This type defines all possible response structures for the GET TldsByTld endpoint.
|
|
4705
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
4706
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
4707
|
+
*
|
|
4708
|
+
|
|
4709
|
+
*
|
|
4710
|
+
* @path /v1/tlds/{tld}
|
|
4711
|
+
*
|
|
4712
|
+
* @see {@link GET_TldsByTld_Response_200} - 200 response type
|
|
4713
|
+
* @see {@link GET_TldsByTld_Response_404} - 404 response type
|
|
4714
|
+
* @see {@link GET_TldsByTld_Response_422} - 422 response type
|
|
4715
|
+
*
|
|
4716
|
+
|
|
4717
|
+
*/
|
|
4718
|
+
export type GET_TldsByTld_Response = GET_TldsByTld_Response_200 | GET_TldsByTld_Response_404 | GET_TldsByTld_Response_422;
|
|
4719
|
+
|
|
4720
|
+
/**
|
|
4721
|
+
* 200 response for GET TldsByTld endpoint
|
|
4722
|
+
*
|
|
4723
|
+
* @remarks
|
|
4724
|
+
* This type defines the response structure for the 200 status code
|
|
4725
|
+
* of the GET TldsByTld endpoint.
|
|
4726
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4727
|
+
*
|
|
4728
|
+
|
|
4729
|
+
*
|
|
4730
|
+
* @path /v1/tlds/{tld}
|
|
4731
|
+
*
|
|
4732
|
+
* @see {@link GET_TldsByTld_Response} - The main response type definition
|
|
4733
|
+
* @see {@link TldSpecification} - The actual schema type definition
|
|
4734
|
+
*/
|
|
4735
|
+
export type GET_TldsByTld_Response_200 = TldSpecification
|
|
4736
|
+
|
|
4737
|
+
/**
|
|
4738
|
+
* 404 response for GET TldsByTld endpoint
|
|
4739
|
+
*
|
|
4740
|
+
* @remarks
|
|
4741
|
+
* This type defines the response structure for the 404 status code
|
|
4742
|
+
* of the GET TldsByTld endpoint.
|
|
4743
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4744
|
+
*
|
|
4745
|
+
|
|
4746
|
+
*
|
|
4747
|
+
* @path /v1/tlds/{tld}
|
|
4748
|
+
*
|
|
4749
|
+
* @see {@link GET_TldsByTld_Response} - The main response type definition
|
|
4750
|
+
* @see {@link Problem} - The actual schema type definition
|
|
4751
|
+
*/
|
|
4752
|
+
export type GET_TldsByTld_Response_404 = Problem
|
|
4753
|
+
|
|
4754
|
+
/**
|
|
4755
|
+
* 422 response for GET TldsByTld endpoint
|
|
4756
|
+
*
|
|
4757
|
+
* @remarks
|
|
4758
|
+
* This type defines the response structure for the 422 status code
|
|
4759
|
+
* of the GET TldsByTld endpoint.
|
|
4760
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4761
|
+
*
|
|
4762
|
+
|
|
4763
|
+
*
|
|
4764
|
+
* @path /v1/tlds/{tld}
|
|
4765
|
+
*
|
|
4766
|
+
* @see {@link GET_TldsByTld_Response} - The main response type definition
|
|
4767
|
+
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
4768
|
+
*/
|
|
4769
|
+
export type GET_TldsByTld_Response_422 = HTTPValidationError
|
|
4770
|
+
|
|
4771
|
+
/**
|
|
4772
|
+
* Response types for GET TldsPortfolio endpoint
|
|
4773
|
+
*
|
|
4774
|
+
* Get Tld Portfolio
|
|
4775
|
+
*
|
|
4776
|
+
* @remarks
|
|
4777
|
+
* This type defines all possible response structures for the GET TldsPortfolio endpoint.
|
|
4778
|
+
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
4779
|
+
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
4780
|
+
*
|
|
4781
|
+
|
|
4782
|
+
*
|
|
4783
|
+
* @path /v1/tlds/portfolio
|
|
4784
|
+
*
|
|
4785
|
+
* @see {@link GET_TldsPortfolio_Response_200} - 200 response type
|
|
4786
|
+
*
|
|
4787
|
+
|
|
4788
|
+
*/
|
|
4789
|
+
export type GET_TldsPortfolio_Response = GET_TldsPortfolio_Response_200;
|
|
4790
|
+
|
|
4791
|
+
/**
|
|
4792
|
+
* 200 response for GET TldsPortfolio endpoint
|
|
4793
|
+
*
|
|
4794
|
+
* @remarks
|
|
4795
|
+
* This type defines the response structure for the 200 status code
|
|
4796
|
+
* of the GET TldsPortfolio endpoint.
|
|
4797
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
4798
|
+
*
|
|
4799
|
+
|
|
4800
|
+
*
|
|
4801
|
+
* @path /v1/tlds/portfolio
|
|
4802
|
+
*
|
|
4803
|
+
* @see {@link GET_TldsPortfolio_Response} - The main response type definition
|
|
4804
|
+
* @see {@link TldResponseShort} - The actual schema type definition
|
|
4805
|
+
*/
|
|
4806
|
+
export type GET_TldsPortfolio_Response_200 = TldResponseShortArray
|
|
4807
|
+
|
|
4945
4808
|
/**
|
|
4946
4809
|
* Response types for POST Users endpoint
|
|
4947
4810
|
*
|
|
@@ -4961,10 +4824,7 @@ export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
|
|
|
4961
4824
|
*
|
|
4962
4825
|
|
|
4963
4826
|
*/
|
|
4964
|
-
export type
|
|
4965
|
-
200: POST_Users_Response_200
|
|
4966
|
-
422: POST_Users_Response_422
|
|
4967
|
-
}
|
|
4827
|
+
export type POST_Users_Response = POST_Users_Response_200 | POST_Users_Response_422;
|
|
4968
4828
|
|
|
4969
4829
|
/**
|
|
4970
4830
|
* 200 response for POST Users endpoint
|
|
@@ -4978,7 +4838,7 @@ export type POST_Users = {
|
|
|
4978
4838
|
*
|
|
4979
4839
|
* @path /v1/users
|
|
4980
4840
|
*
|
|
4981
|
-
* @see {@link
|
|
4841
|
+
* @see {@link POST_Users_Response} - The main response type definition
|
|
4982
4842
|
* @see {@link User} - The actual schema type definition
|
|
4983
4843
|
*/
|
|
4984
4844
|
export type POST_Users_Response_200 = User
|
|
@@ -4995,7 +4855,7 @@ export type POST_Users_Response_200 = User
|
|
|
4995
4855
|
*
|
|
4996
4856
|
* @path /v1/users
|
|
4997
4857
|
*
|
|
4998
|
-
* @see {@link
|
|
4858
|
+
* @see {@link POST_Users_Response} - The main response type definition
|
|
4999
4859
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5000
4860
|
*/
|
|
5001
4861
|
export type POST_Users_Response_422 = HTTPValidationError
|
|
@@ -5018,9 +4878,7 @@ export type POST_Users_Response_422 = HTTPValidationError
|
|
|
5018
4878
|
*
|
|
5019
4879
|
|
|
5020
4880
|
*/
|
|
5021
|
-
export type
|
|
5022
|
-
422: POST_UsersAcceptTos_Response_422
|
|
5023
|
-
}
|
|
4881
|
+
export type POST_UsersAcceptTos_Response = POST_UsersAcceptTos_Response_422;
|
|
5024
4882
|
|
|
5025
4883
|
/**
|
|
5026
4884
|
* 422 response for POST UsersAcceptTos endpoint
|
|
@@ -5034,7 +4892,7 @@ export type POST_UsersAcceptTos = {
|
|
|
5034
4892
|
*
|
|
5035
4893
|
* @path /v1/users/accept-tos
|
|
5036
4894
|
*
|
|
5037
|
-
* @see {@link
|
|
4895
|
+
* @see {@link POST_UsersAcceptTos_Response} - The main response type definition
|
|
5038
4896
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5039
4897
|
*/
|
|
5040
4898
|
export type POST_UsersAcceptTos_Response_422 = HTTPValidationError
|
|
@@ -5057,9 +4915,7 @@ export type POST_UsersAcceptTos_Response_422 = HTTPValidationError
|
|
|
5057
4915
|
*
|
|
5058
4916
|
|
|
5059
4917
|
*/
|
|
5060
|
-
export type
|
|
5061
|
-
422: DELETE_UsersByUserId_Response_422
|
|
5062
|
-
}
|
|
4918
|
+
export type DELETE_UsersByUserId_Response = DELETE_UsersByUserId_Response_422;
|
|
5063
4919
|
|
|
5064
4920
|
/**
|
|
5065
4921
|
* 422 response for DELETE UsersByUserId endpoint
|
|
@@ -5073,7 +4929,7 @@ export type DELETE_UsersByUserId = {
|
|
|
5073
4929
|
*
|
|
5074
4930
|
* @path /v1/users/{user_id}
|
|
5075
4931
|
*
|
|
5076
|
-
* @see {@link
|
|
4932
|
+
* @see {@link DELETE_UsersByUserId_Response} - The main response type definition
|
|
5077
4933
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5078
4934
|
*/
|
|
5079
4935
|
export type DELETE_UsersByUserId_Response_422 = HTTPValidationError
|
|
@@ -5097,10 +4953,7 @@ export type DELETE_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5097
4953
|
*
|
|
5098
4954
|
|
|
5099
4955
|
*/
|
|
5100
|
-
export type
|
|
5101
|
-
200: GET_UsersByUserId_Response_200
|
|
5102
|
-
422: GET_UsersByUserId_Response_422
|
|
5103
|
-
}
|
|
4956
|
+
export type GET_UsersByUserId_Response = GET_UsersByUserId_Response_200 | GET_UsersByUserId_Response_422;
|
|
5104
4957
|
|
|
5105
4958
|
/**
|
|
5106
4959
|
* 200 response for GET UsersByUserId endpoint
|
|
@@ -5114,7 +4967,7 @@ export type GET_UsersByUserId = {
|
|
|
5114
4967
|
*
|
|
5115
4968
|
* @path /v1/users/{user_id}
|
|
5116
4969
|
*
|
|
5117
|
-
* @see {@link
|
|
4970
|
+
* @see {@link GET_UsersByUserId_Response} - The main response type definition
|
|
5118
4971
|
* @see {@link UserWithAttributes} - The actual schema type definition
|
|
5119
4972
|
*/
|
|
5120
4973
|
export type GET_UsersByUserId_Response_200 = UserWithAttributes
|
|
@@ -5131,7 +4984,7 @@ export type GET_UsersByUserId_Response_200 = UserWithAttributes
|
|
|
5131
4984
|
*
|
|
5132
4985
|
* @path /v1/users/{user_id}
|
|
5133
4986
|
*
|
|
5134
|
-
* @see {@link
|
|
4987
|
+
* @see {@link GET_UsersByUserId_Response} - The main response type definition
|
|
5135
4988
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5136
4989
|
*/
|
|
5137
4990
|
export type GET_UsersByUserId_Response_422 = HTTPValidationError
|
|
@@ -5155,10 +5008,7 @@ export type GET_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5155
5008
|
*
|
|
5156
5009
|
|
|
5157
5010
|
*/
|
|
5158
|
-
export type
|
|
5159
|
-
200: PATCH_UsersByUserId_Response_200
|
|
5160
|
-
422: PATCH_UsersByUserId_Response_422
|
|
5161
|
-
}
|
|
5011
|
+
export type PATCH_UsersByUserId_Response = PATCH_UsersByUserId_Response_200 | PATCH_UsersByUserId_Response_422;
|
|
5162
5012
|
|
|
5163
5013
|
/**
|
|
5164
5014
|
* 200 response for PATCH UsersByUserId endpoint
|
|
@@ -5172,7 +5022,7 @@ export type PATCH_UsersByUserId = {
|
|
|
5172
5022
|
*
|
|
5173
5023
|
* @path /v1/users/{user_id}
|
|
5174
5024
|
*
|
|
5175
|
-
* @see {@link
|
|
5025
|
+
* @see {@link PATCH_UsersByUserId_Response} - The main response type definition
|
|
5176
5026
|
* @see {@link UserWithAttributes} - The actual schema type definition
|
|
5177
5027
|
*/
|
|
5178
5028
|
export type PATCH_UsersByUserId_Response_200 = UserWithAttributes
|
|
@@ -5189,7 +5039,7 @@ export type PATCH_UsersByUserId_Response_200 = UserWithAttributes
|
|
|
5189
5039
|
*
|
|
5190
5040
|
* @path /v1/users/{user_id}
|
|
5191
5041
|
*
|
|
5192
|
-
* @see {@link
|
|
5042
|
+
* @see {@link PATCH_UsersByUserId_Response} - The main response type definition
|
|
5193
5043
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5194
5044
|
*/
|
|
5195
5045
|
export type PATCH_UsersByUserId_Response_422 = HTTPValidationError
|
|
@@ -5213,10 +5063,7 @@ export type PATCH_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5213
5063
|
*
|
|
5214
5064
|
|
|
5215
5065
|
*/
|
|
5216
|
-
export type
|
|
5217
|
-
200: GET_UsersByUserIdPermissions_Response_200
|
|
5218
|
-
422: GET_UsersByUserIdPermissions_Response_422
|
|
5219
|
-
}
|
|
5066
|
+
export type GET_UsersByUserIdPermissions_Response = GET_UsersByUserIdPermissions_Response_200 | GET_UsersByUserIdPermissions_Response_422;
|
|
5220
5067
|
|
|
5221
5068
|
/**
|
|
5222
5069
|
* 200 response for GET UsersByUserIdPermissions endpoint
|
|
@@ -5230,7 +5077,7 @@ export type GET_UsersByUserIdPermissions = {
|
|
|
5230
5077
|
*
|
|
5231
5078
|
* @path /v1/users/{user_id}/permissions
|
|
5232
5079
|
*
|
|
5233
|
-
* @see {@link
|
|
5080
|
+
* @see {@link GET_UsersByUserIdPermissions_Response} - The main response type definition
|
|
5234
5081
|
* @see {@link PermissionSet} - The actual schema type definition
|
|
5235
5082
|
*/
|
|
5236
5083
|
export type GET_UsersByUserIdPermissions_Response_200 = PermissionSet
|
|
@@ -5247,7 +5094,7 @@ export type GET_UsersByUserIdPermissions_Response_200 = PermissionSet
|
|
|
5247
5094
|
*
|
|
5248
5095
|
* @path /v1/users/{user_id}/permissions
|
|
5249
5096
|
*
|
|
5250
|
-
* @see {@link
|
|
5097
|
+
* @see {@link GET_UsersByUserIdPermissions_Response} - The main response type definition
|
|
5251
5098
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5252
5099
|
*/
|
|
5253
5100
|
export type GET_UsersByUserIdPermissions_Response_422 = HTTPValidationError
|
|
@@ -5271,10 +5118,7 @@ export type GET_UsersByUserIdPermissions_Response_422 = HTTPValidationError
|
|
|
5271
5118
|
*
|
|
5272
5119
|
|
|
5273
5120
|
*/
|
|
5274
|
-
export type
|
|
5275
|
-
200: GET_UsersByUserIdRoles_Response_200
|
|
5276
|
-
422: GET_UsersByUserIdRoles_Response_422
|
|
5277
|
-
}
|
|
5121
|
+
export type GET_UsersByUserIdRoles_Response = GET_UsersByUserIdRoles_Response_200 | GET_UsersByUserIdRoles_Response_422;
|
|
5278
5122
|
|
|
5279
5123
|
/**
|
|
5280
5124
|
* 200 response for GET UsersByUserIdRoles endpoint
|
|
@@ -5288,7 +5132,7 @@ export type GET_UsersByUserIdRoles = {
|
|
|
5288
5132
|
*
|
|
5289
5133
|
* @path /v1/users/{user_id}/roles
|
|
5290
5134
|
*
|
|
5291
|
-
* @see {@link
|
|
5135
|
+
* @see {@link GET_UsersByUserIdRoles_Response} - The main response type definition
|
|
5292
5136
|
* @see {@link RelationSet} - The actual schema type definition
|
|
5293
5137
|
*/
|
|
5294
5138
|
export type GET_UsersByUserIdRoles_Response_200 = RelationSet
|
|
@@ -5305,7 +5149,7 @@ export type GET_UsersByUserIdRoles_Response_200 = RelationSet
|
|
|
5305
5149
|
*
|
|
5306
5150
|
* @path /v1/users/{user_id}/roles
|
|
5307
5151
|
*
|
|
5308
|
-
* @see {@link
|
|
5152
|
+
* @see {@link GET_UsersByUserIdRoles_Response} - The main response type definition
|
|
5309
5153
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5310
5154
|
*/
|
|
5311
5155
|
export type GET_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
@@ -5329,10 +5173,7 @@ export type GET_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5329
5173
|
*
|
|
5330
5174
|
|
|
5331
5175
|
*/
|
|
5332
|
-
export type
|
|
5333
|
-
200: PATCH_UsersByUserIdRoles_Response_200
|
|
5334
|
-
422: PATCH_UsersByUserIdRoles_Response_422
|
|
5335
|
-
}
|
|
5176
|
+
export type PATCH_UsersByUserIdRoles_Response = PATCH_UsersByUserIdRoles_Response_200 | PATCH_UsersByUserIdRoles_Response_422;
|
|
5336
5177
|
|
|
5337
5178
|
/**
|
|
5338
5179
|
* 200 response for PATCH UsersByUserIdRoles endpoint
|
|
@@ -5346,7 +5187,7 @@ export type PATCH_UsersByUserIdRoles = {
|
|
|
5346
5187
|
*
|
|
5347
5188
|
* @path /v1/users/{user_id}/roles
|
|
5348
5189
|
*
|
|
5349
|
-
* @see {@link
|
|
5190
|
+
* @see {@link PATCH_UsersByUserIdRoles_Response} - The main response type definition
|
|
5350
5191
|
* @see {@link RelationSet} - The actual schema type definition
|
|
5351
5192
|
*/
|
|
5352
5193
|
export type PATCH_UsersByUserIdRoles_Response_200 = RelationSet
|
|
@@ -5363,7 +5204,7 @@ export type PATCH_UsersByUserIdRoles_Response_200 = RelationSet
|
|
|
5363
5204
|
*
|
|
5364
5205
|
* @path /v1/users/{user_id}/roles
|
|
5365
5206
|
*
|
|
5366
|
-
* @see {@link
|
|
5207
|
+
* @see {@link PATCH_UsersByUserIdRoles_Response} - The main response type definition
|
|
5367
5208
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5368
5209
|
*/
|
|
5369
5210
|
export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
@@ -5387,10 +5228,7 @@ export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5387
5228
|
*
|
|
5388
5229
|
|
|
5389
5230
|
*/
|
|
5390
|
-
export type
|
|
5391
|
-
200: GET_UsersMe_Response_200
|
|
5392
|
-
422: GET_UsersMe_Response_422
|
|
5393
|
-
}
|
|
5231
|
+
export type GET_UsersMe_Response = GET_UsersMe_Response_200 | GET_UsersMe_Response_422;
|
|
5394
5232
|
|
|
5395
5233
|
/**
|
|
5396
5234
|
* 200 response for GET UsersMe endpoint
|
|
@@ -5404,7 +5242,7 @@ export type GET_UsersMe = {
|
|
|
5404
5242
|
*
|
|
5405
5243
|
* @path /v1/users/me
|
|
5406
5244
|
*
|
|
5407
|
-
* @see {@link
|
|
5245
|
+
* @see {@link GET_UsersMe_Response} - The main response type definition
|
|
5408
5246
|
* @see {@link UserWithRelationPermissions} - The actual schema type definition
|
|
5409
5247
|
*/
|
|
5410
5248
|
export type GET_UsersMe_Response_200 = UserWithRelationPermissions
|
|
@@ -5421,7 +5259,7 @@ export type GET_UsersMe_Response_200 = UserWithRelationPermissions
|
|
|
5421
5259
|
*
|
|
5422
5260
|
* @path /v1/users/me
|
|
5423
5261
|
*
|
|
5424
|
-
* @see {@link
|
|
5262
|
+
* @see {@link GET_UsersMe_Response} - The main response type definition
|
|
5425
5263
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
5426
5264
|
*/
|
|
5427
5265
|
export type GET_UsersMe_Response_422 = HTTPValidationError
|