@opusdns/api 1.84.0 → 1.85.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 +6 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -3814,6 +3814,7 @@ export const KEYS_LOGO = [
|
|
|
3814
3814
|
] as const satisfies (keyof Logo)[];
|
|
3815
3815
|
|
|
3816
3816
|
export const KEY_MAIL_TEMPLATE_BLOCKS = 'blocks' satisfies keyof MailTemplate;
|
|
3817
|
+
export const KEY_MAIL_TEMPLATE_LABEL = 'label' satisfies keyof MailTemplate;
|
|
3817
3818
|
export const KEY_MAIL_TEMPLATE_LOCALES = 'locales' satisfies keyof MailTemplate;
|
|
3818
3819
|
export const KEY_MAIL_TEMPLATE_SUBJECT = 'subject' satisfies keyof MailTemplate;
|
|
3819
3820
|
export const KEY_MAIL_TEMPLATE_VARIABLES = 'variables' satisfies keyof MailTemplate;
|
|
@@ -3821,6 +3822,7 @@ export const KEY_MAIL_TEMPLATE_VERSION = 'version' satisfies keyof MailTemplate;
|
|
|
3821
3822
|
|
|
3822
3823
|
export const KEYS_MAIL_TEMPLATE = [
|
|
3823
3824
|
KEY_MAIL_TEMPLATE_BLOCKS,
|
|
3825
|
+
KEY_MAIL_TEMPLATE_LABEL,
|
|
3824
3826
|
KEY_MAIL_TEMPLATE_LOCALES,
|
|
3825
3827
|
KEY_MAIL_TEMPLATE_SUBJECT,
|
|
3826
3828
|
KEY_MAIL_TEMPLATE_VARIABLES,
|
package/src/openapi.yaml
CHANGED
|
@@ -8890,6 +8890,11 @@ components:
|
|
|
8890
8890
|
description: Org-editable content blocks
|
|
8891
8891
|
title: Blocks
|
|
8892
8892
|
type: object
|
|
8893
|
+
label:
|
|
8894
|
+
default: ''
|
|
8895
|
+
description: Human-readable template name for display
|
|
8896
|
+
title: Label
|
|
8897
|
+
type: string
|
|
8893
8898
|
locales:
|
|
8894
8899
|
description: Supported locales, first is the fallback
|
|
8895
8900
|
items:
|
|
@@ -14877,7 +14882,7 @@ info:
|
|
|
14877
14882
|
\n\n"
|
|
14878
14883
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14879
14884
|
title: OpusDNS API
|
|
14880
|
-
version: 2026-07-28-
|
|
14885
|
+
version: 2026-07-28-150643
|
|
14881
14886
|
x-logo:
|
|
14882
14887
|
altText: OpusDNS API Reference
|
|
14883
14888
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -8758,6 +8758,12 @@ export interface components {
|
|
|
8758
8758
|
blocks?: {
|
|
8759
8759
|
[key: string]: components["schemas"]["MailTemplateBlock"];
|
|
8760
8760
|
};
|
|
8761
|
+
/**
|
|
8762
|
+
* Label
|
|
8763
|
+
* @description Human-readable template name for display
|
|
8764
|
+
* @default
|
|
8765
|
+
*/
|
|
8766
|
+
label: string;
|
|
8761
8767
|
/**
|
|
8762
8768
|
* Locales
|
|
8763
8769
|
* @description Supported locales, first is the fallback
|