@opusdns/api 0.318.0 → 0.319.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 +3 -1
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1628,6 +1628,7 @@ export const DOMAIN_AVAILABILITY_STATUS = {
|
|
|
1628
1628
|
MARKET_AVAILABLE: "market_available",
|
|
1629
1629
|
TMCH_CLAIM: "tmch_claim",
|
|
1630
1630
|
ERROR: "error",
|
|
1631
|
+
UNKNOWN: "unknown",
|
|
1631
1632
|
} as const satisfies Record<string, DomainAvailabilityStatus>;
|
|
1632
1633
|
|
|
1633
1634
|
/**
|
|
@@ -1656,7 +1657,8 @@ export const DOMAIN_AVAILABILITY_STATUS_VALUES = [
|
|
|
1656
1657
|
'unavailable',
|
|
1657
1658
|
'market_available',
|
|
1658
1659
|
'tmch_claim',
|
|
1659
|
-
'error'
|
|
1660
|
+
'error',
|
|
1661
|
+
'unknown'
|
|
1660
1662
|
] as const satisfies [string, ...string[]] | DomainAvailabilityStatus[];
|
|
1661
1663
|
|
|
1662
1664
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -3139,6 +3139,7 @@ components:
|
|
|
3139
3139
|
- market_available
|
|
3140
3140
|
- tmch_claim
|
|
3141
3141
|
- error
|
|
3142
|
+
- unknown
|
|
3142
3143
|
title: DomainAvailabilityStatus
|
|
3143
3144
|
type: string
|
|
3144
3145
|
DomainCheckResponse:
|
|
@@ -11592,7 +11593,7 @@ info:
|
|
|
11592
11593
|
\n\n"
|
|
11593
11594
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11594
11595
|
title: OpusDNS API
|
|
11595
|
-
version: 2026-06-02-
|
|
11596
|
+
version: 2026-06-02-180210
|
|
11596
11597
|
x-logo:
|
|
11597
11598
|
altText: OpusDNS API Reference
|
|
11598
11599
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4558,7 +4558,7 @@ export interface components {
|
|
|
4558
4558
|
* DomainAvailabilityStatus
|
|
4559
4559
|
* @enum {string}
|
|
4560
4560
|
*/
|
|
4561
|
-
DomainAvailabilityStatus: "available" | "unavailable" | "market_available" | "tmch_claim" | "error";
|
|
4561
|
+
DomainAvailabilityStatus: "available" | "unavailable" | "market_available" | "tmch_claim" | "error" | "unknown";
|
|
4562
4562
|
/** DomainCheckResponse */
|
|
4563
4563
|
DomainCheckResponse: {
|
|
4564
4564
|
/** Results */
|