@opusdns/api 1.76.0 → 1.77.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/keys.ts +2 -0
- package/src/openapi.yaml +6 -1
- package/src/schema.d.ts +2 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -5716,10 +5716,12 @@ export const KEYS_VISITS_BY_KEY_BUCKET = [
|
|
|
5716
5716
|
|
|
5717
5717
|
export const KEY_WHITELABEL_BRANDING_CREATE_AUTH_HOSTNAME = 'auth_hostname' satisfies keyof WhitelabelBrandingCreate;
|
|
5718
5718
|
export const KEY_WHITELABEL_BRANDING_CREATE_HOSTNAME = 'hostname' satisfies keyof WhitelabelBrandingCreate;
|
|
5719
|
+
export const KEY_WHITELABEL_BRANDING_CREATE_PERIOD = 'period' satisfies keyof WhitelabelBrandingCreate;
|
|
5719
5720
|
|
|
5720
5721
|
export const KEYS_WHITELABEL_BRANDING_CREATE = [
|
|
5721
5722
|
KEY_WHITELABEL_BRANDING_CREATE_AUTH_HOSTNAME,
|
|
5722
5723
|
KEY_WHITELABEL_BRANDING_CREATE_HOSTNAME,
|
|
5724
|
+
KEY_WHITELABEL_BRANDING_CREATE_PERIOD,
|
|
5723
5725
|
] as const satisfies (keyof WhitelabelBrandingCreate)[];
|
|
5724
5726
|
|
|
5725
5727
|
export const KEY_WHITELABEL_BRANDING_AUTH_HOSTNAME = 'auth_hostname' satisfies keyof WhitelabelBranding;
|
package/src/openapi.yaml
CHANGED
|
@@ -14287,9 +14287,14 @@ components:
|
|
|
14287
14287
|
minLength: 1
|
|
14288
14288
|
title: Hostname
|
|
14289
14289
|
type: string
|
|
14290
|
+
period:
|
|
14291
|
+
$ref: '#/components/schemas/Period'
|
|
14292
|
+
description: 'Billing period for the subscription; offered: 1 month or 1
|
|
14293
|
+
year'
|
|
14290
14294
|
required:
|
|
14291
14295
|
- hostname
|
|
14292
14296
|
- auth_hostname
|
|
14297
|
+
- period
|
|
14293
14298
|
title: WhitelabelBrandingCreate
|
|
14294
14299
|
type: object
|
|
14295
14300
|
WhitelabelBrandingResponse:
|
|
@@ -14696,7 +14701,7 @@ info:
|
|
|
14696
14701
|
\n\n"
|
|
14697
14702
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14698
14703
|
title: OpusDNS API
|
|
14699
|
-
version: 2026-07-
|
|
14704
|
+
version: 2026-07-24-073532
|
|
14700
14705
|
x-logo:
|
|
14701
14706
|
altText: OpusDNS API Reference
|
|
14702
14707
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -12300,6 +12300,8 @@ export interface components {
|
|
|
12300
12300
|
* @description Dashboard hostname the customer wants to brand (e.g. dash.customer.com)
|
|
12301
12301
|
*/
|
|
12302
12302
|
hostname: string;
|
|
12303
|
+
/** @description Billing period for the subscription; offered: 1 month or 1 year */
|
|
12304
|
+
period: components["schemas"]["Period"];
|
|
12303
12305
|
};
|
|
12304
12306
|
/**
|
|
12305
12307
|
* WhitelabelBrandingResponse
|