@opusdns/api 0.39.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/helpers/keys.ts +1 -1
- package/src/openapi.yaml +2 -3
- package/src/schema.d.ts +2 -3
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -14611,7 +14611,7 @@ export const KEYS_PERMISSION_SET = [
|
|
|
14611
14611
|
*
|
|
14612
14612
|
* Base price
|
|
14613
14613
|
*
|
|
14614
|
-
* @type {
|
|
14614
|
+
* @type {string}
|
|
14615
14615
|
*
|
|
14616
14616
|
*
|
|
14617
14617
|
* @remarks
|
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
|
|
@@ -3758,7 +3757,7 @@ components:
|
|
|
3758
3757
|
amount:
|
|
3759
3758
|
description: Base price
|
|
3760
3759
|
title: Amount
|
|
3761
|
-
type:
|
|
3760
|
+
type: string
|
|
3762
3761
|
currency:
|
|
3763
3762
|
description: Currency code
|
|
3764
3763
|
title: Currency
|
|
@@ -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-
|
|
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
|
/**
|
|
@@ -3678,7 +3677,7 @@ export interface components {
|
|
|
3678
3677
|
* Amount
|
|
3679
3678
|
* @description Base price
|
|
3680
3679
|
*/
|
|
3681
|
-
amount:
|
|
3680
|
+
amount: string;
|
|
3682
3681
|
/**
|
|
3683
3682
|
* Currency
|
|
3684
3683
|
* @description Currency code
|