@opusdns/api 0.150.0 → 0.151.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 +3 -3
- package/src/openapi.yaml +16 -4
- package/src/schema.d.ts +3 -3
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -11209,7 +11209,7 @@ export const KEY_EMAIL_FORWARD_ALIAS_EMAIL_FORWARD_ALIAS_ID: keyof EmailForwardA
|
|
|
11209
11209
|
* Forward To
|
|
11210
11210
|
*
|
|
11211
11211
|
*
|
|
11212
|
-
* @type {
|
|
11212
|
+
* @type {array}
|
|
11213
11213
|
*
|
|
11214
11214
|
*
|
|
11215
11215
|
* @remarks
|
|
@@ -11286,7 +11286,7 @@ export const KEY_EMAIL_FORWARD_ALIAS_CREATE_ALIAS: keyof EmailForwardAliasCreate
|
|
|
11286
11286
|
* Forward To
|
|
11287
11287
|
*
|
|
11288
11288
|
*
|
|
11289
|
-
* @type {
|
|
11289
|
+
* @type {array}
|
|
11290
11290
|
*
|
|
11291
11291
|
*
|
|
11292
11292
|
* @remarks
|
|
@@ -11337,7 +11337,7 @@ export const KEYS_EMAIL_FORWARD_ALIAS_CREATE = [
|
|
|
11337
11337
|
* Forward To
|
|
11338
11338
|
*
|
|
11339
11339
|
*
|
|
11340
|
-
* @type {
|
|
11340
|
+
* @type {array}
|
|
11341
11341
|
*
|
|
11342
11342
|
*
|
|
11343
11343
|
* @remarks
|
package/src/openapi.yaml
CHANGED
|
@@ -2676,8 +2676,12 @@ components:
|
|
|
2676
2676
|
type: string
|
|
2677
2677
|
x-typeid-prefix: email_forward_alias
|
|
2678
2678
|
forward_to:
|
|
2679
|
+
items:
|
|
2680
|
+
format: email
|
|
2681
|
+
type: string
|
|
2682
|
+
minItems: 1
|
|
2679
2683
|
title: Forward To
|
|
2680
|
-
type:
|
|
2684
|
+
type: array
|
|
2681
2685
|
required:
|
|
2682
2686
|
- alias
|
|
2683
2687
|
- forward_to
|
|
@@ -2690,8 +2694,12 @@ components:
|
|
|
2690
2694
|
title: Alias
|
|
2691
2695
|
type: string
|
|
2692
2696
|
forward_to:
|
|
2697
|
+
items:
|
|
2698
|
+
format: email
|
|
2699
|
+
type: string
|
|
2700
|
+
minItems: 1
|
|
2693
2701
|
title: Forward To
|
|
2694
|
-
type:
|
|
2702
|
+
type: array
|
|
2695
2703
|
required:
|
|
2696
2704
|
- alias
|
|
2697
2705
|
- forward_to
|
|
@@ -2700,8 +2708,12 @@ components:
|
|
|
2700
2708
|
EmailForwardAliasUpdate:
|
|
2701
2709
|
properties:
|
|
2702
2710
|
forward_to:
|
|
2711
|
+
items:
|
|
2712
|
+
format: email
|
|
2713
|
+
type: string
|
|
2714
|
+
minItems: 1
|
|
2703
2715
|
title: Forward To
|
|
2704
|
-
type:
|
|
2716
|
+
type: array
|
|
2705
2717
|
required:
|
|
2706
2718
|
- forward_to
|
|
2707
2719
|
title: EmailForwardAliasUpdate
|
|
@@ -6512,7 +6524,7 @@ info:
|
|
|
6512
6524
|
'
|
|
6513
6525
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6514
6526
|
title: OpusDNS API
|
|
6515
|
-
version: 2026-01-
|
|
6527
|
+
version: 2026-01-12-085937
|
|
6516
6528
|
x-logo:
|
|
6517
6529
|
altText: OpusDNS API Reference
|
|
6518
6530
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3512,19 +3512,19 @@ export interface components {
|
|
|
3512
3512
|
*/
|
|
3513
3513
|
email_forward_alias_id: TypeId<"email_forward_alias">;
|
|
3514
3514
|
/** Forward To */
|
|
3515
|
-
forward_to: string;
|
|
3515
|
+
forward_to: string[];
|
|
3516
3516
|
};
|
|
3517
3517
|
/** EmailForwardAliasCreate */
|
|
3518
3518
|
EmailForwardAliasCreate: {
|
|
3519
3519
|
/** Alias */
|
|
3520
3520
|
alias: string;
|
|
3521
3521
|
/** Forward To */
|
|
3522
|
-
forward_to: string;
|
|
3522
|
+
forward_to: string[];
|
|
3523
3523
|
};
|
|
3524
3524
|
/** EmailForwardAliasUpdate */
|
|
3525
3525
|
EmailForwardAliasUpdate: {
|
|
3526
3526
|
/** Forward To */
|
|
3527
|
-
forward_to: string;
|
|
3527
|
+
forward_to: string[];
|
|
3528
3528
|
};
|
|
3529
3529
|
/** EmailForwardCreate */
|
|
3530
3530
|
EmailForwardCreate: {
|