@opusdns/api 1.127.0 → 1.128.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 +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1831,6 +1831,7 @@ export const STATUS_TAG_TYPE = {
|
|
|
1831
1831
|
EXTERNAL: "EXTERNAL",
|
|
1832
1832
|
IMPORT_REQUESTED: "IMPORT_REQUESTED",
|
|
1833
1833
|
IMPORT_PENDING: "IMPORT_PENDING",
|
|
1834
|
+
DNSSEC_PENDING: "DNSSEC_PENDING",
|
|
1834
1835
|
} as const satisfies Record<string, StatusTagType>;
|
|
1835
1836
|
|
|
1836
1837
|
export const STATUS_TAG_TYPE_VALUES = [
|
|
@@ -1841,6 +1842,7 @@ export const STATUS_TAG_TYPE_VALUES = [
|
|
|
1841
1842
|
'EXTERNAL',
|
|
1842
1843
|
'IMPORT_REQUESTED',
|
|
1843
1844
|
'IMPORT_PENDING',
|
|
1845
|
+
'DNSSEC_PENDING',
|
|
1844
1846
|
] as const satisfies ReadonlyArray<StatusTagType>;
|
|
1845
1847
|
|
|
1846
1848
|
export const SYNC_OPERATION_TYPE = {
|
package/src/openapi.yaml
CHANGED
|
@@ -12808,6 +12808,7 @@ components:
|
|
|
12808
12808
|
- EXTERNAL
|
|
12809
12809
|
- IMPORT_REQUESTED
|
|
12810
12810
|
- IMPORT_PENDING
|
|
12811
|
+
- DNSSEC_PENDING
|
|
12811
12812
|
title: StatusTagType
|
|
12812
12813
|
type: string
|
|
12813
12814
|
StrictMoneyDecimal:
|
|
@@ -15634,7 +15635,7 @@ info:
|
|
|
15634
15635
|
\n\n"
|
|
15635
15636
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15636
15637
|
title: OpusDNS API
|
|
15637
|
-
version: 2026-08-
|
|
15638
|
+
version: 2026-08-22-161524
|
|
15638
15639
|
x-logo:
|
|
15639
15640
|
altText: OpusDNS API Reference
|
|
15640
15641
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -11346,7 +11346,7 @@ export interface components {
|
|
|
11346
11346
|
* StatusTagType
|
|
11347
11347
|
* @enum {string}
|
|
11348
11348
|
*/
|
|
11349
|
-
StatusTagType: "VERIFICATION_REQUIRED" | "CREATE_REQUESTED" | "INBOUND_TRANSFER_PENDING" | "OUTBOUND_TRANSFER_PENDING" | "EXTERNAL" | "IMPORT_REQUESTED" | "IMPORT_PENDING";
|
|
11349
|
+
StatusTagType: "VERIFICATION_REQUIRED" | "CREATE_REQUESTED" | "INBOUND_TRANSFER_PENDING" | "OUTBOUND_TRANSFER_PENDING" | "EXTERNAL" | "IMPORT_REQUESTED" | "IMPORT_PENDING" | "DNSSEC_PENDING";
|
|
11350
11350
|
/** @example 12.50 */
|
|
11351
11351
|
StrictMoneyDecimal: string;
|
|
11352
11352
|
/** Support */
|