@opusdns/api 1.175.0 → 1.176.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 +20 -0
- package/src/openapi.yaml +61 -1
- package/src/schema.d.ts +20 -0
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -4605,6 +4605,8 @@ export const KEYS_PAGINATION_METADATA_DTO = [
|
|
|
4605
4605
|
export const KEY_PALETTE_ACCENT = 'accent' satisfies keyof Palette;
|
|
4606
4606
|
export const KEY_PALETTE_ACCENT_FOREGROUND = 'accent_foreground' satisfies keyof Palette;
|
|
4607
4607
|
export const KEY_PALETTE_BACKGROUND = 'background' satisfies keyof Palette;
|
|
4608
|
+
export const KEY_PALETTE_BODY = 'body' satisfies keyof Palette;
|
|
4609
|
+
export const KEY_PALETTE_BODY_FOREGROUND = 'body_foreground' satisfies keyof Palette;
|
|
4608
4610
|
export const KEY_PALETTE_BORDER = 'border' satisfies keyof Palette;
|
|
4609
4611
|
export const KEY_PALETTE_CARD = 'card' satisfies keyof Palette;
|
|
4610
4612
|
export const KEY_PALETTE_CARD_FOREGROUND = 'card_foreground' satisfies keyof Palette;
|
|
@@ -4613,6 +4615,7 @@ export const KEY_PALETTE_DANGER = 'danger' satisfies keyof Palette;
|
|
|
4613
4615
|
export const KEY_PALETTE_FOREGROUND = 'foreground' satisfies keyof Palette;
|
|
4614
4616
|
export const KEY_PALETTE_INFO = 'info' satisfies keyof Palette;
|
|
4615
4617
|
export const KEY_PALETTE_INPUT = 'input' satisfies keyof Palette;
|
|
4618
|
+
export const KEY_PALETTE_LINK = 'link' satisfies keyof Palette;
|
|
4616
4619
|
export const KEY_PALETTE_MUTED = 'muted' satisfies keyof Palette;
|
|
4617
4620
|
export const KEY_PALETTE_MUTED_FOREGROUND = 'muted_foreground' satisfies keyof Palette;
|
|
4618
4621
|
export const KEY_PALETTE_PRIMARY = 'primary' satisfies keyof Palette;
|
|
@@ -4620,8 +4623,15 @@ export const KEY_PALETTE_PRIMARY_FOREGROUND = 'primary_foreground' satisfies key
|
|
|
4620
4623
|
export const KEY_PALETTE_SECONDARY = 'secondary' satisfies keyof Palette;
|
|
4621
4624
|
export const KEY_PALETTE_SECONDARY_FOREGROUND = 'secondary_foreground' satisfies keyof Palette;
|
|
4622
4625
|
export const KEY_PALETTE_SIDEBAR = 'sidebar' satisfies keyof Palette;
|
|
4626
|
+
export const KEY_PALETTE_SIDEBAR_ACCENT = 'sidebar_accent' satisfies keyof Palette;
|
|
4627
|
+
export const KEY_PALETTE_SIDEBAR_ACCENT_FOREGROUND = 'sidebar_accent_foreground' satisfies keyof Palette;
|
|
4628
|
+
export const KEY_PALETTE_SIDEBAR_BORDER = 'sidebar_border' satisfies keyof Palette;
|
|
4623
4629
|
export const KEY_PALETTE_SIDEBAR_FOREGROUND = 'sidebar_foreground' satisfies keyof Palette;
|
|
4624
4630
|
export const KEY_PALETTE_SUCCESS = 'success' satisfies keyof Palette;
|
|
4631
|
+
export const KEY_PALETTE_TABLE = 'table' satisfies keyof Palette;
|
|
4632
|
+
export const KEY_PALETTE_TABLE_HEADER = 'table_header' satisfies keyof Palette;
|
|
4633
|
+
export const KEY_PALETTE_TABLE_ROW = 'table_row' satisfies keyof Palette;
|
|
4634
|
+
export const KEY_PALETTE_TABLE_ROW_INTERACTIVE = 'table_row_interactive' satisfies keyof Palette;
|
|
4625
4635
|
export const KEY_PALETTE_TAG_COLORS = 'tag_colors' satisfies keyof Palette;
|
|
4626
4636
|
export const KEY_PALETTE_WARNING = 'warning' satisfies keyof Palette;
|
|
4627
4637
|
|
|
@@ -4629,6 +4639,8 @@ export const KEYS_PALETTE = [
|
|
|
4629
4639
|
KEY_PALETTE_ACCENT,
|
|
4630
4640
|
KEY_PALETTE_ACCENT_FOREGROUND,
|
|
4631
4641
|
KEY_PALETTE_BACKGROUND,
|
|
4642
|
+
KEY_PALETTE_BODY,
|
|
4643
|
+
KEY_PALETTE_BODY_FOREGROUND,
|
|
4632
4644
|
KEY_PALETTE_BORDER,
|
|
4633
4645
|
KEY_PALETTE_CARD,
|
|
4634
4646
|
KEY_PALETTE_CARD_FOREGROUND,
|
|
@@ -4637,6 +4649,7 @@ export const KEYS_PALETTE = [
|
|
|
4637
4649
|
KEY_PALETTE_FOREGROUND,
|
|
4638
4650
|
KEY_PALETTE_INFO,
|
|
4639
4651
|
KEY_PALETTE_INPUT,
|
|
4652
|
+
KEY_PALETTE_LINK,
|
|
4640
4653
|
KEY_PALETTE_MUTED,
|
|
4641
4654
|
KEY_PALETTE_MUTED_FOREGROUND,
|
|
4642
4655
|
KEY_PALETTE_PRIMARY,
|
|
@@ -4644,8 +4657,15 @@ export const KEYS_PALETTE = [
|
|
|
4644
4657
|
KEY_PALETTE_SECONDARY,
|
|
4645
4658
|
KEY_PALETTE_SECONDARY_FOREGROUND,
|
|
4646
4659
|
KEY_PALETTE_SIDEBAR,
|
|
4660
|
+
KEY_PALETTE_SIDEBAR_ACCENT,
|
|
4661
|
+
KEY_PALETTE_SIDEBAR_ACCENT_FOREGROUND,
|
|
4662
|
+
KEY_PALETTE_SIDEBAR_BORDER,
|
|
4647
4663
|
KEY_PALETTE_SIDEBAR_FOREGROUND,
|
|
4648
4664
|
KEY_PALETTE_SUCCESS,
|
|
4665
|
+
KEY_PALETTE_TABLE,
|
|
4666
|
+
KEY_PALETTE_TABLE_HEADER,
|
|
4667
|
+
KEY_PALETTE_TABLE_ROW,
|
|
4668
|
+
KEY_PALETTE_TABLE_ROW_INTERACTIVE,
|
|
4649
4669
|
KEY_PALETTE_TAG_COLORS,
|
|
4650
4670
|
KEY_PALETTE_WARNING,
|
|
4651
4671
|
] as const satisfies (keyof Palette)[];
|
package/src/openapi.yaml
CHANGED
|
@@ -11756,6 +11756,18 @@ components:
|
|
|
11756
11756
|
type: string
|
|
11757
11757
|
- type: 'null'
|
|
11758
11758
|
title: Background
|
|
11759
|
+
body:
|
|
11760
|
+
anyOf:
|
|
11761
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11762
|
+
type: string
|
|
11763
|
+
- type: 'null'
|
|
11764
|
+
title: Body
|
|
11765
|
+
body_foreground:
|
|
11766
|
+
anyOf:
|
|
11767
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11768
|
+
type: string
|
|
11769
|
+
- type: 'null'
|
|
11770
|
+
title: Body Foreground
|
|
11759
11771
|
border:
|
|
11760
11772
|
anyOf:
|
|
11761
11773
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11806,6 +11818,12 @@ components:
|
|
|
11806
11818
|
type: string
|
|
11807
11819
|
- type: 'null'
|
|
11808
11820
|
title: Input
|
|
11821
|
+
link:
|
|
11822
|
+
anyOf:
|
|
11823
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11824
|
+
type: string
|
|
11825
|
+
- type: 'null'
|
|
11826
|
+
title: Link
|
|
11809
11827
|
muted:
|
|
11810
11828
|
anyOf:
|
|
11811
11829
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11848,6 +11866,24 @@ components:
|
|
|
11848
11866
|
type: string
|
|
11849
11867
|
- type: 'null'
|
|
11850
11868
|
title: Sidebar
|
|
11869
|
+
sidebar_accent:
|
|
11870
|
+
anyOf:
|
|
11871
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11872
|
+
type: string
|
|
11873
|
+
- type: 'null'
|
|
11874
|
+
title: Sidebar Accent
|
|
11875
|
+
sidebar_accent_foreground:
|
|
11876
|
+
anyOf:
|
|
11877
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11878
|
+
type: string
|
|
11879
|
+
- type: 'null'
|
|
11880
|
+
title: Sidebar Accent Foreground
|
|
11881
|
+
sidebar_border:
|
|
11882
|
+
anyOf:
|
|
11883
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11884
|
+
type: string
|
|
11885
|
+
- type: 'null'
|
|
11886
|
+
title: Sidebar Border
|
|
11851
11887
|
sidebar_foreground:
|
|
11852
11888
|
anyOf:
|
|
11853
11889
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11860,6 +11896,30 @@ components:
|
|
|
11860
11896
|
type: string
|
|
11861
11897
|
- type: 'null'
|
|
11862
11898
|
title: Success
|
|
11899
|
+
table:
|
|
11900
|
+
anyOf:
|
|
11901
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11902
|
+
type: string
|
|
11903
|
+
- type: 'null'
|
|
11904
|
+
title: Table
|
|
11905
|
+
table_header:
|
|
11906
|
+
anyOf:
|
|
11907
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11908
|
+
type: string
|
|
11909
|
+
- type: 'null'
|
|
11910
|
+
title: Table Header
|
|
11911
|
+
table_row:
|
|
11912
|
+
anyOf:
|
|
11913
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11914
|
+
type: string
|
|
11915
|
+
- type: 'null'
|
|
11916
|
+
title: Table Row
|
|
11917
|
+
table_row_interactive:
|
|
11918
|
+
anyOf:
|
|
11919
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
11920
|
+
type: string
|
|
11921
|
+
- type: 'null'
|
|
11922
|
+
title: Table Row Interactive
|
|
11863
11923
|
tag_colors:
|
|
11864
11924
|
anyOf:
|
|
11865
11925
|
- items:
|
|
@@ -16728,7 +16788,7 @@ info:
|
|
|
16728
16788
|
\n\n"
|
|
16729
16789
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16730
16790
|
title: OpusDNS API
|
|
16731
|
-
version: 2026-09-14-
|
|
16791
|
+
version: 2026-09-14-103507
|
|
16732
16792
|
x-logo:
|
|
16733
16793
|
altText: OpusDNS API Reference
|
|
16734
16794
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -11002,6 +11002,10 @@ export interface components {
|
|
|
11002
11002
|
accent_foreground?: string | null;
|
|
11003
11003
|
/** Background */
|
|
11004
11004
|
background?: string | null;
|
|
11005
|
+
/** Body */
|
|
11006
|
+
body?: string | null;
|
|
11007
|
+
/** Body Foreground */
|
|
11008
|
+
body_foreground?: string | null;
|
|
11005
11009
|
/** Border */
|
|
11006
11010
|
border?: string | null;
|
|
11007
11011
|
/** Card */
|
|
@@ -11018,6 +11022,8 @@ export interface components {
|
|
|
11018
11022
|
info?: string | null;
|
|
11019
11023
|
/** Input */
|
|
11020
11024
|
input?: string | null;
|
|
11025
|
+
/** Link */
|
|
11026
|
+
link?: string | null;
|
|
11021
11027
|
/** Muted */
|
|
11022
11028
|
muted?: string | null;
|
|
11023
11029
|
/** Muted Foreground */
|
|
@@ -11032,10 +11038,24 @@ export interface components {
|
|
|
11032
11038
|
secondary_foreground?: string | null;
|
|
11033
11039
|
/** Sidebar */
|
|
11034
11040
|
sidebar?: string | null;
|
|
11041
|
+
/** Sidebar Accent */
|
|
11042
|
+
sidebar_accent?: string | null;
|
|
11043
|
+
/** Sidebar Accent Foreground */
|
|
11044
|
+
sidebar_accent_foreground?: string | null;
|
|
11045
|
+
/** Sidebar Border */
|
|
11046
|
+
sidebar_border?: string | null;
|
|
11035
11047
|
/** Sidebar Foreground */
|
|
11036
11048
|
sidebar_foreground?: string | null;
|
|
11037
11049
|
/** Success */
|
|
11038
11050
|
success?: string | null;
|
|
11051
|
+
/** Table */
|
|
11052
|
+
table?: string | null;
|
|
11053
|
+
/** Table Header */
|
|
11054
|
+
table_header?: string | null;
|
|
11055
|
+
/** Table Row */
|
|
11056
|
+
table_row?: string | null;
|
|
11057
|
+
/** Table Row Interactive */
|
|
11058
|
+
table_row_interactive?: string | null;
|
|
11039
11059
|
/** Tag Colors */
|
|
11040
11060
|
tag_colors?: string[] | null;
|
|
11041
11061
|
/** Warning */
|