@opusdns/api 1.75.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 +8 -2
- package/src/schema.d.ts +3 -1
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
|
@@ -8399,7 +8399,8 @@ components:
|
|
|
8399
8399
|
title: Paused
|
|
8400
8400
|
type: integer
|
|
8401
8401
|
progress_percentage:
|
|
8402
|
-
description:
|
|
8402
|
+
description: Percentage of jobs in a terminal state (succeeded, failed,
|
|
8403
|
+
canceled, or dead_letter), 0-100
|
|
8403
8404
|
title: Progress Percentage
|
|
8404
8405
|
type: number
|
|
8405
8406
|
queued:
|
|
@@ -14286,9 +14287,14 @@ components:
|
|
|
14286
14287
|
minLength: 1
|
|
14287
14288
|
title: Hostname
|
|
14288
14289
|
type: string
|
|
14290
|
+
period:
|
|
14291
|
+
$ref: '#/components/schemas/Period'
|
|
14292
|
+
description: 'Billing period for the subscription; offered: 1 month or 1
|
|
14293
|
+
year'
|
|
14289
14294
|
required:
|
|
14290
14295
|
- hostname
|
|
14291
14296
|
- auth_hostname
|
|
14297
|
+
- period
|
|
14292
14298
|
title: WhitelabelBrandingCreate
|
|
14293
14299
|
type: object
|
|
14294
14300
|
WhitelabelBrandingResponse:
|
|
@@ -14695,7 +14701,7 @@ info:
|
|
|
14695
14701
|
\n\n"
|
|
14696
14702
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14697
14703
|
title: OpusDNS API
|
|
14698
|
-
version: 2026-07-
|
|
14704
|
+
version: 2026-07-24-073532
|
|
14699
14705
|
x-logo:
|
|
14700
14706
|
altText: OpusDNS API Reference
|
|
14701
14707
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -8412,7 +8412,7 @@ export interface components {
|
|
|
8412
8412
|
paused: number;
|
|
8413
8413
|
/**
|
|
8414
8414
|
* Progress Percentage
|
|
8415
|
-
* @description
|
|
8415
|
+
* @description Percentage of jobs in a terminal state (succeeded, failed, canceled, or dead_letter), 0-100
|
|
8416
8416
|
*/
|
|
8417
8417
|
progress_percentage: number;
|
|
8418
8418
|
/**
|
|
@@ -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
|