@opusdns/api 0.40.0 → 0.41.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/openapi.yaml +1 -2
- package/src/schema.d.ts +1 -2
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -49,7 +49,6 @@ components:
|
|
|
49
49
|
BillingPlan:
|
|
50
50
|
properties:
|
|
51
51
|
amount:
|
|
52
|
-
default: '0.00'
|
|
53
52
|
description: Price of the billing plan.
|
|
54
53
|
title: Amount
|
|
55
54
|
type: string
|
|
@@ -5259,7 +5258,7 @@ info:
|
|
|
5259
5258
|
'
|
|
5260
5259
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5261
5260
|
title: OpusDNS API
|
|
5262
|
-
version: 2025-09-13-
|
|
5261
|
+
version: 2025-09-13-065122
|
|
5263
5262
|
x-logo:
|
|
5264
5263
|
altText: OpusDNS API Reference
|
|
5265
5264
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -1232,9 +1232,8 @@ export interface components {
|
|
|
1232
1232
|
/**
|
|
1233
1233
|
* Amount
|
|
1234
1234
|
* @description Price of the billing plan.
|
|
1235
|
-
* @default 0.00
|
|
1236
1235
|
*/
|
|
1237
|
-
amount
|
|
1236
|
+
amount?: string;
|
|
1238
1237
|
/** @description Currency of the billing plan. */
|
|
1239
1238
|
currency?: components["schemas"]["Currency"] | null;
|
|
1240
1239
|
/**
|