@opusdns/api 1.116.0 → 1.117.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
|
@@ -2125,6 +2125,7 @@ export const WHITELABEL_ONBOARDING_STATUS = {
|
|
|
2125
2125
|
PROVISIONING: "provisioning",
|
|
2126
2126
|
ACTIVE: "active",
|
|
2127
2127
|
FAILED: "failed",
|
|
2128
|
+
TERMINATED: "terminated",
|
|
2128
2129
|
} as const satisfies Record<string, WhitelabelOnboardingStatus>;
|
|
2129
2130
|
|
|
2130
2131
|
export const WHITELABEL_ONBOARDING_STATUS_VALUES = [
|
|
@@ -2133,6 +2134,7 @@ export const WHITELABEL_ONBOARDING_STATUS_VALUES = [
|
|
|
2133
2134
|
'provisioning',
|
|
2134
2135
|
'active',
|
|
2135
2136
|
'failed',
|
|
2137
|
+
'terminated',
|
|
2136
2138
|
] as const satisfies ReadonlyArray<WhitelabelOnboardingStatus>;
|
|
2137
2139
|
|
|
2138
2140
|
export const ZONE_INCLUDE_FIELD = {
|
package/src/openapi.yaml
CHANGED
|
@@ -14917,6 +14917,7 @@ components:
|
|
|
14917
14917
|
- provisioning
|
|
14918
14918
|
- active
|
|
14919
14919
|
- failed
|
|
14920
|
+
- terminated
|
|
14920
14921
|
title: WhitelabelOnboardingStatus
|
|
14921
14922
|
type: string
|
|
14922
14923
|
WhitelabelPlusCreate:
|
|
@@ -15454,7 +15455,7 @@ info:
|
|
|
15454
15455
|
\n\n"
|
|
15455
15456
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15456
15457
|
title: OpusDNS API
|
|
15457
|
-
version: 2026-08-
|
|
15458
|
+
version: 2026-08-18-083544
|
|
15458
15459
|
x-logo:
|
|
15459
15460
|
altText: OpusDNS API Reference
|
|
15460
15461
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -12804,7 +12804,7 @@ export interface components {
|
|
|
12804
12804
|
* WhitelabelOnboardingStatus
|
|
12805
12805
|
* @enum {string}
|
|
12806
12806
|
*/
|
|
12807
|
-
WhitelabelOnboardingStatus: "pending_domain_verification" | "verifying" | "provisioning" | "active" | "failed";
|
|
12807
|
+
WhitelabelOnboardingStatus: "pending_domain_verification" | "verifying" | "provisioning" | "active" | "failed" | "terminated";
|
|
12808
12808
|
/**
|
|
12809
12809
|
* WhitelabelPlusCreate
|
|
12810
12810
|
* @description Create the plus tier: served on the customer's own domain; `label` still reserves a base
|