@opusdns/api 1.83.0 → 1.84.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 +17 -4
- package/src/helpers/requests.d.ts +5 -0
- package/src/helpers/responses.d.ts +10 -2
- package/src/helpers/schemas.d.ts +3 -2
- package/src/openapi.yaml +96 -1
- package/src/schema.d.ts +112 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -434,6 +434,7 @@ import type {
|
|
|
434
434
|
RequestAuthcode,
|
|
435
435
|
RequestAuthcode2,
|
|
436
436
|
RequestAuthcode3,
|
|
437
|
+
RequestAuthcode4,
|
|
437
438
|
DomainAvailabilityList,
|
|
438
439
|
DomainAvailabilityCheck,
|
|
439
440
|
} from './schemas';
|
|
@@ -5848,17 +5849,15 @@ export const KEYS_REQUEST_AUTHCODE = [
|
|
|
5848
5849
|
KEY_REQUEST_AUTHCODE_SUCCESS,
|
|
5849
5850
|
] as const satisfies (keyof RequestAuthcode)[];
|
|
5850
5851
|
|
|
5851
|
-
export const KEY_REQUEST_AUTHCODE2_AUTH_CODE = 'auth_code' satisfies keyof RequestAuthcode2;
|
|
5852
|
-
export const KEY_REQUEST_AUTHCODE2_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' satisfies keyof RequestAuthcode2;
|
|
5853
5852
|
export const KEY_REQUEST_AUTHCODE2_DETAIL = 'detail' satisfies keyof RequestAuthcode2;
|
|
5854
5853
|
export const KEY_REQUEST_AUTHCODE2_NAME = 'name' satisfies keyof RequestAuthcode2;
|
|
5854
|
+
export const KEY_REQUEST_AUTHCODE2_RECIPIENTS = 'recipients' satisfies keyof RequestAuthcode2;
|
|
5855
5855
|
export const KEY_REQUEST_AUTHCODE2_SUCCESS = 'success' satisfies keyof RequestAuthcode2;
|
|
5856
5856
|
|
|
5857
5857
|
export const KEYS_REQUEST_AUTHCODE2 = [
|
|
5858
|
-
KEY_REQUEST_AUTHCODE2_AUTH_CODE,
|
|
5859
|
-
KEY_REQUEST_AUTHCODE2_AUTH_CODE_EXPIRES_ON,
|
|
5860
5858
|
KEY_REQUEST_AUTHCODE2_DETAIL,
|
|
5861
5859
|
KEY_REQUEST_AUTHCODE2_NAME,
|
|
5860
|
+
KEY_REQUEST_AUTHCODE2_RECIPIENTS,
|
|
5862
5861
|
KEY_REQUEST_AUTHCODE2_SUCCESS,
|
|
5863
5862
|
] as const satisfies (keyof RequestAuthcode2)[];
|
|
5864
5863
|
|
|
@@ -5876,6 +5875,20 @@ export const KEYS_REQUEST_AUTHCODE3 = [
|
|
|
5876
5875
|
KEY_REQUEST_AUTHCODE3_SUCCESS,
|
|
5877
5876
|
] as const satisfies (keyof RequestAuthcode3)[];
|
|
5878
5877
|
|
|
5878
|
+
export const KEY_REQUEST_AUTHCODE4_AUTH_CODE = 'auth_code' satisfies keyof RequestAuthcode4;
|
|
5879
|
+
export const KEY_REQUEST_AUTHCODE4_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' satisfies keyof RequestAuthcode4;
|
|
5880
|
+
export const KEY_REQUEST_AUTHCODE4_DETAIL = 'detail' satisfies keyof RequestAuthcode4;
|
|
5881
|
+
export const KEY_REQUEST_AUTHCODE4_NAME = 'name' satisfies keyof RequestAuthcode4;
|
|
5882
|
+
export const KEY_REQUEST_AUTHCODE4_SUCCESS = 'success' satisfies keyof RequestAuthcode4;
|
|
5883
|
+
|
|
5884
|
+
export const KEYS_REQUEST_AUTHCODE4 = [
|
|
5885
|
+
KEY_REQUEST_AUTHCODE4_AUTH_CODE,
|
|
5886
|
+
KEY_REQUEST_AUTHCODE4_AUTH_CODE_EXPIRES_ON,
|
|
5887
|
+
KEY_REQUEST_AUTHCODE4_DETAIL,
|
|
5888
|
+
KEY_REQUEST_AUTHCODE4_NAME,
|
|
5889
|
+
KEY_REQUEST_AUTHCODE4_SUCCESS,
|
|
5890
|
+
] as const satisfies (keyof RequestAuthcode4)[];
|
|
5891
|
+
|
|
5879
5892
|
export const KEY_DOMAIN_AVAILABILITY_LIST_META = 'meta' satisfies keyof DomainAvailabilityList;
|
|
5880
5893
|
export const KEY_DOMAIN_AVAILABILITY_LIST_RESULTS = 'results' satisfies keyof DomainAvailabilityList;
|
|
5881
5894
|
|
|
@@ -584,6 +584,11 @@ export type POST_DomainsTldSpecificBeByDomainReferenceAuthCodeRequest_Request =
|
|
|
584
584
|
};
|
|
585
585
|
export type POST_DomainsTldSpecificBeByDomainReferenceAuthCodeRequest_Request_Path = POST_DomainsTldSpecificBeByDomainReferenceAuthCodeRequest_Request['parameters']['path'];
|
|
586
586
|
|
|
587
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Request = {
|
|
588
|
+
parameters: operations['request_auth_code_v1_domains_tld_specific_cz__domain_reference__auth_code_request_post']['parameters'];
|
|
589
|
+
};
|
|
590
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Request_Path = POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Request['parameters']['path'];
|
|
591
|
+
|
|
587
592
|
export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Request = {
|
|
588
593
|
parameters: operations['transit_domain_v1_domains_tld_specific_de__domain_reference__transit_post']['parameters'];
|
|
589
594
|
requestBody: DomainTransitRequest;
|
|
@@ -99,6 +99,7 @@ import type {
|
|
|
99
99
|
RequestAuthcode,
|
|
100
100
|
RequestAuthcode2,
|
|
101
101
|
RequestAuthcode3,
|
|
102
|
+
RequestAuthcode4,
|
|
102
103
|
SetVanityNameserverSetDefaultRes,
|
|
103
104
|
Tag,
|
|
104
105
|
TldResponseShort,
|
|
@@ -1165,6 +1166,13 @@ export type POST_DomainsTldSpecificBeByDomainReferenceAuthCodeRequest_Response_4
|
|
|
1165
1166
|
export type POST_DomainsTldSpecificBeByDomainReferenceAuthCodeRequest_Response_404 = Problem;
|
|
1166
1167
|
export type POST_DomainsTldSpecificBeByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
|
|
1167
1168
|
|
|
1169
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_422;
|
|
1170
|
+
|
|
1171
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode2;
|
|
1172
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_400 = Problem;
|
|
1173
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_404 = Problem;
|
|
1174
|
+
export type POST_DomainsTldSpecificCzByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
|
|
1175
|
+
|
|
1168
1176
|
export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Response = POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_200 | POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_404 | POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_422;
|
|
1169
1177
|
|
|
1170
1178
|
export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_200 = DomainTransit;
|
|
@@ -1173,14 +1181,14 @@ export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_422 = HTT
|
|
|
1173
1181
|
|
|
1174
1182
|
export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_422;
|
|
1175
1183
|
|
|
1176
|
-
export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_200 =
|
|
1184
|
+
export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode3;
|
|
1177
1185
|
export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_400 = Problem;
|
|
1178
1186
|
export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_404 = Problem;
|
|
1179
1187
|
export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
|
|
1180
1188
|
|
|
1181
1189
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_422;
|
|
1182
1190
|
|
|
1183
|
-
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_200 =
|
|
1191
|
+
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode4;
|
|
1184
1192
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_400 = Problem;
|
|
1185
1193
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_404 = Problem;
|
|
1186
1194
|
export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -576,7 +576,8 @@ export type ZoneVanitySetUpdate = components['schemas']['ZoneVanitySetUpdate'];
|
|
|
576
576
|
export type ZonesContext = components['schemas']['ZonesContext'];
|
|
577
577
|
export type ZonesContextCreate = components['schemas']['ZonesContextCreate'];
|
|
578
578
|
export type RequestAuthcode = components['schemas']['api__domain__tld_specific__be__models__RequestAuthcodeResponse'];
|
|
579
|
-
export type RequestAuthcode2 = components['schemas']['
|
|
580
|
-
export type RequestAuthcode3 = components['schemas']['
|
|
579
|
+
export type RequestAuthcode2 = components['schemas']['api__domain__tld_specific__cz__models__RequestAuthcodeResponse'];
|
|
580
|
+
export type RequestAuthcode3 = components['schemas']['api__domain__tld_specific__eu__models__RequestAuthcodeResponse'];
|
|
581
|
+
export type RequestAuthcode4 = components['schemas']['api__domain__tld_specific__lt__models__RequestAuthcodeResponse'];
|
|
581
582
|
export type DomainAvailabilityList = components['schemas']['common__models__availability__datasource__DomainAvailabilityResponse'];
|
|
582
583
|
export type DomainAvailabilityCheck = components['schemas']['common__models__domain__domain__DomainAvailabilityResponse'];
|
package/src/openapi.yaml
CHANGED
|
@@ -14646,6 +14646,34 @@ components:
|
|
|
14646
14646
|
- success
|
|
14647
14647
|
title: RequestAuthcodeResponse
|
|
14648
14648
|
type: object
|
|
14649
|
+
api__domain__tld_specific__cz__models__RequestAuthcodeResponse:
|
|
14650
|
+
properties:
|
|
14651
|
+
detail:
|
|
14652
|
+
anyOf:
|
|
14653
|
+
- type: string
|
|
14654
|
+
- type: 'null'
|
|
14655
|
+
description: Additional information about the result in case of failure
|
|
14656
|
+
title: Detail
|
|
14657
|
+
name:
|
|
14658
|
+
description: The domain name that had the auth code requested
|
|
14659
|
+
title: Name
|
|
14660
|
+
type: string
|
|
14661
|
+
recipients:
|
|
14662
|
+
description: Masked email addresses CZ.NIC sent the auth code to, when the
|
|
14663
|
+
registry discloses them
|
|
14664
|
+
items:
|
|
14665
|
+
type: string
|
|
14666
|
+
title: Recipients
|
|
14667
|
+
type: array
|
|
14668
|
+
success:
|
|
14669
|
+
description: Whether the request had a successful result from CZ.NIC
|
|
14670
|
+
title: Success
|
|
14671
|
+
type: boolean
|
|
14672
|
+
required:
|
|
14673
|
+
- name
|
|
14674
|
+
- success
|
|
14675
|
+
title: RequestAuthcodeResponse
|
|
14676
|
+
type: object
|
|
14649
14677
|
api__domain__tld_specific__eu__models__RequestAuthcodeResponse:
|
|
14650
14678
|
properties:
|
|
14651
14679
|
auth_code:
|
|
@@ -14849,7 +14877,7 @@ info:
|
|
|
14849
14877
|
\n\n"
|
|
14850
14878
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14851
14879
|
title: OpusDNS API
|
|
14852
|
-
version: 2026-07-
|
|
14880
|
+
version: 2026-07-28-024409
|
|
14853
14881
|
x-logo:
|
|
14854
14882
|
altText: OpusDNS API Reference
|
|
14855
14883
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -23184,6 +23212,73 @@ paths:
|
|
|
23184
23212
|
- domain_tld_specific
|
|
23185
23213
|
x-required-permissions:
|
|
23186
23214
|
- domains:manage
|
|
23215
|
+
/v1/domains/tld-specific/cz/{domain_reference}/auth_code/request:
|
|
23216
|
+
post:
|
|
23217
|
+
operationId: request_auth_code_v1_domains_tld_specific_cz__domain_reference__auth_code_request_post
|
|
23218
|
+
parameters:
|
|
23219
|
+
- in: path
|
|
23220
|
+
name: domain_reference
|
|
23221
|
+
required: true
|
|
23222
|
+
schema:
|
|
23223
|
+
anyOf:
|
|
23224
|
+
- examples:
|
|
23225
|
+
- domain_01h45ytscbebyvny4gc8cr8ma2
|
|
23226
|
+
format: typeid
|
|
23227
|
+
pattern: ^domain_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
23228
|
+
type: string
|
|
23229
|
+
x-typeid-prefix: domain
|
|
23230
|
+
- type: string
|
|
23231
|
+
title: Domain Reference
|
|
23232
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23233
|
+
responses:
|
|
23234
|
+
'200':
|
|
23235
|
+
content:
|
|
23236
|
+
application/json:
|
|
23237
|
+
schema:
|
|
23238
|
+
$ref: '#/components/schemas/api__domain__tld_specific__cz__models__RequestAuthcodeResponse'
|
|
23239
|
+
description: Successful Response
|
|
23240
|
+
'400':
|
|
23241
|
+
content:
|
|
23242
|
+
application/problem+json:
|
|
23243
|
+
example:
|
|
23244
|
+
code: ERROR_DOMAIN_TRANSFER
|
|
23245
|
+
detail: There was an error transferring the domain
|
|
23246
|
+
domain_name: Additional error context.
|
|
23247
|
+
reason: An unspecified error occurred
|
|
23248
|
+
status: 400
|
|
23249
|
+
title: Domain Transfer Error
|
|
23250
|
+
type: domain-transfer
|
|
23251
|
+
schema:
|
|
23252
|
+
$ref: '#/components/schemas/Problem'
|
|
23253
|
+
description: Bad Request
|
|
23254
|
+
'404':
|
|
23255
|
+
content:
|
|
23256
|
+
application/problem+json:
|
|
23257
|
+
example:
|
|
23258
|
+
code: ERROR_DOMAIN_NOT_FOUND
|
|
23259
|
+
detail: Domain not found
|
|
23260
|
+
domain_name: Additional error context.
|
|
23261
|
+
status: 404
|
|
23262
|
+
title: Domain Management Error
|
|
23263
|
+
type: domain-not-found
|
|
23264
|
+
schema:
|
|
23265
|
+
$ref: '#/components/schemas/Problem'
|
|
23266
|
+
description: Not Found
|
|
23267
|
+
'422':
|
|
23268
|
+
content:
|
|
23269
|
+
application/problem+json:
|
|
23270
|
+
schema:
|
|
23271
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
23272
|
+
description: Validation Error
|
|
23273
|
+
security:
|
|
23274
|
+
- OAuth2PasswordBearer: []
|
|
23275
|
+
- APIKeyHeader: []
|
|
23276
|
+
summary: Requests your auth code directly from CZ.NIC (registry)
|
|
23277
|
+
tags:
|
|
23278
|
+
- domain
|
|
23279
|
+
- domain_tld_specific
|
|
23280
|
+
x-required-permissions:
|
|
23281
|
+
- domains:manage
|
|
23187
23282
|
/v1/domains/tld-specific/de/{domain_reference}/transit:
|
|
23188
23283
|
post:
|
|
23189
23284
|
operationId: transit_domain_v1_domains_tld_specific_de__domain_reference__transit_post
|
package/src/schema.d.ts
CHANGED
|
@@ -1202,6 +1202,23 @@ export interface paths {
|
|
|
1202
1202
|
patch?: never;
|
|
1203
1203
|
trace?: never;
|
|
1204
1204
|
};
|
|
1205
|
+
"/v1/domains/tld-specific/cz/{domain_reference}/auth_code/request": {
|
|
1206
|
+
parameters: {
|
|
1207
|
+
query?: never;
|
|
1208
|
+
header?: never;
|
|
1209
|
+
path?: never;
|
|
1210
|
+
cookie?: never;
|
|
1211
|
+
};
|
|
1212
|
+
get?: never;
|
|
1213
|
+
put?: never;
|
|
1214
|
+
/** Requests your auth code directly from CZ.NIC (registry) */
|
|
1215
|
+
post: operations["request_auth_code_v1_domains_tld_specific_cz__domain_reference__auth_code_request_post"];
|
|
1216
|
+
delete?: never;
|
|
1217
|
+
options?: never;
|
|
1218
|
+
head?: never;
|
|
1219
|
+
patch?: never;
|
|
1220
|
+
trace?: never;
|
|
1221
|
+
};
|
|
1205
1222
|
"/v1/domains/tld-specific/de/{domain_reference}/transit": {
|
|
1206
1223
|
parameters: {
|
|
1207
1224
|
query?: never;
|
|
@@ -12569,6 +12586,29 @@ export interface components {
|
|
|
12569
12586
|
success: boolean;
|
|
12570
12587
|
};
|
|
12571
12588
|
/** RequestAuthcodeResponse */
|
|
12589
|
+
api__domain__tld_specific__cz__models__RequestAuthcodeResponse: {
|
|
12590
|
+
/**
|
|
12591
|
+
* Detail
|
|
12592
|
+
* @description Additional information about the result in case of failure
|
|
12593
|
+
*/
|
|
12594
|
+
detail?: string | null;
|
|
12595
|
+
/**
|
|
12596
|
+
* Name
|
|
12597
|
+
* @description The domain name that had the auth code requested
|
|
12598
|
+
*/
|
|
12599
|
+
name: string;
|
|
12600
|
+
/**
|
|
12601
|
+
* Recipients
|
|
12602
|
+
* @description Masked email addresses CZ.NIC sent the auth code to, when the registry discloses them
|
|
12603
|
+
*/
|
|
12604
|
+
recipients?: string[];
|
|
12605
|
+
/**
|
|
12606
|
+
* Success
|
|
12607
|
+
* @description Whether the request had a successful result from CZ.NIC
|
|
12608
|
+
*/
|
|
12609
|
+
success: boolean;
|
|
12610
|
+
};
|
|
12611
|
+
/** RequestAuthcodeResponse */
|
|
12572
12612
|
api__domain__tld_specific__eu__models__RequestAuthcodeResponse: {
|
|
12573
12613
|
/**
|
|
12574
12614
|
* Auth Code
|
|
@@ -18988,6 +19028,78 @@ export interface operations {
|
|
|
18988
19028
|
};
|
|
18989
19029
|
};
|
|
18990
19030
|
};
|
|
19031
|
+
request_auth_code_v1_domains_tld_specific_cz__domain_reference__auth_code_request_post: {
|
|
19032
|
+
parameters: {
|
|
19033
|
+
query?: never;
|
|
19034
|
+
header?: {
|
|
19035
|
+
/**
|
|
19036
|
+
* @description Opt in to RFC 3339 datetime serialization. When set to `rfc3339`, response datetimes are normalized to UTC and serialized with a `Z` suffix. This is opt-in until the announced default cutover date, after which RFC 3339 becomes the default and this header is accepted as a no-op. Any other value or omission uses the current default serialization.
|
|
19037
|
+
* @example rfc3339
|
|
19038
|
+
*/
|
|
19039
|
+
"X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
|
|
19040
|
+
};
|
|
19041
|
+
path: {
|
|
19042
|
+
domain_reference: TypeId<"domain"> | string;
|
|
19043
|
+
};
|
|
19044
|
+
cookie?: never;
|
|
19045
|
+
};
|
|
19046
|
+
requestBody?: never;
|
|
19047
|
+
responses: {
|
|
19048
|
+
/** @description Successful Response */
|
|
19049
|
+
200: {
|
|
19050
|
+
headers: {
|
|
19051
|
+
[name: string]: unknown;
|
|
19052
|
+
};
|
|
19053
|
+
content: {
|
|
19054
|
+
"application/json": components["schemas"]["api__domain__tld_specific__cz__models__RequestAuthcodeResponse"];
|
|
19055
|
+
};
|
|
19056
|
+
};
|
|
19057
|
+
/** @description Bad Request */
|
|
19058
|
+
400: {
|
|
19059
|
+
headers: {
|
|
19060
|
+
[name: string]: unknown;
|
|
19061
|
+
};
|
|
19062
|
+
content: {
|
|
19063
|
+
/** @example {
|
|
19064
|
+
* "code": "ERROR_DOMAIN_TRANSFER",
|
|
19065
|
+
* "detail": "There was an error transferring the domain",
|
|
19066
|
+
* "domain_name": "Additional error context.",
|
|
19067
|
+
* "reason": "An unspecified error occurred",
|
|
19068
|
+
* "status": 400,
|
|
19069
|
+
* "title": "Domain Transfer Error",
|
|
19070
|
+
* "type": "domain-transfer"
|
|
19071
|
+
* } */
|
|
19072
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
19073
|
+
};
|
|
19074
|
+
};
|
|
19075
|
+
/** @description Not Found */
|
|
19076
|
+
404: {
|
|
19077
|
+
headers: {
|
|
19078
|
+
[name: string]: unknown;
|
|
19079
|
+
};
|
|
19080
|
+
content: {
|
|
19081
|
+
/** @example {
|
|
19082
|
+
* "code": "ERROR_DOMAIN_NOT_FOUND",
|
|
19083
|
+
* "detail": "Domain not found",
|
|
19084
|
+
* "domain_name": "Additional error context.",
|
|
19085
|
+
* "status": 404,
|
|
19086
|
+
* "title": "Domain Management Error",
|
|
19087
|
+
* "type": "domain-not-found"
|
|
19088
|
+
* } */
|
|
19089
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
19090
|
+
};
|
|
19091
|
+
};
|
|
19092
|
+
/** @description Validation Error */
|
|
19093
|
+
422: {
|
|
19094
|
+
headers: {
|
|
19095
|
+
[name: string]: unknown;
|
|
19096
|
+
};
|
|
19097
|
+
content: {
|
|
19098
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
19099
|
+
};
|
|
19100
|
+
};
|
|
19101
|
+
};
|
|
19102
|
+
};
|
|
18991
19103
|
transit_domain_v1_domains_tld_specific_de__domain_reference__transit_post: {
|
|
18992
19104
|
parameters: {
|
|
18993
19105
|
query?: never;
|