@opusdns/api 0.151.0 → 0.153.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": "^0.19.0"
4
4
  },
5
5
  "name": "@opusdns/api",
6
- "version": "0.151.0",
6
+ "version": "0.153.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -14386,7 +14386,6 @@ export const KEY_INVOICE_FEES_AMOUNT: keyof Invoice = 'fees_amount';
14386
14386
  *
14387
14387
  * URL to invoice PDF file
14388
14388
  *
14389
- * @type {string}
14390
14389
  *
14391
14390
  *
14392
14391
  * @remarks
package/src/openapi.yaml CHANGED
@@ -2510,6 +2510,8 @@ components:
2510
2510
  title: Attributes
2511
2511
  auth_code:
2512
2512
  description: The auth code for the domain
2513
+ maxLength: 32
2514
+ minLength: 6
2513
2515
  title: Auth Code
2514
2516
  type: string
2515
2517
  contacts:
@@ -3432,9 +3434,11 @@ components:
3432
3434
  title: Fees Amount
3433
3435
  type: string
3434
3436
  file_url:
3437
+ anyOf:
3438
+ - type: string
3439
+ - type: 'null'
3435
3440
  description: URL to invoice PDF file
3436
3441
  title: File Url
3437
- type: string
3438
3442
  invoice_type:
3439
3443
  $ref: '#/components/schemas/InvoiceResponseType'
3440
3444
  description: Invoice type
@@ -6524,7 +6528,7 @@ info:
6524
6528
  '
6525
6529
  summary: OpusDNS - your gateway to a seamless domain management experience.
6526
6530
  title: OpusDNS API
6527
- version: 2026-01-12-085937
6531
+ version: 2026-01-12-160605
6528
6532
  x-logo:
6529
6533
  altText: OpusDNS API Reference
6530
6534
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -4016,7 +4016,7 @@ export interface components {
4016
4016
  * File Url
4017
4017
  * @description URL to invoice PDF file
4018
4018
  */
4019
- file_url: string;
4019
+ file_url: string | null;
4020
4020
  /** @description Invoice type */
4021
4021
  invoice_type: components["schemas"]["InvoiceResponseType"];
4022
4022
  /**