@opusdns/api 1.60.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 +1 -1
- package/src/helpers/constants.ts +2 -0
- package/src/openapi.yaml +3 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -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:
|
|
@@ -13170,6 +13171,7 @@ components:
|
|
|
13170
13171
|
description: Fully-qualified vanity NS hostnames, ordered by intended position.
|
|
13171
13172
|
items:
|
|
13172
13173
|
type: string
|
|
13174
|
+
maxItems: 4
|
|
13173
13175
|
minItems: 1
|
|
13174
13176
|
title: Hostnames
|
|
13175
13177
|
type: array
|
|
@@ -13867,7 +13869,7 @@ info:
|
|
|
13867
13869
|
\n\n"
|
|
13868
13870
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13869
13871
|
title: OpusDNS API
|
|
13870
|
-
version: 2026-07-16-
|
|
13872
|
+
version: 2026-07-16-190825
|
|
13871
13873
|
x-logo:
|
|
13872
13874
|
altText: OpusDNS API Reference
|
|
13873
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
|
/**
|