@opusdns/api 0.245.0 → 0.246.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/helpers/keys.ts +26 -0
- package/src/openapi.yaml +7 -1
- package/src/schema.d.ts +5 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -24821,6 +24821,31 @@ export const KEY_JOB_CREATED_ON: keyof Job = 'created_on';
|
|
|
24821
24821
|
* @see {@link KEYS_JOB} - Array of all keys for this type
|
|
24822
24822
|
*/
|
|
24823
24823
|
export const KEY_JOB_DISPLAY: keyof Job = 'display';
|
|
24824
|
+
/**
|
|
24825
|
+
* Domain Name
|
|
24826
|
+
*
|
|
24827
|
+
* Domain name associated with this job
|
|
24828
|
+
*
|
|
24829
|
+
*
|
|
24830
|
+
*
|
|
24831
|
+
* @remarks
|
|
24832
|
+
* This key constant provides type-safe access to the `domain_name` property of Job objects.
|
|
24833
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
24834
|
+
*
|
|
24835
|
+
* @example
|
|
24836
|
+
* ```typescript
|
|
24837
|
+
* // Direct property access
|
|
24838
|
+
* const value = job[KEY_JOB_DOMAIN_NAME];
|
|
24839
|
+
*
|
|
24840
|
+
* // Dynamic property access
|
|
24841
|
+
* const propertyName = KEY_JOB_DOMAIN_NAME;
|
|
24842
|
+
* const value = job[propertyName];
|
|
24843
|
+
* ```
|
|
24844
|
+
*
|
|
24845
|
+
* @see {@link Job} - The TypeScript type definition
|
|
24846
|
+
* @see {@link KEYS_JOB} - Array of all keys for this type
|
|
24847
|
+
*/
|
|
24848
|
+
export const KEY_JOB_DOMAIN_NAME: keyof Job = 'domain_name';
|
|
24824
24849
|
/**
|
|
24825
24850
|
* Error Class
|
|
24826
24851
|
*
|
|
@@ -25098,6 +25123,7 @@ export const KEYS_JOB = [
|
|
|
25098
25123
|
KEY_JOB_COMMAND,
|
|
25099
25124
|
KEY_JOB_CREATED_ON,
|
|
25100
25125
|
KEY_JOB_DISPLAY,
|
|
25126
|
+
KEY_JOB_DOMAIN_NAME,
|
|
25101
25127
|
KEY_JOB_ERROR_CLASS,
|
|
25102
25128
|
KEY_JOB_ERROR_MESSAGE,
|
|
25103
25129
|
KEY_JOB_FINISHED_AT,
|
package/src/openapi.yaml
CHANGED
|
@@ -5892,6 +5892,12 @@ components:
|
|
|
5892
5892
|
- type: 'null'
|
|
5893
5893
|
description: Human-readable description of this job
|
|
5894
5894
|
title: Display
|
|
5895
|
+
domain_name:
|
|
5896
|
+
anyOf:
|
|
5897
|
+
- type: string
|
|
5898
|
+
- type: 'null'
|
|
5899
|
+
description: Domain name associated with this job
|
|
5900
|
+
title: Domain Name
|
|
5895
5901
|
error_class:
|
|
5896
5902
|
anyOf:
|
|
5897
5903
|
- type: string
|
|
@@ -9756,7 +9762,7 @@ info:
|
|
|
9756
9762
|
\n\n"
|
|
9757
9763
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9758
9764
|
title: OpusDNS API
|
|
9759
|
-
version: 2026-04-10-
|
|
9765
|
+
version: 2026-04-10-211246
|
|
9760
9766
|
x-logo:
|
|
9761
9767
|
altText: OpusDNS API Reference
|
|
9762
9768
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -6163,6 +6163,11 @@ export interface components {
|
|
|
6163
6163
|
* @description Human-readable description of this job
|
|
6164
6164
|
*/
|
|
6165
6165
|
display?: string | null;
|
|
6166
|
+
/**
|
|
6167
|
+
* Domain Name
|
|
6168
|
+
* @description Domain name associated with this job
|
|
6169
|
+
*/
|
|
6170
|
+
domain_name?: string | null;
|
|
6166
6171
|
/**
|
|
6167
6172
|
* Error Class
|
|
6168
6173
|
* @description Error type if the job failed (e.g., ValidationError, TimeoutError)
|