@opusdns/api 0.240.0 → 0.241.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 +104 -445
- package/src/helpers/schemas.d.ts +40 -8
- package/src/openapi.yaml +178 -7
- package/src/schema.d.ts +119 -6
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -111,7 +111,6 @@ import { DomainCreateBulkInstance } from './schemas';
|
|
|
111
111
|
import { DomainCreateBulkPayload } from './schemas';
|
|
112
112
|
import { DomainCreateBulkTemplate } from './schemas';
|
|
113
113
|
import { DomainCreateCommand } from './schemas';
|
|
114
|
-
import { DomainCreatePayloadData } from './schemas';
|
|
115
114
|
import { DomainCreateWorkerPayload } from './schemas';
|
|
116
115
|
import { DomainDnssecDataCreate } from './schemas';
|
|
117
116
|
import { DomainDnssecData } from './schemas';
|
|
@@ -157,7 +156,6 @@ import { DomainTransferBulkPayload } from './schemas';
|
|
|
157
156
|
import { DomainTransferBulkTemplate } from './schemas';
|
|
158
157
|
import { DomainTransferCommand } from './schemas';
|
|
159
158
|
import { DomainTransferIn } from './schemas';
|
|
160
|
-
import { DomainTransferPayloadData } from './schemas';
|
|
161
159
|
import { DomainTransferWorkerPayload } from './schemas';
|
|
162
160
|
import { DomainTransitRequest } from './schemas';
|
|
163
161
|
import { DomainTransit } from './schemas';
|
|
@@ -10699,6 +10697,31 @@ export const KEY_DOMAIN_CREATE_CONTACTS: keyof DomainCreate = 'contacts';
|
|
|
10699
10697
|
* @see {@link KEYS_DOMAIN_CREATE} - Array of all keys for this type
|
|
10700
10698
|
*/
|
|
10701
10699
|
export const KEY_DOMAIN_CREATE_CREATE_ZONE: keyof DomainCreate = 'create_zone';
|
|
10700
|
+
/**
|
|
10701
|
+
* Expected Price
|
|
10702
|
+
*
|
|
10703
|
+
* Expected price for premium domain confirmation
|
|
10704
|
+
*
|
|
10705
|
+
*
|
|
10706
|
+
*
|
|
10707
|
+
* @remarks
|
|
10708
|
+
* This key constant provides type-safe access to the `expected_price` property of DomainCreate objects.
|
|
10709
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
10710
|
+
*
|
|
10711
|
+
* @example
|
|
10712
|
+
* ```typescript
|
|
10713
|
+
* // Direct property access
|
|
10714
|
+
* const value = domaincreate[KEY_DOMAIN_CREATE_EXPECTED_PRICE];
|
|
10715
|
+
*
|
|
10716
|
+
* // Dynamic property access
|
|
10717
|
+
* const propertyName = KEY_DOMAIN_CREATE_EXPECTED_PRICE;
|
|
10718
|
+
* const value = domaincreate[propertyName];
|
|
10719
|
+
* ```
|
|
10720
|
+
*
|
|
10721
|
+
* @see {@link DomainCreate} - The TypeScript type definition
|
|
10722
|
+
* @see {@link KEYS_DOMAIN_CREATE} - Array of all keys for this type
|
|
10723
|
+
*/
|
|
10724
|
+
export const KEY_DOMAIN_CREATE_EXPECTED_PRICE: keyof DomainCreate = 'expected_price';
|
|
10702
10725
|
/**
|
|
10703
10726
|
* Name
|
|
10704
10727
|
*
|
|
@@ -10825,6 +10848,7 @@ export const KEYS_DOMAIN_CREATE = [
|
|
|
10825
10848
|
KEY_DOMAIN_CREATE_AUTH_CODE,
|
|
10826
10849
|
KEY_DOMAIN_CREATE_CONTACTS,
|
|
10827
10850
|
KEY_DOMAIN_CREATE_CREATE_ZONE,
|
|
10851
|
+
KEY_DOMAIN_CREATE_EXPECTED_PRICE,
|
|
10828
10852
|
KEY_DOMAIN_CREATE_NAME,
|
|
10829
10853
|
KEY_DOMAIN_CREATE_NAMESERVERS,
|
|
10830
10854
|
KEY_DOMAIN_CREATE_PERIOD,
|
|
@@ -11554,214 +11578,6 @@ export const KEYS_DOMAIN_CREATE_COMMAND = [
|
|
|
11554
11578
|
KEY_DOMAIN_CREATE_COMMAND_VERSION,
|
|
11555
11579
|
] as const satisfies (keyof DomainCreateCommand)[];
|
|
11556
11580
|
|
|
11557
|
-
/**
|
|
11558
|
-
* Auth Code
|
|
11559
|
-
*
|
|
11560
|
-
* The auth code used for the domain
|
|
11561
|
-
*
|
|
11562
|
-
*
|
|
11563
|
-
*
|
|
11564
|
-
* @remarks
|
|
11565
|
-
* This key constant provides type-safe access to the `auth_code` property of DomainCreatePayloadData objects.
|
|
11566
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11567
|
-
*
|
|
11568
|
-
* @example
|
|
11569
|
-
* ```typescript
|
|
11570
|
-
* // Direct property access
|
|
11571
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_AUTH_CODE];
|
|
11572
|
-
*
|
|
11573
|
-
* // Dynamic property access
|
|
11574
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_AUTH_CODE;
|
|
11575
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11576
|
-
* ```
|
|
11577
|
-
*
|
|
11578
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11579
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11580
|
-
*/
|
|
11581
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_AUTH_CODE: keyof DomainCreatePayloadData = 'auth_code';
|
|
11582
|
-
/**
|
|
11583
|
-
* Contacts
|
|
11584
|
-
*
|
|
11585
|
-
* The contacts of the domain
|
|
11586
|
-
*
|
|
11587
|
-
*
|
|
11588
|
-
*
|
|
11589
|
-
* @remarks
|
|
11590
|
-
* This key constant provides type-safe access to the `contacts` property of DomainCreatePayloadData objects.
|
|
11591
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11592
|
-
*
|
|
11593
|
-
* @example
|
|
11594
|
-
* ```typescript
|
|
11595
|
-
* // Direct property access
|
|
11596
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_CONTACTS];
|
|
11597
|
-
*
|
|
11598
|
-
* // Dynamic property access
|
|
11599
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_CONTACTS;
|
|
11600
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11601
|
-
* ```
|
|
11602
|
-
*
|
|
11603
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11604
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11605
|
-
*/
|
|
11606
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_CONTACTS: keyof DomainCreatePayloadData = 'contacts';
|
|
11607
|
-
/**
|
|
11608
|
-
* Create Zone
|
|
11609
|
-
*
|
|
11610
|
-
* Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
11611
|
-
*
|
|
11612
|
-
* @type {boolean}
|
|
11613
|
-
*
|
|
11614
|
-
*
|
|
11615
|
-
* @remarks
|
|
11616
|
-
* This key constant provides type-safe access to the `create_zone` property of DomainCreatePayloadData objects.
|
|
11617
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11618
|
-
*
|
|
11619
|
-
* @example
|
|
11620
|
-
* ```typescript
|
|
11621
|
-
* // Direct property access
|
|
11622
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_CREATE_ZONE];
|
|
11623
|
-
*
|
|
11624
|
-
* // Dynamic property access
|
|
11625
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_CREATE_ZONE;
|
|
11626
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11627
|
-
* ```
|
|
11628
|
-
*
|
|
11629
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11630
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11631
|
-
*/
|
|
11632
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_CREATE_ZONE: keyof DomainCreatePayloadData = 'create_zone';
|
|
11633
|
-
/**
|
|
11634
|
-
* Name
|
|
11635
|
-
*
|
|
11636
|
-
* The domain to be created
|
|
11637
|
-
*
|
|
11638
|
-
* @type {string}
|
|
11639
|
-
*
|
|
11640
|
-
*
|
|
11641
|
-
* @remarks
|
|
11642
|
-
* This key constant provides type-safe access to the `name` property of DomainCreatePayloadData objects.
|
|
11643
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11644
|
-
*
|
|
11645
|
-
* @example
|
|
11646
|
-
* ```typescript
|
|
11647
|
-
* // Direct property access
|
|
11648
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAME];
|
|
11649
|
-
*
|
|
11650
|
-
* // Dynamic property access
|
|
11651
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAME;
|
|
11652
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11653
|
-
* ```
|
|
11654
|
-
*
|
|
11655
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11656
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11657
|
-
*/
|
|
11658
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAME: keyof DomainCreatePayloadData = 'name';
|
|
11659
|
-
/**
|
|
11660
|
-
* Nameservers
|
|
11661
|
-
*
|
|
11662
|
-
* The name servers for the domain
|
|
11663
|
-
*
|
|
11664
|
-
*
|
|
11665
|
-
*
|
|
11666
|
-
* @remarks
|
|
11667
|
-
* This key constant provides type-safe access to the `nameservers` property of DomainCreatePayloadData objects.
|
|
11668
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11669
|
-
*
|
|
11670
|
-
* @example
|
|
11671
|
-
* ```typescript
|
|
11672
|
-
* // Direct property access
|
|
11673
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAMESERVERS];
|
|
11674
|
-
*
|
|
11675
|
-
* // Dynamic property access
|
|
11676
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAMESERVERS;
|
|
11677
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11678
|
-
* ```
|
|
11679
|
-
*
|
|
11680
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11681
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11682
|
-
*/
|
|
11683
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAMESERVERS: keyof DomainCreatePayloadData = 'nameservers';
|
|
11684
|
-
/**
|
|
11685
|
-
* period property
|
|
11686
|
-
*
|
|
11687
|
-
* The registration period of the domain
|
|
11688
|
-
*
|
|
11689
|
-
*
|
|
11690
|
-
*
|
|
11691
|
-
* @remarks
|
|
11692
|
-
* This key constant provides type-safe access to the `period` property of DomainCreatePayloadData objects.
|
|
11693
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11694
|
-
*
|
|
11695
|
-
* @example
|
|
11696
|
-
* ```typescript
|
|
11697
|
-
* // Direct property access
|
|
11698
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_PERIOD];
|
|
11699
|
-
*
|
|
11700
|
-
* // Dynamic property access
|
|
11701
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_PERIOD;
|
|
11702
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11703
|
-
* ```
|
|
11704
|
-
*
|
|
11705
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11706
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11707
|
-
*/
|
|
11708
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_PERIOD: keyof DomainCreatePayloadData = 'period';
|
|
11709
|
-
/**
|
|
11710
|
-
* renewal_mode property
|
|
11711
|
-
*
|
|
11712
|
-
* The renewal mode of the domain
|
|
11713
|
-
*
|
|
11714
|
-
*
|
|
11715
|
-
*
|
|
11716
|
-
* @remarks
|
|
11717
|
-
* This key constant provides type-safe access to the `renewal_mode` property of DomainCreatePayloadData objects.
|
|
11718
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
11719
|
-
*
|
|
11720
|
-
* @example
|
|
11721
|
-
* ```typescript
|
|
11722
|
-
* // Direct property access
|
|
11723
|
-
* const value = domaincreatepayloaddata[KEY_DOMAIN_CREATE_PAYLOAD_DATA_RENEWAL_MODE];
|
|
11724
|
-
*
|
|
11725
|
-
* // Dynamic property access
|
|
11726
|
-
* const propertyName = KEY_DOMAIN_CREATE_PAYLOAD_DATA_RENEWAL_MODE;
|
|
11727
|
-
* const value = domaincreatepayloaddata[propertyName];
|
|
11728
|
-
* ```
|
|
11729
|
-
*
|
|
11730
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11731
|
-
* @see {@link KEYS_DOMAIN_CREATE_PAYLOAD_DATA} - Array of all keys for this type
|
|
11732
|
-
*/
|
|
11733
|
-
export const KEY_DOMAIN_CREATE_PAYLOAD_DATA_RENEWAL_MODE: keyof DomainCreatePayloadData = 'renewal_mode';
|
|
11734
|
-
|
|
11735
|
-
/**
|
|
11736
|
-
* Array of all DomainCreatePayloadData property keys
|
|
11737
|
-
*
|
|
11738
|
-
* @remarks
|
|
11739
|
-
* This constant provides a readonly array containing all valid property keys for DomainCreatePayloadData objects.
|
|
11740
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
11741
|
-
*
|
|
11742
|
-
* @example
|
|
11743
|
-
* ```typescript
|
|
11744
|
-
* // Iterating through all keys
|
|
11745
|
-
* for (const key of KEYS_DOMAIN_CREATE_PAYLOAD_DATA) {
|
|
11746
|
-
* console.log(`Property: ${key}, Value: ${domaincreatepayloaddata[key]}`);
|
|
11747
|
-
* }
|
|
11748
|
-
*
|
|
11749
|
-
* // Validation
|
|
11750
|
-
* const isValidKey = KEYS_DOMAIN_CREATE_PAYLOAD_DATA.includes(someKey);
|
|
11751
|
-
* ```
|
|
11752
|
-
*
|
|
11753
|
-
* @see {@link DomainCreatePayloadData} - The TypeScript type definition
|
|
11754
|
-
*/
|
|
11755
|
-
export const KEYS_DOMAIN_CREATE_PAYLOAD_DATA = [
|
|
11756
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_AUTH_CODE,
|
|
11757
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_CONTACTS,
|
|
11758
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_CREATE_ZONE,
|
|
11759
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAME,
|
|
11760
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_NAMESERVERS,
|
|
11761
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_PERIOD,
|
|
11762
|
-
KEY_DOMAIN_CREATE_PAYLOAD_DATA_RENEWAL_MODE,
|
|
11763
|
-
] as const satisfies (keyof DomainCreatePayloadData)[];
|
|
11764
|
-
|
|
11765
11581
|
/**
|
|
11766
11582
|
* domain property
|
|
11767
11583
|
*
|
|
@@ -14640,6 +14456,31 @@ export const KEYS_DOMAIN_PERIOD = [
|
|
|
14640
14456
|
* @see {@link KEYS_DOMAIN_RENEW_REQUEST} - Array of all keys for this type
|
|
14641
14457
|
*/
|
|
14642
14458
|
export const KEY_DOMAIN_RENEW_REQUEST_CURRENT_EXPIRY_DATE: keyof DomainRenewRequest = 'current_expiry_date';
|
|
14459
|
+
/**
|
|
14460
|
+
* Expected Price
|
|
14461
|
+
*
|
|
14462
|
+
* Expected price for premium domain confirmation
|
|
14463
|
+
*
|
|
14464
|
+
*
|
|
14465
|
+
*
|
|
14466
|
+
* @remarks
|
|
14467
|
+
* This key constant provides type-safe access to the `expected_price` property of DomainRenewRequest objects.
|
|
14468
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
14469
|
+
*
|
|
14470
|
+
* @example
|
|
14471
|
+
* ```typescript
|
|
14472
|
+
* // Direct property access
|
|
14473
|
+
* const value = domainrenewrequest[KEY_DOMAIN_RENEW_REQUEST_EXPECTED_PRICE];
|
|
14474
|
+
*
|
|
14475
|
+
* // Dynamic property access
|
|
14476
|
+
* const propertyName = KEY_DOMAIN_RENEW_REQUEST_EXPECTED_PRICE;
|
|
14477
|
+
* const value = domainrenewrequest[propertyName];
|
|
14478
|
+
* ```
|
|
14479
|
+
*
|
|
14480
|
+
* @see {@link DomainRenewRequest} - The TypeScript type definition
|
|
14481
|
+
* @see {@link KEYS_DOMAIN_RENEW_REQUEST} - Array of all keys for this type
|
|
14482
|
+
*/
|
|
14483
|
+
export const KEY_DOMAIN_RENEW_REQUEST_EXPECTED_PRICE: keyof DomainRenewRequest = 'expected_price';
|
|
14643
14484
|
/**
|
|
14644
14485
|
* period property
|
|
14645
14486
|
*
|
|
@@ -14688,6 +14529,7 @@ export const KEY_DOMAIN_RENEW_REQUEST_PERIOD: keyof DomainRenewRequest = 'period
|
|
|
14688
14529
|
*/
|
|
14689
14530
|
export const KEYS_DOMAIN_RENEW_REQUEST = [
|
|
14690
14531
|
KEY_DOMAIN_RENEW_REQUEST_CURRENT_EXPIRY_DATE,
|
|
14532
|
+
KEY_DOMAIN_RENEW_REQUEST_EXPECTED_PRICE,
|
|
14691
14533
|
KEY_DOMAIN_RENEW_REQUEST_PERIOD,
|
|
14692
14534
|
] as const satisfies (keyof DomainRenewRequest)[];
|
|
14693
14535
|
|
|
@@ -15429,6 +15271,31 @@ export const KEYS_DOMAIN = [
|
|
|
15429
15271
|
* @see {@link KEYS_DOMAIN_RESTORE_REQUEST} - Array of all keys for this type
|
|
15430
15272
|
*/
|
|
15431
15273
|
export const KEY_DOMAIN_RESTORE_REQUEST_ADDITIONAL_INFO: keyof DomainRestoreRequest = 'additional_info';
|
|
15274
|
+
/**
|
|
15275
|
+
* Expected Price
|
|
15276
|
+
*
|
|
15277
|
+
* Expected price for premium domain confirmation
|
|
15278
|
+
*
|
|
15279
|
+
*
|
|
15280
|
+
*
|
|
15281
|
+
* @remarks
|
|
15282
|
+
* This key constant provides type-safe access to the `expected_price` property of DomainRestoreRequest objects.
|
|
15283
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
15284
|
+
*
|
|
15285
|
+
* @example
|
|
15286
|
+
* ```typescript
|
|
15287
|
+
* // Direct property access
|
|
15288
|
+
* const value = domainrestorerequest[KEY_DOMAIN_RESTORE_REQUEST_EXPECTED_PRICE];
|
|
15289
|
+
*
|
|
15290
|
+
* // Dynamic property access
|
|
15291
|
+
* const propertyName = KEY_DOMAIN_RESTORE_REQUEST_EXPECTED_PRICE;
|
|
15292
|
+
* const value = domainrestorerequest[propertyName];
|
|
15293
|
+
* ```
|
|
15294
|
+
*
|
|
15295
|
+
* @see {@link DomainRestoreRequest} - The TypeScript type definition
|
|
15296
|
+
* @see {@link KEYS_DOMAIN_RESTORE_REQUEST} - Array of all keys for this type
|
|
15297
|
+
*/
|
|
15298
|
+
export const KEY_DOMAIN_RESTORE_REQUEST_EXPECTED_PRICE: keyof DomainRestoreRequest = 'expected_price';
|
|
15432
15299
|
/**
|
|
15433
15300
|
* Reason
|
|
15434
15301
|
*
|
|
@@ -15477,6 +15344,7 @@ export const KEY_DOMAIN_RESTORE_REQUEST_REASON: keyof DomainRestoreRequest = 're
|
|
|
15477
15344
|
*/
|
|
15478
15345
|
export const KEYS_DOMAIN_RESTORE_REQUEST = [
|
|
15479
15346
|
KEY_DOMAIN_RESTORE_REQUEST_ADDITIONAL_INFO,
|
|
15347
|
+
KEY_DOMAIN_RESTORE_REQUEST_EXPECTED_PRICE,
|
|
15480
15348
|
KEY_DOMAIN_RESTORE_REQUEST_REASON,
|
|
15481
15349
|
] as const satisfies (keyof DomainRestoreRequest)[];
|
|
15482
15350
|
|
|
@@ -17178,6 +17046,31 @@ export const KEY_DOMAIN_TRANSFER_IN_CONTACTS: keyof DomainTransferIn = 'contacts
|
|
|
17178
17046
|
* @see {@link KEYS_DOMAIN_TRANSFER_IN} - Array of all keys for this type
|
|
17179
17047
|
*/
|
|
17180
17048
|
export const KEY_DOMAIN_TRANSFER_IN_CREATE_ZONE: keyof DomainTransferIn = 'create_zone';
|
|
17049
|
+
/**
|
|
17050
|
+
* Expected Price
|
|
17051
|
+
*
|
|
17052
|
+
* Expected price for premium domain confirmation
|
|
17053
|
+
*
|
|
17054
|
+
*
|
|
17055
|
+
*
|
|
17056
|
+
* @remarks
|
|
17057
|
+
* This key constant provides type-safe access to the `expected_price` property of DomainTransferIn objects.
|
|
17058
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17059
|
+
*
|
|
17060
|
+
* @example
|
|
17061
|
+
* ```typescript
|
|
17062
|
+
* // Direct property access
|
|
17063
|
+
* const value = domaintransferin[KEY_DOMAIN_TRANSFER_IN_EXPECTED_PRICE];
|
|
17064
|
+
*
|
|
17065
|
+
* // Dynamic property access
|
|
17066
|
+
* const propertyName = KEY_DOMAIN_TRANSFER_IN_EXPECTED_PRICE;
|
|
17067
|
+
* const value = domaintransferin[propertyName];
|
|
17068
|
+
* ```
|
|
17069
|
+
*
|
|
17070
|
+
* @see {@link DomainTransferIn} - The TypeScript type definition
|
|
17071
|
+
* @see {@link KEYS_DOMAIN_TRANSFER_IN} - Array of all keys for this type
|
|
17072
|
+
*/
|
|
17073
|
+
export const KEY_DOMAIN_TRANSFER_IN_EXPECTED_PRICE: keyof DomainTransferIn = 'expected_price';
|
|
17181
17074
|
/**
|
|
17182
17075
|
* Name
|
|
17183
17076
|
*
|
|
@@ -17305,247 +17198,13 @@ export const KEYS_DOMAIN_TRANSFER_IN = [
|
|
|
17305
17198
|
KEY_DOMAIN_TRANSFER_IN_AUTH_CODE,
|
|
17306
17199
|
KEY_DOMAIN_TRANSFER_IN_CONTACTS,
|
|
17307
17200
|
KEY_DOMAIN_TRANSFER_IN_CREATE_ZONE,
|
|
17201
|
+
KEY_DOMAIN_TRANSFER_IN_EXPECTED_PRICE,
|
|
17308
17202
|
KEY_DOMAIN_TRANSFER_IN_NAME,
|
|
17309
17203
|
KEY_DOMAIN_TRANSFER_IN_NAMESERVERS,
|
|
17310
17204
|
KEY_DOMAIN_TRANSFER_IN_PERIOD,
|
|
17311
17205
|
KEY_DOMAIN_TRANSFER_IN_RENEWAL_MODE,
|
|
17312
17206
|
] as const satisfies (keyof DomainTransferIn)[];
|
|
17313
17207
|
|
|
17314
|
-
/**
|
|
17315
|
-
* Attributes
|
|
17316
|
-
*
|
|
17317
|
-
* Additional attributes of the domain
|
|
17318
|
-
*
|
|
17319
|
-
*
|
|
17320
|
-
*
|
|
17321
|
-
* @remarks
|
|
17322
|
-
* This key constant provides type-safe access to the `attributes` property of DomainTransferPayloadData objects.
|
|
17323
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17324
|
-
*
|
|
17325
|
-
* @example
|
|
17326
|
-
* ```typescript
|
|
17327
|
-
* // Direct property access
|
|
17328
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_ATTRIBUTES];
|
|
17329
|
-
*
|
|
17330
|
-
* // Dynamic property access
|
|
17331
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_ATTRIBUTES;
|
|
17332
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17333
|
-
* ```
|
|
17334
|
-
*
|
|
17335
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17336
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17337
|
-
*/
|
|
17338
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_ATTRIBUTES: keyof DomainTransferPayloadData = 'attributes';
|
|
17339
|
-
/**
|
|
17340
|
-
* Auth Code
|
|
17341
|
-
*
|
|
17342
|
-
* The auth code for the domain
|
|
17343
|
-
*
|
|
17344
|
-
* @type {string}
|
|
17345
|
-
*
|
|
17346
|
-
*
|
|
17347
|
-
* @remarks
|
|
17348
|
-
* This key constant provides type-safe access to the `auth_code` property of DomainTransferPayloadData objects.
|
|
17349
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17350
|
-
*
|
|
17351
|
-
* @example
|
|
17352
|
-
* ```typescript
|
|
17353
|
-
* // Direct property access
|
|
17354
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_AUTH_CODE];
|
|
17355
|
-
*
|
|
17356
|
-
* // Dynamic property access
|
|
17357
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_AUTH_CODE;
|
|
17358
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17359
|
-
* ```
|
|
17360
|
-
*
|
|
17361
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17362
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17363
|
-
*/
|
|
17364
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_AUTH_CODE: keyof DomainTransferPayloadData = 'auth_code';
|
|
17365
|
-
/**
|
|
17366
|
-
* Contacts
|
|
17367
|
-
*
|
|
17368
|
-
* The contacts of the domain
|
|
17369
|
-
*
|
|
17370
|
-
*
|
|
17371
|
-
*
|
|
17372
|
-
* @remarks
|
|
17373
|
-
* This key constant provides type-safe access to the `contacts` property of DomainTransferPayloadData objects.
|
|
17374
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17375
|
-
*
|
|
17376
|
-
* @example
|
|
17377
|
-
* ```typescript
|
|
17378
|
-
* // Direct property access
|
|
17379
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CONTACTS];
|
|
17380
|
-
*
|
|
17381
|
-
* // Dynamic property access
|
|
17382
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CONTACTS;
|
|
17383
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17384
|
-
* ```
|
|
17385
|
-
*
|
|
17386
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17387
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17388
|
-
*/
|
|
17389
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CONTACTS: keyof DomainTransferPayloadData = 'contacts';
|
|
17390
|
-
/**
|
|
17391
|
-
* Create Zone
|
|
17392
|
-
*
|
|
17393
|
-
* Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
17394
|
-
*
|
|
17395
|
-
* @type {boolean}
|
|
17396
|
-
*
|
|
17397
|
-
*
|
|
17398
|
-
* @remarks
|
|
17399
|
-
* This key constant provides type-safe access to the `create_zone` property of DomainTransferPayloadData objects.
|
|
17400
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17401
|
-
*
|
|
17402
|
-
* @example
|
|
17403
|
-
* ```typescript
|
|
17404
|
-
* // Direct property access
|
|
17405
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CREATE_ZONE];
|
|
17406
|
-
*
|
|
17407
|
-
* // Dynamic property access
|
|
17408
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CREATE_ZONE;
|
|
17409
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17410
|
-
* ```
|
|
17411
|
-
*
|
|
17412
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17413
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17414
|
-
*/
|
|
17415
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CREATE_ZONE: keyof DomainTransferPayloadData = 'create_zone';
|
|
17416
|
-
/**
|
|
17417
|
-
* Name
|
|
17418
|
-
*
|
|
17419
|
-
* The domain to be created
|
|
17420
|
-
*
|
|
17421
|
-
* @type {string}
|
|
17422
|
-
*
|
|
17423
|
-
*
|
|
17424
|
-
* @remarks
|
|
17425
|
-
* This key constant provides type-safe access to the `name` property of DomainTransferPayloadData objects.
|
|
17426
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17427
|
-
*
|
|
17428
|
-
* @example
|
|
17429
|
-
* ```typescript
|
|
17430
|
-
* // Direct property access
|
|
17431
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAME];
|
|
17432
|
-
*
|
|
17433
|
-
* // Dynamic property access
|
|
17434
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAME;
|
|
17435
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17436
|
-
* ```
|
|
17437
|
-
*
|
|
17438
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17439
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17440
|
-
*/
|
|
17441
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAME: keyof DomainTransferPayloadData = 'name';
|
|
17442
|
-
/**
|
|
17443
|
-
* Nameservers
|
|
17444
|
-
*
|
|
17445
|
-
* The name servers for the domain
|
|
17446
|
-
*
|
|
17447
|
-
*
|
|
17448
|
-
*
|
|
17449
|
-
* @remarks
|
|
17450
|
-
* This key constant provides type-safe access to the `nameservers` property of DomainTransferPayloadData objects.
|
|
17451
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17452
|
-
*
|
|
17453
|
-
* @example
|
|
17454
|
-
* ```typescript
|
|
17455
|
-
* // Direct property access
|
|
17456
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAMESERVERS];
|
|
17457
|
-
*
|
|
17458
|
-
* // Dynamic property access
|
|
17459
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAMESERVERS;
|
|
17460
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17461
|
-
* ```
|
|
17462
|
-
*
|
|
17463
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17464
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17465
|
-
*/
|
|
17466
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAMESERVERS: keyof DomainTransferPayloadData = 'nameservers';
|
|
17467
|
-
/**
|
|
17468
|
-
* period property
|
|
17469
|
-
*
|
|
17470
|
-
* Additional registration period to add to the domain upon transfer completion. If omitted, the registry default policy will be applied.
|
|
17471
|
-
*
|
|
17472
|
-
*
|
|
17473
|
-
*
|
|
17474
|
-
* @remarks
|
|
17475
|
-
* This key constant provides type-safe access to the `period` property of DomainTransferPayloadData objects.
|
|
17476
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17477
|
-
*
|
|
17478
|
-
* @example
|
|
17479
|
-
* ```typescript
|
|
17480
|
-
* // Direct property access
|
|
17481
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_PERIOD];
|
|
17482
|
-
*
|
|
17483
|
-
* // Dynamic property access
|
|
17484
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_PERIOD;
|
|
17485
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17486
|
-
* ```
|
|
17487
|
-
*
|
|
17488
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17489
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17490
|
-
*/
|
|
17491
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_PERIOD: keyof DomainTransferPayloadData = 'period';
|
|
17492
|
-
/**
|
|
17493
|
-
* renewal_mode property
|
|
17494
|
-
*
|
|
17495
|
-
* The renewal mode of the domain
|
|
17496
|
-
*
|
|
17497
|
-
*
|
|
17498
|
-
*
|
|
17499
|
-
* @remarks
|
|
17500
|
-
* This key constant provides type-safe access to the `renewal_mode` property of DomainTransferPayloadData objects.
|
|
17501
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17502
|
-
*
|
|
17503
|
-
* @example
|
|
17504
|
-
* ```typescript
|
|
17505
|
-
* // Direct property access
|
|
17506
|
-
* const value = domaintransferpayloaddata[KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_RENEWAL_MODE];
|
|
17507
|
-
*
|
|
17508
|
-
* // Dynamic property access
|
|
17509
|
-
* const propertyName = KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_RENEWAL_MODE;
|
|
17510
|
-
* const value = domaintransferpayloaddata[propertyName];
|
|
17511
|
-
* ```
|
|
17512
|
-
*
|
|
17513
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17514
|
-
* @see {@link KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA} - Array of all keys for this type
|
|
17515
|
-
*/
|
|
17516
|
-
export const KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_RENEWAL_MODE: keyof DomainTransferPayloadData = 'renewal_mode';
|
|
17517
|
-
|
|
17518
|
-
/**
|
|
17519
|
-
* Array of all DomainTransferPayloadData property keys
|
|
17520
|
-
*
|
|
17521
|
-
* @remarks
|
|
17522
|
-
* This constant provides a readonly array containing all valid property keys for DomainTransferPayloadData objects.
|
|
17523
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
17524
|
-
*
|
|
17525
|
-
* @example
|
|
17526
|
-
* ```typescript
|
|
17527
|
-
* // Iterating through all keys
|
|
17528
|
-
* for (const key of KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA) {
|
|
17529
|
-
* console.log(`Property: ${key}, Value: ${domaintransferpayloaddata[key]}`);
|
|
17530
|
-
* }
|
|
17531
|
-
*
|
|
17532
|
-
* // Validation
|
|
17533
|
-
* const isValidKey = KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA.includes(someKey);
|
|
17534
|
-
* ```
|
|
17535
|
-
*
|
|
17536
|
-
* @see {@link DomainTransferPayloadData} - The TypeScript type definition
|
|
17537
|
-
*/
|
|
17538
|
-
export const KEYS_DOMAIN_TRANSFER_PAYLOAD_DATA = [
|
|
17539
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_ATTRIBUTES,
|
|
17540
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_AUTH_CODE,
|
|
17541
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CONTACTS,
|
|
17542
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_CREATE_ZONE,
|
|
17543
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAME,
|
|
17544
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_NAMESERVERS,
|
|
17545
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_PERIOD,
|
|
17546
|
-
KEY_DOMAIN_TRANSFER_PAYLOAD_DATA_RENEWAL_MODE,
|
|
17547
|
-
] as const satisfies (keyof DomainTransferPayloadData)[];
|
|
17548
|
-
|
|
17549
17208
|
/**
|
|
17550
17209
|
* domain property
|
|
17551
17210
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -1790,18 +1790,34 @@ export type DomainCreateCommand = components['schemas']['DomainCreateCommand'];
|
|
|
1790
1790
|
* DomainCreatePayloadData
|
|
1791
1791
|
*
|
|
1792
1792
|
* @remarks
|
|
1793
|
-
* Type alias for the `DomainCreatePayloadData` OpenAPI schema.
|
|
1793
|
+
* Type alias for the `DomainCreatePayloadData-Input` OpenAPI schema.
|
|
1794
1794
|
* This type represents domaincreatepayloaddata data structures used in API requests and responses.
|
|
1795
1795
|
*
|
|
1796
1796
|
* @example
|
|
1797
1797
|
* ```typescript
|
|
1798
|
-
* const response = await api.getDomainCreatePayloadData();
|
|
1799
|
-
* const item: DomainCreatePayloadData = response.results;
|
|
1798
|
+
* const response = await api.getDomainCreatePayloadData-Input();
|
|
1799
|
+
* const item: DomainCreatePayloadData-Input = response.results;
|
|
1800
1800
|
* ```
|
|
1801
1801
|
*
|
|
1802
1802
|
* @see {@link components} - The OpenAPI components schema definition
|
|
1803
1803
|
*/
|
|
1804
|
-
export type DomainCreatePayloadData = components['schemas']['DomainCreatePayloadData'];
|
|
1804
|
+
export type DomainCreatePayloadData-Input = components['schemas']['DomainCreatePayloadData-Input'];
|
|
1805
|
+
/**
|
|
1806
|
+
* DomainCreatePayloadData
|
|
1807
|
+
*
|
|
1808
|
+
* @remarks
|
|
1809
|
+
* Type alias for the `DomainCreatePayloadData-Output` OpenAPI schema.
|
|
1810
|
+
* This type represents domaincreatepayloaddata data structures used in API requests and responses.
|
|
1811
|
+
*
|
|
1812
|
+
* @example
|
|
1813
|
+
* ```typescript
|
|
1814
|
+
* const response = await api.getDomainCreatePayloadData-Output();
|
|
1815
|
+
* const item: DomainCreatePayloadData-Output = response.results;
|
|
1816
|
+
* ```
|
|
1817
|
+
*
|
|
1818
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
1819
|
+
*/
|
|
1820
|
+
export type DomainCreatePayloadData-Output = components['schemas']['DomainCreatePayloadData-Output'];
|
|
1805
1821
|
/**
|
|
1806
1822
|
* DomainCreateWorkerPayload
|
|
1807
1823
|
*
|
|
@@ -2590,18 +2606,34 @@ export type DomainTransferIn = components['schemas']['DomainTransferIn'];
|
|
|
2590
2606
|
* DomainTransferPayloadData
|
|
2591
2607
|
*
|
|
2592
2608
|
* @remarks
|
|
2593
|
-
* Type alias for the `DomainTransferPayloadData` OpenAPI schema.
|
|
2609
|
+
* Type alias for the `DomainTransferPayloadData-Input` OpenAPI schema.
|
|
2610
|
+
* This type represents domaintransferpayloaddata data structures used in API requests and responses.
|
|
2611
|
+
*
|
|
2612
|
+
* @example
|
|
2613
|
+
* ```typescript
|
|
2614
|
+
* const response = await api.getDomainTransferPayloadData-Input();
|
|
2615
|
+
* const item: DomainTransferPayloadData-Input = response.results;
|
|
2616
|
+
* ```
|
|
2617
|
+
*
|
|
2618
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
2619
|
+
*/
|
|
2620
|
+
export type DomainTransferPayloadData-Input = components['schemas']['DomainTransferPayloadData-Input'];
|
|
2621
|
+
/**
|
|
2622
|
+
* DomainTransferPayloadData
|
|
2623
|
+
*
|
|
2624
|
+
* @remarks
|
|
2625
|
+
* Type alias for the `DomainTransferPayloadData-Output` OpenAPI schema.
|
|
2594
2626
|
* This type represents domaintransferpayloaddata data structures used in API requests and responses.
|
|
2595
2627
|
*
|
|
2596
2628
|
* @example
|
|
2597
2629
|
* ```typescript
|
|
2598
|
-
* const response = await api.getDomainTransferPayloadData();
|
|
2599
|
-
* const item: DomainTransferPayloadData = response.results;
|
|
2630
|
+
* const response = await api.getDomainTransferPayloadData-Output();
|
|
2631
|
+
* const item: DomainTransferPayloadData-Output = response.results;
|
|
2600
2632
|
* ```
|
|
2601
2633
|
*
|
|
2602
2634
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2603
2635
|
*/
|
|
2604
|
-
export type DomainTransferPayloadData = components['schemas']['DomainTransferPayloadData'];
|
|
2636
|
+
export type DomainTransferPayloadData-Output = components['schemas']['DomainTransferPayloadData-Output'];
|
|
2605
2637
|
/**
|
|
2606
2638
|
* DomainTransferWorkerPayload
|
|
2607
2639
|
*
|
package/src/openapi.yaml
CHANGED
|
@@ -2522,6 +2522,15 @@ components:
|
|
|
2522
2522
|
description: Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
2523
2523
|
title: Create Zone
|
|
2524
2524
|
type: boolean
|
|
2525
|
+
expected_price:
|
|
2526
|
+
anyOf:
|
|
2527
|
+
- minimum: 0.0
|
|
2528
|
+
type: number
|
|
2529
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
2530
|
+
type: string
|
|
2531
|
+
- type: 'null'
|
|
2532
|
+
description: Expected price for premium domain confirmation
|
|
2533
|
+
title: Expected Price
|
|
2525
2534
|
name:
|
|
2526
2535
|
description: The domain to be created
|
|
2527
2536
|
title: Name
|
|
@@ -2694,7 +2703,7 @@ components:
|
|
|
2694
2703
|
description: Idempotency key for this command
|
|
2695
2704
|
title: Idempotency Key
|
|
2696
2705
|
payload:
|
|
2697
|
-
$ref: '#/components/schemas/DomainCreatePayloadData'
|
|
2706
|
+
$ref: '#/components/schemas/DomainCreatePayloadData-Input'
|
|
2698
2707
|
description: Domain creation payload
|
|
2699
2708
|
version:
|
|
2700
2709
|
default: v1
|
|
@@ -2705,7 +2714,7 @@ components:
|
|
|
2705
2714
|
- payload
|
|
2706
2715
|
title: DomainCreateCommand
|
|
2707
2716
|
type: object
|
|
2708
|
-
DomainCreatePayloadData:
|
|
2717
|
+
DomainCreatePayloadData-Input:
|
|
2709
2718
|
properties:
|
|
2710
2719
|
auth_code:
|
|
2711
2720
|
anyOf:
|
|
@@ -2726,6 +2735,68 @@ components:
|
|
|
2726
2735
|
description: Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
2727
2736
|
title: Create Zone
|
|
2728
2737
|
type: boolean
|
|
2738
|
+
expected_price:
|
|
2739
|
+
anyOf:
|
|
2740
|
+
- minimum: 0.0
|
|
2741
|
+
type: number
|
|
2742
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
2743
|
+
type: string
|
|
2744
|
+
- type: 'null'
|
|
2745
|
+
description: Expected price for premium domain confirmation
|
|
2746
|
+
title: Expected Price
|
|
2747
|
+
name:
|
|
2748
|
+
description: The domain to be created
|
|
2749
|
+
title: Name
|
|
2750
|
+
type: string
|
|
2751
|
+
nameservers:
|
|
2752
|
+
anyOf:
|
|
2753
|
+
- items:
|
|
2754
|
+
$ref: '#/components/schemas/Nameserver'
|
|
2755
|
+
type: array
|
|
2756
|
+
- type: 'null'
|
|
2757
|
+
description: The name servers for the domain
|
|
2758
|
+
title: Nameservers
|
|
2759
|
+
period:
|
|
2760
|
+
$ref: '#/components/schemas/DomainPeriod'
|
|
2761
|
+
description: The registration period of the domain
|
|
2762
|
+
renewal_mode:
|
|
2763
|
+
$ref: '#/components/schemas/RenewalMode'
|
|
2764
|
+
description: The renewal mode of the domain
|
|
2765
|
+
required:
|
|
2766
|
+
- name
|
|
2767
|
+
- contacts
|
|
2768
|
+
- renewal_mode
|
|
2769
|
+
- period
|
|
2770
|
+
title: DomainCreatePayloadData
|
|
2771
|
+
type: object
|
|
2772
|
+
DomainCreatePayloadData-Output:
|
|
2773
|
+
properties:
|
|
2774
|
+
auth_code:
|
|
2775
|
+
anyOf:
|
|
2776
|
+
- maxLength: 32
|
|
2777
|
+
minLength: 6
|
|
2778
|
+
type: string
|
|
2779
|
+
- type: 'null'
|
|
2780
|
+
description: The auth code used for the domain
|
|
2781
|
+
title: Auth Code
|
|
2782
|
+
contacts:
|
|
2783
|
+
anyOf:
|
|
2784
|
+
- $ref: '#/components/schemas/DomainContactHandles'
|
|
2785
|
+
- $ref: '#/components/schemas/ContactIdList'
|
|
2786
|
+
description: The contacts of the domain
|
|
2787
|
+
title: Contacts
|
|
2788
|
+
create_zone:
|
|
2789
|
+
default: false
|
|
2790
|
+
description: Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
2791
|
+
title: Create Zone
|
|
2792
|
+
type: boolean
|
|
2793
|
+
expected_price:
|
|
2794
|
+
anyOf:
|
|
2795
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
2796
|
+
type: string
|
|
2797
|
+
- type: 'null'
|
|
2798
|
+
description: Expected price for premium domain confirmation
|
|
2799
|
+
title: Expected Price
|
|
2729
2800
|
name:
|
|
2730
2801
|
description: The domain to be created
|
|
2731
2802
|
title: Name
|
|
@@ -2754,7 +2825,7 @@ components:
|
|
|
2754
2825
|
DomainCreateWorkerPayload:
|
|
2755
2826
|
properties:
|
|
2756
2827
|
domain:
|
|
2757
|
-
$ref: '#/components/schemas/DomainCreatePayloadData'
|
|
2828
|
+
$ref: '#/components/schemas/DomainCreatePayloadData-Output'
|
|
2758
2829
|
operation:
|
|
2759
2830
|
title: Operation
|
|
2760
2831
|
type: string
|
|
@@ -3409,6 +3480,15 @@ components:
|
|
|
3409
3480
|
format: date-time
|
|
3410
3481
|
title: Current Expiry Date
|
|
3411
3482
|
type: string
|
|
3483
|
+
expected_price:
|
|
3484
|
+
anyOf:
|
|
3485
|
+
- minimum: 0.0
|
|
3486
|
+
type: number
|
|
3487
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
3488
|
+
type: string
|
|
3489
|
+
- type: 'null'
|
|
3490
|
+
description: Expected price for premium domain confirmation
|
|
3491
|
+
title: Expected Price
|
|
3412
3492
|
period:
|
|
3413
3493
|
$ref: '#/components/schemas/DomainPeriod'
|
|
3414
3494
|
description: How long to extend the domain registration
|
|
@@ -3596,6 +3676,15 @@ components:
|
|
|
3596
3676
|
- type: 'null'
|
|
3597
3677
|
description: Additional information to include in the restore operation
|
|
3598
3678
|
title: Additional Info
|
|
3679
|
+
expected_price:
|
|
3680
|
+
anyOf:
|
|
3681
|
+
- minimum: 0.0
|
|
3682
|
+
type: number
|
|
3683
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
3684
|
+
type: string
|
|
3685
|
+
- type: 'null'
|
|
3686
|
+
description: Expected price for premium domain confirmation
|
|
3687
|
+
title: Expected Price
|
|
3599
3688
|
reason:
|
|
3600
3689
|
anyOf:
|
|
3601
3690
|
- type: string
|
|
@@ -3982,7 +4071,7 @@ components:
|
|
|
3982
4071
|
description: Idempotency key for this command
|
|
3983
4072
|
title: Idempotency Key
|
|
3984
4073
|
payload:
|
|
3985
|
-
$ref: '#/components/schemas/DomainTransferPayloadData'
|
|
4074
|
+
$ref: '#/components/schemas/DomainTransferPayloadData-Input'
|
|
3986
4075
|
description: Domain transfer payload
|
|
3987
4076
|
version:
|
|
3988
4077
|
default: v1
|
|
@@ -4022,6 +4111,15 @@ components:
|
|
|
4022
4111
|
description: Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
4023
4112
|
title: Create Zone
|
|
4024
4113
|
type: boolean
|
|
4114
|
+
expected_price:
|
|
4115
|
+
anyOf:
|
|
4116
|
+
- minimum: 0.0
|
|
4117
|
+
type: number
|
|
4118
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
4119
|
+
type: string
|
|
4120
|
+
- type: 'null'
|
|
4121
|
+
description: Expected price for premium domain confirmation
|
|
4122
|
+
title: Expected Price
|
|
4025
4123
|
name:
|
|
4026
4124
|
description: The domain to be created
|
|
4027
4125
|
title: Name
|
|
@@ -4050,7 +4148,73 @@ components:
|
|
|
4050
4148
|
- auth_code
|
|
4051
4149
|
title: DomainTransferIn
|
|
4052
4150
|
type: object
|
|
4053
|
-
DomainTransferPayloadData:
|
|
4151
|
+
DomainTransferPayloadData-Input:
|
|
4152
|
+
properties:
|
|
4153
|
+
attributes:
|
|
4154
|
+
anyOf:
|
|
4155
|
+
- additionalProperties:
|
|
4156
|
+
type: string
|
|
4157
|
+
propertyNames:
|
|
4158
|
+
$ref: '#/components/schemas/DomainAttributeKey'
|
|
4159
|
+
type: object
|
|
4160
|
+
- type: 'null'
|
|
4161
|
+
description: Additional attributes of the domain
|
|
4162
|
+
title: Attributes
|
|
4163
|
+
auth_code:
|
|
4164
|
+
description: The auth code for the domain
|
|
4165
|
+
maxLength: 32
|
|
4166
|
+
minLength: 6
|
|
4167
|
+
title: Auth Code
|
|
4168
|
+
type: string
|
|
4169
|
+
contacts:
|
|
4170
|
+
anyOf:
|
|
4171
|
+
- $ref: '#/components/schemas/DomainContactHandles'
|
|
4172
|
+
- $ref: '#/components/schemas/ContactIdList'
|
|
4173
|
+
description: The contacts of the domain
|
|
4174
|
+
title: Contacts
|
|
4175
|
+
create_zone:
|
|
4176
|
+
default: false
|
|
4177
|
+
description: Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
4178
|
+
title: Create Zone
|
|
4179
|
+
type: boolean
|
|
4180
|
+
expected_price:
|
|
4181
|
+
anyOf:
|
|
4182
|
+
- minimum: 0.0
|
|
4183
|
+
type: number
|
|
4184
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
4185
|
+
type: string
|
|
4186
|
+
- type: 'null'
|
|
4187
|
+
description: Expected price for premium domain confirmation
|
|
4188
|
+
title: Expected Price
|
|
4189
|
+
name:
|
|
4190
|
+
description: The domain to be created
|
|
4191
|
+
title: Name
|
|
4192
|
+
type: string
|
|
4193
|
+
nameservers:
|
|
4194
|
+
anyOf:
|
|
4195
|
+
- items:
|
|
4196
|
+
$ref: '#/components/schemas/Nameserver'
|
|
4197
|
+
type: array
|
|
4198
|
+
- type: 'null'
|
|
4199
|
+
description: The name servers for the domain
|
|
4200
|
+
title: Nameservers
|
|
4201
|
+
period:
|
|
4202
|
+
anyOf:
|
|
4203
|
+
- $ref: '#/components/schemas/DomainPeriod'
|
|
4204
|
+
- type: 'null'
|
|
4205
|
+
description: Additional registration period to add to the domain upon transfer
|
|
4206
|
+
completion. If omitted, the registry default policy will be applied.
|
|
4207
|
+
renewal_mode:
|
|
4208
|
+
$ref: '#/components/schemas/RenewalMode'
|
|
4209
|
+
description: The renewal mode of the domain
|
|
4210
|
+
required:
|
|
4211
|
+
- name
|
|
4212
|
+
- contacts
|
|
4213
|
+
- renewal_mode
|
|
4214
|
+
- auth_code
|
|
4215
|
+
title: DomainTransferPayloadData
|
|
4216
|
+
type: object
|
|
4217
|
+
DomainTransferPayloadData-Output:
|
|
4054
4218
|
properties:
|
|
4055
4219
|
attributes:
|
|
4056
4220
|
anyOf:
|
|
@@ -4079,6 +4243,13 @@ components:
|
|
|
4079
4243
|
description: Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
4080
4244
|
title: Create Zone
|
|
4081
4245
|
type: boolean
|
|
4246
|
+
expected_price:
|
|
4247
|
+
anyOf:
|
|
4248
|
+
- pattern: ^(?!^[-+.]*$)[+-]?0*(?:\d{0,8}|(?=[\d.]{1,11}0*$)\d{0,8}\.\d{0,2}0*$)
|
|
4249
|
+
type: string
|
|
4250
|
+
- type: 'null'
|
|
4251
|
+
description: Expected price for premium domain confirmation
|
|
4252
|
+
title: Expected Price
|
|
4082
4253
|
name:
|
|
4083
4254
|
description: The domain to be created
|
|
4084
4255
|
title: Name
|
|
@@ -4110,7 +4281,7 @@ components:
|
|
|
4110
4281
|
DomainTransferWorkerPayload:
|
|
4111
4282
|
properties:
|
|
4112
4283
|
domain:
|
|
4113
|
-
$ref: '#/components/schemas/DomainTransferPayloadData'
|
|
4284
|
+
$ref: '#/components/schemas/DomainTransferPayloadData-Output'
|
|
4114
4285
|
operation:
|
|
4115
4286
|
title: Operation
|
|
4116
4287
|
type: string
|
|
@@ -9702,7 +9873,7 @@ info:
|
|
|
9702
9873
|
\n\n"
|
|
9703
9874
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
9704
9875
|
title: OpusDNS API
|
|
9705
|
-
version: 2026-04-09-
|
|
9876
|
+
version: 2026-04-09-205352
|
|
9706
9877
|
x-logo:
|
|
9707
9878
|
altText: OpusDNS API Reference
|
|
9708
9879
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -3880,6 +3880,11 @@ export interface components {
|
|
|
3880
3880
|
* @default false
|
|
3881
3881
|
*/
|
|
3882
3882
|
create_zone: boolean;
|
|
3883
|
+
/**
|
|
3884
|
+
* Expected Price
|
|
3885
|
+
* @description Expected price for premium domain confirmation
|
|
3886
|
+
*/
|
|
3887
|
+
expected_price?: number | string | null;
|
|
3883
3888
|
/**
|
|
3884
3889
|
* Name
|
|
3885
3890
|
* @description The domain to be created
|
|
@@ -3999,7 +4004,7 @@ export interface components {
|
|
|
3999
4004
|
*/
|
|
4000
4005
|
idempotency_key?: string | null;
|
|
4001
4006
|
/** @description Domain creation payload */
|
|
4002
|
-
payload: components["schemas"]["DomainCreatePayloadData"];
|
|
4007
|
+
payload: components["schemas"]["DomainCreatePayloadData-Input"];
|
|
4003
4008
|
/**
|
|
4004
4009
|
* Version
|
|
4005
4010
|
* @description Command version
|
|
@@ -4008,7 +4013,45 @@ export interface components {
|
|
|
4008
4013
|
version: string;
|
|
4009
4014
|
};
|
|
4010
4015
|
/** DomainCreatePayloadData */
|
|
4011
|
-
DomainCreatePayloadData: {
|
|
4016
|
+
"DomainCreatePayloadData-Input": {
|
|
4017
|
+
/**
|
|
4018
|
+
* Auth Code
|
|
4019
|
+
* @description The auth code used for the domain
|
|
4020
|
+
*/
|
|
4021
|
+
auth_code?: string | null;
|
|
4022
|
+
/**
|
|
4023
|
+
* Contacts
|
|
4024
|
+
* @description The contacts of the domain
|
|
4025
|
+
*/
|
|
4026
|
+
contacts: components["schemas"]["DomainContactHandles"] | components["schemas"]["ContactIdList"];
|
|
4027
|
+
/**
|
|
4028
|
+
* Create Zone
|
|
4029
|
+
* @description Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
4030
|
+
* @default false
|
|
4031
|
+
*/
|
|
4032
|
+
create_zone: boolean;
|
|
4033
|
+
/**
|
|
4034
|
+
* Expected Price
|
|
4035
|
+
* @description Expected price for premium domain confirmation
|
|
4036
|
+
*/
|
|
4037
|
+
expected_price?: number | string | null;
|
|
4038
|
+
/**
|
|
4039
|
+
* Name
|
|
4040
|
+
* @description The domain to be created
|
|
4041
|
+
*/
|
|
4042
|
+
name: string;
|
|
4043
|
+
/**
|
|
4044
|
+
* Nameservers
|
|
4045
|
+
* @description The name servers for the domain
|
|
4046
|
+
*/
|
|
4047
|
+
nameservers?: components["schemas"]["Nameserver"][] | null;
|
|
4048
|
+
/** @description The registration period of the domain */
|
|
4049
|
+
period: components["schemas"]["DomainPeriod"];
|
|
4050
|
+
/** @description The renewal mode of the domain */
|
|
4051
|
+
renewal_mode: components["schemas"]["RenewalMode"];
|
|
4052
|
+
};
|
|
4053
|
+
/** DomainCreatePayloadData */
|
|
4054
|
+
"DomainCreatePayloadData-Output": {
|
|
4012
4055
|
/**
|
|
4013
4056
|
* Auth Code
|
|
4014
4057
|
* @description The auth code used for the domain
|
|
@@ -4025,6 +4068,11 @@ export interface components {
|
|
|
4025
4068
|
* @default false
|
|
4026
4069
|
*/
|
|
4027
4070
|
create_zone: boolean;
|
|
4071
|
+
/**
|
|
4072
|
+
* Expected Price
|
|
4073
|
+
* @description Expected price for premium domain confirmation
|
|
4074
|
+
*/
|
|
4075
|
+
expected_price?: string | null;
|
|
4028
4076
|
/**
|
|
4029
4077
|
* Name
|
|
4030
4078
|
* @description The domain to be created
|
|
@@ -4042,7 +4090,7 @@ export interface components {
|
|
|
4042
4090
|
};
|
|
4043
4091
|
/** DomainCreateWorkerPayload */
|
|
4044
4092
|
DomainCreateWorkerPayload: {
|
|
4045
|
-
domain: components["schemas"]["DomainCreatePayloadData"];
|
|
4093
|
+
domain: components["schemas"]["DomainCreatePayloadData-Output"];
|
|
4046
4094
|
/** Operation */
|
|
4047
4095
|
operation: string;
|
|
4048
4096
|
/**
|
|
@@ -4429,6 +4477,11 @@ export interface components {
|
|
|
4429
4477
|
* @description Current expiration date of the domain for validation
|
|
4430
4478
|
*/
|
|
4431
4479
|
current_expiry_date: Date;
|
|
4480
|
+
/**
|
|
4481
|
+
* Expected Price
|
|
4482
|
+
* @description Expected price for premium domain confirmation
|
|
4483
|
+
*/
|
|
4484
|
+
expected_price?: number | string | null;
|
|
4432
4485
|
/** @description How long to extend the domain registration */
|
|
4433
4486
|
period: components["schemas"]["DomainPeriod"];
|
|
4434
4487
|
};
|
|
@@ -4579,6 +4632,11 @@ export interface components {
|
|
|
4579
4632
|
* @description Additional information to include in the restore operation
|
|
4580
4633
|
*/
|
|
4581
4634
|
additional_info?: string | null;
|
|
4635
|
+
/**
|
|
4636
|
+
* Expected Price
|
|
4637
|
+
* @description Expected price for premium domain confirmation
|
|
4638
|
+
*/
|
|
4639
|
+
expected_price?: number | string | null;
|
|
4582
4640
|
/**
|
|
4583
4641
|
* Reason
|
|
4584
4642
|
* @description Reason for restoring the domain
|
|
@@ -4824,7 +4882,7 @@ export interface components {
|
|
|
4824
4882
|
*/
|
|
4825
4883
|
idempotency_key?: string | null;
|
|
4826
4884
|
/** @description Domain transfer payload */
|
|
4827
|
-
payload: components["schemas"]["DomainTransferPayloadData"];
|
|
4885
|
+
payload: components["schemas"]["DomainTransferPayloadData-Input"];
|
|
4828
4886
|
/**
|
|
4829
4887
|
* Version
|
|
4830
4888
|
* @description Command version
|
|
@@ -4857,6 +4915,11 @@ export interface components {
|
|
|
4857
4915
|
* @default false
|
|
4858
4916
|
*/
|
|
4859
4917
|
create_zone: boolean;
|
|
4918
|
+
/**
|
|
4919
|
+
* Expected Price
|
|
4920
|
+
* @description Expected price for premium domain confirmation
|
|
4921
|
+
*/
|
|
4922
|
+
expected_price?: number | string | null;
|
|
4860
4923
|
/**
|
|
4861
4924
|
* Name
|
|
4862
4925
|
* @description The domain to be created
|
|
@@ -4873,7 +4936,7 @@ export interface components {
|
|
|
4873
4936
|
renewal_mode: components["schemas"]["RenewalMode"];
|
|
4874
4937
|
};
|
|
4875
4938
|
/** DomainTransferPayloadData */
|
|
4876
|
-
DomainTransferPayloadData: {
|
|
4939
|
+
"DomainTransferPayloadData-Input": {
|
|
4877
4940
|
/**
|
|
4878
4941
|
* Attributes
|
|
4879
4942
|
* @description Additional attributes of the domain
|
|
@@ -4897,6 +4960,56 @@ export interface components {
|
|
|
4897
4960
|
* @default false
|
|
4898
4961
|
*/
|
|
4899
4962
|
create_zone: boolean;
|
|
4963
|
+
/**
|
|
4964
|
+
* Expected Price
|
|
4965
|
+
* @description Expected price for premium domain confirmation
|
|
4966
|
+
*/
|
|
4967
|
+
expected_price?: number | string | null;
|
|
4968
|
+
/**
|
|
4969
|
+
* Name
|
|
4970
|
+
* @description The domain to be created
|
|
4971
|
+
*/
|
|
4972
|
+
name: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* Nameservers
|
|
4975
|
+
* @description The name servers for the domain
|
|
4976
|
+
*/
|
|
4977
|
+
nameservers?: components["schemas"]["Nameserver"][] | null;
|
|
4978
|
+
/** @description Additional registration period to add to the domain upon transfer completion. If omitted, the registry default policy will be applied. */
|
|
4979
|
+
period?: components["schemas"]["DomainPeriod"] | null;
|
|
4980
|
+
/** @description The renewal mode of the domain */
|
|
4981
|
+
renewal_mode: components["schemas"]["RenewalMode"];
|
|
4982
|
+
};
|
|
4983
|
+
/** DomainTransferPayloadData */
|
|
4984
|
+
"DomainTransferPayloadData-Output": {
|
|
4985
|
+
/**
|
|
4986
|
+
* Attributes
|
|
4987
|
+
* @description Additional attributes of the domain
|
|
4988
|
+
*/
|
|
4989
|
+
attributes?: {
|
|
4990
|
+
[key: string]: string;
|
|
4991
|
+
} | null;
|
|
4992
|
+
/**
|
|
4993
|
+
* Auth Code
|
|
4994
|
+
* @description The auth code for the domain
|
|
4995
|
+
*/
|
|
4996
|
+
auth_code: string;
|
|
4997
|
+
/**
|
|
4998
|
+
* Contacts
|
|
4999
|
+
* @description The contacts of the domain
|
|
5000
|
+
*/
|
|
5001
|
+
contacts: components["schemas"]["DomainContactHandles"] | components["schemas"]["ContactIdList"];
|
|
5002
|
+
/**
|
|
5003
|
+
* Create Zone
|
|
5004
|
+
* @description Create a zone for the domain on OpusDNS nameserver infrastructure
|
|
5005
|
+
* @default false
|
|
5006
|
+
*/
|
|
5007
|
+
create_zone: boolean;
|
|
5008
|
+
/**
|
|
5009
|
+
* Expected Price
|
|
5010
|
+
* @description Expected price for premium domain confirmation
|
|
5011
|
+
*/
|
|
5012
|
+
expected_price?: string | null;
|
|
4900
5013
|
/**
|
|
4901
5014
|
* Name
|
|
4902
5015
|
* @description The domain to be created
|
|
@@ -4914,7 +5027,7 @@ export interface components {
|
|
|
4914
5027
|
};
|
|
4915
5028
|
/** DomainTransferWorkerPayload */
|
|
4916
5029
|
DomainTransferWorkerPayload: {
|
|
4917
|
-
domain: components["schemas"]["DomainTransferPayloadData"];
|
|
5030
|
+
domain: components["schemas"]["DomainTransferPayloadData-Output"];
|
|
4918
5031
|
/** Operation */
|
|
4919
5032
|
operation: string;
|
|
4920
5033
|
/**
|