@opusdns/api 1.29.0 → 1.30.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/openapi.yaml +7 -4
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -5254,9 +5254,13 @@ components:
|
|
|
5254
5254
|
description: Override attributes for this domain
|
|
5255
5255
|
title: Attributes
|
|
5256
5256
|
auth_code:
|
|
5257
|
-
|
|
5257
|
+
anyOf:
|
|
5258
|
+
- maxLength: 32
|
|
5259
|
+
minLength: 6
|
|
5260
|
+
type: string
|
|
5261
|
+
- type: 'null'
|
|
5262
|
+
description: The auth code for this domain (required by some TLDs)
|
|
5258
5263
|
title: Auth Code
|
|
5259
|
-
type: string
|
|
5260
5264
|
contacts:
|
|
5261
5265
|
anyOf:
|
|
5262
5266
|
- $ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -5299,7 +5303,6 @@ components:
|
|
|
5299
5303
|
description: Override renewal mode for this domain
|
|
5300
5304
|
required:
|
|
5301
5305
|
- name
|
|
5302
|
-
- auth_code
|
|
5303
5306
|
title: DomainTransferBulkInstance
|
|
5304
5307
|
type: object
|
|
5305
5308
|
DomainTransferBulkPayload:
|
|
@@ -13243,7 +13246,7 @@ info:
|
|
|
13243
13246
|
\n\n"
|
|
13244
13247
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13245
13248
|
title: OpusDNS API
|
|
13246
|
-
version: 2026-06-
|
|
13249
|
+
version: 2026-06-23-123609
|
|
13247
13250
|
x-logo:
|
|
13248
13251
|
altText: OpusDNS API Reference
|
|
13249
13252
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6225,9 +6225,9 @@ export interface components {
|
|
|
6225
6225
|
} | null;
|
|
6226
6226
|
/**
|
|
6227
6227
|
* Auth Code
|
|
6228
|
-
* @description The auth code for this domain (required)
|
|
6228
|
+
* @description The auth code for this domain (required by some TLDs)
|
|
6229
6229
|
*/
|
|
6230
|
-
auth_code
|
|
6230
|
+
auth_code?: string | null;
|
|
6231
6231
|
/** @description Override contacts for this domain */
|
|
6232
6232
|
contacts?: components["schemas"]["DomainContactHandles"] | null;
|
|
6233
6233
|
/**
|