@opusdns/api 1.47.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 +11 -3
- package/src/schema.d.ts +2 -2
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
|
|
@@ -11289,8 +11290,10 @@ components:
|
|
|
11289
11290
|
title: Nameservers
|
|
11290
11291
|
type: array
|
|
11291
11292
|
registrar:
|
|
11293
|
+
anyOf:
|
|
11294
|
+
- type: string
|
|
11295
|
+
- type: 'null'
|
|
11292
11296
|
title: Registrar
|
|
11293
|
-
type: string
|
|
11294
11297
|
statuses:
|
|
11295
11298
|
default: []
|
|
11296
11299
|
items:
|
|
@@ -11303,7 +11306,6 @@ components:
|
|
|
11303
11306
|
- type: 'null'
|
|
11304
11307
|
required:
|
|
11305
11308
|
- name
|
|
11306
|
-
- registrar
|
|
11307
11309
|
title: RegistrarDomain
|
|
11308
11310
|
type: object
|
|
11309
11311
|
RegistrarRRSet:
|
|
@@ -13853,7 +13855,7 @@ info:
|
|
|
13853
13855
|
\n\n"
|
|
13854
13856
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13855
13857
|
title: OpusDNS API
|
|
13856
|
-
version: 2026-07-09-
|
|
13858
|
+
version: 2026-07-09-135915
|
|
13857
13859
|
x-logo:
|
|
13858
13860
|
altText: OpusDNS API Reference
|
|
13859
13861
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -29891,6 +29893,11 @@ tags:
|
|
|
29891
29893
|
'
|
|
29892
29894
|
name: nameserver
|
|
29893
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
|
|
29894
29901
|
- description: 'Endpoints for creating and managing organizations.
|
|
29895
29902
|
|
|
29896
29903
|
'
|
|
@@ -30000,6 +30007,7 @@ x-tagGroups:
|
|
|
30000
30007
|
tags:
|
|
30001
30008
|
- dns
|
|
30002
30009
|
- nameserver
|
|
30010
|
+
- whitelabel
|
|
30003
30011
|
- email_forward
|
|
30004
30012
|
- domain_forward
|
|
30005
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}
|
|
@@ -10161,7 +10161,7 @@ export interface components {
|
|
|
10161
10161
|
*/
|
|
10162
10162
|
nameservers: string[];
|
|
10163
10163
|
/** Registrar */
|
|
10164
|
-
registrar
|
|
10164
|
+
registrar?: string | null;
|
|
10165
10165
|
/**
|
|
10166
10166
|
* Statuses
|
|
10167
10167
|
* @default []
|