@opusdns/api 1.188.0 → 1.190.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 +4 -0
- package/src/helpers/permissions.ts +3 -0
- package/src/openapi.yaml +3 -1
- package/src/schema.d.ts +2 -2
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1423,6 +1423,7 @@ export const OBJECT_EVENT_TYPE = {
|
|
|
1423
1423
|
UPDATED: "UPDATED",
|
|
1424
1424
|
DELETED: "DELETED",
|
|
1425
1425
|
IMPORTED: "IMPORTED",
|
|
1426
|
+
SYNCED_AFTER_IMPORT: "SYNCED_AFTER_IMPORT",
|
|
1426
1427
|
TRANSFER_STARTED: "TRANSFER_STARTED",
|
|
1427
1428
|
TRANSFER_COMPLETED: "TRANSFER_COMPLETED",
|
|
1428
1429
|
TRANSFER_OUT_STARTED: "TRANSFER_OUT_STARTED",
|
|
@@ -1440,6 +1441,7 @@ export const OBJECT_EVENT_TYPE_VALUES = [
|
|
|
1440
1441
|
'UPDATED',
|
|
1441
1442
|
'DELETED',
|
|
1442
1443
|
'IMPORTED',
|
|
1444
|
+
'SYNCED_AFTER_IMPORT',
|
|
1443
1445
|
'TRANSFER_STARTED',
|
|
1444
1446
|
'TRANSFER_COMPLETED',
|
|
1445
1447
|
'TRANSFER_OUT_STARTED',
|
|
@@ -1637,6 +1639,7 @@ export const PUBLIC_RESOURCE = {
|
|
|
1637
1639
|
VANITY_NS: "vanity_ns",
|
|
1638
1640
|
WHITELABEL_BRANDING: "whitelabel_branding",
|
|
1639
1641
|
AI_CONCIERGE: "ai_concierge",
|
|
1642
|
+
AI_CONCIERGE_WAITLIST: "ai_concierge_waitlist",
|
|
1640
1643
|
} as const satisfies Record<string, PublicResource>;
|
|
1641
1644
|
|
|
1642
1645
|
export const PUBLIC_RESOURCE_VALUES = [
|
|
@@ -1660,6 +1663,7 @@ export const PUBLIC_RESOURCE_VALUES = [
|
|
|
1660
1663
|
'vanity_ns',
|
|
1661
1664
|
'whitelabel_branding',
|
|
1662
1665
|
'ai_concierge',
|
|
1666
|
+
'ai_concierge_waitlist',
|
|
1663
1667
|
] as const satisfies ReadonlyArray<PublicResource>;
|
|
1664
1668
|
|
|
1665
1669
|
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
|
@@ -10675,6 +10675,7 @@ components:
|
|
|
10675
10675
|
- UPDATED
|
|
10676
10676
|
- DELETED
|
|
10677
10677
|
- IMPORTED
|
|
10678
|
+
- SYNCED_AFTER_IMPORT
|
|
10678
10679
|
- TRANSFER_STARTED
|
|
10679
10680
|
- TRANSFER_COMPLETED
|
|
10680
10681
|
- TRANSFER_OUT_STARTED
|
|
@@ -13209,6 +13210,7 @@ components:
|
|
|
13209
13210
|
- vanity_ns
|
|
13210
13211
|
- whitelabel_branding
|
|
13211
13212
|
- ai_concierge
|
|
13213
|
+
- ai_concierge_waitlist
|
|
13212
13214
|
title: PublicResource
|
|
13213
13215
|
type: string
|
|
13214
13216
|
PublicRole:
|
|
@@ -17057,7 +17059,7 @@ info:
|
|
|
17057
17059
|
\n\n"
|
|
17058
17060
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
17059
17061
|
title: OpusDNS API
|
|
17060
|
-
version: 2026-09-
|
|
17062
|
+
version: 2026-09-22-090818
|
|
17061
17063
|
x-logo:
|
|
17062
17064
|
altText: OpusDNS API Reference
|
|
17063
17065
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -10398,7 +10398,7 @@ export interface components {
|
|
|
10398
10398
|
* ObjectEventType
|
|
10399
10399
|
* @enum {string}
|
|
10400
10400
|
*/
|
|
10401
|
-
ObjectEventType: "CREATED" | "UPDATED" | "DELETED" | "IMPORTED" | "TRANSFER_STARTED" | "TRANSFER_COMPLETED" | "TRANSFER_OUT_STARTED" | "TRANSFER_OUT_COMPLETED" | "RENEWED" | "RESTORED" | "BILLING_TRANSACTION_RESERVED" | "BILLING_TRANSACTION_SUCCEEDED" | "BILLING_TRANSACTION_FAILED" | "BILLING_TRANSACTION_CANCELLED";
|
|
10401
|
+
ObjectEventType: "CREATED" | "UPDATED" | "DELETED" | "IMPORTED" | "SYNCED_AFTER_IMPORT" | "TRANSFER_STARTED" | "TRANSFER_COMPLETED" | "TRANSFER_OUT_STARTED" | "TRANSFER_OUT_COMPLETED" | "RENEWED" | "RESTORED" | "BILLING_TRANSACTION_RESERVED" | "BILLING_TRANSACTION_SUCCEEDED" | "BILLING_TRANSACTION_FAILED" | "BILLING_TRANSACTION_CANCELLED";
|
|
10402
10402
|
/** ObjectLog */
|
|
10403
10403
|
ObjectLog: {
|
|
10404
10404
|
/** @description Action performed */
|
|
@@ -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}
|