@opusdns/api 1.124.0 → 1.126.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 +2 -2
- package/src/helpers/constants.ts +4 -0
- package/src/helpers/endpoints.ts +302 -0
- package/src/helpers/permissions.ts +1273 -0
- package/src/openapi.yaml +3 -1
- package/src/schema.d.ts +1 -1
package/src/openapi.yaml
CHANGED
|
@@ -12760,6 +12760,8 @@ components:
|
|
|
12760
12760
|
- INBOUND_TRANSFER_PENDING
|
|
12761
12761
|
- OUTBOUND_TRANSFER_PENDING
|
|
12762
12762
|
- EXTERNAL
|
|
12763
|
+
- IMPORT_REQUESTED
|
|
12764
|
+
- IMPORT_PENDING
|
|
12763
12765
|
title: StatusTagType
|
|
12764
12766
|
type: string
|
|
12765
12767
|
StrictMoneyDecimal:
|
|
@@ -15586,7 +15588,7 @@ info:
|
|
|
15586
15588
|
\n\n"
|
|
15587
15589
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15588
15590
|
title: OpusDNS API
|
|
15589
|
-
version: 2026-08-20-
|
|
15591
|
+
version: 2026-08-20-165512
|
|
15590
15592
|
x-logo:
|
|
15591
15593
|
altText: OpusDNS API Reference
|
|
15592
15594
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -11325,7 +11325,7 @@ export interface components {
|
|
|
11325
11325
|
* StatusTagType
|
|
11326
11326
|
* @enum {string}
|
|
11327
11327
|
*/
|
|
11328
|
-
StatusTagType: "VERIFICATION_REQUIRED" | "CREATE_REQUESTED" | "INBOUND_TRANSFER_PENDING" | "OUTBOUND_TRANSFER_PENDING" | "EXTERNAL";
|
|
11328
|
+
StatusTagType: "VERIFICATION_REQUIRED" | "CREATE_REQUESTED" | "INBOUND_TRANSFER_PENDING" | "OUTBOUND_TRANSFER_PENDING" | "EXTERNAL" | "IMPORT_REQUESTED" | "IMPORT_PENDING";
|
|
11329
11329
|
/** @example 12.50 */
|
|
11330
11330
|
StrictMoneyDecimal: string;
|
|
11331
11331
|
/** Support */
|