@opusdns/api 1.61.0 → 1.62.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.61.0",
6
+ "version": "1.62.0",
7
7
  "description": "TypeScript types for the OpusDNS OpenAPI specification",
8
8
  "main": "./src/index.ts",
9
9
  "module": "./src/index.ts",
@@ -1677,10 +1677,12 @@ export const SORT_ORDER_VALUES = [
1677
1677
 
1678
1678
  export const STATUS_TAG_TYPE = {
1679
1679
  VERIFICATION_REQUIRED: "VERIFICATION_REQUIRED",
1680
+ CREATE_REQUESTED: "CREATE_REQUESTED",
1680
1681
  } as const satisfies Record<string, StatusTagType>;
1681
1682
 
1682
1683
  export const STATUS_TAG_TYPE_VALUES = [
1683
1684
  'VERIFICATION_REQUIRED',
1685
+ 'CREATE_REQUESTED',
1684
1686
  ] as const satisfies ReadonlyArray<StatusTagType>;
1685
1687
 
1686
1688
  export const SYNC_OPERATION_TYPE = {
package/src/openapi.yaml CHANGED
@@ -11680,6 +11680,7 @@ components:
11680
11680
  StatusTagType:
11681
11681
  enum:
11682
11682
  - VERIFICATION_REQUIRED
11683
+ - CREATE_REQUESTED
11683
11684
  title: StatusTagType
11684
11685
  type: string
11685
11686
  StrictMoneyDecimal:
@@ -13868,7 +13869,7 @@ info:
13868
13869
  \n\n"
13869
13870
  summary: OpusDNS - your gateway to a seamless domain management experience.
13870
13871
  title: OpusDNS API
13871
- version: 2026-07-16-172809
13872
+ version: 2026-07-16-190825
13872
13873
  x-logo:
13873
13874
  altText: OpusDNS API Reference
13874
13875
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
package/src/schema.d.ts CHANGED
@@ -10416,7 +10416,7 @@ export interface components {
10416
10416
  * StatusTagType
10417
10417
  * @enum {string}
10418
10418
  */
10419
- StatusTagType: "VERIFICATION_REQUIRED";
10419
+ StatusTagType: "VERIFICATION_REQUIRED" | "CREATE_REQUESTED";
10420
10420
  /** @example 12.50 */
10421
10421
  StrictMoneyDecimal: string;
10422
10422
  /**