@opusdns/api 1.188.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 +2 -1
- package/src/schema.d.ts +1 -1
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
|
package/src/schema.d.ts
CHANGED
|
@@ -11990,7 +11990,7 @@ export interface components {
|
|
|
11990
11990
|
* PublicResource
|
|
11991
11991
|
* @enum {string}
|
|
11992
11992
|
*/
|
|
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";
|
|
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";
|
|
11994
11994
|
/**
|
|
11995
11995
|
* PublicRole
|
|
11996
11996
|
* @enum {string}
|