@opusdns/api 1.78.0 → 1.79.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 +0 -4
- package/src/openapi.yaml +1 -12
- package/src/schema.d.ts +0 -4
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -3347,15 +3347,11 @@ export const KEYS_EVENT_RESPONSE = [
|
|
|
3347
3347
|
KEY_EVENT_RESPONSE_TYPE,
|
|
3348
3348
|
] as const satisfies (keyof EventResponse)[];
|
|
3349
3349
|
|
|
3350
|
-
export const KEY_FOOTER_CONTACT_EMAIL = 'contact_email' satisfies keyof Footer;
|
|
3351
|
-
export const KEY_FOOTER_DISCLAIMER = 'disclaimer' satisfies keyof Footer;
|
|
3352
3350
|
export const KEY_FOOTER_LEGAL_ENTITY = 'legal_entity' satisfies keyof Footer;
|
|
3353
3351
|
export const KEY_FOOTER_LINES = 'lines' satisfies keyof Footer;
|
|
3354
3352
|
export const KEY_FOOTER_VAT_ID = 'vat_id' satisfies keyof Footer;
|
|
3355
3353
|
|
|
3356
3354
|
export const KEYS_FOOTER = [
|
|
3357
|
-
KEY_FOOTER_CONTACT_EMAIL,
|
|
3358
|
-
KEY_FOOTER_DISCLAIMER,
|
|
3359
3355
|
KEY_FOOTER_LEGAL_ENTITY,
|
|
3360
3356
|
KEY_FOOTER_LINES,
|
|
3361
3357
|
KEY_FOOTER_VAT_ID,
|
package/src/openapi.yaml
CHANGED
|
@@ -7527,17 +7527,6 @@ components:
|
|
|
7527
7527
|
type: string
|
|
7528
7528
|
Footer:
|
|
7529
7529
|
properties:
|
|
7530
|
-
contact_email:
|
|
7531
|
-
anyOf:
|
|
7532
|
-
- pattern: ^[^@\s]+@[^@\s]+\.[^@\s]+$
|
|
7533
|
-
type: string
|
|
7534
|
-
- type: 'null'
|
|
7535
|
-
title: Contact Email
|
|
7536
|
-
disclaimer:
|
|
7537
|
-
anyOf:
|
|
7538
|
-
- type: string
|
|
7539
|
-
- type: 'null'
|
|
7540
|
-
title: Disclaimer
|
|
7541
7530
|
legal_entity:
|
|
7542
7531
|
anyOf:
|
|
7543
7532
|
- maxLength: 255
|
|
@@ -14789,7 +14778,7 @@ info:
|
|
|
14789
14778
|
\n\n"
|
|
14790
14779
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14791
14780
|
title: OpusDNS API
|
|
14792
|
-
version: 2026-07-24-
|
|
14781
|
+
version: 2026-07-24-121118
|
|
14793
14782
|
x-logo:
|
|
14794
14783
|
altText: OpusDNS API Reference
|
|
14795
14784
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -7840,10 +7840,6 @@ export interface components {
|
|
|
7840
7840
|
ExecutingEntity: "user" | "organization" | "system";
|
|
7841
7841
|
/** Footer */
|
|
7842
7842
|
Footer: {
|
|
7843
|
-
/** Contact Email */
|
|
7844
|
-
contact_email?: string | null;
|
|
7845
|
-
/** Disclaimer */
|
|
7846
|
-
disclaimer?: string | null;
|
|
7847
7843
|
/** Legal Entity */
|
|
7848
7844
|
legal_entity?: string | null;
|
|
7849
7845
|
/** Lines */
|