@opusdns/api 1.174.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/constants.ts +2 -0
- package/src/helpers/keys.ts +20 -0
- package/src/openapi.yaml +62 -1
- package/src/schema.d.ts +21 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -264,6 +264,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE = {
|
|
|
264
264
|
WHITELABEL_BRANDING: "whitelabel_branding",
|
|
265
265
|
WHITELABEL_BRANDING_PLUS: "whitelabel_branding_plus",
|
|
266
266
|
RAS_DOMAIN_LIFECYCLE: "ras_domain_lifecycle",
|
|
267
|
+
AMS_DOMAIN_LIFECYCLE: "ams_domain_lifecycle",
|
|
267
268
|
} as const satisfies Record<string, BillingTransactionProductType>;
|
|
268
269
|
|
|
269
270
|
export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
|
|
@@ -276,6 +277,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
|
|
|
276
277
|
'whitelabel_branding',
|
|
277
278
|
'whitelabel_branding_plus',
|
|
278
279
|
'ras_domain_lifecycle',
|
|
280
|
+
'ams_domain_lifecycle',
|
|
279
281
|
] as const satisfies ReadonlyArray<BillingTransactionProductType>;
|
|
280
282
|
|
|
281
283
|
export const BILLING_TRANSACTION_SORT_FIELD = {
|
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
|
@@ -424,6 +424,7 @@ components:
|
|
|
424
424
|
- whitelabel_branding
|
|
425
425
|
- whitelabel_branding_plus
|
|
426
426
|
- ras_domain_lifecycle
|
|
427
|
+
- ams_domain_lifecycle
|
|
427
428
|
title: BillingTransactionProductType
|
|
428
429
|
type: string
|
|
429
430
|
BillingTransactionResponse:
|
|
@@ -11755,6 +11756,18 @@ components:
|
|
|
11755
11756
|
type: string
|
|
11756
11757
|
- type: 'null'
|
|
11757
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
|
|
11758
11771
|
border:
|
|
11759
11772
|
anyOf:
|
|
11760
11773
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11805,6 +11818,12 @@ components:
|
|
|
11805
11818
|
type: string
|
|
11806
11819
|
- type: 'null'
|
|
11807
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
|
|
11808
11827
|
muted:
|
|
11809
11828
|
anyOf:
|
|
11810
11829
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11847,6 +11866,24 @@ components:
|
|
|
11847
11866
|
type: string
|
|
11848
11867
|
- type: 'null'
|
|
11849
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
|
|
11850
11887
|
sidebar_foreground:
|
|
11851
11888
|
anyOf:
|
|
11852
11889
|
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
@@ -11859,6 +11896,30 @@ components:
|
|
|
11859
11896
|
type: string
|
|
11860
11897
|
- type: 'null'
|
|
11861
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
|
|
11862
11923
|
tag_colors:
|
|
11863
11924
|
anyOf:
|
|
11864
11925
|
- items:
|
|
@@ -16727,7 +16788,7 @@ info:
|
|
|
16727
16788
|
\n\n"
|
|
16728
16789
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16729
16790
|
title: OpusDNS API
|
|
16730
|
-
version: 2026-09-
|
|
16791
|
+
version: 2026-09-14-103507
|
|
16731
16792
|
x-logo:
|
|
16732
16793
|
altText: OpusDNS API Reference
|
|
16733
16794
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3427,7 +3427,7 @@ export interface components {
|
|
|
3427
3427
|
* BillingTransactionProductType
|
|
3428
3428
|
* @enum {string}
|
|
3429
3429
|
*/
|
|
3430
|
-
BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver" | "whitelabel_branding" | "whitelabel_branding_plus" | "ras_domain_lifecycle";
|
|
3430
|
+
BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver" | "whitelabel_branding" | "whitelabel_branding_plus" | "ras_domain_lifecycle" | "ams_domain_lifecycle";
|
|
3431
3431
|
/** BillingTransactionResponse */
|
|
3432
3432
|
BillingTransactionResponse: {
|
|
3433
3433
|
/** @description The action performed in the transaction */
|
|
@@ -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 */
|