@opusdns/api 1.48.0 → 1.49.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/openapi.yaml +8 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -1388,6 +1388,7 @@ export const PUBLIC_RESOURCE = {
|
|
|
1388
1388
|
TAGS: "tags",
|
|
1389
1389
|
AUDIT_LOGS: "audit_logs",
|
|
1390
1390
|
VANITY_NS: "vanity_ns",
|
|
1391
|
+
WHITELABEL_BRANDING: "whitelabel_branding",
|
|
1391
1392
|
AI_CONCIERGE: "ai_concierge",
|
|
1392
1393
|
} as const satisfies Record<string, PublicResource>;
|
|
1393
1394
|
|
|
@@ -1409,6 +1410,7 @@ export const PUBLIC_RESOURCE_VALUES = [
|
|
|
1409
1410
|
'tags',
|
|
1410
1411
|
'audit_logs',
|
|
1411
1412
|
'vanity_ns',
|
|
1413
|
+
'whitelabel_branding',
|
|
1412
1414
|
'ai_concierge',
|
|
1413
1415
|
] as const satisfies ReadonlyArray<PublicResource>;
|
|
1414
1416
|
|
package/src/openapi.yaml
CHANGED
|
@@ -11056,6 +11056,7 @@ components:
|
|
|
11056
11056
|
- tags
|
|
11057
11057
|
- audit_logs
|
|
11058
11058
|
- vanity_ns
|
|
11059
|
+
- whitelabel_branding
|
|
11059
11060
|
- ai_concierge
|
|
11060
11061
|
title: PublicResource
|
|
11061
11062
|
type: string
|
|
@@ -13854,7 +13855,7 @@ info:
|
|
|
13854
13855
|
\n\n"
|
|
13855
13856
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13856
13857
|
title: OpusDNS API
|
|
13857
|
-
version: 2026-07-09-
|
|
13858
|
+
version: 2026-07-09-135915
|
|
13858
13859
|
x-logo:
|
|
13859
13860
|
altText: OpusDNS API Reference
|
|
13860
13861
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -29892,6 +29893,11 @@ tags:
|
|
|
29892
29893
|
'
|
|
29893
29894
|
name: nameserver
|
|
29894
29895
|
x-displayName: Vanity Nameservers
|
|
29896
|
+
- description: 'Endpoints for managing an organization''s whitelabel branding configuration.
|
|
29897
|
+
|
|
29898
|
+
'
|
|
29899
|
+
name: whitelabel
|
|
29900
|
+
x-displayName: Whitelabel Branding
|
|
29895
29901
|
- description: 'Endpoints for creating and managing organizations.
|
|
29896
29902
|
|
|
29897
29903
|
'
|
|
@@ -30001,6 +30007,7 @@ x-tagGroups:
|
|
|
30001
30007
|
tags:
|
|
30002
30008
|
- dns
|
|
30003
30009
|
- nameserver
|
|
30010
|
+
- whitelabel
|
|
30004
30011
|
- email_forward
|
|
30005
30012
|
- domain_forward
|
|
30006
30013
|
- parking
|
package/src/schema.d.ts
CHANGED
|
@@ -10019,7 +10019,7 @@ export interface components {
|
|
|
10019
10019
|
* PublicResource
|
|
10020
10020
|
* @enum {string}
|
|
10021
10021
|
*/
|
|
10022
|
-
PublicResource: "organization" | "domains" | "contacts" | "dns" | "hosts" | "email_forwards" | "domain_forwards" | "parking" | "events" | "jobs" | "billing" | "users" | "api_keys" | "registrar_credentials" | "tags" | "audit_logs" | "vanity_ns" | "ai_concierge";
|
|
10022
|
+
PublicResource: "organization" | "domains" | "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";
|
|
10023
10023
|
/**
|
|
10024
10024
|
* PublicRole
|
|
10025
10025
|
* @enum {string}
|