@opusdns/api 1.187.0 → 1.189.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/helpers/permissions.ts +3 -0
- package/src/openapi.yaml +13 -2
- package/src/schema.d.ts +6 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1637,6 +1637,7 @@ export const PUBLIC_RESOURCE = {
|
|
|
1637
1637
|
VANITY_NS: "vanity_ns",
|
|
1638
1638
|
WHITELABEL_BRANDING: "whitelabel_branding",
|
|
1639
1639
|
AI_CONCIERGE: "ai_concierge",
|
|
1640
|
+
AI_CONCIERGE_WAITLIST: "ai_concierge_waitlist",
|
|
1640
1641
|
} as const satisfies Record<string, PublicResource>;
|
|
1641
1642
|
|
|
1642
1643
|
export const PUBLIC_RESOURCE_VALUES = [
|
|
@@ -1660,6 +1661,7 @@ export const PUBLIC_RESOURCE_VALUES = [
|
|
|
1660
1661
|
'vanity_ns',
|
|
1661
1662
|
'whitelabel_branding',
|
|
1662
1663
|
'ai_concierge',
|
|
1664
|
+
'ai_concierge_waitlist',
|
|
1663
1665
|
] as const satisfies ReadonlyArray<PublicResource>;
|
|
1664
1666
|
|
|
1665
1667
|
export const PUBLIC_ROLE = {
|
|
@@ -168,6 +168,9 @@ export const PUBLIC_PERMISSION = {
|
|
|
168
168
|
AI_CONCIERGE_DELETE: `${PUBLIC_RESOURCE.AI_CONCIERGE}:${PUBLIC_SCOPE.DELETE}`,
|
|
169
169
|
AI_CONCIERGE_MANAGE: `${PUBLIC_RESOURCE.AI_CONCIERGE}:${PUBLIC_SCOPE.MANAGE}`,
|
|
170
170
|
AI_CONCIERGE_READ: `${PUBLIC_RESOURCE.AI_CONCIERGE}:${PUBLIC_SCOPE.READ}`,
|
|
171
|
+
AI_CONCIERGE_WAITLIST_DELETE: `${PUBLIC_RESOURCE.AI_CONCIERGE_WAITLIST}:${PUBLIC_SCOPE.DELETE}`,
|
|
172
|
+
AI_CONCIERGE_WAITLIST_MANAGE: `${PUBLIC_RESOURCE.AI_CONCIERGE_WAITLIST}:${PUBLIC_SCOPE.MANAGE}`,
|
|
173
|
+
AI_CONCIERGE_WAITLIST_READ: `${PUBLIC_RESOURCE.AI_CONCIERGE_WAITLIST}:${PUBLIC_SCOPE.READ}`,
|
|
171
174
|
API_KEYS_DELETE: `${PUBLIC_RESOURCE.API_KEYS}:${PUBLIC_SCOPE.DELETE}`,
|
|
172
175
|
API_KEYS_MANAGE: `${PUBLIC_RESOURCE.API_KEYS}:${PUBLIC_SCOPE.MANAGE}`,
|
|
173
176
|
API_KEYS_READ: `${PUBLIC_RESOURCE.API_KEYS}:${PUBLIC_SCOPE.READ}`,
|
package/src/openapi.yaml
CHANGED
|
@@ -13209,6 +13209,7 @@ components:
|
|
|
13209
13209
|
- vanity_ns
|
|
13210
13210
|
- whitelabel_branding
|
|
13211
13211
|
- ai_concierge
|
|
13212
|
+
- ai_concierge_waitlist
|
|
13212
13213
|
title: PublicResource
|
|
13213
13214
|
type: string
|
|
13214
13215
|
PublicRole:
|
|
@@ -17057,7 +17058,7 @@ info:
|
|
|
17057
17058
|
\n\n"
|
|
17058
17059
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
17059
17060
|
title: OpusDNS API
|
|
17060
|
-
version: 2026-09-
|
|
17061
|
+
version: 2026-09-21-202433
|
|
17061
17062
|
x-logo:
|
|
17062
17063
|
altText: OpusDNS API Reference
|
|
17063
17064
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -27068,7 +27069,17 @@ paths:
|
|
|
27068
27069
|
will be updated; all other fields will remain unchanged. <br>
|
|
27069
27070
|
|
|
27070
27071
|
Providing `clientTransferProhibited` as a status will set the `transfer_lock`
|
|
27071
|
-
property
|
|
27072
|
+
property. <br>
|
|
27073
|
+
|
|
27074
|
+
`transfer_lock` is read-only and cannot be set here: send it in the request
|
|
27075
|
+
body and it is
|
|
27076
|
+
|
|
27077
|
+
ignored, leaving the lock unchanged. Use `status_changes` to release a lock
|
|
27078
|
+
before a
|
|
27079
|
+
|
|
27080
|
+
transfer out, for example
|
|
27081
|
+
|
|
27082
|
+
`{"status_changes": {"remove": ["clientTransferProhibited"]}}`.'
|
|
27072
27083
|
operationId: update_domain_v1_domains__domain_reference__patch
|
|
27073
27084
|
parameters:
|
|
27074
27085
|
- in: path
|
package/src/schema.d.ts
CHANGED
|
@@ -1527,7 +1527,11 @@ export interface paths {
|
|
|
1527
1527
|
* Update a domain
|
|
1528
1528
|
* @description Updates various attributes of an existing domain. Only the fields provided in the request
|
|
1529
1529
|
* will be updated; all other fields will remain unchanged. <br>
|
|
1530
|
-
* Providing `clientTransferProhibited` as a status will set the `transfer_lock` property
|
|
1530
|
+
* Providing `clientTransferProhibited` as a status will set the `transfer_lock` property. <br>
|
|
1531
|
+
* `transfer_lock` is read-only and cannot be set here: send it in the request body and it is
|
|
1532
|
+
* ignored, leaving the lock unchanged. Use `status_changes` to release a lock before a
|
|
1533
|
+
* transfer out, for example
|
|
1534
|
+
* `{"status_changes": {"remove": ["clientTransferProhibited"]}}`.
|
|
1531
1535
|
*/
|
|
1532
1536
|
patch: operations["update_domain_v1_domains__domain_reference__patch"];
|
|
1533
1537
|
trace?: never;
|
|
@@ -11986,7 +11990,7 @@ export interface components {
|
|
|
11986
11990
|
* PublicResource
|
|
11987
11991
|
* @enum {string}
|
|
11988
11992
|
*/
|
|
11989
|
-
PublicResource: "organization" | "domains" | "domain_auth_codes" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns" | "whitelabel_branding" | "ai_concierge";
|
|
11993
|
+
PublicResource: "organization" | "domains" | "domain_auth_codes" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns" | "whitelabel_branding" | "ai_concierge" | "ai_concierge_waitlist";
|
|
11990
11994
|
/**
|
|
11991
11995
|
* PublicRole
|
|
11992
11996
|
* @enum {string}
|