@opusdns/api 1.46.0 → 1.47.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/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -223,6 +223,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE = {
|
|
|
223
223
|
DOMAIN_FORWARD: "domain_forward",
|
|
224
224
|
ACCOUNT_WALLET: "account_wallet",
|
|
225
225
|
VANITY_NAMESERVER: "vanity_nameserver",
|
|
226
|
+
WHITELABEL_BRANDING: "whitelabel_branding",
|
|
226
227
|
} as const satisfies Record<string, BillingTransactionProductType>;
|
|
227
228
|
|
|
228
229
|
export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
|
|
@@ -232,6 +233,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
|
|
|
232
233
|
'domain_forward',
|
|
233
234
|
'account_wallet',
|
|
234
235
|
'vanity_nameserver',
|
|
236
|
+
'whitelabel_branding',
|
|
235
237
|
] as const satisfies ReadonlyArray<BillingTransactionProductType>;
|
|
236
238
|
|
|
237
239
|
export const BILLING_TRANSACTION_SORT_FIELD = {
|
package/src/openapi.yaml
CHANGED
|
@@ -163,6 +163,7 @@ components:
|
|
|
163
163
|
- domain_forward
|
|
164
164
|
- account_wallet
|
|
165
165
|
- vanity_nameserver
|
|
166
|
+
- whitelabel_branding
|
|
166
167
|
title: BillingTransactionProductType
|
|
167
168
|
type: string
|
|
168
169
|
BillingTransactionResponse:
|
|
@@ -13852,7 +13853,7 @@ info:
|
|
|
13852
13853
|
\n\n"
|
|
13853
13854
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13854
13855
|
title: OpusDNS API
|
|
13855
|
-
version: 2026-07-
|
|
13856
|
+
version: 2026-07-09-072826
|
|
13856
13857
|
x-logo:
|
|
13857
13858
|
altText: OpusDNS API Reference
|
|
13858
13859
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -2834,7 +2834,7 @@ export interface components {
|
|
|
2834
2834
|
* BillingTransactionProductType
|
|
2835
2835
|
* @enum {string}
|
|
2836
2836
|
*/
|
|
2837
|
-
BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver";
|
|
2837
|
+
BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward" | "account_wallet" | "vanity_nameserver" | "whitelabel_branding";
|
|
2838
2838
|
/** BillingTransactionResponse */
|
|
2839
2839
|
BillingTransactionResponse: {
|
|
2840
2840
|
/** @description The action performed in the transaction */
|