@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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "@opusdns/api-spec-ts-generator": "^1.2.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "1.29.0",
6
+ "version": "1.30.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
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
- description: The auth code for this domain (required)
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-22-232128
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: string;
6230
+ auth_code?: string | null;
6231
6231
  /** @description Override contacts for this domain */
6232
6232
  contacts?: components["schemas"]["DomainContactHandles"] | null;
6233
6233
  /**