@opusdns/api 0.165.0 → 0.166.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.165.0",
6
+ "version": "0.166.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -22208,6 +22208,32 @@ export const KEY_TLD_SPECIFICATION_LAUNCH_PHASES: keyof TldSpecification = 'laun
22208
22208
  * @see {@link KEYS_TLD_SPECIFICATION} - Array of all keys for this type
22209
22209
  */
22210
22210
  export const KEY_TLD_SPECIFICATION_LOCAL_PRESENCE: keyof TldSpecification = 'local_presence';
22211
+ /**
22212
+ * Parking Enabled
22213
+ *
22214
+ * Whether parking is enabled for this TLD
22215
+ *
22216
+ * @type {boolean}
22217
+ *
22218
+ *
22219
+ * @remarks
22220
+ * This key constant provides type-safe access to the `parking_enabled` property of TldSpecification objects.
22221
+ * Use this constant when you need to access properties dynamically or ensure type safety.
22222
+ *
22223
+ * @example
22224
+ * ```typescript
22225
+ * // Direct property access
22226
+ * const value = tldspecification[KEY_TLD_SPECIFICATION_PARKING_ENABLED];
22227
+ *
22228
+ * // Dynamic property access
22229
+ * const propertyName = KEY_TLD_SPECIFICATION_PARKING_ENABLED;
22230
+ * const value = tldspecification[propertyName];
22231
+ * ```
22232
+ *
22233
+ * @see {@link TldSpecification} - The TypeScript type definition
22234
+ * @see {@link KEYS_TLD_SPECIFICATION} - Array of all keys for this type
22235
+ */
22236
+ export const KEY_TLD_SPECIFICATION_PARKING_ENABLED: keyof TldSpecification = 'parking_enabled';
22211
22237
  /**
22212
22238
  * premium_domains property
22213
22239
  *
@@ -22414,6 +22440,7 @@ export const KEYS_TLD_SPECIFICATION = [
22414
22440
  KEY_TLD_SPECIFICATION_IDN,
22415
22441
  KEY_TLD_SPECIFICATION_LAUNCH_PHASES,
22416
22442
  KEY_TLD_SPECIFICATION_LOCAL_PRESENCE,
22443
+ KEY_TLD_SPECIFICATION_PARKING_ENABLED,
22417
22444
  KEY_TLD_SPECIFICATION_PREMIUM_DOMAINS,
22418
22445
  KEY_TLD_SPECIFICATION_RDAP,
22419
22446
  KEY_TLD_SPECIFICATION_REGISTRY_LOCK,
package/src/openapi.yaml CHANGED
@@ -5744,6 +5744,11 @@ components:
5744
5744
  - $ref: '#/components/schemas/LocalPresenceBase'
5745
5745
  - type: 'null'
5746
5746
  description: Local presence requirements
5747
+ parking_enabled:
5748
+ default: false
5749
+ description: Whether parking is enabled for this TLD
5750
+ title: Parking Enabled
5751
+ type: boolean
5747
5752
  premium_domains:
5748
5753
  anyOf:
5749
5754
  - $ref: '#/components/schemas/PremiumDomainsBase'
@@ -6813,7 +6818,7 @@ info:
6813
6818
  '
6814
6819
  summary: OpusDNS - your gateway to a seamless domain management experience.
6815
6820
  title: OpusDNS API
6816
- version: 2026-01-21-160000
6821
+ version: 2026-01-22-101607
6817
6822
  x-logo:
6818
6823
  altText: OpusDNS API Reference
6819
6824
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -5577,6 +5577,12 @@ export interface components {
5577
5577
  launch_phases?: components["schemas"]["LaunchPhasesBase"] | null;
5578
5578
  /** @description Local presence requirements */
5579
5579
  local_presence?: components["schemas"]["LocalPresenceBase"] | null;
5580
+ /**
5581
+ * Parking Enabled
5582
+ * @description Whether parking is enabled for this TLD
5583
+ * @default false
5584
+ */
5585
+ parking_enabled: boolean;
5580
5586
  /** @description Premium domains configuration */
5581
5587
  premium_domains?: components["schemas"]["PremiumDomainsBase"] | null;
5582
5588
  /** @description RDAP configuration */