@opusdns/api 1.30.0 → 1.32.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/constants.ts +10 -0
- package/src/helpers/keys.ts +53 -0
- package/src/helpers/schemas.d.ts +5 -0
- package/src/openapi.yaml +149 -1
- package/src/schema.d.ts +82 -5
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -150,6 +150,7 @@ export const ATTRIBUTE_TYPE = {
|
|
|
150
150
|
DATETIME: "datetime",
|
|
151
151
|
INTEGER: "integer",
|
|
152
152
|
COUNTRY_CODE: "country_code",
|
|
153
|
+
URI_TEMPLATE: "uri_template",
|
|
153
154
|
} as const satisfies Record<string, AttributeType>;
|
|
154
155
|
|
|
155
156
|
export const ATTRIBUTE_TYPE_VALUES = [
|
|
@@ -159,6 +160,7 @@ export const ATTRIBUTE_TYPE_VALUES = [
|
|
|
159
160
|
'datetime',
|
|
160
161
|
'integer',
|
|
161
162
|
'country_code',
|
|
163
|
+
'uri_template',
|
|
162
164
|
] as const satisfies ReadonlyArray<AttributeType>;
|
|
163
165
|
|
|
164
166
|
export const BATCH_SORT_FIELD = {
|
|
@@ -591,6 +593,8 @@ export const DOMAIN_ATTRIBUTE_KEY = {
|
|
|
591
593
|
NIC_IT_COMPLIANCE_CONFIRMATION: "nic_it_compliance_confirmation",
|
|
592
594
|
TRAVEL_INDUSTRY_ACKNOWLEDGEMENT: "travel_industry_acknowledgement",
|
|
593
595
|
VERIFICATION_REQUIRED: "verification_required",
|
|
596
|
+
DE_GENERAL_REQUEST_CONTACT: "de_general_request_contact",
|
|
597
|
+
DE_ABUSE_CONTACT: "de_abuse_contact",
|
|
594
598
|
} as const satisfies Record<string, DomainAttributeKey>;
|
|
595
599
|
|
|
596
600
|
export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
@@ -599,6 +603,8 @@ export const DOMAIN_ATTRIBUTE_KEY_VALUES = [
|
|
|
599
603
|
'nic_it_compliance_confirmation',
|
|
600
604
|
'travel_industry_acknowledgement',
|
|
601
605
|
'verification_required',
|
|
606
|
+
'de_general_request_contact',
|
|
607
|
+
'de_abuse_contact',
|
|
602
608
|
] as const satisfies ReadonlyArray<DomainAttributeKey>;
|
|
603
609
|
|
|
604
610
|
export const DOMAIN_AVAILABILITY_STATUS = {
|
|
@@ -1457,6 +1463,8 @@ export const REGISTRANT_CHANGE_TYPE_VALUES = [
|
|
|
1457
1463
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
1458
1464
|
AT_EXT_CONTACT_TYPE: "at-ext-contact:type",
|
|
1459
1465
|
DE_CONTACT_TYPE: "DE_CONTACT_TYPE",
|
|
1466
|
+
DE_GENERAL_REQUEST_URI_TEMPLATE: "DE_GENERAL_REQUEST_URI_TEMPLATE",
|
|
1467
|
+
DE_ABUSE_URI_TEMPLATE: "DE_ABUSE_URI_TEMPLATE",
|
|
1460
1468
|
DNSBE_TYPE: "dnsbe:type",
|
|
1461
1469
|
EURID_TYPE: "eurid:type",
|
|
1462
1470
|
AFNIC_CONTACT_TYPE: "AFNIC_CONTACT_TYPE",
|
|
@@ -1504,6 +1512,8 @@ export const REGISTRY_HANDLE_ATTRIBUTE_TYPE = {
|
|
|
1504
1512
|
export const REGISTRY_HANDLE_ATTRIBUTE_TYPE_VALUES = [
|
|
1505
1513
|
'at-ext-contact:type',
|
|
1506
1514
|
'DE_CONTACT_TYPE',
|
|
1515
|
+
'DE_GENERAL_REQUEST_URI_TEMPLATE',
|
|
1516
|
+
'DE_ABUSE_URI_TEMPLATE',
|
|
1507
1517
|
'dnsbe:type',
|
|
1508
1518
|
'eurid:type',
|
|
1509
1519
|
'AFNIC_CONTACT_TYPE',
|
package/src/helpers/keys.ts
CHANGED
|
@@ -82,6 +82,11 @@ import type {
|
|
|
82
82
|
DnsZonePatchRrsetsWorkerPayload,
|
|
83
83
|
DnsZoneRecordsPatchOps,
|
|
84
84
|
DnsZone,
|
|
85
|
+
DnsZoneRestampVanityNsBulkCommand,
|
|
86
|
+
DnsZoneRestampVanityNsBulkInstance,
|
|
87
|
+
DnsZoneRestampVanityNsBulkPayload,
|
|
88
|
+
DnsZoneRestampVanityNsBulkTemplate,
|
|
89
|
+
DnsZoneRestampVanityNsWorkerPayload,
|
|
85
90
|
DnsZoneRrsetsCreate,
|
|
86
91
|
DnsZoneRrsetsPatchOps,
|
|
87
92
|
DnsZoneSummary,
|
|
@@ -1487,6 +1492,50 @@ export const KEYS_DNS_ZONE = [
|
|
|
1487
1492
|
KEY_DNS_ZONE_VANITY_NAMESERVER_SET_ID,
|
|
1488
1493
|
] as const satisfies (keyof DnsZone)[];
|
|
1489
1494
|
|
|
1495
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_COMMAND = 'command' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1496
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1497
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1498
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_VERSION = 'version' satisfies keyof DnsZoneRestampVanityNsBulkCommand;
|
|
1499
|
+
|
|
1500
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND = [
|
|
1501
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_COMMAND,
|
|
1502
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_IDEMPOTENCY_KEY,
|
|
1503
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_PAYLOAD,
|
|
1504
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_COMMAND_VERSION,
|
|
1505
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkCommand)[];
|
|
1506
|
+
|
|
1507
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_NAME = 'name' satisfies keyof DnsZoneRestampVanityNsBulkInstance;
|
|
1508
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof DnsZoneRestampVanityNsBulkInstance;
|
|
1509
|
+
|
|
1510
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE = [
|
|
1511
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_NAME,
|
|
1512
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_INSTANCE_VANITY_NAMESERVER_SET_ID,
|
|
1513
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkInstance)[];
|
|
1514
|
+
|
|
1515
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_INSTANCES = 'instances' satisfies keyof DnsZoneRestampVanityNsBulkPayload;
|
|
1516
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_TEMPLATE = 'template' satisfies keyof DnsZoneRestampVanityNsBulkPayload;
|
|
1517
|
+
|
|
1518
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD = [
|
|
1519
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_INSTANCES,
|
|
1520
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_PAYLOAD_TEMPLATE,
|
|
1521
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkPayload)[];
|
|
1522
|
+
|
|
1523
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_TEMPLATE_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof DnsZoneRestampVanityNsBulkTemplate;
|
|
1524
|
+
|
|
1525
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_BULK_TEMPLATE = [
|
|
1526
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_BULK_TEMPLATE_VANITY_NAMESERVER_SET_ID,
|
|
1527
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsBulkTemplate)[];
|
|
1528
|
+
|
|
1529
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_OPERATION = 'operation' satisfies keyof DnsZoneRestampVanityNsWorkerPayload;
|
|
1530
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_TYPE = 'type' satisfies keyof DnsZoneRestampVanityNsWorkerPayload;
|
|
1531
|
+
export const KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_ZONE = 'zone' satisfies keyof DnsZoneRestampVanityNsWorkerPayload;
|
|
1532
|
+
|
|
1533
|
+
export const KEYS_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD = [
|
|
1534
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_OPERATION,
|
|
1535
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_TYPE,
|
|
1536
|
+
KEY_DNS_ZONE_RESTAMP_VANITY_NS_WORKER_PAYLOAD_ZONE,
|
|
1537
|
+
] as const satisfies (keyof DnsZoneRestampVanityNsWorkerPayload)[];
|
|
1538
|
+
|
|
1490
1539
|
export const KEY_DNS_ZONE_RRSETS_CREATE_RRSETS = 'rrsets' satisfies keyof DnsZoneRrsetsCreate;
|
|
1491
1540
|
|
|
1492
1541
|
export const KEYS_DNS_ZONE_RRSETS_CREATE = [
|
|
@@ -2501,6 +2550,7 @@ export const KEYS_DOMAIN_TRANSIT = [
|
|
|
2501
2550
|
KEY_DOMAIN_TRANSIT_SUCCESS,
|
|
2502
2551
|
] as const satisfies (keyof DomainTransit)[];
|
|
2503
2552
|
|
|
2553
|
+
export const KEY_DOMAIN_UPDATE_ATTRIBUTES = 'attributes' satisfies keyof DomainUpdate;
|
|
2504
2554
|
export const KEY_DOMAIN_UPDATE_AUTH_CODE = 'auth_code' satisfies keyof DomainUpdate;
|
|
2505
2555
|
export const KEY_DOMAIN_UPDATE_CONTACTS = 'contacts' satisfies keyof DomainUpdate;
|
|
2506
2556
|
export const KEY_DOMAIN_UPDATE_NAMESERVERS = 'nameservers' satisfies keyof DomainUpdate;
|
|
@@ -2509,6 +2559,7 @@ export const KEY_DOMAIN_UPDATE_STATUS_CHANGES = 'status_changes' satisfies keyof
|
|
|
2509
2559
|
export const KEY_DOMAIN_UPDATE_STATUSES = 'statuses' satisfies keyof DomainUpdate;
|
|
2510
2560
|
|
|
2511
2561
|
export const KEYS_DOMAIN_UPDATE = [
|
|
2562
|
+
KEY_DOMAIN_UPDATE_ATTRIBUTES,
|
|
2512
2563
|
KEY_DOMAIN_UPDATE_AUTH_CODE,
|
|
2513
2564
|
KEY_DOMAIN_UPDATE_CONTACTS,
|
|
2514
2565
|
KEY_DOMAIN_UPDATE_NAMESERVERS,
|
|
@@ -2583,6 +2634,7 @@ export const KEYS_DOMAIN_UPDATE_COMMAND = [
|
|
|
2583
2634
|
KEY_DOMAIN_UPDATE_COMMAND_VERSION,
|
|
2584
2635
|
] as const satisfies (keyof DomainUpdateCommand)[];
|
|
2585
2636
|
|
|
2637
|
+
export const KEY_DOMAIN_UPDATE_PAYLOAD_DATA_ATTRIBUTES = 'attributes' satisfies keyof DomainUpdatePayloadData;
|
|
2586
2638
|
export const KEY_DOMAIN_UPDATE_PAYLOAD_DATA_AUTH_CODE = 'auth_code' satisfies keyof DomainUpdatePayloadData;
|
|
2587
2639
|
export const KEY_DOMAIN_UPDATE_PAYLOAD_DATA_CONTACTS = 'contacts' satisfies keyof DomainUpdatePayloadData;
|
|
2588
2640
|
export const KEY_DOMAIN_UPDATE_PAYLOAD_DATA_DOMAIN_ID = 'domain_id' satisfies keyof DomainUpdatePayloadData;
|
|
@@ -2592,6 +2644,7 @@ export const KEY_DOMAIN_UPDATE_PAYLOAD_DATA_STATUS_CHANGES = 'status_changes' sa
|
|
|
2592
2644
|
export const KEY_DOMAIN_UPDATE_PAYLOAD_DATA_STATUSES = 'statuses' satisfies keyof DomainUpdatePayloadData;
|
|
2593
2645
|
|
|
2594
2646
|
export const KEYS_DOMAIN_UPDATE_PAYLOAD_DATA = [
|
|
2647
|
+
KEY_DOMAIN_UPDATE_PAYLOAD_DATA_ATTRIBUTES,
|
|
2595
2648
|
KEY_DOMAIN_UPDATE_PAYLOAD_DATA_AUTH_CODE,
|
|
2596
2649
|
KEY_DOMAIN_UPDATE_PAYLOAD_DATA_CONTACTS,
|
|
2597
2650
|
KEY_DOMAIN_UPDATE_PAYLOAD_DATA_DOMAIN_ID,
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -109,6 +109,11 @@ export type DnsZonePatchRrsetsBulkPayload = components['schemas']['DnsZonePatchR
|
|
|
109
109
|
export type DnsZonePatchRrsetsWorkerPayload = components['schemas']['DnsZonePatchRrsetsWorkerPayload'];
|
|
110
110
|
export type DnsZoneRecordsPatchOps = components['schemas']['DnsZoneRecordsPatchOps'];
|
|
111
111
|
export type DnsZone = components['schemas']['DnsZoneResponse'];
|
|
112
|
+
export type DnsZoneRestampVanityNsBulkCommand = components['schemas']['DnsZoneRestampVanityNsBulkCommand'];
|
|
113
|
+
export type DnsZoneRestampVanityNsBulkInstance = components['schemas']['DnsZoneRestampVanityNsBulkInstance'];
|
|
114
|
+
export type DnsZoneRestampVanityNsBulkPayload = components['schemas']['DnsZoneRestampVanityNsBulkPayload'];
|
|
115
|
+
export type DnsZoneRestampVanityNsBulkTemplate = components['schemas']['DnsZoneRestampVanityNsBulkTemplate'];
|
|
116
|
+
export type DnsZoneRestampVanityNsWorkerPayload = components['schemas']['DnsZoneRestampVanityNsWorkerPayload'];
|
|
112
117
|
export type DnsZoneRrsetsCreate = components['schemas']['DnsZoneRrsetsCreate'];
|
|
113
118
|
export type DnsZoneRrsetsPatchOps = components['schemas']['DnsZoneRrsetsPatchOps'];
|
|
114
119
|
export type DnsZoneSummary = components['schemas']['DnsZoneSummary'];
|
package/src/openapi.yaml
CHANGED
|
@@ -62,6 +62,7 @@ components:
|
|
|
62
62
|
- datetime
|
|
63
63
|
- integer
|
|
64
64
|
- country_code
|
|
65
|
+
- uri_template
|
|
65
66
|
title: AttributeType
|
|
66
67
|
type: string
|
|
67
68
|
BatchSortField:
|
|
@@ -3038,6 +3039,106 @@ components:
|
|
|
3038
3039
|
- dns_zone_id
|
|
3039
3040
|
title: DnsZoneResponse
|
|
3040
3041
|
type: object
|
|
3042
|
+
DnsZoneRestampVanityNsBulkCommand:
|
|
3043
|
+
properties:
|
|
3044
|
+
command:
|
|
3045
|
+
const: dns_zone_restamp_vanity_ns_bulk
|
|
3046
|
+
default: dns_zone_restamp_vanity_ns_bulk
|
|
3047
|
+
title: Command
|
|
3048
|
+
type: string
|
|
3049
|
+
idempotency_key:
|
|
3050
|
+
anyOf:
|
|
3051
|
+
- type: string
|
|
3052
|
+
- type: 'null'
|
|
3053
|
+
description: Idempotency key for this bulk command
|
|
3054
|
+
title: Idempotency Key
|
|
3055
|
+
payload:
|
|
3056
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkPayload'
|
|
3057
|
+
description: Bulk DNS zone vanity NS restamp payload
|
|
3058
|
+
version:
|
|
3059
|
+
default: v1
|
|
3060
|
+
description: Command version
|
|
3061
|
+
title: Version
|
|
3062
|
+
type: string
|
|
3063
|
+
required:
|
|
3064
|
+
- payload
|
|
3065
|
+
title: DnsZoneRestampVanityNsBulkCommand
|
|
3066
|
+
type: object
|
|
3067
|
+
DnsZoneRestampVanityNsBulkInstance:
|
|
3068
|
+
properties:
|
|
3069
|
+
name:
|
|
3070
|
+
description: The DNS zone name to restamp (e.g., example.com)
|
|
3071
|
+
title: Name
|
|
3072
|
+
type: string
|
|
3073
|
+
vanity_nameserver_set_id:
|
|
3074
|
+
anyOf:
|
|
3075
|
+
- examples:
|
|
3076
|
+
- vns_01h45ytscbebyvny4gc8cr8ma2
|
|
3077
|
+
format: typeid
|
|
3078
|
+
pattern: ^vns_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3079
|
+
type: string
|
|
3080
|
+
x-typeid-prefix: vns
|
|
3081
|
+
- type: 'null'
|
|
3082
|
+
description: 'Override the template''s set for this zone: a set id to brand
|
|
3083
|
+
with, or null to unbrand this zone to system defaults. Omit the field
|
|
3084
|
+
entirely to inherit the template''s value.'
|
|
3085
|
+
title: Vanity Nameserver Set Id
|
|
3086
|
+
required:
|
|
3087
|
+
- name
|
|
3088
|
+
title: DnsZoneRestampVanityNsBulkInstance
|
|
3089
|
+
type: object
|
|
3090
|
+
DnsZoneRestampVanityNsBulkPayload:
|
|
3091
|
+
properties:
|
|
3092
|
+
instances:
|
|
3093
|
+
description: List of zones to restamp (1-1000)
|
|
3094
|
+
items:
|
|
3095
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkInstance'
|
|
3096
|
+
maxItems: 1000
|
|
3097
|
+
minItems: 1
|
|
3098
|
+
title: Instances
|
|
3099
|
+
type: array
|
|
3100
|
+
template:
|
|
3101
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkTemplate'
|
|
3102
|
+
description: Shared vanity NS set for all zones
|
|
3103
|
+
required:
|
|
3104
|
+
- template
|
|
3105
|
+
- instances
|
|
3106
|
+
title: DnsZoneRestampVanityNsBulkPayload
|
|
3107
|
+
type: object
|
|
3108
|
+
DnsZoneRestampVanityNsBulkTemplate:
|
|
3109
|
+
properties:
|
|
3110
|
+
vanity_nameserver_set_id:
|
|
3111
|
+
anyOf:
|
|
3112
|
+
- examples:
|
|
3113
|
+
- vns_01h45ytscbebyvny4gc8cr8ma2
|
|
3114
|
+
format: typeid
|
|
3115
|
+
pattern: ^vns_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3116
|
+
type: string
|
|
3117
|
+
x-typeid-prefix: vns
|
|
3118
|
+
- type: 'null'
|
|
3119
|
+
description: Vanity NS set to restamp every zone's apex NS + SOA with, or
|
|
3120
|
+
null to unbrand all zones back to OpusDNS system default nameservers.
|
|
3121
|
+
An instance may override this.
|
|
3122
|
+
title: Vanity Nameserver Set Id
|
|
3123
|
+
title: DnsZoneRestampVanityNsBulkTemplate
|
|
3124
|
+
type: object
|
|
3125
|
+
DnsZoneRestampVanityNsWorkerPayload:
|
|
3126
|
+
properties:
|
|
3127
|
+
operation:
|
|
3128
|
+
title: Operation
|
|
3129
|
+
type: string
|
|
3130
|
+
type:
|
|
3131
|
+
const: dns_zone_restamp_vanity_ns_bulk
|
|
3132
|
+
title: Type
|
|
3133
|
+
type: string
|
|
3134
|
+
zone:
|
|
3135
|
+
$ref: '#/components/schemas/DnsZoneRestampVanityNsBulkInstance'
|
|
3136
|
+
required:
|
|
3137
|
+
- type
|
|
3138
|
+
- operation
|
|
3139
|
+
- zone
|
|
3140
|
+
title: DnsZoneRestampVanityNsWorkerPayload
|
|
3141
|
+
type: object
|
|
3041
3142
|
DnsZoneRrsetsCreate:
|
|
3042
3143
|
properties:
|
|
3043
3144
|
rrsets:
|
|
@@ -3302,6 +3403,8 @@ components:
|
|
|
3302
3403
|
- nic_it_compliance_confirmation
|
|
3303
3404
|
- travel_industry_acknowledgement
|
|
3304
3405
|
- verification_required
|
|
3406
|
+
- de_general_request_contact
|
|
3407
|
+
- de_abuse_contact
|
|
3305
3408
|
title: DomainAttributeKey
|
|
3306
3409
|
type: string
|
|
3307
3410
|
DomainAvailability:
|
|
@@ -5563,6 +5666,16 @@ components:
|
|
|
5563
5666
|
type: object
|
|
5564
5667
|
DomainUpdate:
|
|
5565
5668
|
properties:
|
|
5669
|
+
attributes:
|
|
5670
|
+
anyOf:
|
|
5671
|
+
- additionalProperties:
|
|
5672
|
+
type: string
|
|
5673
|
+
propertyNames:
|
|
5674
|
+
$ref: '#/components/schemas/DomainAttributeKey'
|
|
5675
|
+
type: object
|
|
5676
|
+
- type: 'null'
|
|
5677
|
+
description: Additional attributes of the domain
|
|
5678
|
+
title: Attributes
|
|
5566
5679
|
auth_code:
|
|
5567
5680
|
anyOf:
|
|
5568
5681
|
- maxLength: 255
|
|
@@ -5771,6 +5884,16 @@ components:
|
|
|
5771
5884
|
type: object
|
|
5772
5885
|
DomainUpdatePayloadData:
|
|
5773
5886
|
properties:
|
|
5887
|
+
attributes:
|
|
5888
|
+
anyOf:
|
|
5889
|
+
- additionalProperties:
|
|
5890
|
+
type: string
|
|
5891
|
+
propertyNames:
|
|
5892
|
+
$ref: '#/components/schemas/DomainAttributeKey'
|
|
5893
|
+
type: object
|
|
5894
|
+
- type: 'null'
|
|
5895
|
+
description: Additional attributes of the domain
|
|
5896
|
+
title: Attributes
|
|
5774
5897
|
auth_code:
|
|
5775
5898
|
anyOf:
|
|
5776
5899
|
- maxLength: 255
|
|
@@ -7592,6 +7715,7 @@ components:
|
|
|
7592
7715
|
dns_zone_create_bulk: '#/components/schemas/DnsZoneCreateBulkCommand'
|
|
7593
7716
|
dns_zone_patch_records_bulk: '#/components/schemas/DnsZonePatchRecordsBulkCommand'
|
|
7594
7717
|
dns_zone_patch_rrsets_bulk: '#/components/schemas/DnsZonePatchRrsetsBulkCommand'
|
|
7718
|
+
dns_zone_restamp_vanity_ns_bulk: '#/components/schemas/DnsZoneRestampVanityNsBulkCommand'
|
|
7595
7719
|
dns_zone_update: '#/components/schemas/DnsZoneUpdateCommand'
|
|
7596
7720
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
7597
7721
|
domain_create: '#/components/schemas/DomainCreateCommand'
|
|
@@ -7628,6 +7752,7 @@ components:
|
|
|
7628
7752
|
- $ref: '#/components/schemas/DnsZoneUpdateBulkCommand'
|
|
7629
7753
|
- $ref: '#/components/schemas/DnsZonePatchRrsetsBulkCommand'
|
|
7630
7754
|
- $ref: '#/components/schemas/DnsZonePatchRecordsBulkCommand'
|
|
7755
|
+
- $ref: '#/components/schemas/DnsZoneRestampVanityNsBulkCommand'
|
|
7631
7756
|
- $ref: '#/components/schemas/ContactCreateBulkCommand'
|
|
7632
7757
|
- $ref: '#/components/schemas/ContactCreateCommand'
|
|
7633
7758
|
- $ref: '#/components/schemas/ParkingCreateBulkCommand'
|
|
@@ -7899,6 +8024,7 @@ components:
|
|
|
7899
8024
|
dns_zone_create_bulk: '#/components/schemas/DnsZoneCreateWorkerPayload'
|
|
7900
8025
|
dns_zone_patch_records_bulk: '#/components/schemas/DnsZonePatchRecordsWorkerPayload'
|
|
7901
8026
|
dns_zone_patch_rrsets_bulk: '#/components/schemas/DnsZonePatchRrsetsWorkerPayload'
|
|
8027
|
+
dns_zone_restamp_vanity_ns_bulk: '#/components/schemas/DnsZoneRestampVanityNsWorkerPayload'
|
|
7902
8028
|
dns_zone_update: '#/components/schemas/DnsZoneUpdateWorkerPayload'
|
|
7903
8029
|
dns_zone_update_bulk: '#/components/schemas/DnsZoneUpdateWorkerPayload'
|
|
7904
8030
|
domain_create: '#/components/schemas/DomainCreateWorkerPayload'
|
|
@@ -7920,6 +8046,7 @@ components:
|
|
|
7920
8046
|
- $ref: '#/components/schemas/DnsZoneUpdateWorkerPayload'
|
|
7921
8047
|
- $ref: '#/components/schemas/DnsZonePatchRrsetsWorkerPayload'
|
|
7922
8048
|
- $ref: '#/components/schemas/DnsZonePatchRecordsWorkerPayload'
|
|
8049
|
+
- $ref: '#/components/schemas/DnsZoneRestampVanityNsWorkerPayload'
|
|
7923
8050
|
- $ref: '#/components/schemas/ContactCreateWorkerPayload'
|
|
7924
8051
|
- $ref: '#/components/schemas/ParkingCreateWorkerPayload'
|
|
7925
8052
|
- $ref: '#/components/schemas/ParkingEnableWorkerPayload'
|
|
@@ -10785,6 +10912,8 @@ components:
|
|
|
10785
10912
|
enum:
|
|
10786
10913
|
- at-ext-contact:type
|
|
10787
10914
|
- DE_CONTACT_TYPE
|
|
10915
|
+
- DE_GENERAL_REQUEST_URI_TEMPLATE
|
|
10916
|
+
- DE_ABUSE_URI_TEMPLATE
|
|
10788
10917
|
- dnsbe:type
|
|
10789
10918
|
- eurid:type
|
|
10790
10919
|
- AFNIC_CONTACT_TYPE
|
|
@@ -13246,7 +13375,7 @@ info:
|
|
|
13246
13375
|
\n\n"
|
|
13247
13376
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13248
13377
|
title: OpusDNS API
|
|
13249
|
-
version: 2026-06-
|
|
13378
|
+
version: 2026-06-24-105749
|
|
13250
13379
|
x-logo:
|
|
13251
13380
|
altText: OpusDNS API Reference
|
|
13252
13381
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -24079,6 +24208,24 @@ paths:
|
|
|
24079
24208
|
type: A
|
|
24080
24209
|
zone_name: zone2.com
|
|
24081
24210
|
version: v1
|
|
24211
|
+
bulk_dns_zone_restamp_vanity_ns:
|
|
24212
|
+
description: Restamp multiple zones' apex NS + SOA onto a vanity nameserver
|
|
24213
|
+
set, or unbrand them to OpusDNS system defaults. The template's
|
|
24214
|
+
vanity_nameserver_set_id applies to every zone; an instance may
|
|
24215
|
+
override it (set null to unbrand just that zone).
|
|
24216
|
+
summary: Bulk DNS zone vanity NS restamp
|
|
24217
|
+
value:
|
|
24218
|
+
commands:
|
|
24219
|
+
- command: dns_zone_restamp_vanity_ns_bulk
|
|
24220
|
+
idempotency_key: bulk-restamp-vanity-ns-2050-01
|
|
24221
|
+
payload:
|
|
24222
|
+
instances:
|
|
24223
|
+
- name: zone1.com
|
|
24224
|
+
- name: zone2.com
|
|
24225
|
+
- name: zone3.com
|
|
24226
|
+
template:
|
|
24227
|
+
vanity_nameserver_set_id: vns_01h9xk4p2e2v8q9r5t7w0c3m6n
|
|
24228
|
+
version: v1
|
|
24082
24229
|
bulk_dns_zone_update:
|
|
24083
24230
|
description: Update multiple DNS zones with the same RRsets. Useful
|
|
24084
24231
|
for applying identical DNS record changes across many zones.
|
|
@@ -24468,6 +24615,7 @@ paths:
|
|
|
24468
24615
|
- domains:manage
|
|
24469
24616
|
- jobs:manage
|
|
24470
24617
|
- parking:manage
|
|
24618
|
+
- vanity_ns:manage
|
|
24471
24619
|
/v1/jobs/{batch_id}:
|
|
24472
24620
|
delete:
|
|
24473
24621
|
operationId: delete_batch_v1_jobs__batch_id__delete
|
package/src/schema.d.ts
CHANGED
|
@@ -2778,7 +2778,7 @@ export interface components {
|
|
|
2778
2778
|
* AttributeType
|
|
2779
2779
|
* @enum {string}
|
|
2780
2780
|
*/
|
|
2781
|
-
AttributeType: "enum" | "string" | "boolean" | "datetime" | "integer" | "country_code";
|
|
2781
|
+
AttributeType: "enum" | "string" | "boolean" | "datetime" | "integer" | "country_code" | "uri_template";
|
|
2782
2782
|
/**
|
|
2783
2783
|
* BatchSortField
|
|
2784
2784
|
* @enum {string}
|
|
@@ -4790,6 +4790,69 @@ export interface components {
|
|
|
4790
4790
|
*/
|
|
4791
4791
|
vanity_nameserver_set_id?: TypeId<"vns"> | null;
|
|
4792
4792
|
};
|
|
4793
|
+
/** DnsZoneRestampVanityNsBulkCommand */
|
|
4794
|
+
DnsZoneRestampVanityNsBulkCommand: {
|
|
4795
|
+
/**
|
|
4796
|
+
* @description discriminator enum property added by openapi-typescript
|
|
4797
|
+
* @enum {string}
|
|
4798
|
+
*/
|
|
4799
|
+
command: "dns_zone_restamp_vanity_ns_bulk";
|
|
4800
|
+
/**
|
|
4801
|
+
* Idempotency Key
|
|
4802
|
+
* @description Idempotency key for this bulk command
|
|
4803
|
+
*/
|
|
4804
|
+
idempotency_key?: string | null;
|
|
4805
|
+
/** @description Bulk DNS zone vanity NS restamp payload */
|
|
4806
|
+
payload: components["schemas"]["DnsZoneRestampVanityNsBulkPayload"];
|
|
4807
|
+
/**
|
|
4808
|
+
* Version
|
|
4809
|
+
* @description Command version
|
|
4810
|
+
* @default v1
|
|
4811
|
+
*/
|
|
4812
|
+
version: string;
|
|
4813
|
+
};
|
|
4814
|
+
/** DnsZoneRestampVanityNsBulkInstance */
|
|
4815
|
+
DnsZoneRestampVanityNsBulkInstance: {
|
|
4816
|
+
/**
|
|
4817
|
+
* Name
|
|
4818
|
+
* @description The DNS zone name to restamp (e.g., example.com)
|
|
4819
|
+
*/
|
|
4820
|
+
name: string;
|
|
4821
|
+
/**
|
|
4822
|
+
* Vanity Nameserver Set Id
|
|
4823
|
+
* @description Override the template's set for this zone: a set id to brand with, or null to unbrand this zone to system defaults. Omit the field entirely to inherit the template's value.
|
|
4824
|
+
*/
|
|
4825
|
+
vanity_nameserver_set_id?: TypeId<"vns"> | null;
|
|
4826
|
+
};
|
|
4827
|
+
/** DnsZoneRestampVanityNsBulkPayload */
|
|
4828
|
+
DnsZoneRestampVanityNsBulkPayload: {
|
|
4829
|
+
/**
|
|
4830
|
+
* Instances
|
|
4831
|
+
* @description List of zones to restamp (1-1000)
|
|
4832
|
+
*/
|
|
4833
|
+
instances: components["schemas"]["DnsZoneRestampVanityNsBulkInstance"][];
|
|
4834
|
+
/** @description Shared vanity NS set for all zones */
|
|
4835
|
+
template: components["schemas"]["DnsZoneRestampVanityNsBulkTemplate"];
|
|
4836
|
+
};
|
|
4837
|
+
/** DnsZoneRestampVanityNsBulkTemplate */
|
|
4838
|
+
DnsZoneRestampVanityNsBulkTemplate: {
|
|
4839
|
+
/**
|
|
4840
|
+
* Vanity Nameserver Set Id
|
|
4841
|
+
* @description Vanity NS set to restamp every zone's apex NS + SOA with, or null to unbrand all zones back to OpusDNS system default nameservers. An instance may override this.
|
|
4842
|
+
*/
|
|
4843
|
+
vanity_nameserver_set_id?: TypeId<"vns"> | null;
|
|
4844
|
+
};
|
|
4845
|
+
/** DnsZoneRestampVanityNsWorkerPayload */
|
|
4846
|
+
DnsZoneRestampVanityNsWorkerPayload: {
|
|
4847
|
+
/** Operation */
|
|
4848
|
+
operation: string;
|
|
4849
|
+
/**
|
|
4850
|
+
* @description discriminator enum property added by openapi-typescript
|
|
4851
|
+
* @enum {string}
|
|
4852
|
+
*/
|
|
4853
|
+
type: "dns_zone_restamp_vanity_ns_bulk";
|
|
4854
|
+
zone: components["schemas"]["DnsZoneRestampVanityNsBulkInstance"];
|
|
4855
|
+
};
|
|
4793
4856
|
/** DnsZoneRrsetsCreate */
|
|
4794
4857
|
DnsZoneRrsetsCreate: {
|
|
4795
4858
|
/** Rrsets */
|
|
@@ -4950,7 +5013,7 @@ export interface components {
|
|
|
4950
5013
|
* DomainAttributeKey
|
|
4951
5014
|
* @enum {string}
|
|
4952
5015
|
*/
|
|
4953
|
-
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required";
|
|
5016
|
+
DomainAttributeKey: "auto_renew_period" | "music_registrant_attestation" | "nic_it_compliance_confirmation" | "travel_industry_acknowledgement" | "verification_required" | "de_general_request_contact" | "de_abuse_contact";
|
|
4954
5017
|
/** DomainAvailability */
|
|
4955
5018
|
DomainAvailability: {
|
|
4956
5019
|
/** Domain */
|
|
@@ -6433,6 +6496,13 @@ export interface components {
|
|
|
6433
6496
|
};
|
|
6434
6497
|
/** DomainUpdate */
|
|
6435
6498
|
DomainUpdate: {
|
|
6499
|
+
/**
|
|
6500
|
+
* Attributes
|
|
6501
|
+
* @description Additional attributes of the domain
|
|
6502
|
+
*/
|
|
6503
|
+
attributes?: {
|
|
6504
|
+
[key: string]: string;
|
|
6505
|
+
} | null;
|
|
6436
6506
|
/**
|
|
6437
6507
|
* Auth Code
|
|
6438
6508
|
* @description The new auth code for the domain
|
|
@@ -6571,6 +6641,13 @@ export interface components {
|
|
|
6571
6641
|
};
|
|
6572
6642
|
/** DomainUpdatePayloadData */
|
|
6573
6643
|
DomainUpdatePayloadData: {
|
|
6644
|
+
/**
|
|
6645
|
+
* Attributes
|
|
6646
|
+
* @description Additional attributes of the domain
|
|
6647
|
+
*/
|
|
6648
|
+
attributes?: {
|
|
6649
|
+
[key: string]: string;
|
|
6650
|
+
} | null;
|
|
6574
6651
|
/**
|
|
6575
6652
|
* Auth Code
|
|
6576
6653
|
* @description The new auth code for the domain
|
|
@@ -7839,7 +7916,7 @@ export interface components {
|
|
|
7839
7916
|
* Commands
|
|
7840
7917
|
* @description List of commands to execute
|
|
7841
7918
|
*/
|
|
7842
|
-
commands: (components["schemas"]["DomainCreateCommand"] | components["schemas"]["DomainUpdateCommand"] | components["schemas"]["DomainTransferCommand"] | components["schemas"]["DnsZoneCreateCommand"] | components["schemas"]["DnsZoneUpdateCommand"] | components["schemas"]["DomainCreateBulkCommand"] | components["schemas"]["DomainTransferBulkCommand"] | components["schemas"]["DomainUpdateBulkCommand"] | components["schemas"]["DnsZoneCreateBulkCommand"] | components["schemas"]["DnsZoneUpdateBulkCommand"] | components["schemas"]["DnsZonePatchRrsetsBulkCommand"] | components["schemas"]["DnsZonePatchRecordsBulkCommand"] | components["schemas"]["ContactCreateBulkCommand"] | components["schemas"]["ContactCreateCommand"] | components["schemas"]["ParkingCreateBulkCommand"] | components["schemas"]["ParkingEnableBulkCommand"] | components["schemas"]["ParkingDisableBulkCommand"] | components["schemas"]["ParkingDeleteBulkCommand"] | components["schemas"]["EmailForwardCreateBulkCommand"] | components["schemas"]["EmailForwardEnableBulkCommand"] | components["schemas"]["EmailForwardDisableBulkCommand"] | components["schemas"]["EmailForwardDeleteBulkCommand"] | components["schemas"]["EmailForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
|
|
7919
|
+
commands: (components["schemas"]["DomainCreateCommand"] | components["schemas"]["DomainUpdateCommand"] | components["schemas"]["DomainTransferCommand"] | components["schemas"]["DnsZoneCreateCommand"] | components["schemas"]["DnsZoneUpdateCommand"] | components["schemas"]["DomainCreateBulkCommand"] | components["schemas"]["DomainTransferBulkCommand"] | components["schemas"]["DomainUpdateBulkCommand"] | components["schemas"]["DnsZoneCreateBulkCommand"] | components["schemas"]["DnsZoneUpdateBulkCommand"] | components["schemas"]["DnsZonePatchRrsetsBulkCommand"] | components["schemas"]["DnsZonePatchRecordsBulkCommand"] | components["schemas"]["DnsZoneRestampVanityNsBulkCommand"] | components["schemas"]["ContactCreateBulkCommand"] | components["schemas"]["ContactCreateCommand"] | components["schemas"]["ParkingCreateBulkCommand"] | components["schemas"]["ParkingEnableBulkCommand"] | components["schemas"]["ParkingDisableBulkCommand"] | components["schemas"]["ParkingDeleteBulkCommand"] | components["schemas"]["EmailForwardCreateBulkCommand"] | components["schemas"]["EmailForwardEnableBulkCommand"] | components["schemas"]["EmailForwardDisableBulkCommand"] | components["schemas"]["EmailForwardDeleteBulkCommand"] | components["schemas"]["EmailForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardCreateBulkCommand"] | components["schemas"]["DomainForwardUpdateBulkCommand"] | components["schemas"]["DomainForwardEnableBulkCommand"] | components["schemas"]["DomainForwardDisableBulkCommand"] | components["schemas"]["DomainForwardDeleteBulkCommand"])[];
|
|
7843
7920
|
/**
|
|
7844
7921
|
* Label
|
|
7845
7922
|
* @description Human-readable label for this batch
|
|
@@ -8058,7 +8135,7 @@ export interface components {
|
|
|
8058
8135
|
* Payload
|
|
8059
8136
|
* @description The original request payload for this job
|
|
8060
8137
|
*/
|
|
8061
|
-
payload?: (components["schemas"]["DomainCreateWorkerPayload"] | components["schemas"]["DomainUpdateWorkerPayload"] | components["schemas"]["DomainTransferWorkerPayload"] | components["schemas"]["DnsZoneCreateWorkerPayload"] | components["schemas"]["DnsZoneUpdateWorkerPayload"] | components["schemas"]["DnsZonePatchRrsetsWorkerPayload"] | components["schemas"]["DnsZonePatchRecordsWorkerPayload"] | components["schemas"]["ContactCreateWorkerPayload"] | components["schemas"]["ParkingCreateWorkerPayload"] | components["schemas"]["ParkingEnableWorkerPayload"] | components["schemas"]["ParkingDisableWorkerPayload"] | components["schemas"]["ParkingDeleteWorkerPayload"]) | {
|
|
8138
|
+
payload?: (components["schemas"]["DomainCreateWorkerPayload"] | components["schemas"]["DomainUpdateWorkerPayload"] | components["schemas"]["DomainTransferWorkerPayload"] | components["schemas"]["DnsZoneCreateWorkerPayload"] | components["schemas"]["DnsZoneUpdateWorkerPayload"] | components["schemas"]["DnsZonePatchRrsetsWorkerPayload"] | components["schemas"]["DnsZonePatchRecordsWorkerPayload"] | components["schemas"]["DnsZoneRestampVanityNsWorkerPayload"] | components["schemas"]["ContactCreateWorkerPayload"] | components["schemas"]["ParkingCreateWorkerPayload"] | components["schemas"]["ParkingEnableWorkerPayload"] | components["schemas"]["ParkingDisableWorkerPayload"] | components["schemas"]["ParkingDeleteWorkerPayload"]) | {
|
|
8062
8139
|
[key: string]: unknown;
|
|
8063
8140
|
} | null;
|
|
8064
8141
|
/**
|
|
@@ -9908,7 +9985,7 @@ export interface components {
|
|
|
9908
9985
|
* @description Registry handle attribute types for type-safe attribute key access.
|
|
9909
9986
|
* @enum {string}
|
|
9910
9987
|
*/
|
|
9911
|
-
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL" | "DNS_LU_CONTACT_ROLE" | "SK_NIC_LEGAL_FORM" | "SK_NIC_IDENT_VALUE";
|
|
9988
|
+
RegistryHandleAttributeType: "at-ext-contact:type" | "DE_CONTACT_TYPE" | "DE_GENERAL_REQUEST_URI_TEMPLATE" | "DE_ABUSE_URI_TEMPLATE" | "dnsbe:type" | "eurid:type" | "AFNIC_CONTACT_TYPE" | "AFNIC_PP_FIRST_NAME" | "AFNIC_PM_LEGAL_STATUS" | "AFNIC_PM_SIREN" | "AFNIC_PM_VAT" | "AFNIC_PM_TRADEMARK" | "AFNIC_PM_ASSOC_WALDEC" | "AFNIC_PM_ASSOC_PUBL_DATE" | "AFNIC_PM_ASSOC_PUBL_ANNOUNCE" | "AFNIC_PM_ASSOC_PUBL_PAGE" | "AFNIC_PM_ASSOC_DECL" | "AFNIC_PM_DUNS" | "AFNIC_PM_LOCAL" | "AFNIC_ID_STATUS" | "AFNIC_REACHABLE_MEDIA" | "AFNIC_REACHABLE_STATUS" | "AFNIC_RESTRICTED_PUBLICATION" | "ROTLD_CONTACT_TYPE" | "ROTLD_CNP_FISCAL_CODE" | "ROTLD_ID_NUMBER" | "ROTLD_REGISTRATION_NUMBER" | "ROTLD_DOMAIN_NAME" | "NOMINET_CONTACT_TYPE" | "NOMINET_CO_NO" | "NOMINET_TRAD_NAME" | "CIRA_CPR" | "SIDN_LEGAL_FORM" | "SIDN_LEGAL_REG_NO" | "US_NEXUS_CATEGORY" | "US_NEXUS_COUNTRY_CODE" | "US_APP_PURPOSE" | "NIC_IT_ENTITY_TYPE" | "NIC_IT_REG_CODE" | "CZ_NIC_IDENT_TYPE" | "CZ_NIC_IDENT_VALUE" | "CZ_NIC_VAT" | "CZ_NIC_NOTIFY_EMAIL" | "DNS_LU_CONTACT_ROLE" | "SK_NIC_LEGAL_FORM" | "SK_NIC_IDENT_VALUE";
|
|
9912
9989
|
/** RegistryLockBase */
|
|
9913
9990
|
RegistryLockBase: {
|
|
9914
9991
|
/**
|