@opusdns/api 0.81.0 → 0.83.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 +1 -1
- package/src/helpers/keys.ts +798 -0
- package/src/helpers/requests.d.ts +319 -1
- package/src/helpers/responses.d.ts +1062 -47
- package/src/helpers/schemas-arrays.d.ts +43 -1
- package/src/helpers/schemas.d.ts +112 -0
- package/src/openapi.yaml +917 -77
- package/src/schema.d.ts +1135 -127
package/src/schema.d.ts
CHANGED
|
@@ -282,6 +282,77 @@ export interface paths {
|
|
|
282
282
|
patch: operations["patch_zone_rrsets_v1_dns__zone_name__rrsets_patch"];
|
|
283
283
|
trace?: never;
|
|
284
284
|
};
|
|
285
|
+
"/v1/domain-forwards": {
|
|
286
|
+
parameters: {
|
|
287
|
+
query?: never;
|
|
288
|
+
header?: never;
|
|
289
|
+
path?: never;
|
|
290
|
+
cookie?: never;
|
|
291
|
+
};
|
|
292
|
+
get?: never;
|
|
293
|
+
put?: never;
|
|
294
|
+
post?: never;
|
|
295
|
+
delete?: never;
|
|
296
|
+
options?: never;
|
|
297
|
+
head?: never;
|
|
298
|
+
/** Patch Redirects */
|
|
299
|
+
patch: operations["patch_redirects_v1_domain_forwards_patch"];
|
|
300
|
+
trace?: never;
|
|
301
|
+
};
|
|
302
|
+
"/v1/domain-forwards/{zone_name}": {
|
|
303
|
+
parameters: {
|
|
304
|
+
query?: never;
|
|
305
|
+
header?: never;
|
|
306
|
+
path?: never;
|
|
307
|
+
cookie?: never;
|
|
308
|
+
};
|
|
309
|
+
/** Get Redirects */
|
|
310
|
+
get: operations["get_redirects_v1_domain_forwards__zone_name__get"];
|
|
311
|
+
/** Update Redirects */
|
|
312
|
+
put: operations["update_redirects_v1_domain_forwards__zone_name__put"];
|
|
313
|
+
/** Create Redirects */
|
|
314
|
+
post: operations["create_redirects_v1_domain_forwards__zone_name__post"];
|
|
315
|
+
/** Delete Redirects */
|
|
316
|
+
delete: operations["delete_redirects_v1_domain_forwards__zone_name__delete"];
|
|
317
|
+
options?: never;
|
|
318
|
+
head?: never;
|
|
319
|
+
patch?: never;
|
|
320
|
+
trace?: never;
|
|
321
|
+
};
|
|
322
|
+
"/v1/domain-forwards/{zone_name}/disable": {
|
|
323
|
+
parameters: {
|
|
324
|
+
query?: never;
|
|
325
|
+
header?: never;
|
|
326
|
+
path?: never;
|
|
327
|
+
cookie?: never;
|
|
328
|
+
};
|
|
329
|
+
get?: never;
|
|
330
|
+
put?: never;
|
|
331
|
+
post?: never;
|
|
332
|
+
delete?: never;
|
|
333
|
+
options?: never;
|
|
334
|
+
head?: never;
|
|
335
|
+
/** Disable Domain Forward */
|
|
336
|
+
patch: operations["disable_domain_forward_v1_domain_forwards__zone_name__disable_patch"];
|
|
337
|
+
trace?: never;
|
|
338
|
+
};
|
|
339
|
+
"/v1/domain-forwards/{zone_name}/enable": {
|
|
340
|
+
parameters: {
|
|
341
|
+
query?: never;
|
|
342
|
+
header?: never;
|
|
343
|
+
path?: never;
|
|
344
|
+
cookie?: never;
|
|
345
|
+
};
|
|
346
|
+
get?: never;
|
|
347
|
+
put?: never;
|
|
348
|
+
post?: never;
|
|
349
|
+
delete?: never;
|
|
350
|
+
options?: never;
|
|
351
|
+
head?: never;
|
|
352
|
+
/** Enable Domain Forward */
|
|
353
|
+
patch: operations["enable_domain_forward_v1_domain_forwards__zone_name__enable_patch"];
|
|
354
|
+
trace?: never;
|
|
355
|
+
};
|
|
285
356
|
"/v1/domain-search/suggest": {
|
|
286
357
|
parameters: {
|
|
287
358
|
query?: never;
|
|
@@ -3471,6 +3542,12 @@ export interface components {
|
|
|
3471
3542
|
/** Results */
|
|
3472
3543
|
results: components["schemas"]["Organization"][];
|
|
3473
3544
|
};
|
|
3545
|
+
/** Pagination[Redirect] */
|
|
3546
|
+
Pagination_Redirect_: {
|
|
3547
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
3548
|
+
/** Results */
|
|
3549
|
+
results: components["schemas"]["Redirect"][];
|
|
3550
|
+
};
|
|
3474
3551
|
/** Pagination[User] */
|
|
3475
3552
|
Pagination_User_: {
|
|
3476
3553
|
pagination: components["schemas"]["PaginationMetadata"];
|
|
@@ -3615,6 +3692,73 @@ export interface components {
|
|
|
3615
3692
|
*/
|
|
3616
3693
|
rdap_server?: string | null;
|
|
3617
3694
|
};
|
|
3695
|
+
/** Redirect */
|
|
3696
|
+
Redirect: {
|
|
3697
|
+
/** Redirect Code */
|
|
3698
|
+
redirect_code: number;
|
|
3699
|
+
/** Request Domain */
|
|
3700
|
+
request_domain: string;
|
|
3701
|
+
/** Request Path */
|
|
3702
|
+
request_path: string;
|
|
3703
|
+
/** Request Protocol */
|
|
3704
|
+
request_protocol: string;
|
|
3705
|
+
/** Request Subdomain */
|
|
3706
|
+
request_subdomain: string;
|
|
3707
|
+
/** Target Domain */
|
|
3708
|
+
target_domain: string;
|
|
3709
|
+
/** Target Path */
|
|
3710
|
+
target_path: string;
|
|
3711
|
+
/** Target Protocol */
|
|
3712
|
+
target_protocol: string;
|
|
3713
|
+
/** Target Subdomain */
|
|
3714
|
+
target_subdomain: string;
|
|
3715
|
+
};
|
|
3716
|
+
/** RedirectPatchOp */
|
|
3717
|
+
RedirectPatchOp: {
|
|
3718
|
+
op: components["schemas"]["PatchOp"];
|
|
3719
|
+
/** Redirect */
|
|
3720
|
+
redirect: components["schemas"]["Redirect"] | components["schemas"]["RedirectRemove"];
|
|
3721
|
+
};
|
|
3722
|
+
/** RedirectPatchOps */
|
|
3723
|
+
RedirectPatchOps: {
|
|
3724
|
+
/** Ops */
|
|
3725
|
+
ops: components["schemas"]["RedirectPatchOp"][];
|
|
3726
|
+
};
|
|
3727
|
+
/** RedirectRemove */
|
|
3728
|
+
RedirectRemove: {
|
|
3729
|
+
/** Request Domain */
|
|
3730
|
+
request_domain: string;
|
|
3731
|
+
/** Request Path */
|
|
3732
|
+
request_path: string;
|
|
3733
|
+
/** Request Protocol */
|
|
3734
|
+
request_protocol: string;
|
|
3735
|
+
/** Request Subdomain */
|
|
3736
|
+
request_subdomain: string;
|
|
3737
|
+
};
|
|
3738
|
+
/** RedirectSet */
|
|
3739
|
+
RedirectSet: {
|
|
3740
|
+
/** Redirects */
|
|
3741
|
+
redirects: components["schemas"]["RedirectUpdate"][];
|
|
3742
|
+
};
|
|
3743
|
+
/** RedirectUpdate */
|
|
3744
|
+
RedirectUpdate: {
|
|
3745
|
+
/** Redirect Code */
|
|
3746
|
+
redirect_code: number;
|
|
3747
|
+
/** Request Path */
|
|
3748
|
+
request_path: string;
|
|
3749
|
+
/** Request Protocol */
|
|
3750
|
+
request_protocol: string;
|
|
3751
|
+
/** Request Subdomain */
|
|
3752
|
+
request_subdomain: string;
|
|
3753
|
+
/** Target Domain */
|
|
3754
|
+
target_domain: string;
|
|
3755
|
+
/** Target Path */
|
|
3756
|
+
target_path: string;
|
|
3757
|
+
/** Target Protocol */
|
|
3758
|
+
target_protocol: string;
|
|
3759
|
+
/** Target Subdomain */
|
|
3760
|
+
target_subdomain: string;
|
|
3761
|
+
};
|
|
3618
3762
|
/**
|
|
3619
3763
|
* RegistrantChangeType
|
|
3620
3764
|
* @enum {string}
|
|
@@ -5552,48 +5696,25 @@ export interface operations {
|
|
|
5552
5696
|
};
|
|
5553
5697
|
};
|
|
5554
5698
|
};
|
|
5555
|
-
|
|
5699
|
+
patch_redirects_v1_domain_forwards_patch: {
|
|
5556
5700
|
parameters: {
|
|
5557
|
-
query
|
|
5558
|
-
/** @description The primary keyword or phrase for the domain search */
|
|
5559
|
-
query: string;
|
|
5560
|
-
/** @description The TLDs to include in the search */
|
|
5561
|
-
tlds?: string[] | null;
|
|
5562
|
-
/** @description The maximum number of domain suggestions to return */
|
|
5563
|
-
limit?: number | null;
|
|
5564
|
-
/** @description Whether to include premium domains in the suggestions */
|
|
5565
|
-
premium?: boolean | null;
|
|
5566
|
-
};
|
|
5701
|
+
query?: never;
|
|
5567
5702
|
header?: never;
|
|
5568
5703
|
path?: never;
|
|
5569
5704
|
cookie?: never;
|
|
5570
5705
|
};
|
|
5571
|
-
requestBody
|
|
5706
|
+
requestBody: {
|
|
5707
|
+
content: {
|
|
5708
|
+
"application/json": components["schemas"]["RedirectPatchOps"];
|
|
5709
|
+
};
|
|
5710
|
+
};
|
|
5572
5711
|
responses: {
|
|
5573
5712
|
/** @description Successful Response */
|
|
5574
|
-
|
|
5575
|
-
headers: {
|
|
5576
|
-
[name: string]: unknown;
|
|
5577
|
-
};
|
|
5578
|
-
content: {
|
|
5579
|
-
"application/json": components["schemas"]["DomainSearchResponse"];
|
|
5580
|
-
};
|
|
5581
|
-
};
|
|
5582
|
-
/** @description Unauthorized */
|
|
5583
|
-
401: {
|
|
5713
|
+
204: {
|
|
5584
5714
|
headers: {
|
|
5585
5715
|
[name: string]: unknown;
|
|
5586
5716
|
};
|
|
5587
|
-
content
|
|
5588
|
-
/** @example {
|
|
5589
|
-
* "code": "ERROR_AUTHENTICATION",
|
|
5590
|
-
* "detail": "Additional error context.",
|
|
5591
|
-
* "status": 401,
|
|
5592
|
-
* "title": "Authentication Error",
|
|
5593
|
-
* "type": "authentication"
|
|
5594
|
-
* } */
|
|
5595
|
-
"application/problem+json": components["schemas"]["Problem"];
|
|
5596
|
-
};
|
|
5717
|
+
content?: never;
|
|
5597
5718
|
};
|
|
5598
5719
|
/** @description Validation Error */
|
|
5599
5720
|
422: {
|
|
@@ -5604,52 +5725,19 @@ export interface operations {
|
|
|
5604
5725
|
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
5605
5726
|
};
|
|
5606
5727
|
};
|
|
5607
|
-
/** @description Bad Gateway */
|
|
5608
|
-
502: {
|
|
5609
|
-
headers: {
|
|
5610
|
-
[name: string]: unknown;
|
|
5611
|
-
};
|
|
5612
|
-
content: {
|
|
5613
|
-
/** @example {
|
|
5614
|
-
* "code": "ERROR_DOMAIN_SEARCH_PROVIDER",
|
|
5615
|
-
* "detail": "Additional error context.",
|
|
5616
|
-
* "status": 502,
|
|
5617
|
-
* "title": "Domain Search Error",
|
|
5618
|
-
* "type": "domain-search-provider"
|
|
5619
|
-
* } */
|
|
5620
|
-
"application/problem+json": components["schemas"]["Problem"];
|
|
5621
|
-
};
|
|
5622
|
-
};
|
|
5623
5728
|
};
|
|
5624
5729
|
};
|
|
5625
|
-
|
|
5730
|
+
get_redirects_v1_domain_forwards__zone_name__get: {
|
|
5626
5731
|
parameters: {
|
|
5627
5732
|
query?: {
|
|
5628
|
-
sort_by?: components["schemas"]["DomainSortField"];
|
|
5629
|
-
sort_order?: components["schemas"]["SortOrder"];
|
|
5630
|
-
name?: string | null;
|
|
5631
|
-
search?: string | null;
|
|
5632
|
-
tld?: string | null;
|
|
5633
|
-
sld?: string | null;
|
|
5634
|
-
transfer_lock?: boolean | null;
|
|
5635
|
-
created_after?: Date | null;
|
|
5636
|
-
created_before?: Date | null;
|
|
5637
|
-
updated_after?: Date | null;
|
|
5638
|
-
updated_before?: Date | null;
|
|
5639
|
-
expires_after?: Date | null;
|
|
5640
|
-
expires_before?: Date | null;
|
|
5641
|
-
expires_in_30_days?: boolean | null;
|
|
5642
|
-
expires_in_60_days?: boolean | null;
|
|
5643
|
-
expires_in_90_days?: boolean | null;
|
|
5644
|
-
registered_after?: Date | null;
|
|
5645
|
-
registered_before?: Date | null;
|
|
5646
|
-
/** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
|
|
5647
|
-
registry_statuses?: string[] | null;
|
|
5648
5733
|
page?: number;
|
|
5649
5734
|
page_size?: number;
|
|
5650
5735
|
};
|
|
5651
5736
|
header?: never;
|
|
5652
|
-
path
|
|
5737
|
+
path: {
|
|
5738
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5739
|
+
zone_name: string;
|
|
5740
|
+
};
|
|
5653
5741
|
cookie?: never;
|
|
5654
5742
|
};
|
|
5655
5743
|
requestBody?: never;
|
|
@@ -5660,7 +5748,7 @@ export interface operations {
|
|
|
5660
5748
|
[name: string]: unknown;
|
|
5661
5749
|
};
|
|
5662
5750
|
content: {
|
|
5663
|
-
"application/json": components["schemas"]["
|
|
5751
|
+
"application/json": components["schemas"]["Pagination_Redirect_"];
|
|
5664
5752
|
};
|
|
5665
5753
|
};
|
|
5666
5754
|
/** @description Validation Error */
|
|
@@ -5674,61 +5762,78 @@ export interface operations {
|
|
|
5674
5762
|
};
|
|
5675
5763
|
};
|
|
5676
5764
|
};
|
|
5677
|
-
|
|
5765
|
+
update_redirects_v1_domain_forwards__zone_name__put: {
|
|
5678
5766
|
parameters: {
|
|
5679
5767
|
query?: never;
|
|
5680
5768
|
header?: never;
|
|
5681
|
-
path
|
|
5769
|
+
path: {
|
|
5770
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5771
|
+
zone_name: string;
|
|
5772
|
+
};
|
|
5682
5773
|
cookie?: never;
|
|
5683
5774
|
};
|
|
5684
5775
|
requestBody: {
|
|
5685
5776
|
content: {
|
|
5686
|
-
"application/json": components["schemas"]["
|
|
5777
|
+
"application/json": components["schemas"]["RedirectSet"];
|
|
5687
5778
|
};
|
|
5688
5779
|
};
|
|
5689
5780
|
responses: {
|
|
5690
5781
|
/** @description Successful Response */
|
|
5691
|
-
|
|
5782
|
+
204: {
|
|
5692
5783
|
headers: {
|
|
5693
5784
|
[name: string]: unknown;
|
|
5694
5785
|
};
|
|
5695
|
-
content
|
|
5696
|
-
"application/json": components["schemas"]["DomainResponse"];
|
|
5697
|
-
};
|
|
5786
|
+
content?: never;
|
|
5698
5787
|
};
|
|
5699
|
-
/** @description
|
|
5700
|
-
|
|
5788
|
+
/** @description Conflict */
|
|
5789
|
+
409: {
|
|
5701
5790
|
headers: {
|
|
5702
5791
|
[name: string]: unknown;
|
|
5703
5792
|
};
|
|
5704
5793
|
content: {
|
|
5705
5794
|
/** @example {
|
|
5706
|
-
* "code": "
|
|
5707
|
-
* "detail": "
|
|
5708
|
-
* "status":
|
|
5709
|
-
* "title": "Domain
|
|
5710
|
-
* "
|
|
5711
|
-
* "type": "domain-tld-not-available"
|
|
5795
|
+
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_NOT_EXISTS",
|
|
5796
|
+
* "detail": "Redirect does not exist for A, d, d, i, t, i, o, n, a, l, , e, r, r, o, r, , c, o, n, t, e, x, t, .",
|
|
5797
|
+
* "status": 409,
|
|
5798
|
+
* "title": "Domain Forward Error",
|
|
5799
|
+
* "type": "domain-forward-redirect-not-exists"
|
|
5712
5800
|
* } */
|
|
5713
5801
|
"application/problem+json": components["schemas"]["Problem"];
|
|
5714
5802
|
};
|
|
5715
5803
|
};
|
|
5716
|
-
/** @description
|
|
5717
|
-
|
|
5804
|
+
/** @description Validation Error */
|
|
5805
|
+
422: {
|
|
5718
5806
|
headers: {
|
|
5719
5807
|
[name: string]: unknown;
|
|
5720
5808
|
};
|
|
5721
5809
|
content: {
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
|
|
5810
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
5811
|
+
};
|
|
5812
|
+
};
|
|
5813
|
+
};
|
|
5814
|
+
};
|
|
5815
|
+
create_redirects_v1_domain_forwards__zone_name__post: {
|
|
5816
|
+
parameters: {
|
|
5817
|
+
query?: never;
|
|
5818
|
+
header?: never;
|
|
5819
|
+
path: {
|
|
5820
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5821
|
+
zone_name: string;
|
|
5822
|
+
};
|
|
5823
|
+
cookie?: never;
|
|
5824
|
+
};
|
|
5825
|
+
requestBody: {
|
|
5826
|
+
content: {
|
|
5827
|
+
"application/json": components["schemas"]["RedirectSet"];
|
|
5828
|
+
};
|
|
5829
|
+
};
|
|
5830
|
+
responses: {
|
|
5831
|
+
/** @description Successful Response */
|
|
5832
|
+
201: {
|
|
5833
|
+
headers: {
|
|
5834
|
+
[name: string]: unknown;
|
|
5731
5835
|
};
|
|
5836
|
+
content?: never;
|
|
5732
5837
|
};
|
|
5733
5838
|
/** @description Conflict */
|
|
5734
5839
|
409: {
|
|
@@ -5737,12 +5842,11 @@ export interface operations {
|
|
|
5737
5842
|
};
|
|
5738
5843
|
content: {
|
|
5739
5844
|
/** @example {
|
|
5740
|
-
* "code": "
|
|
5741
|
-
* "detail": "
|
|
5742
|
-
* "domain_name": "Additional error context.",
|
|
5845
|
+
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_ALREADY_EXISTS",
|
|
5846
|
+
* "detail": "Redirect already exists for A, d, d, i, t, i, o, n, a, l, , e, r, r, o, r, , c, o, n, t, e, x, t, .",
|
|
5743
5847
|
* "status": 409,
|
|
5744
|
-
* "title": "Domain
|
|
5745
|
-
* "type": "domain-exists"
|
|
5848
|
+
* "title": "Domain Forward Error",
|
|
5849
|
+
* "type": "domain-forward-redirect-already-exists"
|
|
5746
5850
|
* } */
|
|
5747
5851
|
"application/problem+json": components["schemas"]["Problem"];
|
|
5748
5852
|
};
|
|
@@ -5758,28 +5862,24 @@ export interface operations {
|
|
|
5758
5862
|
};
|
|
5759
5863
|
};
|
|
5760
5864
|
};
|
|
5761
|
-
|
|
5865
|
+
delete_redirects_v1_domain_forwards__zone_name__delete: {
|
|
5762
5866
|
parameters: {
|
|
5763
|
-
query
|
|
5764
|
-
/** @description
|
|
5765
|
-
* Specify one or more domains to check for availability.
|
|
5766
|
-
* */
|
|
5767
|
-
domains: string[];
|
|
5768
|
-
};
|
|
5867
|
+
query?: never;
|
|
5769
5868
|
header?: never;
|
|
5770
|
-
path
|
|
5869
|
+
path: {
|
|
5870
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5871
|
+
zone_name: string;
|
|
5872
|
+
};
|
|
5771
5873
|
cookie?: never;
|
|
5772
5874
|
};
|
|
5773
5875
|
requestBody?: never;
|
|
5774
5876
|
responses: {
|
|
5775
5877
|
/** @description Successful Response */
|
|
5776
|
-
|
|
5878
|
+
204: {
|
|
5777
5879
|
headers: {
|
|
5778
5880
|
[name: string]: unknown;
|
|
5779
5881
|
};
|
|
5780
|
-
content
|
|
5781
|
-
"application/json": components["schemas"]["DomainCheckResponse"];
|
|
5782
|
-
};
|
|
5882
|
+
content?: never;
|
|
5783
5883
|
};
|
|
5784
5884
|
/** @description Validation Error */
|
|
5785
5885
|
422: {
|
|
@@ -5792,36 +5892,336 @@ export interface operations {
|
|
|
5792
5892
|
};
|
|
5793
5893
|
};
|
|
5794
5894
|
};
|
|
5795
|
-
|
|
5895
|
+
disable_domain_forward_v1_domain_forwards__zone_name__disable_patch: {
|
|
5796
5896
|
parameters: {
|
|
5797
5897
|
query?: never;
|
|
5798
5898
|
header?: never;
|
|
5799
|
-
path
|
|
5899
|
+
path: {
|
|
5900
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5901
|
+
zone_name: string;
|
|
5902
|
+
};
|
|
5800
5903
|
cookie?: never;
|
|
5801
5904
|
};
|
|
5802
5905
|
requestBody?: never;
|
|
5803
5906
|
responses: {
|
|
5804
5907
|
/** @description Successful Response */
|
|
5805
|
-
|
|
5908
|
+
204: {
|
|
5909
|
+
headers: {
|
|
5910
|
+
[name: string]: unknown;
|
|
5911
|
+
};
|
|
5912
|
+
content?: never;
|
|
5913
|
+
};
|
|
5914
|
+
/** @description Validation Error */
|
|
5915
|
+
422: {
|
|
5806
5916
|
headers: {
|
|
5807
5917
|
[name: string]: unknown;
|
|
5808
5918
|
};
|
|
5809
5919
|
content: {
|
|
5810
|
-
"application/json": components["schemas"]["
|
|
5920
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
5811
5921
|
};
|
|
5812
5922
|
};
|
|
5813
5923
|
};
|
|
5814
5924
|
};
|
|
5815
|
-
|
|
5925
|
+
enable_domain_forward_v1_domain_forwards__zone_name__enable_patch: {
|
|
5816
5926
|
parameters: {
|
|
5817
5927
|
query?: never;
|
|
5818
5928
|
header?: never;
|
|
5819
|
-
path
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5929
|
+
path: {
|
|
5930
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5931
|
+
zone_name: string;
|
|
5932
|
+
};
|
|
5933
|
+
cookie?: never;
|
|
5934
|
+
};
|
|
5935
|
+
requestBody?: never;
|
|
5936
|
+
responses: {
|
|
5937
|
+
/** @description Successful Response */
|
|
5938
|
+
204: {
|
|
5939
|
+
headers: {
|
|
5940
|
+
[name: string]: unknown;
|
|
5941
|
+
};
|
|
5942
|
+
content?: never;
|
|
5943
|
+
};
|
|
5944
|
+
/** @description Validation Error */
|
|
5945
|
+
422: {
|
|
5946
|
+
headers: {
|
|
5947
|
+
[name: string]: unknown;
|
|
5948
|
+
};
|
|
5949
|
+
content: {
|
|
5950
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
5951
|
+
};
|
|
5952
|
+
};
|
|
5953
|
+
};
|
|
5954
|
+
};
|
|
5955
|
+
suggest_v1_domain_search_suggest_get: {
|
|
5956
|
+
parameters: {
|
|
5957
|
+
query: {
|
|
5958
|
+
/** @description The primary keyword or phrase for the domain search */
|
|
5959
|
+
query: string;
|
|
5960
|
+
/** @description The TLDs to include in the search */
|
|
5961
|
+
tlds?: string[] | null;
|
|
5962
|
+
/** @description The maximum number of domain suggestions to return */
|
|
5963
|
+
limit?: number | null;
|
|
5964
|
+
/** @description Whether to include premium domains in the suggestions */
|
|
5965
|
+
premium?: boolean | null;
|
|
5966
|
+
};
|
|
5967
|
+
header?: never;
|
|
5968
|
+
path?: never;
|
|
5969
|
+
cookie?: never;
|
|
5970
|
+
};
|
|
5971
|
+
requestBody?: never;
|
|
5972
|
+
responses: {
|
|
5973
|
+
/** @description Successful Response */
|
|
5974
|
+
200: {
|
|
5975
|
+
headers: {
|
|
5976
|
+
[name: string]: unknown;
|
|
5977
|
+
};
|
|
5978
|
+
content: {
|
|
5979
|
+
"application/json": components["schemas"]["DomainSearchResponse"];
|
|
5980
|
+
};
|
|
5981
|
+
};
|
|
5982
|
+
/** @description Unauthorized */
|
|
5983
|
+
401: {
|
|
5984
|
+
headers: {
|
|
5985
|
+
[name: string]: unknown;
|
|
5986
|
+
};
|
|
5987
|
+
content: {
|
|
5988
|
+
/** @example {
|
|
5989
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
5990
|
+
* "detail": "Additional error context.",
|
|
5991
|
+
* "status": 401,
|
|
5992
|
+
* "title": "Authentication Error",
|
|
5993
|
+
* "type": "authentication"
|
|
5994
|
+
* } */
|
|
5995
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
5996
|
+
};
|
|
5997
|
+
};
|
|
5998
|
+
/** @description Validation Error */
|
|
5999
|
+
422: {
|
|
6000
|
+
headers: {
|
|
6001
|
+
[name: string]: unknown;
|
|
6002
|
+
};
|
|
6003
|
+
content: {
|
|
6004
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
6005
|
+
};
|
|
6006
|
+
};
|
|
6007
|
+
/** @description Bad Gateway */
|
|
6008
|
+
502: {
|
|
6009
|
+
headers: {
|
|
6010
|
+
[name: string]: unknown;
|
|
6011
|
+
};
|
|
6012
|
+
content: {
|
|
6013
|
+
/** @example {
|
|
6014
|
+
* "code": "ERROR_DOMAIN_SEARCH_PROVIDER",
|
|
6015
|
+
* "detail": "Additional error context.",
|
|
6016
|
+
* "status": 502,
|
|
6017
|
+
* "title": "Domain Search Error",
|
|
6018
|
+
* "type": "domain-search-provider"
|
|
6019
|
+
* } */
|
|
6020
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
6021
|
+
};
|
|
6022
|
+
};
|
|
6023
|
+
};
|
|
6024
|
+
};
|
|
6025
|
+
get_domains_v1_domains_get: {
|
|
6026
|
+
parameters: {
|
|
6027
|
+
query?: {
|
|
6028
|
+
sort_by?: components["schemas"]["DomainSortField"];
|
|
6029
|
+
sort_order?: components["schemas"]["SortOrder"];
|
|
6030
|
+
name?: string | null;
|
|
6031
|
+
search?: string | null;
|
|
6032
|
+
tld?: string | null;
|
|
6033
|
+
sld?: string | null;
|
|
6034
|
+
transfer_lock?: boolean | null;
|
|
6035
|
+
created_after?: Date | null;
|
|
6036
|
+
created_before?: Date | null;
|
|
6037
|
+
updated_after?: Date | null;
|
|
6038
|
+
updated_before?: Date | null;
|
|
6039
|
+
expires_after?: Date | null;
|
|
6040
|
+
expires_before?: Date | null;
|
|
6041
|
+
expires_in_30_days?: boolean | null;
|
|
6042
|
+
expires_in_60_days?: boolean | null;
|
|
6043
|
+
expires_in_90_days?: boolean | null;
|
|
6044
|
+
registered_after?: Date | null;
|
|
6045
|
+
registered_before?: Date | null;
|
|
6046
|
+
/** @description Filter domains by registry status. Can be specified multiple times (union of all provided values). */
|
|
6047
|
+
registry_statuses?: string[] | null;
|
|
6048
|
+
page?: number;
|
|
6049
|
+
page_size?: number;
|
|
6050
|
+
};
|
|
6051
|
+
header?: never;
|
|
6052
|
+
path?: never;
|
|
6053
|
+
cookie?: never;
|
|
6054
|
+
};
|
|
6055
|
+
requestBody?: never;
|
|
6056
|
+
responses: {
|
|
6057
|
+
/** @description Successful Response */
|
|
6058
|
+
200: {
|
|
6059
|
+
headers: {
|
|
6060
|
+
[name: string]: unknown;
|
|
6061
|
+
};
|
|
6062
|
+
content: {
|
|
6063
|
+
"application/json": components["schemas"]["Pagination_DomainResponse_"];
|
|
6064
|
+
};
|
|
6065
|
+
};
|
|
6066
|
+
/** @description Validation Error */
|
|
6067
|
+
422: {
|
|
6068
|
+
headers: {
|
|
6069
|
+
[name: string]: unknown;
|
|
6070
|
+
};
|
|
6071
|
+
content: {
|
|
6072
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
6073
|
+
};
|
|
6074
|
+
};
|
|
6075
|
+
};
|
|
6076
|
+
};
|
|
6077
|
+
create_domain_v1_domains_post: {
|
|
6078
|
+
parameters: {
|
|
6079
|
+
query?: never;
|
|
6080
|
+
header?: never;
|
|
6081
|
+
path?: never;
|
|
6082
|
+
cookie?: never;
|
|
6083
|
+
};
|
|
6084
|
+
requestBody: {
|
|
6085
|
+
content: {
|
|
6086
|
+
"application/json": components["schemas"]["DomainCreate"];
|
|
6087
|
+
};
|
|
6088
|
+
};
|
|
6089
|
+
responses: {
|
|
6090
|
+
/** @description Successful Response */
|
|
6091
|
+
201: {
|
|
6092
|
+
headers: {
|
|
6093
|
+
[name: string]: unknown;
|
|
6094
|
+
};
|
|
6095
|
+
content: {
|
|
6096
|
+
"application/json": components["schemas"]["DomainResponse"];
|
|
6097
|
+
};
|
|
6098
|
+
};
|
|
6099
|
+
/** @description Bad Request */
|
|
6100
|
+
400: {
|
|
6101
|
+
headers: {
|
|
6102
|
+
[name: string]: unknown;
|
|
6103
|
+
};
|
|
6104
|
+
content: {
|
|
6105
|
+
/** @example {
|
|
6106
|
+
* "code": "ERROR_TLD_NOT_AVAILABLE",
|
|
6107
|
+
* "detail": "This TLD is not available",
|
|
6108
|
+
* "status": 400,
|
|
6109
|
+
* "title": "Domain Management Error",
|
|
6110
|
+
* "tld": "Additional error context.",
|
|
6111
|
+
* "type": "domain-tld-not-available"
|
|
6112
|
+
* } */
|
|
6113
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
6114
|
+
};
|
|
6115
|
+
};
|
|
6116
|
+
/** @description Not Found */
|
|
6117
|
+
404: {
|
|
6118
|
+
headers: {
|
|
6119
|
+
[name: string]: unknown;
|
|
6120
|
+
};
|
|
6121
|
+
content: {
|
|
6122
|
+
/** @example {
|
|
6123
|
+
* "code": "ERROR_CONTACT_NOT_FOUND",
|
|
6124
|
+
* "contact_id": "Additional error context.",
|
|
6125
|
+
* "detail": "Contact not found",
|
|
6126
|
+
* "status": 404,
|
|
6127
|
+
* "title": "Contact Management Error",
|
|
6128
|
+
* "type": "contact-not-found"
|
|
6129
|
+
* } */
|
|
6130
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
6131
|
+
};
|
|
6132
|
+
};
|
|
6133
|
+
/** @description Conflict */
|
|
6134
|
+
409: {
|
|
6135
|
+
headers: {
|
|
6136
|
+
[name: string]: unknown;
|
|
6137
|
+
};
|
|
6138
|
+
content: {
|
|
6139
|
+
/** @example {
|
|
6140
|
+
* "code": "ERROR_DOMAIN_EXISTS",
|
|
6141
|
+
* "detail": "Domain already exists",
|
|
6142
|
+
* "domain_name": "Additional error context.",
|
|
6143
|
+
* "status": 409,
|
|
6144
|
+
* "title": "Domain Management Error",
|
|
6145
|
+
* "type": "domain-exists"
|
|
6146
|
+
* } */
|
|
6147
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
6148
|
+
};
|
|
6149
|
+
};
|
|
6150
|
+
/** @description Validation Error */
|
|
6151
|
+
422: {
|
|
6152
|
+
headers: {
|
|
6153
|
+
[name: string]: unknown;
|
|
6154
|
+
};
|
|
6155
|
+
content: {
|
|
6156
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
6157
|
+
};
|
|
6158
|
+
};
|
|
6159
|
+
};
|
|
6160
|
+
};
|
|
6161
|
+
epp_check_domain_v1_domains_check_get: {
|
|
6162
|
+
parameters: {
|
|
6163
|
+
query: {
|
|
6164
|
+
/** @description
|
|
6165
|
+
* Specify one or more domains to check for availability.
|
|
6166
|
+
* */
|
|
6167
|
+
domains: string[];
|
|
6168
|
+
};
|
|
6169
|
+
header?: never;
|
|
6170
|
+
path?: never;
|
|
6171
|
+
cookie?: never;
|
|
6172
|
+
};
|
|
6173
|
+
requestBody?: never;
|
|
6174
|
+
responses: {
|
|
6175
|
+
/** @description Successful Response */
|
|
6176
|
+
200: {
|
|
6177
|
+
headers: {
|
|
6178
|
+
[name: string]: unknown;
|
|
6179
|
+
};
|
|
6180
|
+
content: {
|
|
6181
|
+
"application/json": components["schemas"]["DomainCheckResponse"];
|
|
6182
|
+
};
|
|
6183
|
+
};
|
|
6184
|
+
/** @description Validation Error */
|
|
6185
|
+
422: {
|
|
6186
|
+
headers: {
|
|
6187
|
+
[name: string]: unknown;
|
|
6188
|
+
};
|
|
6189
|
+
content: {
|
|
6190
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
6191
|
+
};
|
|
6192
|
+
};
|
|
6193
|
+
};
|
|
6194
|
+
};
|
|
6195
|
+
get_domain_summary_v1_domains_summary_get: {
|
|
6196
|
+
parameters: {
|
|
6197
|
+
query?: never;
|
|
6198
|
+
header?: never;
|
|
6199
|
+
path?: never;
|
|
6200
|
+
cookie?: never;
|
|
6201
|
+
};
|
|
6202
|
+
requestBody?: never;
|
|
6203
|
+
responses: {
|
|
6204
|
+
/** @description Successful Response */
|
|
6205
|
+
200: {
|
|
6206
|
+
headers: {
|
|
6207
|
+
[name: string]: unknown;
|
|
6208
|
+
};
|
|
6209
|
+
content: {
|
|
6210
|
+
"application/json": components["schemas"]["DomainSummaryResponse"];
|
|
6211
|
+
};
|
|
6212
|
+
};
|
|
6213
|
+
};
|
|
6214
|
+
};
|
|
6215
|
+
transfer_domain_v1_domains_transfer_post: {
|
|
6216
|
+
parameters: {
|
|
6217
|
+
query?: never;
|
|
6218
|
+
header?: never;
|
|
6219
|
+
path?: never;
|
|
6220
|
+
cookie?: never;
|
|
6221
|
+
};
|
|
6222
|
+
requestBody: {
|
|
6223
|
+
content: {
|
|
6224
|
+
"application/json": components["schemas"]["DomainTransferIn"];
|
|
5825
6225
|
};
|
|
5826
6226
|
};
|
|
5827
6227
|
responses: {
|
|
@@ -6880,7 +7280,39 @@ export interface operations {
|
|
|
6880
7280
|
[name: string]: unknown;
|
|
6881
7281
|
};
|
|
6882
7282
|
content: {
|
|
6883
|
-
"application/json": components["schemas"]["Pagination_Organization_"];
|
|
7283
|
+
"application/json": components["schemas"]["Pagination_Organization_"];
|
|
7284
|
+
};
|
|
7285
|
+
};
|
|
7286
|
+
/** @description Unauthorized */
|
|
7287
|
+
401: {
|
|
7288
|
+
headers: {
|
|
7289
|
+
[name: string]: unknown;
|
|
7290
|
+
};
|
|
7291
|
+
content: {
|
|
7292
|
+
/** @example {
|
|
7293
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7294
|
+
* "detail": "Additional error context.",
|
|
7295
|
+
* "status": 401,
|
|
7296
|
+
* "title": "Authentication Error",
|
|
7297
|
+
* "type": "authentication"
|
|
7298
|
+
* } */
|
|
7299
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7300
|
+
};
|
|
7301
|
+
};
|
|
7302
|
+
/** @description Forbidden */
|
|
7303
|
+
403: {
|
|
7304
|
+
headers: {
|
|
7305
|
+
[name: string]: unknown;
|
|
7306
|
+
};
|
|
7307
|
+
content: {
|
|
7308
|
+
/** @example {
|
|
7309
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7310
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7311
|
+
* "status": 403,
|
|
7312
|
+
* "title": "Permission Denied",
|
|
7313
|
+
* "type": "permission-denied"
|
|
7314
|
+
* } */
|
|
7315
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
6884
7316
|
};
|
|
6885
7317
|
};
|
|
6886
7318
|
/** @description Validation Error */
|
|
@@ -6916,6 +7348,38 @@ export interface operations {
|
|
|
6916
7348
|
"application/json": components["schemas"]["Organization"];
|
|
6917
7349
|
};
|
|
6918
7350
|
};
|
|
7351
|
+
/** @description Unauthorized */
|
|
7352
|
+
401: {
|
|
7353
|
+
headers: {
|
|
7354
|
+
[name: string]: unknown;
|
|
7355
|
+
};
|
|
7356
|
+
content: {
|
|
7357
|
+
/** @example {
|
|
7358
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7359
|
+
* "detail": "Additional error context.",
|
|
7360
|
+
* "status": 401,
|
|
7361
|
+
* "title": "Authentication Error",
|
|
7362
|
+
* "type": "authentication"
|
|
7363
|
+
* } */
|
|
7364
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7365
|
+
};
|
|
7366
|
+
};
|
|
7367
|
+
/** @description Forbidden */
|
|
7368
|
+
403: {
|
|
7369
|
+
headers: {
|
|
7370
|
+
[name: string]: unknown;
|
|
7371
|
+
};
|
|
7372
|
+
content: {
|
|
7373
|
+
/** @example {
|
|
7374
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7375
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7376
|
+
* "status": 403,
|
|
7377
|
+
* "title": "Permission Denied",
|
|
7378
|
+
* "type": "permission-denied"
|
|
7379
|
+
* } */
|
|
7380
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7381
|
+
};
|
|
7382
|
+
};
|
|
6919
7383
|
/** @description Validation Error */
|
|
6920
7384
|
422: {
|
|
6921
7385
|
headers: {
|
|
@@ -6949,6 +7413,38 @@ export interface operations {
|
|
|
6949
7413
|
"application/json": components["schemas"]["OrganizationAttributeResponse"][];
|
|
6950
7414
|
};
|
|
6951
7415
|
};
|
|
7416
|
+
/** @description Unauthorized */
|
|
7417
|
+
401: {
|
|
7418
|
+
headers: {
|
|
7419
|
+
[name: string]: unknown;
|
|
7420
|
+
};
|
|
7421
|
+
content: {
|
|
7422
|
+
/** @example {
|
|
7423
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7424
|
+
* "detail": "Additional error context.",
|
|
7425
|
+
* "status": 401,
|
|
7426
|
+
* "title": "Authentication Error",
|
|
7427
|
+
* "type": "authentication"
|
|
7428
|
+
* } */
|
|
7429
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7430
|
+
};
|
|
7431
|
+
};
|
|
7432
|
+
/** @description Forbidden */
|
|
7433
|
+
403: {
|
|
7434
|
+
headers: {
|
|
7435
|
+
[name: string]: unknown;
|
|
7436
|
+
};
|
|
7437
|
+
content: {
|
|
7438
|
+
/** @example {
|
|
7439
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7440
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7441
|
+
* "status": 403,
|
|
7442
|
+
* "title": "Permission Denied",
|
|
7443
|
+
* "type": "permission-denied"
|
|
7444
|
+
* } */
|
|
7445
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7446
|
+
};
|
|
7447
|
+
};
|
|
6952
7448
|
/** @description Validation Error */
|
|
6953
7449
|
422: {
|
|
6954
7450
|
headers: {
|
|
@@ -6984,6 +7480,38 @@ export interface operations {
|
|
|
6984
7480
|
"application/json": components["schemas"]["OrganizationAttributeResponse"][];
|
|
6985
7481
|
};
|
|
6986
7482
|
};
|
|
7483
|
+
/** @description Unauthorized */
|
|
7484
|
+
401: {
|
|
7485
|
+
headers: {
|
|
7486
|
+
[name: string]: unknown;
|
|
7487
|
+
};
|
|
7488
|
+
content: {
|
|
7489
|
+
/** @example {
|
|
7490
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7491
|
+
* "detail": "Additional error context.",
|
|
7492
|
+
* "status": 401,
|
|
7493
|
+
* "title": "Authentication Error",
|
|
7494
|
+
* "type": "authentication"
|
|
7495
|
+
* } */
|
|
7496
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7497
|
+
};
|
|
7498
|
+
};
|
|
7499
|
+
/** @description Forbidden */
|
|
7500
|
+
403: {
|
|
7501
|
+
headers: {
|
|
7502
|
+
[name: string]: unknown;
|
|
7503
|
+
};
|
|
7504
|
+
content: {
|
|
7505
|
+
/** @example {
|
|
7506
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7507
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7508
|
+
* "status": 403,
|
|
7509
|
+
* "title": "Permission Denied",
|
|
7510
|
+
* "type": "permission-denied"
|
|
7511
|
+
* } */
|
|
7512
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7513
|
+
};
|
|
7514
|
+
};
|
|
6987
7515
|
/** @description Validation Error */
|
|
6988
7516
|
422: {
|
|
6989
7517
|
headers: {
|
|
@@ -7018,6 +7546,38 @@ export interface operations {
|
|
|
7018
7546
|
"application/json": components["schemas"]["OrganizationAttributeResponse"][];
|
|
7019
7547
|
};
|
|
7020
7548
|
};
|
|
7549
|
+
/** @description Unauthorized */
|
|
7550
|
+
401: {
|
|
7551
|
+
headers: {
|
|
7552
|
+
[name: string]: unknown;
|
|
7553
|
+
};
|
|
7554
|
+
content: {
|
|
7555
|
+
/** @example {
|
|
7556
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7557
|
+
* "detail": "Additional error context.",
|
|
7558
|
+
* "status": 401,
|
|
7559
|
+
* "title": "Authentication Error",
|
|
7560
|
+
* "type": "authentication"
|
|
7561
|
+
* } */
|
|
7562
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7563
|
+
};
|
|
7564
|
+
};
|
|
7565
|
+
/** @description Forbidden */
|
|
7566
|
+
403: {
|
|
7567
|
+
headers: {
|
|
7568
|
+
[name: string]: unknown;
|
|
7569
|
+
};
|
|
7570
|
+
content: {
|
|
7571
|
+
/** @example {
|
|
7572
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7573
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7574
|
+
* "status": 403,
|
|
7575
|
+
* "title": "Permission Denied",
|
|
7576
|
+
* "type": "permission-denied"
|
|
7577
|
+
* } */
|
|
7578
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7579
|
+
};
|
|
7580
|
+
};
|
|
7021
7581
|
/** @description Validation Error */
|
|
7022
7582
|
422: {
|
|
7023
7583
|
headers: {
|
|
@@ -7053,6 +7613,38 @@ export interface operations {
|
|
|
7053
7613
|
"application/json": components["schemas"]["OrganizationAttributeResponse"][];
|
|
7054
7614
|
};
|
|
7055
7615
|
};
|
|
7616
|
+
/** @description Unauthorized */
|
|
7617
|
+
401: {
|
|
7618
|
+
headers: {
|
|
7619
|
+
[name: string]: unknown;
|
|
7620
|
+
};
|
|
7621
|
+
content: {
|
|
7622
|
+
/** @example {
|
|
7623
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7624
|
+
* "detail": "Additional error context.",
|
|
7625
|
+
* "status": 401,
|
|
7626
|
+
* "title": "Authentication Error",
|
|
7627
|
+
* "type": "authentication"
|
|
7628
|
+
* } */
|
|
7629
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7630
|
+
};
|
|
7631
|
+
};
|
|
7632
|
+
/** @description Forbidden */
|
|
7633
|
+
403: {
|
|
7634
|
+
headers: {
|
|
7635
|
+
[name: string]: unknown;
|
|
7636
|
+
};
|
|
7637
|
+
content: {
|
|
7638
|
+
/** @example {
|
|
7639
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7640
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7641
|
+
* "status": 403,
|
|
7642
|
+
* "title": "Permission Denied",
|
|
7643
|
+
* "type": "permission-denied"
|
|
7644
|
+
* } */
|
|
7645
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7646
|
+
};
|
|
7647
|
+
};
|
|
7056
7648
|
/** @description Validation Error */
|
|
7057
7649
|
422: {
|
|
7058
7650
|
headers: {
|
|
@@ -7082,6 +7674,38 @@ export interface operations {
|
|
|
7082
7674
|
"application/json": components["schemas"]["IpRestrictionResponse"][];
|
|
7083
7675
|
};
|
|
7084
7676
|
};
|
|
7677
|
+
/** @description Unauthorized */
|
|
7678
|
+
401: {
|
|
7679
|
+
headers: {
|
|
7680
|
+
[name: string]: unknown;
|
|
7681
|
+
};
|
|
7682
|
+
content: {
|
|
7683
|
+
/** @example {
|
|
7684
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7685
|
+
* "detail": "Additional error context.",
|
|
7686
|
+
* "status": 401,
|
|
7687
|
+
* "title": "Authentication Error",
|
|
7688
|
+
* "type": "authentication"
|
|
7689
|
+
* } */
|
|
7690
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7691
|
+
};
|
|
7692
|
+
};
|
|
7693
|
+
/** @description Forbidden */
|
|
7694
|
+
403: {
|
|
7695
|
+
headers: {
|
|
7696
|
+
[name: string]: unknown;
|
|
7697
|
+
};
|
|
7698
|
+
content: {
|
|
7699
|
+
/** @example {
|
|
7700
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7701
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7702
|
+
* "status": 403,
|
|
7703
|
+
* "title": "Permission Denied",
|
|
7704
|
+
* "type": "permission-denied"
|
|
7705
|
+
* } */
|
|
7706
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7707
|
+
};
|
|
7708
|
+
};
|
|
7085
7709
|
};
|
|
7086
7710
|
};
|
|
7087
7711
|
create_ip_restriction_v1_organizations_ip_restrictions_post: {
|
|
@@ -7106,6 +7730,38 @@ export interface operations {
|
|
|
7106
7730
|
"application/json": components["schemas"]["IpRestrictionResponse"];
|
|
7107
7731
|
};
|
|
7108
7732
|
};
|
|
7733
|
+
/** @description Unauthorized */
|
|
7734
|
+
401: {
|
|
7735
|
+
headers: {
|
|
7736
|
+
[name: string]: unknown;
|
|
7737
|
+
};
|
|
7738
|
+
content: {
|
|
7739
|
+
/** @example {
|
|
7740
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7741
|
+
* "detail": "Additional error context.",
|
|
7742
|
+
* "status": 401,
|
|
7743
|
+
* "title": "Authentication Error",
|
|
7744
|
+
* "type": "authentication"
|
|
7745
|
+
* } */
|
|
7746
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7747
|
+
};
|
|
7748
|
+
};
|
|
7749
|
+
/** @description Forbidden */
|
|
7750
|
+
403: {
|
|
7751
|
+
headers: {
|
|
7752
|
+
[name: string]: unknown;
|
|
7753
|
+
};
|
|
7754
|
+
content: {
|
|
7755
|
+
/** @example {
|
|
7756
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7757
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7758
|
+
* "status": 403,
|
|
7759
|
+
* "title": "Permission Denied",
|
|
7760
|
+
* "type": "permission-denied"
|
|
7761
|
+
* } */
|
|
7762
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7763
|
+
};
|
|
7764
|
+
};
|
|
7109
7765
|
/** @description Validation Error */
|
|
7110
7766
|
422: {
|
|
7111
7767
|
headers: {
|
|
@@ -7137,6 +7793,38 @@ export interface operations {
|
|
|
7137
7793
|
"application/json": components["schemas"]["IpRestrictionResponse"];
|
|
7138
7794
|
};
|
|
7139
7795
|
};
|
|
7796
|
+
/** @description Unauthorized */
|
|
7797
|
+
401: {
|
|
7798
|
+
headers: {
|
|
7799
|
+
[name: string]: unknown;
|
|
7800
|
+
};
|
|
7801
|
+
content: {
|
|
7802
|
+
/** @example {
|
|
7803
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7804
|
+
* "detail": "Additional error context.",
|
|
7805
|
+
* "status": 401,
|
|
7806
|
+
* "title": "Authentication Error",
|
|
7807
|
+
* "type": "authentication"
|
|
7808
|
+
* } */
|
|
7809
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7810
|
+
};
|
|
7811
|
+
};
|
|
7812
|
+
/** @description Forbidden */
|
|
7813
|
+
403: {
|
|
7814
|
+
headers: {
|
|
7815
|
+
[name: string]: unknown;
|
|
7816
|
+
};
|
|
7817
|
+
content: {
|
|
7818
|
+
/** @example {
|
|
7819
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7820
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7821
|
+
* "status": 403,
|
|
7822
|
+
* "title": "Permission Denied",
|
|
7823
|
+
* "type": "permission-denied"
|
|
7824
|
+
* } */
|
|
7825
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7826
|
+
};
|
|
7827
|
+
};
|
|
7140
7828
|
/** @description Validation Error */
|
|
7141
7829
|
422: {
|
|
7142
7830
|
headers: {
|
|
@@ -7164,7 +7852,39 @@ export interface operations {
|
|
|
7164
7852
|
headers: {
|
|
7165
7853
|
[name: string]: unknown;
|
|
7166
7854
|
};
|
|
7167
|
-
content?: never;
|
|
7855
|
+
content?: never;
|
|
7856
|
+
};
|
|
7857
|
+
/** @description Unauthorized */
|
|
7858
|
+
401: {
|
|
7859
|
+
headers: {
|
|
7860
|
+
[name: string]: unknown;
|
|
7861
|
+
};
|
|
7862
|
+
content: {
|
|
7863
|
+
/** @example {
|
|
7864
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7865
|
+
* "detail": "Additional error context.",
|
|
7866
|
+
* "status": 401,
|
|
7867
|
+
* "title": "Authentication Error",
|
|
7868
|
+
* "type": "authentication"
|
|
7869
|
+
* } */
|
|
7870
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7871
|
+
};
|
|
7872
|
+
};
|
|
7873
|
+
/** @description Forbidden */
|
|
7874
|
+
403: {
|
|
7875
|
+
headers: {
|
|
7876
|
+
[name: string]: unknown;
|
|
7877
|
+
};
|
|
7878
|
+
content: {
|
|
7879
|
+
/** @example {
|
|
7880
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7881
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7882
|
+
* "status": 403,
|
|
7883
|
+
* "title": "Permission Denied",
|
|
7884
|
+
* "type": "permission-denied"
|
|
7885
|
+
* } */
|
|
7886
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7887
|
+
};
|
|
7168
7888
|
};
|
|
7169
7889
|
/** @description Validation Error */
|
|
7170
7890
|
422: {
|
|
@@ -7201,6 +7921,38 @@ export interface operations {
|
|
|
7201
7921
|
"application/json": components["schemas"]["IpRestrictionResponse"];
|
|
7202
7922
|
};
|
|
7203
7923
|
};
|
|
7924
|
+
/** @description Unauthorized */
|
|
7925
|
+
401: {
|
|
7926
|
+
headers: {
|
|
7927
|
+
[name: string]: unknown;
|
|
7928
|
+
};
|
|
7929
|
+
content: {
|
|
7930
|
+
/** @example {
|
|
7931
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7932
|
+
* "detail": "Additional error context.",
|
|
7933
|
+
* "status": 401,
|
|
7934
|
+
* "title": "Authentication Error",
|
|
7935
|
+
* "type": "authentication"
|
|
7936
|
+
* } */
|
|
7937
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7938
|
+
};
|
|
7939
|
+
};
|
|
7940
|
+
/** @description Forbidden */
|
|
7941
|
+
403: {
|
|
7942
|
+
headers: {
|
|
7943
|
+
[name: string]: unknown;
|
|
7944
|
+
};
|
|
7945
|
+
content: {
|
|
7946
|
+
/** @example {
|
|
7947
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
7948
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
7949
|
+
* "status": 403,
|
|
7950
|
+
* "title": "Permission Denied",
|
|
7951
|
+
* "type": "permission-denied"
|
|
7952
|
+
* } */
|
|
7953
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7954
|
+
};
|
|
7955
|
+
};
|
|
7204
7956
|
/** @description Validation Error */
|
|
7205
7957
|
422: {
|
|
7206
7958
|
headers: {
|
|
@@ -7230,6 +7982,38 @@ export interface operations {
|
|
|
7230
7982
|
"application/json": unknown;
|
|
7231
7983
|
};
|
|
7232
7984
|
};
|
|
7985
|
+
/** @description Unauthorized */
|
|
7986
|
+
401: {
|
|
7987
|
+
headers: {
|
|
7988
|
+
[name: string]: unknown;
|
|
7989
|
+
};
|
|
7990
|
+
content: {
|
|
7991
|
+
/** @example {
|
|
7992
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
7993
|
+
* "detail": "Additional error context.",
|
|
7994
|
+
* "status": 401,
|
|
7995
|
+
* "title": "Authentication Error",
|
|
7996
|
+
* "type": "authentication"
|
|
7997
|
+
* } */
|
|
7998
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
7999
|
+
};
|
|
8000
|
+
};
|
|
8001
|
+
/** @description Forbidden */
|
|
8002
|
+
403: {
|
|
8003
|
+
headers: {
|
|
8004
|
+
[name: string]: unknown;
|
|
8005
|
+
};
|
|
8006
|
+
content: {
|
|
8007
|
+
/** @example {
|
|
8008
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8009
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8010
|
+
* "status": 403,
|
|
8011
|
+
* "title": "Permission Denied",
|
|
8012
|
+
* "type": "permission-denied"
|
|
8013
|
+
* } */
|
|
8014
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8015
|
+
};
|
|
8016
|
+
};
|
|
7233
8017
|
};
|
|
7234
8018
|
};
|
|
7235
8019
|
list_users_v1_organizations_users_get: {
|
|
@@ -7253,6 +8037,38 @@ export interface operations {
|
|
|
7253
8037
|
"application/json": components["schemas"]["Pagination_User_"];
|
|
7254
8038
|
};
|
|
7255
8039
|
};
|
|
8040
|
+
/** @description Unauthorized */
|
|
8041
|
+
401: {
|
|
8042
|
+
headers: {
|
|
8043
|
+
[name: string]: unknown;
|
|
8044
|
+
};
|
|
8045
|
+
content: {
|
|
8046
|
+
/** @example {
|
|
8047
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8048
|
+
* "detail": "Additional error context.",
|
|
8049
|
+
* "status": 401,
|
|
8050
|
+
* "title": "Authentication Error",
|
|
8051
|
+
* "type": "authentication"
|
|
8052
|
+
* } */
|
|
8053
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8054
|
+
};
|
|
8055
|
+
};
|
|
8056
|
+
/** @description Forbidden */
|
|
8057
|
+
403: {
|
|
8058
|
+
headers: {
|
|
8059
|
+
[name: string]: unknown;
|
|
8060
|
+
};
|
|
8061
|
+
content: {
|
|
8062
|
+
/** @example {
|
|
8063
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8064
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8065
|
+
* "status": 403,
|
|
8066
|
+
* "title": "Permission Denied",
|
|
8067
|
+
* "type": "permission-denied"
|
|
8068
|
+
* } */
|
|
8069
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8070
|
+
};
|
|
8071
|
+
};
|
|
7256
8072
|
/** @description Validation Error */
|
|
7257
8073
|
422: {
|
|
7258
8074
|
headers: {
|
|
@@ -7284,6 +8100,38 @@ export interface operations {
|
|
|
7284
8100
|
"application/json": components["schemas"]["OrganizationWithBillingData"];
|
|
7285
8101
|
};
|
|
7286
8102
|
};
|
|
8103
|
+
/** @description Unauthorized */
|
|
8104
|
+
401: {
|
|
8105
|
+
headers: {
|
|
8106
|
+
[name: string]: unknown;
|
|
8107
|
+
};
|
|
8108
|
+
content: {
|
|
8109
|
+
/** @example {
|
|
8110
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8111
|
+
* "detail": "Additional error context.",
|
|
8112
|
+
* "status": 401,
|
|
8113
|
+
* "title": "Authentication Error",
|
|
8114
|
+
* "type": "authentication"
|
|
8115
|
+
* } */
|
|
8116
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8117
|
+
};
|
|
8118
|
+
};
|
|
8119
|
+
/** @description Forbidden */
|
|
8120
|
+
403: {
|
|
8121
|
+
headers: {
|
|
8122
|
+
[name: string]: unknown;
|
|
8123
|
+
};
|
|
8124
|
+
content: {
|
|
8125
|
+
/** @example {
|
|
8126
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8127
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8128
|
+
* "status": 403,
|
|
8129
|
+
* "title": "Permission Denied",
|
|
8130
|
+
* "type": "permission-denied"
|
|
8131
|
+
* } */
|
|
8132
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8133
|
+
};
|
|
8134
|
+
};
|
|
7287
8135
|
/** @description Validation Error */
|
|
7288
8136
|
422: {
|
|
7289
8137
|
headers: {
|
|
@@ -7313,6 +8161,38 @@ export interface operations {
|
|
|
7313
8161
|
};
|
|
7314
8162
|
content?: never;
|
|
7315
8163
|
};
|
|
8164
|
+
/** @description Unauthorized */
|
|
8165
|
+
401: {
|
|
8166
|
+
headers: {
|
|
8167
|
+
[name: string]: unknown;
|
|
8168
|
+
};
|
|
8169
|
+
content: {
|
|
8170
|
+
/** @example {
|
|
8171
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8172
|
+
* "detail": "Additional error context.",
|
|
8173
|
+
* "status": 401,
|
|
8174
|
+
* "title": "Authentication Error",
|
|
8175
|
+
* "type": "authentication"
|
|
8176
|
+
* } */
|
|
8177
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8178
|
+
};
|
|
8179
|
+
};
|
|
8180
|
+
/** @description Forbidden */
|
|
8181
|
+
403: {
|
|
8182
|
+
headers: {
|
|
8183
|
+
[name: string]: unknown;
|
|
8184
|
+
};
|
|
8185
|
+
content: {
|
|
8186
|
+
/** @example {
|
|
8187
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8188
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8189
|
+
* "status": 403,
|
|
8190
|
+
* "title": "Permission Denied",
|
|
8191
|
+
* "type": "permission-denied"
|
|
8192
|
+
* } */
|
|
8193
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8194
|
+
};
|
|
8195
|
+
};
|
|
7316
8196
|
/** @description Validation Error */
|
|
7317
8197
|
422: {
|
|
7318
8198
|
headers: {
|
|
@@ -7348,6 +8228,38 @@ export interface operations {
|
|
|
7348
8228
|
"application/json": components["schemas"]["Organization"];
|
|
7349
8229
|
};
|
|
7350
8230
|
};
|
|
8231
|
+
/** @description Unauthorized */
|
|
8232
|
+
401: {
|
|
8233
|
+
headers: {
|
|
8234
|
+
[name: string]: unknown;
|
|
8235
|
+
};
|
|
8236
|
+
content: {
|
|
8237
|
+
/** @example {
|
|
8238
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8239
|
+
* "detail": "Additional error context.",
|
|
8240
|
+
* "status": 401,
|
|
8241
|
+
* "title": "Authentication Error",
|
|
8242
|
+
* "type": "authentication"
|
|
8243
|
+
* } */
|
|
8244
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8245
|
+
};
|
|
8246
|
+
};
|
|
8247
|
+
/** @description Forbidden */
|
|
8248
|
+
403: {
|
|
8249
|
+
headers: {
|
|
8250
|
+
[name: string]: unknown;
|
|
8251
|
+
};
|
|
8252
|
+
content: {
|
|
8253
|
+
/** @example {
|
|
8254
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8255
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8256
|
+
* "status": 403,
|
|
8257
|
+
* "title": "Permission Denied",
|
|
8258
|
+
* "type": "permission-denied"
|
|
8259
|
+
* } */
|
|
8260
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8261
|
+
};
|
|
8262
|
+
};
|
|
7351
8263
|
/** @description Validation Error */
|
|
7352
8264
|
422: {
|
|
7353
8265
|
headers: {
|
|
@@ -7383,6 +8295,38 @@ export interface operations {
|
|
|
7383
8295
|
"application/json": components["schemas"]["GetPricesResponse"];
|
|
7384
8296
|
};
|
|
7385
8297
|
};
|
|
8298
|
+
/** @description Unauthorized */
|
|
8299
|
+
401: {
|
|
8300
|
+
headers: {
|
|
8301
|
+
[name: string]: unknown;
|
|
8302
|
+
};
|
|
8303
|
+
content: {
|
|
8304
|
+
/** @example {
|
|
8305
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8306
|
+
* "detail": "Additional error context.",
|
|
8307
|
+
* "status": 401,
|
|
8308
|
+
* "title": "Authentication Error",
|
|
8309
|
+
* "type": "authentication"
|
|
8310
|
+
* } */
|
|
8311
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8312
|
+
};
|
|
8313
|
+
};
|
|
8314
|
+
/** @description Forbidden */
|
|
8315
|
+
403: {
|
|
8316
|
+
headers: {
|
|
8317
|
+
[name: string]: unknown;
|
|
8318
|
+
};
|
|
8319
|
+
content: {
|
|
8320
|
+
/** @example {
|
|
8321
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8322
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8323
|
+
* "status": 403,
|
|
8324
|
+
* "title": "Permission Denied",
|
|
8325
|
+
* "type": "permission-denied"
|
|
8326
|
+
* } */
|
|
8327
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8328
|
+
};
|
|
8329
|
+
};
|
|
7386
8330
|
/** @description Validation Error */
|
|
7387
8331
|
422: {
|
|
7388
8332
|
headers: {
|
|
@@ -7427,6 +8371,38 @@ export interface operations {
|
|
|
7427
8371
|
"application/json": components["schemas"]["Pagination_BillingTransactionResponse_"];
|
|
7428
8372
|
};
|
|
7429
8373
|
};
|
|
8374
|
+
/** @description Unauthorized */
|
|
8375
|
+
401: {
|
|
8376
|
+
headers: {
|
|
8377
|
+
[name: string]: unknown;
|
|
8378
|
+
};
|
|
8379
|
+
content: {
|
|
8380
|
+
/** @example {
|
|
8381
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8382
|
+
* "detail": "Additional error context.",
|
|
8383
|
+
* "status": 401,
|
|
8384
|
+
* "title": "Authentication Error",
|
|
8385
|
+
* "type": "authentication"
|
|
8386
|
+
* } */
|
|
8387
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8388
|
+
};
|
|
8389
|
+
};
|
|
8390
|
+
/** @description Forbidden */
|
|
8391
|
+
403: {
|
|
8392
|
+
headers: {
|
|
8393
|
+
[name: string]: unknown;
|
|
8394
|
+
};
|
|
8395
|
+
content: {
|
|
8396
|
+
/** @example {
|
|
8397
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8398
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8399
|
+
* "status": 403,
|
|
8400
|
+
* "title": "Permission Denied",
|
|
8401
|
+
* "type": "permission-denied"
|
|
8402
|
+
* } */
|
|
8403
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8404
|
+
};
|
|
8405
|
+
};
|
|
7430
8406
|
/** @description Validation Error */
|
|
7431
8407
|
422: {
|
|
7432
8408
|
headers: {
|
|
@@ -7459,6 +8435,38 @@ export interface operations {
|
|
|
7459
8435
|
"application/json": components["schemas"]["BillingTransactionResponse"];
|
|
7460
8436
|
};
|
|
7461
8437
|
};
|
|
8438
|
+
/** @description Unauthorized */
|
|
8439
|
+
401: {
|
|
8440
|
+
headers: {
|
|
8441
|
+
[name: string]: unknown;
|
|
8442
|
+
};
|
|
8443
|
+
content: {
|
|
8444
|
+
/** @example {
|
|
8445
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
8446
|
+
* "detail": "Additional error context.",
|
|
8447
|
+
* "status": 401,
|
|
8448
|
+
* "title": "Authentication Error",
|
|
8449
|
+
* "type": "authentication"
|
|
8450
|
+
* } */
|
|
8451
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8452
|
+
};
|
|
8453
|
+
};
|
|
8454
|
+
/** @description Forbidden */
|
|
8455
|
+
403: {
|
|
8456
|
+
headers: {
|
|
8457
|
+
[name: string]: unknown;
|
|
8458
|
+
};
|
|
8459
|
+
content: {
|
|
8460
|
+
/** @example {
|
|
8461
|
+
* "code": "ERROR_PERMISSION_DENIED",
|
|
8462
|
+
* "detail": "Insufficient permissions to perform this action",
|
|
8463
|
+
* "status": 403,
|
|
8464
|
+
* "title": "Permission Denied",
|
|
8465
|
+
* "type": "permission-denied"
|
|
8466
|
+
* } */
|
|
8467
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
8468
|
+
};
|
|
8469
|
+
};
|
|
7462
8470
|
/** @description Validation Error */
|
|
7463
8471
|
422: {
|
|
7464
8472
|
headers: {
|