@opusdns/api 0.74.0 → 0.75.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 +3 -1
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -2791,6 +2791,7 @@ export const VERIFICATION_TYPE_VALUES = [
|
|
|
2791
2791
|
export const WALLET_CREDIT_RESPONSE_STATUS = {
|
|
2792
2792
|
SUCCESS: "success",
|
|
2793
2793
|
FAILED: "failed",
|
|
2794
|
+
PENDING: "pending",
|
|
2794
2795
|
} as const satisfies Record<string, WalletCreditResponseStatus>;
|
|
2795
2796
|
|
|
2796
2797
|
/**
|
|
@@ -2816,7 +2817,8 @@ export const WALLET_CREDIT_RESPONSE_STATUS = {
|
|
|
2816
2817
|
*/
|
|
2817
2818
|
export const WALLET_CREDIT_RESPONSE_STATUS_VALUES = [
|
|
2818
2819
|
'success',
|
|
2819
|
-
'failed'
|
|
2820
|
+
'failed',
|
|
2821
|
+
'pending'
|
|
2820
2822
|
] as const satisfies [string, ...string[]] | WalletCreditResponseStatus[];
|
|
2821
2823
|
|
|
2822
2824
|
/**
|
package/src/openapi.yaml
CHANGED
|
@@ -5077,6 +5077,7 @@ components:
|
|
|
5077
5077
|
enum:
|
|
5078
5078
|
- success
|
|
5079
5079
|
- failed
|
|
5080
|
+
- pending
|
|
5080
5081
|
title: WalletCreditResponseStatus
|
|
5081
5082
|
type: string
|
|
5082
5083
|
WalletCreditResponseWithBalance:
|
|
@@ -5213,7 +5214,7 @@ info:
|
|
|
5213
5214
|
'
|
|
5214
5215
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
5215
5216
|
title: OpusDNS API
|
|
5216
|
-
version: 2025-09-
|
|
5217
|
+
version: 2025-09-30-073823
|
|
5217
5218
|
x-logo:
|
|
5218
5219
|
altText: OpusDNS API Reference
|
|
5219
5220
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -4635,7 +4635,7 @@ export interface components {
|
|
|
4635
4635
|
* WalletCreditResponseStatus
|
|
4636
4636
|
* @enum {string}
|
|
4637
4637
|
*/
|
|
4638
|
-
WalletCreditResponseStatus: "success" | "failed";
|
|
4638
|
+
WalletCreditResponseStatus: "success" | "failed" | "pending";
|
|
4639
4639
|
/** WalletCreditResponseWithBalance */
|
|
4640
4640
|
WalletCreditResponseWithBalance: {
|
|
4641
4641
|
/**
|