@opusdns/api 0.141.0 → 0.143.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 +0 -1
- package/src/openapi.yaml +4 -5
- package/src/schema.d.ts +4 -13
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -2244,9 +2244,11 @@ components:
|
|
|
2244
2244
|
title: Auto Renew
|
|
2245
2245
|
type: boolean
|
|
2246
2246
|
reason:
|
|
2247
|
+
anyOf:
|
|
2248
|
+
- type: string
|
|
2249
|
+
- type: 'null'
|
|
2247
2250
|
description: Reason for restoring the domain
|
|
2248
2251
|
title: Reason
|
|
2249
|
-
type: string
|
|
2250
2252
|
required:
|
|
2251
2253
|
- reason
|
|
2252
2254
|
title: DomainRestoreRequest
|
|
@@ -2658,7 +2660,6 @@ components:
|
|
|
2658
2660
|
type: string
|
|
2659
2661
|
x-typeid-prefix: email_forward_alias
|
|
2660
2662
|
forward_to:
|
|
2661
|
-
format: email
|
|
2662
2663
|
title: Forward To
|
|
2663
2664
|
type: string
|
|
2664
2665
|
required:
|
|
@@ -2673,7 +2674,6 @@ components:
|
|
|
2673
2674
|
title: Alias
|
|
2674
2675
|
type: string
|
|
2675
2676
|
forward_to:
|
|
2676
|
-
format: email
|
|
2677
2677
|
title: Forward To
|
|
2678
2678
|
type: string
|
|
2679
2679
|
required:
|
|
@@ -2684,7 +2684,6 @@ components:
|
|
|
2684
2684
|
EmailForwardAliasUpdate:
|
|
2685
2685
|
properties:
|
|
2686
2686
|
forward_to:
|
|
2687
|
-
format: email
|
|
2688
2687
|
title: Forward To
|
|
2689
2688
|
type: string
|
|
2690
2689
|
required:
|
|
@@ -6487,7 +6486,7 @@ info:
|
|
|
6487
6486
|
'
|
|
6488
6487
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6489
6488
|
title: OpusDNS API
|
|
6490
|
-
version: 2026-01-
|
|
6489
|
+
version: 2026-01-08-132858
|
|
6491
6490
|
x-logo:
|
|
6492
6491
|
altText: OpusDNS API Reference
|
|
6493
6492
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3228,7 +3228,7 @@ export interface components {
|
|
|
3228
3228
|
* Reason
|
|
3229
3229
|
* @description Reason for restoring the domain
|
|
3230
3230
|
*/
|
|
3231
|
-
reason: string;
|
|
3231
|
+
reason: string | null;
|
|
3232
3232
|
};
|
|
3233
3233
|
/** DomainRestoreResponse */
|
|
3234
3234
|
DomainRestoreResponse: {
|
|
@@ -3501,28 +3501,19 @@ export interface components {
|
|
|
3501
3501
|
* @example email_forward_alias_01h45ytscbebyvny4gc8cr8ma2
|
|
3502
3502
|
*/
|
|
3503
3503
|
email_forward_alias_id: TypeId<"email_forward_alias">;
|
|
3504
|
-
/**
|
|
3505
|
-
* Forward To
|
|
3506
|
-
* Format: email
|
|
3507
|
-
*/
|
|
3504
|
+
/** Forward To */
|
|
3508
3505
|
forward_to: string;
|
|
3509
3506
|
};
|
|
3510
3507
|
/** EmailForwardAliasCreate */
|
|
3511
3508
|
EmailForwardAliasCreate: {
|
|
3512
3509
|
/** Alias */
|
|
3513
3510
|
alias: string;
|
|
3514
|
-
/**
|
|
3515
|
-
* Forward To
|
|
3516
|
-
* Format: email
|
|
3517
|
-
*/
|
|
3511
|
+
/** Forward To */
|
|
3518
3512
|
forward_to: string;
|
|
3519
3513
|
};
|
|
3520
3514
|
/** EmailForwardAliasUpdate */
|
|
3521
3515
|
EmailForwardAliasUpdate: {
|
|
3522
|
-
/**
|
|
3523
|
-
* Forward To
|
|
3524
|
-
* Format: email
|
|
3525
|
-
*/
|
|
3516
|
+
/** Forward To */
|
|
3526
3517
|
forward_to: string;
|
|
3527
3518
|
};
|
|
3528
3519
|
/** EmailForwardCreate */
|