@opusdns/api 1.166.0 → 1.167.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.166.0",
6
+ "version": "1.167.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -5281,10 +5281,14 @@ export const KEYS_STATUS_TAG = [
5281
5281
  ] as const satisfies (keyof StatusTag)[];
5282
5282
 
5283
5283
  export const KEY_SUPPORT_EMAIL = 'email' satisfies keyof Support;
5284
+ export const KEY_SUPPORT_HELP_CENTER_URL = 'help_center_url' satisfies keyof Support;
5285
+ export const KEY_SUPPORT_STATUS_URL = 'status_url' satisfies keyof Support;
5284
5286
  export const KEY_SUPPORT_URL = 'url' satisfies keyof Support;
5285
5287
 
5286
5288
  export const KEYS_SUPPORT = [
5287
5289
  KEY_SUPPORT_EMAIL,
5290
+ KEY_SUPPORT_HELP_CENTER_URL,
5291
+ KEY_SUPPORT_STATUS_URL,
5288
5292
  KEY_SUPPORT_URL,
5289
5293
  ] as const satisfies (keyof Support)[];
5290
5294
 
package/src/openapi.yaml CHANGED
@@ -13467,6 +13467,16 @@ components:
13467
13467
  type: string
13468
13468
  - type: 'null'
13469
13469
  title: Email
13470
+ help_center_url:
13471
+ anyOf:
13472
+ - type: string
13473
+ - type: 'null'
13474
+ title: Help Center Url
13475
+ status_url:
13476
+ anyOf:
13477
+ - type: string
13478
+ - type: 'null'
13479
+ title: Status Url
13470
13480
  url:
13471
13481
  anyOf:
13472
13482
  - type: string
@@ -16427,7 +16437,7 @@ info:
16427
16437
  \n\n"
16428
16438
  summary: OpusDNS - your gateway to a seamless domain management experience.
16429
16439
  title: OpusDNS API
16430
- version: 2026-09-10-090448
16440
+ version: 2026-09-10-120636
16431
16441
  x-logo:
16432
16442
  altText: OpusDNS API Reference
16433
16443
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -12007,6 +12007,10 @@ export interface components {
12007
12007
  Support: {
12008
12008
  /** Email */
12009
12009
  email?: string | null;
12010
+ /** Help Center Url */
12011
+ help_center_url?: string | null;
12012
+ /** Status Url */
12013
+ status_url?: string | null;
12010
12014
  /** Url */
12011
12015
  url?: string | null;
12012
12016
  };