@opusdns/api 1.171.0 → 1.173.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 +2 -2
- package/src/helpers/constants.ts +4 -2
- package/src/openapi.yaml +2 -1
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"devDependencies": {
|
|
3
|
-
"@opusdns/api-spec-ts-generator": "^1.
|
|
3
|
+
"@opusdns/api-spec-ts-generator": "^1.6.0"
|
|
4
4
|
},
|
|
5
5
|
"name": "@opusdns/api",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.173.0",
|
|
7
7
|
"description": "TypeScript types for the OpusDNS OpenAPI specification",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
package/src/helpers/constants.ts
CHANGED
|
@@ -232,6 +232,7 @@ export const BILLING_MODE_VALUES = [
|
|
|
232
232
|
export const BILLING_TRANSACTION_ACTION = {
|
|
233
233
|
CREATE: "create",
|
|
234
234
|
TRANSFER: "transfer",
|
|
235
|
+
IMPORT: "import",
|
|
235
236
|
RENEW: "renew",
|
|
236
237
|
RESTORE: "restore",
|
|
237
238
|
TRADE: "trade",
|
|
@@ -244,6 +245,7 @@ export const BILLING_TRANSACTION_ACTION = {
|
|
|
244
245
|
export const BILLING_TRANSACTION_ACTION_VALUES = [
|
|
245
246
|
'create',
|
|
246
247
|
'transfer',
|
|
248
|
+
'import',
|
|
247
249
|
'renew',
|
|
248
250
|
'restore',
|
|
249
251
|
'trade',
|
|
@@ -2368,12 +2370,12 @@ export const VERIFICATION_DEADLINE_TYPE_VALUES = [
|
|
|
2368
2370
|
'deletion',
|
|
2369
2371
|
] as const satisfies ReadonlyArray<VerificationDeadlineType>;
|
|
2370
2372
|
|
|
2371
|
-
export const
|
|
2373
|
+
export const VERIFICATION_TYPE_INPUT = {
|
|
2372
2374
|
API: "api",
|
|
2373
2375
|
EMAIL: "email",
|
|
2374
2376
|
} as const satisfies Record<string, VerificationTypeInput>;
|
|
2375
2377
|
|
|
2376
|
-
export const
|
|
2378
|
+
export const VERIFICATION_TYPE_INPUT_VALUES = [
|
|
2377
2379
|
'api',
|
|
2378
2380
|
'email',
|
|
2379
2381
|
] as const satisfies ReadonlyArray<VerificationTypeInput>;
|
package/src/openapi.yaml
CHANGED
|
@@ -403,6 +403,7 @@ components:
|
|
|
403
403
|
enum:
|
|
404
404
|
- create
|
|
405
405
|
- transfer
|
|
406
|
+
- import
|
|
406
407
|
- renew
|
|
407
408
|
- restore
|
|
408
409
|
- trade
|
|
@@ -16732,7 +16733,7 @@ info:
|
|
|
16732
16733
|
\n\n"
|
|
16733
16734
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16734
16735
|
title: OpusDNS API
|
|
16735
|
-
version: 2026-09-12-
|
|
16736
|
+
version: 2026-09-12-211011
|
|
16736
16737
|
x-logo:
|
|
16737
16738
|
altText: OpusDNS API Reference
|
|
16738
16739
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3422,7 +3422,7 @@ export interface components {
|
|
|
3422
3422
|
* BillingTransactionAction
|
|
3423
3423
|
* @enum {string}
|
|
3424
3424
|
*/
|
|
3425
|
-
BillingTransactionAction: "create" | "transfer" | "renew" | "restore" | "trade" | "application" | "service_fee" | "upgrade_fee" | "wallet_top_up";
|
|
3425
|
+
BillingTransactionAction: "create" | "transfer" | "import" | "renew" | "restore" | "trade" | "application" | "service_fee" | "upgrade_fee" | "wallet_top_up";
|
|
3426
3426
|
/**
|
|
3427
3427
|
* BillingTransactionProductType
|
|
3428
3428
|
* @enum {string}
|