@opusdns/api 0.150.0 → 0.152.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 -4
- package/src/openapi.yaml +19 -5
- package/src/schema.d.ts +4 -4
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
|
|
@@ -14386,7 +14386,6 @@ export const KEY_INVOICE_FEES_AMOUNT: keyof Invoice = 'fees_amount';
|
|
|
14386
14386
|
*
|
|
14387
14387
|
* URL to invoice PDF file
|
|
14388
14388
|
*
|
|
14389
|
-
* @type {string}
|
|
14390
14389
|
*
|
|
14391
14390
|
*
|
|
14392
14391
|
* @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
|
|
@@ -3420,9 +3432,11 @@ components:
|
|
|
3420
3432
|
title: Fees Amount
|
|
3421
3433
|
type: string
|
|
3422
3434
|
file_url:
|
|
3435
|
+
anyOf:
|
|
3436
|
+
- type: string
|
|
3437
|
+
- type: 'null'
|
|
3423
3438
|
description: URL to invoice PDF file
|
|
3424
3439
|
title: File Url
|
|
3425
|
-
type: string
|
|
3426
3440
|
invoice_type:
|
|
3427
3441
|
$ref: '#/components/schemas/InvoiceResponseType'
|
|
3428
3442
|
description: Invoice type
|
|
@@ -6512,7 +6526,7 @@ info:
|
|
|
6512
6526
|
'
|
|
6513
6527
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6514
6528
|
title: OpusDNS API
|
|
6515
|
-
version: 2026-01-
|
|
6529
|
+
version: 2026-01-12-155420
|
|
6516
6530
|
x-logo:
|
|
6517
6531
|
altText: OpusDNS API Reference
|
|
6518
6532
|
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: {
|
|
@@ -4016,7 +4016,7 @@ export interface components {
|
|
|
4016
4016
|
* File Url
|
|
4017
4017
|
* @description URL to invoice PDF file
|
|
4018
4018
|
*/
|
|
4019
|
-
file_url: string;
|
|
4019
|
+
file_url: string | null;
|
|
4020
4020
|
/** @description Invoice type */
|
|
4021
4021
|
invoice_type: components["schemas"]["InvoiceResponseType"];
|
|
4022
4022
|
/**
|