@opusdns/api 1.84.0 → 1.86.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 +16 -6
- 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-214611
|
|
14881
14886
|
x-logo:
|
|
14882
14887
|
altText: OpusDNS API Reference
|
|
14883
14888
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -18508,19 +18513,24 @@ paths:
|
|
|
18508
18513
|
name: example.com.
|
|
18509
18514
|
rrsets:
|
|
18510
18515
|
- name: example.com.
|
|
18511
|
-
protected:
|
|
18516
|
+
protected: true
|
|
18517
|
+
protected_reason: SYSTEM_MANAGED_SOA
|
|
18512
18518
|
records:
|
|
18513
|
-
- protected:
|
|
18519
|
+
- protected: true
|
|
18520
|
+
protected_reason: SYSTEM_MANAGED_SOA
|
|
18514
18521
|
rdata: ns1.opusdns.com. hostmaster.opusdns.com. 2025111801
|
|
18515
18522
|
10800 3600 604800 300
|
|
18516
18523
|
ttl: 3600
|
|
18517
18524
|
type: SOA
|
|
18518
18525
|
- name: example.com.
|
|
18519
|
-
protected:
|
|
18526
|
+
protected: true
|
|
18527
|
+
protected_reason: SYSTEM_MANAGED_NS
|
|
18520
18528
|
records:
|
|
18521
|
-
- protected:
|
|
18529
|
+
- protected: true
|
|
18530
|
+
protected_reason: SYSTEM_MANAGED_NS
|
|
18522
18531
|
rdata: ns1.opusdns.com.
|
|
18523
|
-
- protected:
|
|
18532
|
+
- protected: true
|
|
18533
|
+
protected_reason: SYSTEM_MANAGED_NS
|
|
18524
18534
|
rdata: ns2.opusdns.net.
|
|
18525
18535
|
ttl: 3600
|
|
18526
18536
|
type: NS
|
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
|