@opusdns/api 0.86.0 → 0.88.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/constants.ts +74 -1
- package/src/helpers/keys.ts +527 -865
- package/src/helpers/requests.d.ts +147 -158
- package/src/helpers/responses.d.ts +139 -100
- package/src/helpers/schemas-arrays.d.ts +15 -43
- package/src/helpers/schemas.d.ts +70 -102
- package/src/openapi.yaml +224 -247
- package/src/schema.d.ts +171 -181
package/src/schema.d.ts
CHANGED
|
@@ -282,7 +282,7 @@ 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": {
|
|
285
|
+
"/v1/domain-forwards/{zone_name}/disable": {
|
|
286
286
|
parameters: {
|
|
287
287
|
query?: never;
|
|
288
288
|
header?: never;
|
|
@@ -295,31 +295,11 @@ export interface paths {
|
|
|
295
295
|
delete?: never;
|
|
296
296
|
options?: never;
|
|
297
297
|
head?: never;
|
|
298
|
-
/**
|
|
299
|
-
patch: operations["
|
|
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;
|
|
298
|
+
/** Disable Domain Forward */
|
|
299
|
+
patch: operations["disable_domain_forward_v1_domain_forwards__zone_name__disable_patch"];
|
|
320
300
|
trace?: never;
|
|
321
301
|
};
|
|
322
|
-
"/v1/domain-forwards/{zone_name}/
|
|
302
|
+
"/v1/domain-forwards/{zone_name}/enable": {
|
|
323
303
|
parameters: {
|
|
324
304
|
query?: never;
|
|
325
305
|
header?: never;
|
|
@@ -332,25 +312,28 @@ export interface paths {
|
|
|
332
312
|
delete?: never;
|
|
333
313
|
options?: never;
|
|
334
314
|
head?: never;
|
|
335
|
-
/**
|
|
336
|
-
patch: operations["
|
|
315
|
+
/** Enable Domain Forward */
|
|
316
|
+
patch: operations["enable_domain_forward_v1_domain_forwards__zone_name__enable_patch"];
|
|
337
317
|
trace?: never;
|
|
338
318
|
};
|
|
339
|
-
"/v1/domain-forwards/{zone_name}/
|
|
319
|
+
"/v1/domain-forwards/{zone_name}/{request_protocol}": {
|
|
340
320
|
parameters: {
|
|
341
321
|
query?: never;
|
|
342
322
|
header?: never;
|
|
343
323
|
path?: never;
|
|
344
324
|
cookie?: never;
|
|
345
325
|
};
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
326
|
+
/** Get Domain Forward */
|
|
327
|
+
get: operations["get_domain_forward_v1_domain_forwards__zone_name___request_protocol__get"];
|
|
328
|
+
/** Update Domain Forward */
|
|
329
|
+
put: operations["update_domain_forward_v1_domain_forwards__zone_name___request_protocol__put"];
|
|
330
|
+
/** Create Domain Forward */
|
|
331
|
+
post: operations["create_domain_forward_v1_domain_forwards__zone_name___request_protocol__post"];
|
|
332
|
+
/** Delete Domain Forward */
|
|
333
|
+
delete: operations["delete_domain_forward_v1_domain_forwards__zone_name___request_protocol__delete"];
|
|
350
334
|
options?: never;
|
|
351
335
|
head?: never;
|
|
352
|
-
|
|
353
|
-
patch: operations["enable_domain_forward_v1_domain_forwards__zone_name__enable_patch"];
|
|
336
|
+
patch?: never;
|
|
354
337
|
trace?: never;
|
|
355
338
|
};
|
|
356
339
|
"/v1/domain-search/suggest": {
|
|
@@ -989,6 +972,26 @@ export interface paths {
|
|
|
989
972
|
patch?: never;
|
|
990
973
|
trace?: never;
|
|
991
974
|
};
|
|
975
|
+
"/v1/tlds/": {
|
|
976
|
+
parameters: {
|
|
977
|
+
query?: never;
|
|
978
|
+
header?: never;
|
|
979
|
+
path?: never;
|
|
980
|
+
cookie?: never;
|
|
981
|
+
};
|
|
982
|
+
/**
|
|
983
|
+
* Get list of Specifications for all TLDs we support
|
|
984
|
+
* @description Retrieves a list of TLD Specifications we have support for
|
|
985
|
+
*/
|
|
986
|
+
get: operations["get_tld_specifications_v1_tlds__get"];
|
|
987
|
+
put?: never;
|
|
988
|
+
post?: never;
|
|
989
|
+
delete?: never;
|
|
990
|
+
options?: never;
|
|
991
|
+
head?: never;
|
|
992
|
+
patch?: never;
|
|
993
|
+
trace?: never;
|
|
994
|
+
};
|
|
992
995
|
"/v1/tlds/portfolio": {
|
|
993
996
|
parameters: {
|
|
994
997
|
query?: never;
|
|
@@ -2228,6 +2231,33 @@ export interface components {
|
|
|
2228
2231
|
*/
|
|
2229
2232
|
updated_on?: Date;
|
|
2230
2233
|
};
|
|
2234
|
+
/** DomainForward */
|
|
2235
|
+
DomainForward: {
|
|
2236
|
+
/**
|
|
2237
|
+
* Created On
|
|
2238
|
+
* Format: date-time
|
|
2239
|
+
*/
|
|
2240
|
+
created_on: Date;
|
|
2241
|
+
/** Redirects */
|
|
2242
|
+
redirects: components["schemas"]["HttpRedirect"][];
|
|
2243
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
2244
|
+
/**
|
|
2245
|
+
* Updated On
|
|
2246
|
+
* Format: date-time
|
|
2247
|
+
*/
|
|
2248
|
+
updated_on: Date;
|
|
2249
|
+
/** Wildcard */
|
|
2250
|
+
wildcard: boolean;
|
|
2251
|
+
/** Zone Name */
|
|
2252
|
+
zone_name: string;
|
|
2253
|
+
};
|
|
2254
|
+
/** DomainForwardRequest */
|
|
2255
|
+
DomainForwardRequest: {
|
|
2256
|
+
/** Redirects */
|
|
2257
|
+
redirects: components["schemas"]["HttpRedirect"][];
|
|
2258
|
+
/** Wildcard */
|
|
2259
|
+
wildcard: boolean;
|
|
2260
|
+
};
|
|
2231
2261
|
/** DomainLifecycleBase */
|
|
2232
2262
|
DomainLifecycleBase: {
|
|
2233
2263
|
/**
|
|
@@ -2844,6 +2874,26 @@ export interface components {
|
|
|
2844
2874
|
/** Problem type */
|
|
2845
2875
|
type: string;
|
|
2846
2876
|
};
|
|
2877
|
+
/**
|
|
2878
|
+
* HttpProtocol
|
|
2879
|
+
* @enum {string}
|
|
2880
|
+
*/
|
|
2881
|
+
HttpProtocol: "http" | "https";
|
|
2882
|
+
/** HttpRedirect */
|
|
2883
|
+
HttpRedirect: {
|
|
2884
|
+
redirect_code: components["schemas"]["RedirectCode"];
|
|
2885
|
+
/** Request Path */
|
|
2886
|
+
request_path: string;
|
|
2887
|
+
/** Request Subdomain */
|
|
2888
|
+
request_subdomain?: string | null;
|
|
2889
|
+
/** Target Domain */
|
|
2890
|
+
target_domain: string;
|
|
2891
|
+
/** Target Path */
|
|
2892
|
+
target_path: string;
|
|
2893
|
+
target_protocol: components["schemas"]["HttpProtocol"];
|
|
2894
|
+
/** Target Subdomain */
|
|
2895
|
+
target_subdomain?: string | null;
|
|
2896
|
+
};
|
|
2847
2897
|
/** IdnBase */
|
|
2848
2898
|
IdnBase: {
|
|
2849
2899
|
/**
|
|
@@ -3547,12 +3597,6 @@ export interface components {
|
|
|
3547
3597
|
/** Results */
|
|
3548
3598
|
results: components["schemas"]["Organization"][];
|
|
3549
3599
|
};
|
|
3550
|
-
/** Pagination[Redirect] */
|
|
3551
|
-
Pagination_Redirect_: {
|
|
3552
|
-
pagination: components["schemas"]["PaginationMetadata"];
|
|
3553
|
-
/** Results */
|
|
3554
|
-
results: components["schemas"]["Redirect"][];
|
|
3555
|
-
};
|
|
3556
3600
|
/** Pagination[User] */
|
|
3557
3601
|
Pagination_User_: {
|
|
3558
3602
|
pagination: components["schemas"]["PaginationMetadata"];
|
|
@@ -3697,73 +3741,11 @@ export interface components {
|
|
|
3697
3741
|
*/
|
|
3698
3742
|
rdap_server?: string | null;
|
|
3699
3743
|
};
|
|
3700
|
-
/**
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
request_domain: string;
|
|
3706
|
-
/** Request Path */
|
|
3707
|
-
request_path: string;
|
|
3708
|
-
/** Request Protocol */
|
|
3709
|
-
request_protocol: string;
|
|
3710
|
-
/** Request Subdomain */
|
|
3711
|
-
request_subdomain: string;
|
|
3712
|
-
/** Target Domain */
|
|
3713
|
-
target_domain: string;
|
|
3714
|
-
/** Target Path */
|
|
3715
|
-
target_path: string;
|
|
3716
|
-
/** Target Protocol */
|
|
3717
|
-
target_protocol: string;
|
|
3718
|
-
/** Target Subdomain */
|
|
3719
|
-
target_subdomain: string;
|
|
3720
|
-
};
|
|
3721
|
-
/** RedirectPatchOp */
|
|
3722
|
-
RedirectPatchOp: {
|
|
3723
|
-
op: components["schemas"]["PatchOp"];
|
|
3724
|
-
/** Redirect */
|
|
3725
|
-
redirect: components["schemas"]["Redirect"] | components["schemas"]["RedirectRemove"];
|
|
3726
|
-
};
|
|
3727
|
-
/** RedirectPatchOps */
|
|
3728
|
-
RedirectPatchOps: {
|
|
3729
|
-
/** Ops */
|
|
3730
|
-
ops: components["schemas"]["RedirectPatchOp"][];
|
|
3731
|
-
};
|
|
3732
|
-
/** RedirectRemove */
|
|
3733
|
-
RedirectRemove: {
|
|
3734
|
-
/** Request Domain */
|
|
3735
|
-
request_domain: string;
|
|
3736
|
-
/** Request Path */
|
|
3737
|
-
request_path: string;
|
|
3738
|
-
/** Request Protocol */
|
|
3739
|
-
request_protocol: string;
|
|
3740
|
-
/** Request Subdomain */
|
|
3741
|
-
request_subdomain: string;
|
|
3742
|
-
};
|
|
3743
|
-
/** RedirectSet */
|
|
3744
|
-
RedirectSet: {
|
|
3745
|
-
/** Redirects */
|
|
3746
|
-
redirects: components["schemas"]["RedirectUpdate"][];
|
|
3747
|
-
};
|
|
3748
|
-
/** RedirectUpdate */
|
|
3749
|
-
RedirectUpdate: {
|
|
3750
|
-
/** Redirect Code */
|
|
3751
|
-
redirect_code: number;
|
|
3752
|
-
/** Request Path */
|
|
3753
|
-
request_path: string;
|
|
3754
|
-
/** Request Protocol */
|
|
3755
|
-
request_protocol: string;
|
|
3756
|
-
/** Request Subdomain */
|
|
3757
|
-
request_subdomain: string;
|
|
3758
|
-
/** Target Domain */
|
|
3759
|
-
target_domain: string;
|
|
3760
|
-
/** Target Path */
|
|
3761
|
-
target_path: string;
|
|
3762
|
-
/** Target Protocol */
|
|
3763
|
-
target_protocol: string;
|
|
3764
|
-
/** Target Subdomain */
|
|
3765
|
-
target_subdomain: string;
|
|
3766
|
-
};
|
|
3744
|
+
/**
|
|
3745
|
+
* RedirectCode
|
|
3746
|
+
* @enum {integer}
|
|
3747
|
+
*/
|
|
3748
|
+
RedirectCode: 301 | 302 | 307 | 308;
|
|
3767
3749
|
/**
|
|
3768
3750
|
* RegistrantChangeType
|
|
3769
3751
|
* @enum {string}
|
|
@@ -5701,18 +5683,17 @@ export interface operations {
|
|
|
5701
5683
|
};
|
|
5702
5684
|
};
|
|
5703
5685
|
};
|
|
5704
|
-
|
|
5686
|
+
disable_domain_forward_v1_domain_forwards__zone_name__disable_patch: {
|
|
5705
5687
|
parameters: {
|
|
5706
5688
|
query?: never;
|
|
5707
5689
|
header?: never;
|
|
5708
|
-
path
|
|
5709
|
-
|
|
5710
|
-
|
|
5711
|
-
requestBody: {
|
|
5712
|
-
content: {
|
|
5713
|
-
"application/json": components["schemas"]["RedirectPatchOps"];
|
|
5690
|
+
path: {
|
|
5691
|
+
/** @description DNS zone name (trailing dot optional) */
|
|
5692
|
+
zone_name: string;
|
|
5714
5693
|
};
|
|
5694
|
+
cookie?: never;
|
|
5715
5695
|
};
|
|
5696
|
+
requestBody?: never;
|
|
5716
5697
|
responses: {
|
|
5717
5698
|
/** @description Successful Response */
|
|
5718
5699
|
204: {
|
|
@@ -5732,11 +5713,10 @@ export interface operations {
|
|
|
5732
5713
|
};
|
|
5733
5714
|
};
|
|
5734
5715
|
};
|
|
5735
|
-
|
|
5716
|
+
enable_domain_forward_v1_domain_forwards__zone_name__enable_patch: {
|
|
5736
5717
|
parameters: {
|
|
5737
5718
|
query?: {
|
|
5738
|
-
|
|
5739
|
-
page_size?: number;
|
|
5719
|
+
auto_create_zone?: boolean;
|
|
5740
5720
|
};
|
|
5741
5721
|
header?: never;
|
|
5742
5722
|
path: {
|
|
@@ -5748,13 +5728,11 @@ export interface operations {
|
|
|
5748
5728
|
requestBody?: never;
|
|
5749
5729
|
responses: {
|
|
5750
5730
|
/** @description Successful Response */
|
|
5751
|
-
|
|
5731
|
+
204: {
|
|
5752
5732
|
headers: {
|
|
5753
5733
|
[name: string]: unknown;
|
|
5754
5734
|
};
|
|
5755
|
-
content
|
|
5756
|
-
"application/json": components["schemas"]["Pagination_Redirect_"];
|
|
5757
|
-
};
|
|
5735
|
+
content?: never;
|
|
5758
5736
|
};
|
|
5759
5737
|
/** @description Validation Error */
|
|
5760
5738
|
422: {
|
|
@@ -5767,43 +5745,26 @@ export interface operations {
|
|
|
5767
5745
|
};
|
|
5768
5746
|
};
|
|
5769
5747
|
};
|
|
5770
|
-
|
|
5748
|
+
get_domain_forward_v1_domain_forwards__zone_name___request_protocol__get: {
|
|
5771
5749
|
parameters: {
|
|
5772
5750
|
query?: never;
|
|
5773
5751
|
header?: never;
|
|
5774
5752
|
path: {
|
|
5753
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5775
5754
|
/** @description DNS zone name (trailing dot optional) */
|
|
5776
5755
|
zone_name: string;
|
|
5777
5756
|
};
|
|
5778
5757
|
cookie?: never;
|
|
5779
5758
|
};
|
|
5780
|
-
requestBody
|
|
5781
|
-
content: {
|
|
5782
|
-
"application/json": components["schemas"]["RedirectSet"];
|
|
5783
|
-
};
|
|
5784
|
-
};
|
|
5759
|
+
requestBody?: never;
|
|
5785
5760
|
responses: {
|
|
5786
5761
|
/** @description Successful Response */
|
|
5787
|
-
|
|
5788
|
-
headers: {
|
|
5789
|
-
[name: string]: unknown;
|
|
5790
|
-
};
|
|
5791
|
-
content?: never;
|
|
5792
|
-
};
|
|
5793
|
-
/** @description Conflict */
|
|
5794
|
-
409: {
|
|
5762
|
+
200: {
|
|
5795
5763
|
headers: {
|
|
5796
5764
|
[name: string]: unknown;
|
|
5797
5765
|
};
|
|
5798
5766
|
content: {
|
|
5799
|
-
|
|
5800
|
-
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_NOT_EXISTS",
|
|
5801
|
-
* "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, .",
|
|
5802
|
-
* "status": 409,
|
|
5803
|
-
* "title": "Domain Forward Error",
|
|
5804
|
-
* "type": "domain-forward-redirect-not-exists"
|
|
5805
|
-
* } */
|
|
5806
|
-
"application/problem+json": components["schemas"]["Problem"];
|
|
5767
|
+
"application/json": components["schemas"]["DomainForward"];
|
|
5807
5768
|
};
|
|
5808
5769
|
};
|
|
5809
5770
|
/** @description Validation Error */
|
|
@@ -5817,11 +5778,12 @@ export interface operations {
|
|
|
5817
5778
|
};
|
|
5818
5779
|
};
|
|
5819
5780
|
};
|
|
5820
|
-
|
|
5781
|
+
update_domain_forward_v1_domain_forwards__zone_name___request_protocol__put: {
|
|
5821
5782
|
parameters: {
|
|
5822
5783
|
query?: never;
|
|
5823
5784
|
header?: never;
|
|
5824
5785
|
path: {
|
|
5786
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5825
5787
|
/** @description DNS zone name (trailing dot optional) */
|
|
5826
5788
|
zone_name: string;
|
|
5827
5789
|
};
|
|
@@ -5829,16 +5791,18 @@ export interface operations {
|
|
|
5829
5791
|
};
|
|
5830
5792
|
requestBody: {
|
|
5831
5793
|
content: {
|
|
5832
|
-
"application/json": components["schemas"]["
|
|
5794
|
+
"application/json": components["schemas"]["DomainForwardRequest"];
|
|
5833
5795
|
};
|
|
5834
5796
|
};
|
|
5835
5797
|
responses: {
|
|
5836
5798
|
/** @description Successful Response */
|
|
5837
|
-
|
|
5799
|
+
200: {
|
|
5838
5800
|
headers: {
|
|
5839
5801
|
[name: string]: unknown;
|
|
5840
5802
|
};
|
|
5841
|
-
content
|
|
5803
|
+
content: {
|
|
5804
|
+
"application/json": components["schemas"]["DomainForward"];
|
|
5805
|
+
};
|
|
5842
5806
|
};
|
|
5843
5807
|
/** @description Conflict */
|
|
5844
5808
|
409: {
|
|
@@ -5847,11 +5811,11 @@ export interface operations {
|
|
|
5847
5811
|
};
|
|
5848
5812
|
content: {
|
|
5849
5813
|
/** @example {
|
|
5850
|
-
* "code": "
|
|
5851
|
-
* "detail": "Redirect
|
|
5814
|
+
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_NOT_EXISTS",
|
|
5815
|
+
* "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, .",
|
|
5852
5816
|
* "status": 409,
|
|
5853
5817
|
* "title": "Domain Forward Error",
|
|
5854
|
-
* "type": "domain-forward-redirect-
|
|
5818
|
+
* "type": "domain-forward-redirect-not-exists"
|
|
5855
5819
|
* } */
|
|
5856
5820
|
"application/problem+json": components["schemas"]["Problem"];
|
|
5857
5821
|
};
|
|
@@ -5867,54 +5831,47 @@ export interface operations {
|
|
|
5867
5831
|
};
|
|
5868
5832
|
};
|
|
5869
5833
|
};
|
|
5870
|
-
|
|
5834
|
+
create_domain_forward_v1_domain_forwards__zone_name___request_protocol__post: {
|
|
5871
5835
|
parameters: {
|
|
5872
5836
|
query?: never;
|
|
5873
5837
|
header?: never;
|
|
5874
5838
|
path: {
|
|
5839
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5875
5840
|
/** @description DNS zone name (trailing dot optional) */
|
|
5876
5841
|
zone_name: string;
|
|
5877
5842
|
};
|
|
5878
5843
|
cookie?: never;
|
|
5879
5844
|
};
|
|
5880
|
-
requestBody
|
|
5845
|
+
requestBody: {
|
|
5846
|
+
content: {
|
|
5847
|
+
"application/json": components["schemas"]["DomainForwardRequest"];
|
|
5848
|
+
};
|
|
5849
|
+
};
|
|
5881
5850
|
responses: {
|
|
5882
5851
|
/** @description Successful Response */
|
|
5883
|
-
|
|
5884
|
-
headers: {
|
|
5885
|
-
[name: string]: unknown;
|
|
5886
|
-
};
|
|
5887
|
-
content?: never;
|
|
5888
|
-
};
|
|
5889
|
-
/** @description Validation Error */
|
|
5890
|
-
422: {
|
|
5852
|
+
201: {
|
|
5891
5853
|
headers: {
|
|
5892
5854
|
[name: string]: unknown;
|
|
5893
5855
|
};
|
|
5894
5856
|
content: {
|
|
5895
|
-
"application/
|
|
5857
|
+
"application/json": components["schemas"]["DomainForward"];
|
|
5896
5858
|
};
|
|
5897
5859
|
};
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
disable_domain_forward_v1_domain_forwards__zone_name__disable_patch: {
|
|
5901
|
-
parameters: {
|
|
5902
|
-
query?: never;
|
|
5903
|
-
header?: never;
|
|
5904
|
-
path: {
|
|
5905
|
-
/** @description DNS zone name (trailing dot optional) */
|
|
5906
|
-
zone_name: string;
|
|
5907
|
-
};
|
|
5908
|
-
cookie?: never;
|
|
5909
|
-
};
|
|
5910
|
-
requestBody?: never;
|
|
5911
|
-
responses: {
|
|
5912
|
-
/** @description Successful Response */
|
|
5913
|
-
204: {
|
|
5860
|
+
/** @description Conflict */
|
|
5861
|
+
409: {
|
|
5914
5862
|
headers: {
|
|
5915
5863
|
[name: string]: unknown;
|
|
5916
5864
|
};
|
|
5917
|
-
content
|
|
5865
|
+
content: {
|
|
5866
|
+
/** @example {
|
|
5867
|
+
* "code": "ERROR_DOMAIN_FORWARD_REDIRECT_ALREADY_EXISTS",
|
|
5868
|
+
* "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, .",
|
|
5869
|
+
* "status": 409,
|
|
5870
|
+
* "title": "Domain Forward Error",
|
|
5871
|
+
* "type": "domain-forward-redirect-already-exists"
|
|
5872
|
+
* } */
|
|
5873
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
5874
|
+
};
|
|
5918
5875
|
};
|
|
5919
5876
|
/** @description Validation Error */
|
|
5920
5877
|
422: {
|
|
@@ -5927,13 +5884,12 @@ export interface operations {
|
|
|
5927
5884
|
};
|
|
5928
5885
|
};
|
|
5929
5886
|
};
|
|
5930
|
-
|
|
5887
|
+
delete_domain_forward_v1_domain_forwards__zone_name___request_protocol__delete: {
|
|
5931
5888
|
parameters: {
|
|
5932
|
-
query?:
|
|
5933
|
-
auto_create_zone?: boolean;
|
|
5934
|
-
};
|
|
5889
|
+
query?: never;
|
|
5935
5890
|
header?: never;
|
|
5936
5891
|
path: {
|
|
5892
|
+
request_protocol: components["schemas"]["HttpProtocol"];
|
|
5937
5893
|
/** @description DNS zone name (trailing dot optional) */
|
|
5938
5894
|
zone_name: string;
|
|
5939
5895
|
};
|
|
@@ -8494,6 +8450,40 @@ export interface operations {
|
|
|
8494
8450
|
};
|
|
8495
8451
|
};
|
|
8496
8452
|
};
|
|
8453
|
+
get_tld_specifications_v1_tlds__get: {
|
|
8454
|
+
parameters: {
|
|
8455
|
+
query?: {
|
|
8456
|
+
fields?: string | null;
|
|
8457
|
+
tlds?: string | null;
|
|
8458
|
+
};
|
|
8459
|
+
header?: never;
|
|
8460
|
+
path?: never;
|
|
8461
|
+
cookie?: never;
|
|
8462
|
+
};
|
|
8463
|
+
requestBody?: never;
|
|
8464
|
+
responses: {
|
|
8465
|
+
/** @description Successful Response */
|
|
8466
|
+
200: {
|
|
8467
|
+
headers: {
|
|
8468
|
+
[name: string]: unknown;
|
|
8469
|
+
};
|
|
8470
|
+
content: {
|
|
8471
|
+
"application/json": {
|
|
8472
|
+
[key: string]: Record<string, never>[];
|
|
8473
|
+
};
|
|
8474
|
+
};
|
|
8475
|
+
};
|
|
8476
|
+
/** @description Validation Error */
|
|
8477
|
+
422: {
|
|
8478
|
+
headers: {
|
|
8479
|
+
[name: string]: unknown;
|
|
8480
|
+
};
|
|
8481
|
+
content: {
|
|
8482
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
8483
|
+
};
|
|
8484
|
+
};
|
|
8485
|
+
};
|
|
8486
|
+
};
|
|
8497
8487
|
get_tld_portfolio_v1_tlds_portfolio_get: {
|
|
8498
8488
|
parameters: {
|
|
8499
8489
|
query?: never;
|