@opusdns/api 1.61.0 → 1.63.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 +4 -0
- package/src/openapi.yaml +3 -1
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -481,6 +481,7 @@ export const DNS_PROTECTED_REASON = {
|
|
|
481
481
|
SYSTEM_MANAGED_NS: "SYSTEM_MANAGED_NS",
|
|
482
482
|
EMAIL_FORWARD: "EMAIL_FORWARD",
|
|
483
483
|
DOMAIN_FORWARD: "DOMAIN_FORWARD",
|
|
484
|
+
WHITELABEL: "WHITELABEL",
|
|
484
485
|
GENERIC: "GENERIC",
|
|
485
486
|
} as const satisfies Record<string, DnsProtectedReason>;
|
|
486
487
|
|
|
@@ -489,6 +490,7 @@ export const DNS_PROTECTED_REASON_VALUES = [
|
|
|
489
490
|
'SYSTEM_MANAGED_NS',
|
|
490
491
|
'EMAIL_FORWARD',
|
|
491
492
|
'DOMAIN_FORWARD',
|
|
493
|
+
'WHITELABEL',
|
|
492
494
|
'GENERIC',
|
|
493
495
|
] as const satisfies ReadonlyArray<DnsProtectedReason>;
|
|
494
496
|
|
|
@@ -1677,10 +1679,12 @@ export const SORT_ORDER_VALUES = [
|
|
|
1677
1679
|
|
|
1678
1680
|
export const STATUS_TAG_TYPE = {
|
|
1679
1681
|
VERIFICATION_REQUIRED: "VERIFICATION_REQUIRED",
|
|
1682
|
+
CREATE_REQUESTED: "CREATE_REQUESTED",
|
|
1680
1683
|
} as const satisfies Record<string, StatusTagType>;
|
|
1681
1684
|
|
|
1682
1685
|
export const STATUS_TAG_TYPE_VALUES = [
|
|
1683
1686
|
'VERIFICATION_REQUIRED',
|
|
1687
|
+
'CREATE_REQUESTED',
|
|
1684
1688
|
] as const satisfies ReadonlyArray<StatusTagType>;
|
|
1685
1689
|
|
|
1686
1690
|
export const SYNC_OPERATION_TYPE = {
|
package/src/openapi.yaml
CHANGED
|
@@ -2359,6 +2359,7 @@ components:
|
|
|
2359
2359
|
- SYSTEM_MANAGED_NS
|
|
2360
2360
|
- EMAIL_FORWARD
|
|
2361
2361
|
- DOMAIN_FORWARD
|
|
2362
|
+
- WHITELABEL
|
|
2362
2363
|
- GENERIC
|
|
2363
2364
|
title: DnsProtectedReason
|
|
2364
2365
|
type: string
|
|
@@ -11680,6 +11681,7 @@ components:
|
|
|
11680
11681
|
StatusTagType:
|
|
11681
11682
|
enum:
|
|
11682
11683
|
- VERIFICATION_REQUIRED
|
|
11684
|
+
- CREATE_REQUESTED
|
|
11683
11685
|
title: StatusTagType
|
|
11684
11686
|
type: string
|
|
11685
11687
|
StrictMoneyDecimal:
|
|
@@ -13868,7 +13870,7 @@ info:
|
|
|
13868
13870
|
\n\n"
|
|
13869
13871
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13870
13872
|
title: OpusDNS API
|
|
13871
|
-
version: 2026-07-
|
|
13873
|
+
version: 2026-07-17-094205
|
|
13872
13874
|
x-logo:
|
|
13873
13875
|
altText: OpusDNS API Reference
|
|
13874
13876
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4312,7 +4312,7 @@ export interface components {
|
|
|
4312
4312
|
* DnsProtectedReason
|
|
4313
4313
|
* @enum {string}
|
|
4314
4314
|
*/
|
|
4315
|
-
DnsProtectedReason: "SYSTEM_MANAGED_SOA" | "SYSTEM_MANAGED_NS" | "EMAIL_FORWARD" | "DOMAIN_FORWARD" | "GENERIC";
|
|
4315
|
+
DnsProtectedReason: "SYSTEM_MANAGED_SOA" | "SYSTEM_MANAGED_NS" | "EMAIL_FORWARD" | "DOMAIN_FORWARD" | "WHITELABEL" | "GENERIC";
|
|
4316
4316
|
/** DnsRecordCreate */
|
|
4317
4317
|
DnsRecordCreate: {
|
|
4318
4318
|
/** Rdata */
|
|
@@ -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
|
/**
|