@opusdns/api 1.142.0 → 1.143.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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^1.5.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.142.0",
6
+ "version": "1.143.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -61,6 +61,7 @@ export const DOMAINS_TLD_SPECIFIC_BE_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPO
61
61
  export const DOMAINS_TLD_SPECIFIC_CYMRU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT = '/v1/domains/tld-specific/cymru/{domain_reference}/auth_code/request';
62
62
  export const DOMAINS_TLD_SPECIFIC_CZ_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT = '/v1/domains/tld-specific/cz/{domain_reference}/auth_code/request';
63
63
  export const DOMAINS_TLD_SPECIFIC_DE_BY_DOMAIN_REFERENCE_TRANSIT_ENDPOINT = '/v1/domains/tld-specific/de/{domain_reference}/transit';
64
+ export const DOMAINS_TLD_SPECIFIC_DK_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT = '/v1/domains/tld-specific/dk/{domain_reference}/auth_code/request';
64
65
  export const DOMAINS_TLD_SPECIFIC_EU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT = '/v1/domains/tld-specific/eu/{domain_reference}/auth_code/request';
65
66
  export const DOMAINS_TLD_SPECIFIC_LT_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT = '/v1/domains/tld-specific/lt/{domain_reference}/auth_code/request';
66
67
  export const DOMAINS_TLD_SPECIFIC_NO_APPLICANT_DECLARATION_ENDPOINT = '/v1/domains/tld-specific/no/applicant-declaration';
@@ -215,6 +216,7 @@ export type Endpoint =
215
216
  | typeof DOMAINS_TLD_SPECIFIC_CYMRU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT
216
217
  | typeof DOMAINS_TLD_SPECIFIC_CZ_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT
217
218
  | typeof DOMAINS_TLD_SPECIFIC_DE_BY_DOMAIN_REFERENCE_TRANSIT_ENDPOINT
219
+ | typeof DOMAINS_TLD_SPECIFIC_DK_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT
218
220
  | typeof DOMAINS_TLD_SPECIFIC_EU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT
219
221
  | typeof DOMAINS_TLD_SPECIFIC_LT_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT
220
222
  | typeof DOMAINS_TLD_SPECIFIC_NO_APPLICANT_DECLARATION_ENDPOINT
@@ -453,6 +453,7 @@ import type {
453
453
  RequestAuthcode6,
454
454
  RequestAuthcode7,
455
455
  RequestAuthcode8,
456
+ RequestAuthcode9,
456
457
  DomainAvailabilityList,
457
458
  DomainAvailabilityCheck,
458
459
  } from './schemas';
@@ -6110,12 +6111,14 @@ export const KEYS_REQUEST_AUTHCODE5 = [
6110
6111
  ] as const satisfies (keyof RequestAuthcode5)[];
6111
6112
 
6112
6113
  export const KEY_REQUEST_AUTHCODE6_AUTH_CODE = 'auth_code' satisfies keyof RequestAuthcode6;
6114
+ export const KEY_REQUEST_AUTHCODE6_AUTH_CODE_EXPIRES_ON = 'auth_code_expires_on' satisfies keyof RequestAuthcode6;
6113
6115
  export const KEY_REQUEST_AUTHCODE6_DETAIL = 'detail' satisfies keyof RequestAuthcode6;
6114
6116
  export const KEY_REQUEST_AUTHCODE6_NAME = 'name' satisfies keyof RequestAuthcode6;
6115
6117
  export const KEY_REQUEST_AUTHCODE6_SUCCESS = 'success' satisfies keyof RequestAuthcode6;
6116
6118
 
6117
6119
  export const KEYS_REQUEST_AUTHCODE6 = [
6118
6120
  KEY_REQUEST_AUTHCODE6_AUTH_CODE,
6121
+ KEY_REQUEST_AUTHCODE6_AUTH_CODE_EXPIRES_ON,
6119
6122
  KEY_REQUEST_AUTHCODE6_DETAIL,
6120
6123
  KEY_REQUEST_AUTHCODE6_NAME,
6121
6124
  KEY_REQUEST_AUTHCODE6_SUCCESS,
@@ -6145,6 +6148,18 @@ export const KEYS_REQUEST_AUTHCODE8 = [
6145
6148
  KEY_REQUEST_AUTHCODE8_SUCCESS,
6146
6149
  ] as const satisfies (keyof RequestAuthcode8)[];
6147
6150
 
6151
+ export const KEY_REQUEST_AUTHCODE9_AUTH_CODE = 'auth_code' satisfies keyof RequestAuthcode9;
6152
+ export const KEY_REQUEST_AUTHCODE9_DETAIL = 'detail' satisfies keyof RequestAuthcode9;
6153
+ export const KEY_REQUEST_AUTHCODE9_NAME = 'name' satisfies keyof RequestAuthcode9;
6154
+ export const KEY_REQUEST_AUTHCODE9_SUCCESS = 'success' satisfies keyof RequestAuthcode9;
6155
+
6156
+ export const KEYS_REQUEST_AUTHCODE9 = [
6157
+ KEY_REQUEST_AUTHCODE9_AUTH_CODE,
6158
+ KEY_REQUEST_AUTHCODE9_DETAIL,
6159
+ KEY_REQUEST_AUTHCODE9_NAME,
6160
+ KEY_REQUEST_AUTHCODE9_SUCCESS,
6161
+ ] as const satisfies (keyof RequestAuthcode9)[];
6162
+
6148
6163
  export const KEY_DOMAIN_AVAILABILITY_LIST_META = 'meta' satisfies keyof DomainAvailabilityList;
6149
6164
  export const KEY_DOMAIN_AVAILABILITY_LIST_RESULTS = 'results' satisfies keyof DomainAvailabilityList;
6150
6165
 
@@ -73,6 +73,7 @@ import {
73
73
  DOMAINS_TLD_SPECIFIC_CYMRU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT,
74
74
  DOMAINS_TLD_SPECIFIC_CZ_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT,
75
75
  DOMAINS_TLD_SPECIFIC_DE_BY_DOMAIN_REFERENCE_TRANSIT_ENDPOINT,
76
+ DOMAINS_TLD_SPECIFIC_DK_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT,
76
77
  DOMAINS_TLD_SPECIFIC_EU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT,
77
78
  DOMAINS_TLD_SPECIFIC_LT_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT,
78
79
  DOMAINS_TLD_SPECIFIC_NO_APPLICANT_DECLARATION_ENDPOINT,
@@ -719,6 +720,13 @@ export const REQUIRED_PERMISSIONS = {
719
720
  patch: [],
720
721
  delete: [],
721
722
  },
723
+ [DOMAINS_TLD_SPECIFIC_DK_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT]: {
724
+ get: [],
725
+ post: [PUBLIC_PERMISSION.DOMAINS_MANAGE],
726
+ put: [],
727
+ patch: [],
728
+ delete: [],
729
+ },
722
730
  [DOMAINS_TLD_SPECIFIC_EU_BY_DOMAIN_REFERENCE_AUTH_CODE_REQUEST_ENDPOINT]: {
723
731
  get: [],
724
732
  post: [PUBLIC_PERMISSION.DOMAINS_MANAGE],
@@ -611,6 +611,11 @@ export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Request = {
611
611
  export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Request_Path = POST_DomainsTldSpecificDeByDomainReferenceTransit_Request['parameters']['path'];
612
612
  export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Request_Body = POST_DomainsTldSpecificDeByDomainReferenceTransit_Request['requestBody'];
613
613
 
614
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Request = {
615
+ parameters: operations['request_auth_code_v1_domains_tld_specific_dk__domain_reference__auth_code_request_post']['parameters'];
616
+ };
617
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Request_Path = POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Request['parameters']['path'];
618
+
614
619
  export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Request = {
615
620
  parameters: operations['request_auth_code_v1_domains_tld_specific_eu__domain_reference__auth_code_request_post']['parameters'];
616
621
  };
@@ -105,6 +105,7 @@ import type {
105
105
  RequestAuthcode6,
106
106
  RequestAuthcode7,
107
107
  RequestAuthcode8,
108
+ RequestAuthcode9,
108
109
  SetVanityNameserverSetDefaultRes,
109
110
  Tag,
110
111
  TldResponseShort,
@@ -1216,16 +1217,23 @@ export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_200 = Dom
1216
1217
  export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_404 = Problem;
1217
1218
  export type POST_DomainsTldSpecificDeByDomainReferenceTransit_Response_422 = HTTPValidationError;
1218
1219
 
1220
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_422;
1221
+
1222
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode4;
1223
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_400 = Problem;
1224
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_404 = Problem;
1225
+ export type POST_DomainsTldSpecificDkByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
1226
+
1219
1227
  export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_422;
1220
1228
 
1221
- export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode4;
1229
+ export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode5;
1222
1230
  export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_400 = Problem;
1223
1231
  export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_404 = Problem;
1224
1232
  export type POST_DomainsTldSpecificEuByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
1225
1233
 
1226
1234
  export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_422;
1227
1235
 
1228
- export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode5;
1236
+ export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode6;
1229
1237
  export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_400 = Problem;
1230
1238
  export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_404 = Problem;
1231
1239
  export type POST_DomainsTldSpecificLtByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
@@ -1246,21 +1254,21 @@ export type POST_DomainsTldSpecificNoByDomainReferenceResendDeclarationEmail_Res
1246
1254
 
1247
1255
  export type POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_422;
1248
1256
 
1249
- export type POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode6;
1257
+ export type POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode7;
1250
1258
  export type POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_400 = Problem;
1251
1259
  export type POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_404 = Problem;
1252
1260
  export type POST_DomainsTldSpecificNuByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
1253
1261
 
1254
1262
  export type POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_422;
1255
1263
 
1256
- export type POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode7;
1264
+ export type POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode8;
1257
1265
  export type POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_400 = Problem;
1258
1266
  export type POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_404 = Problem;
1259
1267
  export type POST_DomainsTldSpecificSeByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
1260
1268
 
1261
1269
  export type POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response = POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_200 | POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_400 | POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_404 | POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_422;
1262
1270
 
1263
- export type POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode8;
1271
+ export type POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_200 = RequestAuthcode9;
1264
1272
  export type POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_400 = Problem;
1265
1273
  export type POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_404 = Problem;
1266
1274
  export type POST_DomainsTldSpecificWalesByDomainReferenceAuthCodeRequest_Response_422 = HTTPValidationError;
@@ -599,10 +599,11 @@ export type ZonesContextCreate = components['schemas']['ZonesContextCreate'];
599
599
  export type RequestAuthcode = components['schemas']['api__domain__tld_specific__be__models__RequestAuthcodeResponse'];
600
600
  export type RequestAuthcode2 = components['schemas']['api__domain__tld_specific__cymru__models__RequestAuthcodeResponse'];
601
601
  export type RequestAuthcode3 = components['schemas']['api__domain__tld_specific__cz__models__RequestAuthcodeResponse'];
602
- export type RequestAuthcode4 = components['schemas']['api__domain__tld_specific__eu__models__RequestAuthcodeResponse'];
603
- export type RequestAuthcode5 = components['schemas']['api__domain__tld_specific__lt__models__RequestAuthcodeResponse'];
604
- export type RequestAuthcode6 = components['schemas']['api__domain__tld_specific__nu__models__RequestAuthcodeResponse'];
605
- export type RequestAuthcode7 = components['schemas']['api__domain__tld_specific__se__models__RequestAuthcodeResponse'];
606
- export type RequestAuthcode8 = components['schemas']['api__domain__tld_specific__wales__models__RequestAuthcodeResponse'];
602
+ export type RequestAuthcode4 = components['schemas']['api__domain__tld_specific__dk__models__RequestAuthcodeResponse'];
603
+ export type RequestAuthcode5 = components['schemas']['api__domain__tld_specific__eu__models__RequestAuthcodeResponse'];
604
+ export type RequestAuthcode6 = components['schemas']['api__domain__tld_specific__lt__models__RequestAuthcodeResponse'];
605
+ export type RequestAuthcode7 = components['schemas']['api__domain__tld_specific__nu__models__RequestAuthcodeResponse'];
606
+ export type RequestAuthcode8 = components['schemas']['api__domain__tld_specific__se__models__RequestAuthcodeResponse'];
607
+ export type RequestAuthcode9 = components['schemas']['api__domain__tld_specific__wales__models__RequestAuthcodeResponse'];
607
608
  export type DomainAvailabilityList = components['schemas']['common__models__availability__datasource__DomainAvailabilityResponse'];
608
609
  export type DomainAvailabilityCheck = components['schemas']['common__models__domain__domain__DomainAvailabilityResponse'];
package/src/openapi.yaml CHANGED
@@ -15488,6 +15488,40 @@ components:
15488
15488
  - success
15489
15489
  title: RequestAuthcodeResponse
15490
15490
  type: object
15491
+ api__domain__tld_specific__dk__models__RequestAuthcodeResponse:
15492
+ properties:
15493
+ auth_code:
15494
+ anyOf:
15495
+ - type: string
15496
+ - type: 'null'
15497
+ description: The auth code returned by Punktum dk
15498
+ title: Auth Code
15499
+ auth_code_expires_on:
15500
+ anyOf:
15501
+ - format: date-time
15502
+ type: string
15503
+ - type: 'null'
15504
+ description: The expiry date of the auth code
15505
+ title: Auth Code Expires On
15506
+ detail:
15507
+ anyOf:
15508
+ - type: string
15509
+ - type: 'null'
15510
+ description: Additional information about the result in case of failure
15511
+ title: Detail
15512
+ name:
15513
+ description: The domain name that had the auth code requested
15514
+ title: Name
15515
+ type: string
15516
+ success:
15517
+ description: Whether the request had a successful result from Punktum dk
15518
+ title: Success
15519
+ type: boolean
15520
+ required:
15521
+ - name
15522
+ - success
15523
+ title: RequestAuthcodeResponse
15524
+ type: object
15491
15525
  api__domain__tld_specific__eu__models__RequestAuthcodeResponse:
15492
15526
  properties:
15493
15527
  auth_code:
@@ -15779,7 +15813,7 @@ info:
15779
15813
  \n\n"
15780
15814
  summary: OpusDNS - your gateway to a seamless domain management experience.
15781
15815
  title: OpusDNS API
15782
- version: 2026-08-28-192951
15816
+ version: 2026-08-28-202722
15783
15817
  x-logo:
15784
15818
  altText: OpusDNS API Reference
15785
15819
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -24491,6 +24525,73 @@ paths:
24491
24525
  - domain_tld_specific
24492
24526
  x-required-permissions:
24493
24527
  - domains:manage
24528
+ /v1/domains/tld-specific/dk/{domain_reference}/auth_code/request:
24529
+ post:
24530
+ operationId: request_auth_code_v1_domains_tld_specific_dk__domain_reference__auth_code_request_post
24531
+ parameters:
24532
+ - in: path
24533
+ name: domain_reference
24534
+ required: true
24535
+ schema:
24536
+ anyOf:
24537
+ - examples:
24538
+ - domain_01h45ytscbebyvny4gc8cr8ma2
24539
+ format: typeid
24540
+ pattern: ^domain_[0-7][0-9a-hjkmnpq-tv-z]{25}$
24541
+ type: string
24542
+ x-typeid-prefix: domain
24543
+ - type: string
24544
+ title: Domain Reference
24545
+ - $ref: '#/components/parameters/DatetimeFormatHeader'
24546
+ responses:
24547
+ '200':
24548
+ content:
24549
+ application/json:
24550
+ schema:
24551
+ $ref: '#/components/schemas/api__domain__tld_specific__dk__models__RequestAuthcodeResponse'
24552
+ description: Successful Response
24553
+ '400':
24554
+ content:
24555
+ application/problem+json:
24556
+ example:
24557
+ code: ERROR_DOMAIN_TRANSFER
24558
+ detail: There was an error transferring the domain
24559
+ domain_name: Additional error context.
24560
+ reason: An unspecified error occurred
24561
+ status: 400
24562
+ title: Domain Transfer Error
24563
+ type: domain-transfer
24564
+ schema:
24565
+ $ref: '#/components/schemas/Problem'
24566
+ description: Bad Request
24567
+ '404':
24568
+ content:
24569
+ application/problem+json:
24570
+ example:
24571
+ code: ERROR_DOMAIN_NOT_FOUND
24572
+ detail: Domain not found
24573
+ domain_name: Additional error context.
24574
+ status: 404
24575
+ title: Domain Management Error
24576
+ type: domain-not-found
24577
+ schema:
24578
+ $ref: '#/components/schemas/Problem'
24579
+ description: Not Found
24580
+ '422':
24581
+ content:
24582
+ application/problem+json:
24583
+ schema:
24584
+ $ref: '#/components/schemas/HTTPValidationError'
24585
+ description: Validation Error
24586
+ security:
24587
+ - OAuth2PasswordBearer: []
24588
+ - APIKeyHeader: []
24589
+ summary: Requests your auth code directly from Punktum dk (registry)
24590
+ tags:
24591
+ - domain
24592
+ - domain_tld_specific
24593
+ x-required-permissions:
24594
+ - domains:manage
24494
24595
  /v1/domains/tld-specific/eu/{domain_reference}/auth_code/request:
24495
24596
  post:
24496
24597
  operationId: request_auth_code_v1_domains_tld_specific_eu__domain_reference__auth_code_request_post
package/src/schema.d.ts CHANGED
@@ -1267,6 +1267,23 @@ export interface paths {
1267
1267
  patch?: never;
1268
1268
  trace?: never;
1269
1269
  };
1270
+ "/v1/domains/tld-specific/dk/{domain_reference}/auth_code/request": {
1271
+ parameters: {
1272
+ query?: never;
1273
+ header?: never;
1274
+ path?: never;
1275
+ cookie?: never;
1276
+ };
1277
+ get?: never;
1278
+ put?: never;
1279
+ /** Requests your auth code directly from Punktum dk (registry) */
1280
+ post: operations["request_auth_code_v1_domains_tld_specific_dk__domain_reference__auth_code_request_post"];
1281
+ delete?: never;
1282
+ options?: never;
1283
+ head?: never;
1284
+ patch?: never;
1285
+ trace?: never;
1286
+ };
1270
1287
  "/v1/domains/tld-specific/eu/{domain_reference}/auth_code/request": {
1271
1288
  parameters: {
1272
1289
  query?: never;
@@ -13214,6 +13231,34 @@ export interface components {
13214
13231
  success: boolean;
13215
13232
  };
13216
13233
  /** RequestAuthcodeResponse */
13234
+ api__domain__tld_specific__dk__models__RequestAuthcodeResponse: {
13235
+ /**
13236
+ * Auth Code
13237
+ * @description The auth code returned by Punktum dk
13238
+ */
13239
+ auth_code?: string | null;
13240
+ /**
13241
+ * Auth Code Expires On
13242
+ * @description The expiry date of the auth code
13243
+ */
13244
+ auth_code_expires_on?: Date | null;
13245
+ /**
13246
+ * Detail
13247
+ * @description Additional information about the result in case of failure
13248
+ */
13249
+ detail?: string | null;
13250
+ /**
13251
+ * Name
13252
+ * @description The domain name that had the auth code requested
13253
+ */
13254
+ name: string;
13255
+ /**
13256
+ * Success
13257
+ * @description Whether the request had a successful result from Punktum dk
13258
+ */
13259
+ success: boolean;
13260
+ };
13261
+ /** RequestAuthcodeResponse */
13217
13262
  api__domain__tld_specific__eu__models__RequestAuthcodeResponse: {
13218
13263
  /**
13219
13264
  * Auth Code
@@ -19935,6 +19980,78 @@ export interface operations {
19935
19980
  };
19936
19981
  };
19937
19982
  };
19983
+ request_auth_code_v1_domains_tld_specific_dk__domain_reference__auth_code_request_post: {
19984
+ parameters: {
19985
+ query?: never;
19986
+ header?: {
19987
+ /**
19988
+ * @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.
19989
+ * @example rfc3339
19990
+ */
19991
+ "X-Datetime-Format"?: components["parameters"]["DatetimeFormatHeader"];
19992
+ };
19993
+ path: {
19994
+ domain_reference: TypeId<"domain"> | string;
19995
+ };
19996
+ cookie?: never;
19997
+ };
19998
+ requestBody?: never;
19999
+ responses: {
20000
+ /** @description Successful Response */
20001
+ 200: {
20002
+ headers: {
20003
+ [name: string]: unknown;
20004
+ };
20005
+ content: {
20006
+ "application/json": components["schemas"]["api__domain__tld_specific__dk__models__RequestAuthcodeResponse"];
20007
+ };
20008
+ };
20009
+ /** @description Bad Request */
20010
+ 400: {
20011
+ headers: {
20012
+ [name: string]: unknown;
20013
+ };
20014
+ content: {
20015
+ /** @example {
20016
+ * "code": "ERROR_DOMAIN_TRANSFER",
20017
+ * "detail": "There was an error transferring the domain",
20018
+ * "domain_name": "Additional error context.",
20019
+ * "reason": "An unspecified error occurred",
20020
+ * "status": 400,
20021
+ * "title": "Domain Transfer Error",
20022
+ * "type": "domain-transfer"
20023
+ * } */
20024
+ "application/problem+json": components["schemas"]["Problem"];
20025
+ };
20026
+ };
20027
+ /** @description Not Found */
20028
+ 404: {
20029
+ headers: {
20030
+ [name: string]: unknown;
20031
+ };
20032
+ content: {
20033
+ /** @example {
20034
+ * "code": "ERROR_DOMAIN_NOT_FOUND",
20035
+ * "detail": "Domain not found",
20036
+ * "domain_name": "Additional error context.",
20037
+ * "status": 404,
20038
+ * "title": "Domain Management Error",
20039
+ * "type": "domain-not-found"
20040
+ * } */
20041
+ "application/problem+json": components["schemas"]["Problem"];
20042
+ };
20043
+ };
20044
+ /** @description Validation Error */
20045
+ 422: {
20046
+ headers: {
20047
+ [name: string]: unknown;
20048
+ };
20049
+ content: {
20050
+ "application/problem+json": components["schemas"]["HTTPValidationError"];
20051
+ };
20052
+ };
20053
+ };
20054
+ };
19938
20055
  request_auth_code_v1_domains_tld_specific_eu__domain_reference__auth_code_request_post: {
19939
20056
  parameters: {
19940
20057
  query?: never;