@opusdns/api 0.47.0 → 0.48.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 -2
- package/src/openapi.yaml +2 -2
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -206,7 +206,7 @@ export const BILLING_TRANSACTION_ACTION_VALUES = [
|
|
|
206
206
|
*/
|
|
207
207
|
export const BILLING_TRANSACTION_PRODUCT_TYPE = {
|
|
208
208
|
DOMAIN: "domain",
|
|
209
|
-
|
|
209
|
+
ZONES: "zones",
|
|
210
210
|
EMAIL_FORWARD: "email_forward",
|
|
211
211
|
DOMAIN_FORWARD: "domain_forward",
|
|
212
212
|
} as const satisfies Record<string, BillingTransactionProductType>;
|
|
@@ -234,7 +234,7 @@ export const BILLING_TRANSACTION_PRODUCT_TYPE = {
|
|
|
234
234
|
*/
|
|
235
235
|
export const BILLING_TRANSACTION_PRODUCT_TYPE_VALUES = [
|
|
236
236
|
'domain',
|
|
237
|
-
'
|
|
237
|
+
'zones',
|
|
238
238
|
'email_forward',
|
|
239
239
|
'domain_forward'
|
|
240
240
|
] as const satisfies [string, ...string[]] | BillingTransactionProductType[];
|
package/src/openapi.yaml
CHANGED
|
@@ -90,7 +90,7 @@ components:
|
|
|
90
90
|
BillingTransactionProductType:
|
|
91
91
|
enum:
|
|
92
92
|
- domain
|
|
93
|
-
-
|
|
93
|
+
- zones
|
|
94
94
|
- email_forward
|
|
95
95
|
- domain_forward
|
|
96
96
|
title: BillingTransactionProductType
|
|
@@ -5334,7 +5334,7 @@ info:
|
|
|
5334
5334
|
'
|
|
5335
5335
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5336
5336
|
title: OpusDNS API
|
|
5337
|
-
version: 2025-09-16-
|
|
5337
|
+
version: 2025-09-16-231949
|
|
5338
5338
|
x-logo:
|
|
5339
5339
|
altText: OpusDNS API Reference
|
|
5340
5340
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1278,7 +1278,7 @@ export interface components {
|
|
|
1278
1278
|
* BillingTransactionProductType
|
|
1279
1279
|
* @enum {string}
|
|
1280
1280
|
*/
|
|
1281
|
-
BillingTransactionProductType: "domain" | "
|
|
1281
|
+
BillingTransactionProductType: "domain" | "zones" | "email_forward" | "domain_forward";
|
|
1282
1282
|
/** Body_issue_organization_token_v1_auth_token_post */
|
|
1283
1283
|
Body_issue_organization_token_v1_auth_token_post: {
|
|
1284
1284
|
/**
|