@opusdns/api 1.25.0 → 1.27.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 +84 -0
- package/src/helpers/keys.ts +212 -0
- package/src/helpers/requests.d.ts +54 -0
- package/src/helpers/responses.d.ts +57 -0
- package/src/helpers/schemas.d.ts +24 -0
- package/src/openapi.yaml +1082 -77
- package/src/schema.d.ts +912 -56
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -102,6 +102,12 @@ import type {
|
|
|
102
102
|
TransferAckType,
|
|
103
103
|
UserSortField,
|
|
104
104
|
UserStatus,
|
|
105
|
+
VanityNameserverSetStatusDTO,
|
|
106
|
+
VanityNsCheckConfidence,
|
|
107
|
+
VanityNsCheckSeverity,
|
|
108
|
+
VanityNsCheckSource,
|
|
109
|
+
VanityNsCheckStatus,
|
|
110
|
+
VanityNsCheckSummaryState,
|
|
105
111
|
VerificationClaimType,
|
|
106
112
|
VerificationDeadlineType,
|
|
107
113
|
VerificationType,
|
|
@@ -1790,6 +1796,84 @@ export const USER_STATUS_VALUES = [
|
|
|
1790
1796
|
'inactive',
|
|
1791
1797
|
] as const satisfies ReadonlyArray<UserStatus>;
|
|
1792
1798
|
|
|
1799
|
+
export const VANITY_NAMESERVER_SET_STATUS_DTO = {
|
|
1800
|
+
PROVISIONING: "provisioning",
|
|
1801
|
+
ACTIVE: "active",
|
|
1802
|
+
SUSPENDED: "suspended",
|
|
1803
|
+
FAILED: "failed",
|
|
1804
|
+
DELETING: "deleting",
|
|
1805
|
+
} as const satisfies Record<string, VanityNameserverSetStatusDTO>;
|
|
1806
|
+
|
|
1807
|
+
export const VANITY_NAMESERVER_SET_STATUS_DTO_VALUES = [
|
|
1808
|
+
'provisioning',
|
|
1809
|
+
'active',
|
|
1810
|
+
'suspended',
|
|
1811
|
+
'failed',
|
|
1812
|
+
'deleting',
|
|
1813
|
+
] as const satisfies ReadonlyArray<VanityNameserverSetStatusDTO>;
|
|
1814
|
+
|
|
1815
|
+
export const VANITY_NS_CHECK_CONFIDENCE = {
|
|
1816
|
+
AUTHORITATIVE: "authoritative",
|
|
1817
|
+
BEST_EFFORT: "best_effort",
|
|
1818
|
+
} as const satisfies Record<string, VanityNsCheckConfidence>;
|
|
1819
|
+
|
|
1820
|
+
export const VANITY_NS_CHECK_CONFIDENCE_VALUES = [
|
|
1821
|
+
'authoritative',
|
|
1822
|
+
'best_effort',
|
|
1823
|
+
] as const satisfies ReadonlyArray<VanityNsCheckConfidence>;
|
|
1824
|
+
|
|
1825
|
+
export const VANITY_NS_CHECK_SEVERITY = {
|
|
1826
|
+
REQUIRED: "required",
|
|
1827
|
+
RECOMMENDED: "recommended",
|
|
1828
|
+
OPTIONAL: "optional",
|
|
1829
|
+
} as const satisfies Record<string, VanityNsCheckSeverity>;
|
|
1830
|
+
|
|
1831
|
+
export const VANITY_NS_CHECK_SEVERITY_VALUES = [
|
|
1832
|
+
'required',
|
|
1833
|
+
'recommended',
|
|
1834
|
+
'optional',
|
|
1835
|
+
] as const satisfies ReadonlyArray<VanityNsCheckSeverity>;
|
|
1836
|
+
|
|
1837
|
+
export const VANITY_NS_CHECK_SOURCE = {
|
|
1838
|
+
PUBLIC_DNS: "public_dns",
|
|
1839
|
+
AUTHORITATIVE_DNS: "authoritative_dns",
|
|
1840
|
+
REGISTRY_EPP: "registry_epp",
|
|
1841
|
+
} as const satisfies Record<string, VanityNsCheckSource>;
|
|
1842
|
+
|
|
1843
|
+
export const VANITY_NS_CHECK_SOURCE_VALUES = [
|
|
1844
|
+
'public_dns',
|
|
1845
|
+
'authoritative_dns',
|
|
1846
|
+
'registry_epp',
|
|
1847
|
+
] as const satisfies ReadonlyArray<VanityNsCheckSource>;
|
|
1848
|
+
|
|
1849
|
+
export const VANITY_NS_CHECK_STATUS = {
|
|
1850
|
+
PASS: "pass",
|
|
1851
|
+
FAIL: "fail",
|
|
1852
|
+
WARN: "warn",
|
|
1853
|
+
INFO: "info",
|
|
1854
|
+
} as const satisfies Record<string, VanityNsCheckStatus>;
|
|
1855
|
+
|
|
1856
|
+
export const VANITY_NS_CHECK_STATUS_VALUES = [
|
|
1857
|
+
'pass',
|
|
1858
|
+
'fail',
|
|
1859
|
+
'warn',
|
|
1860
|
+
'info',
|
|
1861
|
+
] as const satisfies ReadonlyArray<VanityNsCheckStatus>;
|
|
1862
|
+
|
|
1863
|
+
export const VANITY_NS_CHECK_SUMMARY_STATE = {
|
|
1864
|
+
READY: "ready",
|
|
1865
|
+
PROPAGATING: "propagating",
|
|
1866
|
+
ACTION_REQUIRED: "action_required",
|
|
1867
|
+
DEGRADED: "degraded",
|
|
1868
|
+
} as const satisfies Record<string, VanityNsCheckSummaryState>;
|
|
1869
|
+
|
|
1870
|
+
export const VANITY_NS_CHECK_SUMMARY_STATE_VALUES = [
|
|
1871
|
+
'ready',
|
|
1872
|
+
'propagating',
|
|
1873
|
+
'action_required',
|
|
1874
|
+
'degraded',
|
|
1875
|
+
] as const satisfies ReadonlyArray<VanityNsCheckSummaryState>;
|
|
1876
|
+
|
|
1793
1877
|
export const VERIFICATION_CLAIM_TYPE = {
|
|
1794
1878
|
NAME: "name",
|
|
1795
1879
|
ADDRESS: "address",
|
package/src/helpers/keys.ts
CHANGED
|
@@ -9,6 +9,7 @@ import type {
|
|
|
9
9
|
ClaimsNotice,
|
|
10
10
|
ClaimsNoticesRequest,
|
|
11
11
|
ClaimsNotices,
|
|
12
|
+
ClearVanityNameserverSetDefaultRes,
|
|
12
13
|
CommandError,
|
|
13
14
|
ContactAttestReq,
|
|
14
15
|
ContactAttestRes,
|
|
@@ -52,9 +53,11 @@ import type {
|
|
|
52
53
|
DnsChanges,
|
|
53
54
|
DnsConfigurationBase,
|
|
54
55
|
DnsRecordCreate,
|
|
56
|
+
DnsRecordDTO,
|
|
55
57
|
DnsRecordPatchOp,
|
|
56
58
|
DnsRecord,
|
|
57
59
|
DnsRrsetCreate,
|
|
60
|
+
DnsRrsetDTO,
|
|
58
61
|
DnsRrsetPatch,
|
|
59
62
|
DnsRrsetPatchOp,
|
|
60
63
|
DnsRrset,
|
|
@@ -68,6 +71,7 @@ import type {
|
|
|
68
71
|
DnsZoneCreatePayloadData,
|
|
69
72
|
DnsZoneCreateWorkerPayload,
|
|
70
73
|
DnsZoneCreateWorkerResult,
|
|
74
|
+
DnsZoneDTO,
|
|
71
75
|
DnsZonePatchRecordsBulkCommand,
|
|
72
76
|
DnsZonePatchRecordsBulkInstance,
|
|
73
77
|
DnsZonePatchRecordsBulkPayload,
|
|
@@ -88,6 +92,7 @@ import type {
|
|
|
88
92
|
DnsZoneUpdateCommand,
|
|
89
93
|
DnsZoneUpdatePayloadData,
|
|
90
94
|
DnsZoneUpdateWorkerPayload,
|
|
95
|
+
DnsZoneVanitySetUpdateRes,
|
|
91
96
|
DomainAvailability,
|
|
92
97
|
DomainAvailabilityMeta,
|
|
93
98
|
DomainAvailabilityRequest,
|
|
@@ -240,6 +245,8 @@ import type {
|
|
|
240
245
|
LaunchPhaseBase,
|
|
241
246
|
LaunchPhasesBase,
|
|
242
247
|
LegalRequirementBase,
|
|
248
|
+
ListVanityNameserverSetsRes,
|
|
249
|
+
ListZonesReferencingSetRes,
|
|
243
250
|
LocalPresenceBase,
|
|
244
251
|
MemoryFact,
|
|
245
252
|
MemoryFactCreateRequest,
|
|
@@ -263,6 +270,7 @@ import type {
|
|
|
263
270
|
OrganizationUpdate,
|
|
264
271
|
OrganizationWithBillingData,
|
|
265
272
|
PaginationMetadata,
|
|
273
|
+
PaginationMetadataDTO,
|
|
266
274
|
ParkingActionPayloadData,
|
|
267
275
|
ParkingAgreementAcceptance,
|
|
268
276
|
ParkingCreateBulkCommand,
|
|
@@ -314,6 +322,7 @@ import type {
|
|
|
314
322
|
RequestHistory,
|
|
315
323
|
ReservedDomainsBase,
|
|
316
324
|
RgpOperations,
|
|
325
|
+
SetVanityNameserverSetDefaultRes,
|
|
317
326
|
SldLength,
|
|
318
327
|
StatusChanges,
|
|
319
328
|
StatusCodeStatsBucket,
|
|
@@ -350,11 +359,20 @@ import type {
|
|
|
350
359
|
UserUpdate,
|
|
351
360
|
UserWithAuthorization,
|
|
352
361
|
ValidationError,
|
|
362
|
+
VanityNameserverDTO,
|
|
363
|
+
VanityNameserverSetCreate,
|
|
364
|
+
VanityNameserverSetDTO,
|
|
365
|
+
VanityNameserverSetSummaryDTO,
|
|
366
|
+
VanityNsCheckPublicReq,
|
|
367
|
+
VanityNsCheckRes,
|
|
368
|
+
VanityNsCheckResultDTO,
|
|
369
|
+
VanityNsCheckSummaryDTO,
|
|
353
370
|
VerificationDeadline,
|
|
354
371
|
VerificationRegistrantDetails,
|
|
355
372
|
Verification,
|
|
356
373
|
VisitsByKeyBucket,
|
|
357
374
|
WhoisBase,
|
|
375
|
+
ZoneVanitySetUpdate,
|
|
358
376
|
RequestAuthcode,
|
|
359
377
|
RequestAuthcode2,
|
|
360
378
|
DomainAvailabilityList,
|
|
@@ -499,6 +517,12 @@ export const KEYS_CLAIMS_NOTICES = [
|
|
|
499
517
|
KEY_CLAIMS_NOTICES_CLAIMS_NOTICES,
|
|
500
518
|
] as const satisfies (keyof ClaimsNotices)[];
|
|
501
519
|
|
|
520
|
+
export const KEY_CLEAR_VANITY_NAMESERVER_SET_DEFAULT_RES_CLEARED = 'cleared' satisfies keyof ClearVanityNameserverSetDefaultRes;
|
|
521
|
+
|
|
522
|
+
export const KEYS_CLEAR_VANITY_NAMESERVER_SET_DEFAULT_RES = [
|
|
523
|
+
KEY_CLEAR_VANITY_NAMESERVER_SET_DEFAULT_RES_CLEARED,
|
|
524
|
+
] as const satisfies (keyof ClearVanityNameserverSetDefaultRes)[];
|
|
525
|
+
|
|
502
526
|
export const KEY_COMMAND_ERROR_CODE = 'code' satisfies keyof CommandError;
|
|
503
527
|
export const KEY_COMMAND_ERROR_ERROR = 'error' satisfies keyof CommandError;
|
|
504
528
|
export const KEY_COMMAND_ERROR_INDEX = 'index' satisfies keyof CommandError;
|
|
@@ -1159,6 +1183,12 @@ export const KEYS_DNS_RECORD_CREATE = [
|
|
|
1159
1183
|
KEY_DNS_RECORD_CREATE_RDATA,
|
|
1160
1184
|
] as const satisfies (keyof DnsRecordCreate)[];
|
|
1161
1185
|
|
|
1186
|
+
export const KEY_DNS_RECORD_DTO_RDATA = 'rdata' satisfies keyof DnsRecordDTO;
|
|
1187
|
+
|
|
1188
|
+
export const KEYS_DNS_RECORD_DTO = [
|
|
1189
|
+
KEY_DNS_RECORD_DTO_RDATA,
|
|
1190
|
+
] as const satisfies (keyof DnsRecordDTO)[];
|
|
1191
|
+
|
|
1162
1192
|
export const KEY_DNS_RECORD_PATCH_OP_OP = 'op' satisfies keyof DnsRecordPatchOp;
|
|
1163
1193
|
export const KEY_DNS_RECORD_PATCH_OP_RECORD = 'record' satisfies keyof DnsRecordPatchOp;
|
|
1164
1194
|
|
|
@@ -1189,6 +1219,18 @@ export const KEYS_DNS_RRSET_CREATE = [
|
|
|
1189
1219
|
KEY_DNS_RRSET_CREATE_TYPE,
|
|
1190
1220
|
] as const satisfies (keyof DnsRrsetCreate)[];
|
|
1191
1221
|
|
|
1222
|
+
export const KEY_DNS_RRSET_DTO_NAME = 'name' satisfies keyof DnsRrsetDTO;
|
|
1223
|
+
export const KEY_DNS_RRSET_DTO_RECORDS = 'records' satisfies keyof DnsRrsetDTO;
|
|
1224
|
+
export const KEY_DNS_RRSET_DTO_TTL = 'ttl' satisfies keyof DnsRrsetDTO;
|
|
1225
|
+
export const KEY_DNS_RRSET_DTO_TYPE = 'type' satisfies keyof DnsRrsetDTO;
|
|
1226
|
+
|
|
1227
|
+
export const KEYS_DNS_RRSET_DTO = [
|
|
1228
|
+
KEY_DNS_RRSET_DTO_NAME,
|
|
1229
|
+
KEY_DNS_RRSET_DTO_RECORDS,
|
|
1230
|
+
KEY_DNS_RRSET_DTO_TTL,
|
|
1231
|
+
KEY_DNS_RRSET_DTO_TYPE,
|
|
1232
|
+
] as const satisfies (keyof DnsRrsetDTO)[];
|
|
1233
|
+
|
|
1192
1234
|
export const KEY_DNS_RRSET_PATCH_NAME = 'name' satisfies keyof DnsRrsetPatch;
|
|
1193
1235
|
export const KEY_DNS_RRSET_PATCH_RECORDS = 'records' satisfies keyof DnsRrsetPatch;
|
|
1194
1236
|
export const KEY_DNS_RRSET_PATCH_TTL = 'ttl' satisfies keyof DnsRrsetPatch;
|
|
@@ -1329,6 +1371,22 @@ export const KEYS_DNS_ZONE_CREATE_WORKER_RESULT = [
|
|
|
1329
1371
|
KEY_DNS_ZONE_CREATE_WORKER_RESULT_ZONE_NAME,
|
|
1330
1372
|
] as const satisfies (keyof DnsZoneCreateWorkerResult)[];
|
|
1331
1373
|
|
|
1374
|
+
export const KEY_DNS_ZONE_DTO_CREATED_ON = 'created_on' satisfies keyof DnsZoneDTO;
|
|
1375
|
+
export const KEY_DNS_ZONE_DTO_DNSSEC_STATUS = 'dnssec_status' satisfies keyof DnsZoneDTO;
|
|
1376
|
+
export const KEY_DNS_ZONE_DTO_NAME = 'name' satisfies keyof DnsZoneDTO;
|
|
1377
|
+
export const KEY_DNS_ZONE_DTO_RRSETS = 'rrsets' satisfies keyof DnsZoneDTO;
|
|
1378
|
+
export const KEY_DNS_ZONE_DTO_UPDATED_ON = 'updated_on' satisfies keyof DnsZoneDTO;
|
|
1379
|
+
export const KEY_DNS_ZONE_DTO_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof DnsZoneDTO;
|
|
1380
|
+
|
|
1381
|
+
export const KEYS_DNS_ZONE_DTO = [
|
|
1382
|
+
KEY_DNS_ZONE_DTO_CREATED_ON,
|
|
1383
|
+
KEY_DNS_ZONE_DTO_DNSSEC_STATUS,
|
|
1384
|
+
KEY_DNS_ZONE_DTO_NAME,
|
|
1385
|
+
KEY_DNS_ZONE_DTO_RRSETS,
|
|
1386
|
+
KEY_DNS_ZONE_DTO_UPDATED_ON,
|
|
1387
|
+
KEY_DNS_ZONE_DTO_VANITY_NAMESERVER_SET_ID,
|
|
1388
|
+
] as const satisfies (keyof DnsZoneDTO)[];
|
|
1389
|
+
|
|
1332
1390
|
export const KEY_DNS_ZONE_PATCH_RECORDS_BULK_COMMAND_COMMAND = 'command' satisfies keyof DnsZonePatchRecordsBulkCommand;
|
|
1333
1391
|
export const KEY_DNS_ZONE_PATCH_RECORDS_BULK_COMMAND_IDEMPOTENCY_KEY = 'idempotency_key' satisfies keyof DnsZonePatchRecordsBulkCommand;
|
|
1334
1392
|
export const KEY_DNS_ZONE_PATCH_RECORDS_BULK_COMMAND_PAYLOAD = 'payload' satisfies keyof DnsZonePatchRecordsBulkCommand;
|
|
@@ -1521,6 +1579,12 @@ export const KEYS_DNS_ZONE_UPDATE_WORKER_PAYLOAD = [
|
|
|
1521
1579
|
KEY_DNS_ZONE_UPDATE_WORKER_PAYLOAD_ZONE,
|
|
1522
1580
|
] as const satisfies (keyof DnsZoneUpdateWorkerPayload)[];
|
|
1523
1581
|
|
|
1582
|
+
export const KEY_DNS_ZONE_VANITY_SET_UPDATE_RES_ZONE = 'zone' satisfies keyof DnsZoneVanitySetUpdateRes;
|
|
1583
|
+
|
|
1584
|
+
export const KEYS_DNS_ZONE_VANITY_SET_UPDATE_RES = [
|
|
1585
|
+
KEY_DNS_ZONE_VANITY_SET_UPDATE_RES_ZONE,
|
|
1586
|
+
] as const satisfies (keyof DnsZoneVanitySetUpdateRes)[];
|
|
1587
|
+
|
|
1524
1588
|
export const KEY_DOMAIN_AVAILABILITY_DOMAIN = 'domain' satisfies keyof DomainAvailability;
|
|
1525
1589
|
export const KEY_DOMAIN_AVAILABILITY_STATUS = 'status' satisfies keyof DomainAvailability;
|
|
1526
1590
|
|
|
@@ -3357,6 +3421,22 @@ export const KEYS_LEGAL_REQUIREMENT_BASE = [
|
|
|
3357
3421
|
KEY_LEGAL_REQUIREMENT_BASE_URL,
|
|
3358
3422
|
] as const satisfies (keyof LegalRequirementBase)[];
|
|
3359
3423
|
|
|
3424
|
+
export const KEY_LIST_VANITY_NAMESERVER_SETS_RES_PAGINATION = 'pagination' satisfies keyof ListVanityNameserverSetsRes;
|
|
3425
|
+
export const KEY_LIST_VANITY_NAMESERVER_SETS_RES_RESULTS = 'results' satisfies keyof ListVanityNameserverSetsRes;
|
|
3426
|
+
|
|
3427
|
+
export const KEYS_LIST_VANITY_NAMESERVER_SETS_RES = [
|
|
3428
|
+
KEY_LIST_VANITY_NAMESERVER_SETS_RES_PAGINATION,
|
|
3429
|
+
KEY_LIST_VANITY_NAMESERVER_SETS_RES_RESULTS,
|
|
3430
|
+
] as const satisfies (keyof ListVanityNameserverSetsRes)[];
|
|
3431
|
+
|
|
3432
|
+
export const KEY_LIST_ZONES_REFERENCING_SET_RES_PAGINATION = 'pagination' satisfies keyof ListZonesReferencingSetRes;
|
|
3433
|
+
export const KEY_LIST_ZONES_REFERENCING_SET_RES_RESULTS = 'results' satisfies keyof ListZonesReferencingSetRes;
|
|
3434
|
+
|
|
3435
|
+
export const KEYS_LIST_ZONES_REFERENCING_SET_RES = [
|
|
3436
|
+
KEY_LIST_ZONES_REFERENCING_SET_RES_PAGINATION,
|
|
3437
|
+
KEY_LIST_ZONES_REFERENCING_SET_RES_RESULTS,
|
|
3438
|
+
] as const satisfies (keyof ListZonesReferencingSetRes)[];
|
|
3439
|
+
|
|
3360
3440
|
export const KEY_LOCAL_PRESENCE_BASE_ELIGIBLE_COUNTRIES = 'eligible_countries' satisfies keyof LocalPresenceBase;
|
|
3361
3441
|
export const KEY_LOCAL_PRESENCE_BASE_EXEMPTIONS = 'exemptions' satisfies keyof LocalPresenceBase;
|
|
3362
3442
|
export const KEY_LOCAL_PRESENCE_BASE_REQUIRED = 'required' satisfies keyof LocalPresenceBase;
|
|
@@ -3773,6 +3853,22 @@ export const KEYS_PAGINATION_METADATA = [
|
|
|
3773
3853
|
KEY_PAGINATION_METADATA_TOTAL_PAGES,
|
|
3774
3854
|
] as const satisfies (keyof PaginationMetadata)[];
|
|
3775
3855
|
|
|
3856
|
+
export const KEY_PAGINATION_METADATA_DTO_CURRENT_PAGE = 'current_page' satisfies keyof PaginationMetadataDTO;
|
|
3857
|
+
export const KEY_PAGINATION_METADATA_DTO_HAS_NEXT_PAGE = 'has_next_page' satisfies keyof PaginationMetadataDTO;
|
|
3858
|
+
export const KEY_PAGINATION_METADATA_DTO_HAS_PREVIOUS_PAGE = 'has_previous_page' satisfies keyof PaginationMetadataDTO;
|
|
3859
|
+
export const KEY_PAGINATION_METADATA_DTO_PAGE_SIZE = 'page_size' satisfies keyof PaginationMetadataDTO;
|
|
3860
|
+
export const KEY_PAGINATION_METADATA_DTO_TOTAL_ITEMS = 'total_items' satisfies keyof PaginationMetadataDTO;
|
|
3861
|
+
export const KEY_PAGINATION_METADATA_DTO_TOTAL_PAGES = 'total_pages' satisfies keyof PaginationMetadataDTO;
|
|
3862
|
+
|
|
3863
|
+
export const KEYS_PAGINATION_METADATA_DTO = [
|
|
3864
|
+
KEY_PAGINATION_METADATA_DTO_CURRENT_PAGE,
|
|
3865
|
+
KEY_PAGINATION_METADATA_DTO_HAS_NEXT_PAGE,
|
|
3866
|
+
KEY_PAGINATION_METADATA_DTO_HAS_PREVIOUS_PAGE,
|
|
3867
|
+
KEY_PAGINATION_METADATA_DTO_PAGE_SIZE,
|
|
3868
|
+
KEY_PAGINATION_METADATA_DTO_TOTAL_ITEMS,
|
|
3869
|
+
KEY_PAGINATION_METADATA_DTO_TOTAL_PAGES,
|
|
3870
|
+
] as const satisfies (keyof PaginationMetadataDTO)[];
|
|
3871
|
+
|
|
3776
3872
|
export const KEY_PARKING_ACTION_PAYLOAD_DATA_PARKING_REFERENCE = 'parking_reference' satisfies keyof ParkingActionPayloadData;
|
|
3777
3873
|
|
|
3778
3874
|
export const KEYS_PARKING_ACTION_PAYLOAD_DATA = [
|
|
@@ -4279,6 +4375,12 @@ export const KEYS_RGP_OPERATIONS = [
|
|
|
4279
4375
|
KEY_RGP_OPERATIONS_REQUEST,
|
|
4280
4376
|
] as const satisfies (keyof RgpOperations)[];
|
|
4281
4377
|
|
|
4378
|
+
export const KEY_SET_VANITY_NAMESERVER_SET_DEFAULT_RES_VANITY_NAMESERVER_SET = 'vanity_nameserver_set' satisfies keyof SetVanityNameserverSetDefaultRes;
|
|
4379
|
+
|
|
4380
|
+
export const KEYS_SET_VANITY_NAMESERVER_SET_DEFAULT_RES = [
|
|
4381
|
+
KEY_SET_VANITY_NAMESERVER_SET_DEFAULT_RES_VANITY_NAMESERVER_SET,
|
|
4382
|
+
] as const satisfies (keyof SetVanityNameserverSetDefaultRes)[];
|
|
4383
|
+
|
|
4282
4384
|
export const KEY_SLD_LENGTH_MAX = 'max' satisfies keyof SldLength;
|
|
4283
4385
|
export const KEY_SLD_LENGTH_MIN = 'min' satisfies keyof SldLength;
|
|
4284
4386
|
|
|
@@ -4847,6 +4949,110 @@ export const KEYS_VALIDATION_ERROR = [
|
|
|
4847
4949
|
KEY_VALIDATION_ERROR_TYPE,
|
|
4848
4950
|
] as const satisfies (keyof ValidationError)[];
|
|
4849
4951
|
|
|
4952
|
+
export const KEY_VANITY_NAMESERVER_DTO_HOSTNAME = 'hostname' satisfies keyof VanityNameserverDTO;
|
|
4953
|
+
export const KEY_VANITY_NAMESERVER_DTO_POSITION = 'position' satisfies keyof VanityNameserverDTO;
|
|
4954
|
+
|
|
4955
|
+
export const KEYS_VANITY_NAMESERVER_DTO = [
|
|
4956
|
+
KEY_VANITY_NAMESERVER_DTO_HOSTNAME,
|
|
4957
|
+
KEY_VANITY_NAMESERVER_DTO_POSITION,
|
|
4958
|
+
] as const satisfies (keyof VanityNameserverDTO)[];
|
|
4959
|
+
|
|
4960
|
+
export const KEY_VANITY_NAMESERVER_SET_CREATE_HOSTNAMES = 'hostnames' satisfies keyof VanityNameserverSetCreate;
|
|
4961
|
+
export const KEY_VANITY_NAMESERVER_SET_CREATE_NAME = 'name' satisfies keyof VanityNameserverSetCreate;
|
|
4962
|
+
export const KEY_VANITY_NAMESERVER_SET_CREATE_PARENT_DOMAIN_NAME = 'parent_domain_name' satisfies keyof VanityNameserverSetCreate;
|
|
4963
|
+
export const KEY_VANITY_NAMESERVER_SET_CREATE_SOA_RNAME = 'soa_rname' satisfies keyof VanityNameserverSetCreate;
|
|
4964
|
+
|
|
4965
|
+
export const KEYS_VANITY_NAMESERVER_SET_CREATE = [
|
|
4966
|
+
KEY_VANITY_NAMESERVER_SET_CREATE_HOSTNAMES,
|
|
4967
|
+
KEY_VANITY_NAMESERVER_SET_CREATE_NAME,
|
|
4968
|
+
KEY_VANITY_NAMESERVER_SET_CREATE_PARENT_DOMAIN_NAME,
|
|
4969
|
+
KEY_VANITY_NAMESERVER_SET_CREATE_SOA_RNAME,
|
|
4970
|
+
] as const satisfies (keyof VanityNameserverSetCreate)[];
|
|
4971
|
+
|
|
4972
|
+
export const KEY_VANITY_NAMESERVER_SET_DTO_NAME = 'name' satisfies keyof VanityNameserverSetDTO;
|
|
4973
|
+
export const KEY_VANITY_NAMESERVER_SET_DTO_NAMESERVERS = 'nameservers' satisfies keyof VanityNameserverSetDTO;
|
|
4974
|
+
export const KEY_VANITY_NAMESERVER_SET_DTO_PARENT_DOMAIN_NAME = 'parent_domain_name' satisfies keyof VanityNameserverSetDTO;
|
|
4975
|
+
export const KEY_VANITY_NAMESERVER_SET_DTO_SET_ID = 'set_id' satisfies keyof VanityNameserverSetDTO;
|
|
4976
|
+
export const KEY_VANITY_NAMESERVER_SET_DTO_SOA_RNAME = 'soa_rname' satisfies keyof VanityNameserverSetDTO;
|
|
4977
|
+
|
|
4978
|
+
export const KEYS_VANITY_NAMESERVER_SET_DTO = [
|
|
4979
|
+
KEY_VANITY_NAMESERVER_SET_DTO_NAME,
|
|
4980
|
+
KEY_VANITY_NAMESERVER_SET_DTO_NAMESERVERS,
|
|
4981
|
+
KEY_VANITY_NAMESERVER_SET_DTO_PARENT_DOMAIN_NAME,
|
|
4982
|
+
KEY_VANITY_NAMESERVER_SET_DTO_SET_ID,
|
|
4983
|
+
KEY_VANITY_NAMESERVER_SET_DTO_SOA_RNAME,
|
|
4984
|
+
] as const satisfies (keyof VanityNameserverSetDTO)[];
|
|
4985
|
+
|
|
4986
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_IS_DEFAULT = 'is_default' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4987
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAME = 'name' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4988
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAMESERVERS = 'nameservers' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4989
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_ORGANIZATION_ID = 'organization_id' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4990
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_PARENT_DOMAIN_NAME = 'parent_domain_name' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4991
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SET_ID = 'set_id' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4992
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SOA_RNAME = 'soa_rname' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4993
|
+
export const KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_STATUS = 'status' satisfies keyof VanityNameserverSetSummaryDTO;
|
|
4994
|
+
|
|
4995
|
+
export const KEYS_VANITY_NAMESERVER_SET_SUMMARY_DTO = [
|
|
4996
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_IS_DEFAULT,
|
|
4997
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAME,
|
|
4998
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_NAMESERVERS,
|
|
4999
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_ORGANIZATION_ID,
|
|
5000
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_PARENT_DOMAIN_NAME,
|
|
5001
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SET_ID,
|
|
5002
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_SOA_RNAME,
|
|
5003
|
+
KEY_VANITY_NAMESERVER_SET_SUMMARY_DTO_STATUS,
|
|
5004
|
+
] as const satisfies (keyof VanityNameserverSetSummaryDTO)[];
|
|
5005
|
+
|
|
5006
|
+
export const KEY_VANITY_NS_CHECK_PUBLIC_REQ_SET_ID = 'set_id' satisfies keyof VanityNsCheckPublicReq;
|
|
5007
|
+
|
|
5008
|
+
export const KEYS_VANITY_NS_CHECK_PUBLIC_REQ = [
|
|
5009
|
+
KEY_VANITY_NS_CHECK_PUBLIC_REQ_SET_ID,
|
|
5010
|
+
] as const satisfies (keyof VanityNsCheckPublicReq)[];
|
|
5011
|
+
|
|
5012
|
+
export const KEY_VANITY_NS_CHECK_RES_CHECKS = 'checks' satisfies keyof VanityNsCheckRes;
|
|
5013
|
+
export const KEY_VANITY_NS_CHECK_RES_PARENT_DOMAIN_NAME = 'parent_domain_name' satisfies keyof VanityNsCheckRes;
|
|
5014
|
+
export const KEY_VANITY_NS_CHECK_RES_SET_ID = 'set_id' satisfies keyof VanityNsCheckRes;
|
|
5015
|
+
export const KEY_VANITY_NS_CHECK_RES_STATUS = 'status' satisfies keyof VanityNsCheckRes;
|
|
5016
|
+
export const KEY_VANITY_NS_CHECK_RES_SUMMARY = 'summary' satisfies keyof VanityNsCheckRes;
|
|
5017
|
+
|
|
5018
|
+
export const KEYS_VANITY_NS_CHECK_RES = [
|
|
5019
|
+
KEY_VANITY_NS_CHECK_RES_CHECKS,
|
|
5020
|
+
KEY_VANITY_NS_CHECK_RES_PARENT_DOMAIN_NAME,
|
|
5021
|
+
KEY_VANITY_NS_CHECK_RES_SET_ID,
|
|
5022
|
+
KEY_VANITY_NS_CHECK_RES_STATUS,
|
|
5023
|
+
KEY_VANITY_NS_CHECK_RES_SUMMARY,
|
|
5024
|
+
] as const satisfies (keyof VanityNsCheckRes)[];
|
|
5025
|
+
|
|
5026
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_CONFIDENCE = 'confidence' satisfies keyof VanityNsCheckResultDTO;
|
|
5027
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_DETAIL = 'detail' satisfies keyof VanityNsCheckResultDTO;
|
|
5028
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_ID = 'id' satisfies keyof VanityNsCheckResultDTO;
|
|
5029
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_LABEL = 'label' satisfies keyof VanityNsCheckResultDTO;
|
|
5030
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_OBSERVED = 'observed' satisfies keyof VanityNsCheckResultDTO;
|
|
5031
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_REMEDIATION = 'remediation' satisfies keyof VanityNsCheckResultDTO;
|
|
5032
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_SEVERITY = 'severity' satisfies keyof VanityNsCheckResultDTO;
|
|
5033
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_SOURCE = 'source' satisfies keyof VanityNsCheckResultDTO;
|
|
5034
|
+
export const KEY_VANITY_NS_CHECK_RESULT_DTO_STATUS = 'status' satisfies keyof VanityNsCheckResultDTO;
|
|
5035
|
+
|
|
5036
|
+
export const KEYS_VANITY_NS_CHECK_RESULT_DTO = [
|
|
5037
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_CONFIDENCE,
|
|
5038
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_DETAIL,
|
|
5039
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_ID,
|
|
5040
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_LABEL,
|
|
5041
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_OBSERVED,
|
|
5042
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_REMEDIATION,
|
|
5043
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_SEVERITY,
|
|
5044
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_SOURCE,
|
|
5045
|
+
KEY_VANITY_NS_CHECK_RESULT_DTO_STATUS,
|
|
5046
|
+
] as const satisfies (keyof VanityNsCheckResultDTO)[];
|
|
5047
|
+
|
|
5048
|
+
export const KEY_VANITY_NS_CHECK_SUMMARY_DTO_DETAIL = 'detail' satisfies keyof VanityNsCheckSummaryDTO;
|
|
5049
|
+
export const KEY_VANITY_NS_CHECK_SUMMARY_DTO_STATE = 'state' satisfies keyof VanityNsCheckSummaryDTO;
|
|
5050
|
+
|
|
5051
|
+
export const KEYS_VANITY_NS_CHECK_SUMMARY_DTO = [
|
|
5052
|
+
KEY_VANITY_NS_CHECK_SUMMARY_DTO_DETAIL,
|
|
5053
|
+
KEY_VANITY_NS_CHECK_SUMMARY_DTO_STATE,
|
|
5054
|
+
] as const satisfies (keyof VanityNsCheckSummaryDTO)[];
|
|
5055
|
+
|
|
4850
5056
|
export const KEY_VERIFICATION_DEADLINE_DATE = 'date' satisfies keyof VerificationDeadline;
|
|
4851
5057
|
export const KEY_VERIFICATION_DEADLINE_TYPE = 'type' satisfies keyof VerificationDeadline;
|
|
4852
5058
|
|
|
@@ -4889,6 +5095,12 @@ export const KEYS_WHOIS_BASE = [
|
|
|
4889
5095
|
KEY_WHOIS_BASE_WHOIS_SERVER,
|
|
4890
5096
|
] as const satisfies (keyof WhoisBase)[];
|
|
4891
5097
|
|
|
5098
|
+
export const KEY_ZONE_VANITY_SET_UPDATE_VANITY_NAMESERVER_SET_ID = 'vanity_nameserver_set_id' satisfies keyof ZoneVanitySetUpdate;
|
|
5099
|
+
|
|
5100
|
+
export const KEYS_ZONE_VANITY_SET_UPDATE = [
|
|
5101
|
+
KEY_ZONE_VANITY_SET_UPDATE_VANITY_NAMESERVER_SET_ID,
|
|
5102
|
+
] as const satisfies (keyof ZoneVanitySetUpdate)[];
|
|
5103
|
+
|
|
4892
5104
|
export const KEY_REQUEST_AUTHCODE_DETAIL = 'detail' satisfies keyof RequestAuthcode;
|
|
4893
5105
|
export const KEY_REQUEST_AUTHCODE_NAME = 'name' satisfies keyof RequestAuthcode;
|
|
4894
5106
|
export const KEY_REQUEST_AUTHCODE_SUCCESS = 'success' satisfies keyof RequestAuthcode;
|
|
@@ -51,6 +51,9 @@ import type {
|
|
|
51
51
|
TagUpdate,
|
|
52
52
|
UserCreate,
|
|
53
53
|
UserUpdate,
|
|
54
|
+
VanityNameserverSetCreate,
|
|
55
|
+
VanityNsCheckPublicReq,
|
|
56
|
+
ZoneVanitySetUpdate,
|
|
54
57
|
} from './schemas';
|
|
55
58
|
|
|
56
59
|
export type GET_AiConciergeContextsByContextId_Request = {
|
|
@@ -353,6 +356,13 @@ export type PUT_DnsByZoneNameRrsets_Request = {
|
|
|
353
356
|
export type PUT_DnsByZoneNameRrsets_Request_Path = PUT_DnsByZoneNameRrsets_Request['parameters']['path'];
|
|
354
357
|
export type PUT_DnsByZoneNameRrsets_Request_Body = PUT_DnsByZoneNameRrsets_Request['requestBody'];
|
|
355
358
|
|
|
359
|
+
export type PATCH_DnsByZoneNameVanitySet_Request = {
|
|
360
|
+
parameters: operations['update_zone_vanity_set_v1_dns__zone_name__vanity_set_patch']['parameters'];
|
|
361
|
+
requestBody: ZoneVanitySetUpdate;
|
|
362
|
+
};
|
|
363
|
+
export type PATCH_DnsByZoneNameVanitySet_Request_Path = PATCH_DnsByZoneNameVanitySet_Request['parameters']['path'];
|
|
364
|
+
export type PATCH_DnsByZoneNameVanitySet_Request_Body = PATCH_DnsByZoneNameVanitySet_Request['requestBody'];
|
|
365
|
+
|
|
356
366
|
export type GET_DnsDomainForwards_Request = {
|
|
357
367
|
parameters: operations['list_domain_forwards_by_zone_v1_dns_domain_forwards_get']['parameters'];
|
|
358
368
|
};
|
|
@@ -1024,3 +1034,47 @@ export type PATCH_UsersMePasswordReset_Request = {
|
|
|
1024
1034
|
requestBody: PasswordUpdate;
|
|
1025
1035
|
};
|
|
1026
1036
|
export type PATCH_UsersMePasswordReset_Request_Body = PATCH_UsersMePasswordReset_Request['requestBody'];
|
|
1037
|
+
|
|
1038
|
+
export type GET_VanityNameserverSets_Request = {
|
|
1039
|
+
parameters: operations['list_vanity_nameserver_sets_v1_vanity_nameserver_sets_get']['parameters'];
|
|
1040
|
+
};
|
|
1041
|
+
export type GET_VanityNameserverSets_Request_Query = GET_VanityNameserverSets_Request['parameters']['query'];
|
|
1042
|
+
|
|
1043
|
+
export type POST_VanityNameserverSets_Request = {
|
|
1044
|
+
requestBody: VanityNameserverSetCreate;
|
|
1045
|
+
};
|
|
1046
|
+
export type POST_VanityNameserverSets_Request_Body = POST_VanityNameserverSets_Request['requestBody'];
|
|
1047
|
+
|
|
1048
|
+
export type DELETE_VanityNameserverSetsBySetId_Request = {
|
|
1049
|
+
parameters: operations['delete_vanity_nameserver_set_v1_vanity_nameserver_sets__set_id__delete']['parameters'];
|
|
1050
|
+
};
|
|
1051
|
+
export type DELETE_VanityNameserverSetsBySetId_Request_Path = DELETE_VanityNameserverSetsBySetId_Request['parameters']['path'];
|
|
1052
|
+
|
|
1053
|
+
export type GET_VanityNameserverSetsBySetId_Request = {
|
|
1054
|
+
parameters: operations['get_vanity_nameserver_set_v1_vanity_nameserver_sets__set_id__get']['parameters'];
|
|
1055
|
+
};
|
|
1056
|
+
export type GET_VanityNameserverSetsBySetId_Request_Path = GET_VanityNameserverSetsBySetId_Request['parameters']['path'];
|
|
1057
|
+
|
|
1058
|
+
export type PATCH_VanityNameserverSetsBySetIdDefault_Request = {
|
|
1059
|
+
parameters: operations['set_vanity_nameserver_set_default_v1_vanity_nameserver_sets__set_id__default_patch']['parameters'];
|
|
1060
|
+
};
|
|
1061
|
+
export type PATCH_VanityNameserverSetsBySetIdDefault_Request_Path = PATCH_VanityNameserverSetsBySetIdDefault_Request['parameters']['path'];
|
|
1062
|
+
|
|
1063
|
+
export type POST_VanityNameserverSetsBySetIdRestore_Request = {
|
|
1064
|
+
parameters: operations['restore_vanity_nameserver_set_v1_vanity_nameserver_sets__set_id__restore_post']['parameters'];
|
|
1065
|
+
};
|
|
1066
|
+
export type POST_VanityNameserverSetsBySetIdRestore_Request_Path = POST_VanityNameserverSetsBySetIdRestore_Request['parameters']['path'];
|
|
1067
|
+
|
|
1068
|
+
export type GET_VanityNameserverSetsBySetIdZones_Request = {
|
|
1069
|
+
parameters: operations['list_zones_referencing_vanity_nameserver_set_v1_vanity_nameserver_sets__set_id__zones_get']['parameters'];
|
|
1070
|
+
};
|
|
1071
|
+
export type GET_VanityNameserverSetsBySetIdZones_Request_Query = GET_VanityNameserverSetsBySetIdZones_Request['parameters']['query'];
|
|
1072
|
+
export type GET_VanityNameserverSetsBySetIdZones_Request_Path = GET_VanityNameserverSetsBySetIdZones_Request['parameters']['path'];
|
|
1073
|
+
|
|
1074
|
+
export type POST_VanityNameserverSetsCheck_Request = {
|
|
1075
|
+
requestBody: VanityNsCheckPublicReq;
|
|
1076
|
+
};
|
|
1077
|
+
export type POST_VanityNameserverSetsCheck_Request_Body = POST_VanityNameserverSetsCheck_Request['requestBody'];
|
|
1078
|
+
|
|
1079
|
+
export type DELETE_VanityNameserverSetsDefault_Request = {
|
|
1080
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type {
|
|
2
2
|
BillingTransaction,
|
|
3
3
|
ClaimsNotices,
|
|
4
|
+
ClearVanityNameserverSetDefaultRes,
|
|
4
5
|
Contact,
|
|
5
6
|
ContactAttestRes,
|
|
6
7
|
ContactAttributeLink,
|
|
@@ -15,6 +16,7 @@ import type {
|
|
|
15
16
|
DnsChanges,
|
|
16
17
|
DnsZone,
|
|
17
18
|
DnsZoneSummary,
|
|
19
|
+
DnsZoneVanitySetUpdateRes,
|
|
18
20
|
Domain,
|
|
19
21
|
DomainAvailabilityList,
|
|
20
22
|
DomainCheck,
|
|
@@ -49,6 +51,8 @@ import type {
|
|
|
49
51
|
Job,
|
|
50
52
|
JobBatchRetry,
|
|
51
53
|
JobBatchStatus,
|
|
54
|
+
ListVanityNameserverSetsRes,
|
|
55
|
+
ListZonesReferencingSetRes,
|
|
52
56
|
MemoryFact,
|
|
53
57
|
MemoryFactList,
|
|
54
58
|
Message,
|
|
@@ -90,12 +94,15 @@ import type {
|
|
|
90
94
|
PublicRoleDefinition,
|
|
91
95
|
RequestAuthcode,
|
|
92
96
|
RequestAuthcode2,
|
|
97
|
+
SetVanityNameserverSetDefaultRes,
|
|
93
98
|
Tag,
|
|
94
99
|
TldResponseShort,
|
|
95
100
|
TldSpecification,
|
|
96
101
|
UserPublic,
|
|
97
102
|
UserPublicWithAttributes,
|
|
98
103
|
UserWithAuthorization,
|
|
104
|
+
VanityNameserverSetSummaryDTO,
|
|
105
|
+
VanityNsCheckRes,
|
|
99
106
|
} from './schemas';
|
|
100
107
|
|
|
101
108
|
export type DELETE_AiConciergeConversationsByConversationId_Response = DELETE_AiConciergeConversationsByConversationId_Response_401 | DELETE_AiConciergeConversationsByConversationId_Response_404 | DELETE_AiConciergeConversationsByConversationId_Response_422 | DELETE_AiConciergeConversationsByConversationId_Response_502;
|
|
@@ -226,6 +233,15 @@ export type DELETE_UsersByUserId_Response = DELETE_UsersByUserId_Response_403 |
|
|
|
226
233
|
export type DELETE_UsersByUserId_Response_403 = Problem;
|
|
227
234
|
export type DELETE_UsersByUserId_Response_422 = HTTPValidationError;
|
|
228
235
|
|
|
236
|
+
export type DELETE_VanityNameserverSetsBySetId_Response = DELETE_VanityNameserverSetsBySetId_Response_422;
|
|
237
|
+
|
|
238
|
+
export type DELETE_VanityNameserverSetsBySetId_Response_422 = HTTPValidationError;
|
|
239
|
+
|
|
240
|
+
export type DELETE_VanityNameserverSetsDefault_Response = DELETE_VanityNameserverSetsDefault_Response_200 | DELETE_VanityNameserverSetsDefault_Response_422;
|
|
241
|
+
|
|
242
|
+
export type DELETE_VanityNameserverSetsDefault_Response_200 = ClearVanityNameserverSetDefaultRes;
|
|
243
|
+
export type DELETE_VanityNameserverSetsDefault_Response_422 = HTTPValidationError;
|
|
244
|
+
|
|
229
245
|
export type GET_AiConciergeContextsByContextId_Response = GET_AiConciergeContextsByContextId_Response_200 | GET_AiConciergeContextsByContextId_Response_401 | GET_AiConciergeContextsByContextId_Response_404 | GET_AiConciergeContextsByContextId_Response_422 | GET_AiConciergeContextsByContextId_Response_502;
|
|
230
246
|
|
|
231
247
|
export type GET_AiConciergeContextsByContextId_Response_200 = Context;
|
|
@@ -792,6 +808,21 @@ export type GET_UsersMe_Response = GET_UsersMe_Response_200 | GET_UsersMe_Respon
|
|
|
792
808
|
export type GET_UsersMe_Response_200 = UserWithAuthorization;
|
|
793
809
|
export type GET_UsersMe_Response_422 = HTTPValidationError;
|
|
794
810
|
|
|
811
|
+
export type GET_VanityNameserverSets_Response = GET_VanityNameserverSets_Response_200 | GET_VanityNameserverSets_Response_422;
|
|
812
|
+
|
|
813
|
+
export type GET_VanityNameserverSets_Response_200 = ListVanityNameserverSetsRes;
|
|
814
|
+
export type GET_VanityNameserverSets_Response_422 = HTTPValidationError;
|
|
815
|
+
|
|
816
|
+
export type GET_VanityNameserverSetsBySetId_Response = GET_VanityNameserverSetsBySetId_Response_200 | GET_VanityNameserverSetsBySetId_Response_422;
|
|
817
|
+
|
|
818
|
+
export type GET_VanityNameserverSetsBySetId_Response_200 = VanityNameserverSetSummaryDTO;
|
|
819
|
+
export type GET_VanityNameserverSetsBySetId_Response_422 = HTTPValidationError;
|
|
820
|
+
|
|
821
|
+
export type GET_VanityNameserverSetsBySetIdZones_Response = GET_VanityNameserverSetsBySetIdZones_Response_200 | GET_VanityNameserverSetsBySetIdZones_Response_422;
|
|
822
|
+
|
|
823
|
+
export type GET_VanityNameserverSetsBySetIdZones_Response_200 = ListZonesReferencingSetRes;
|
|
824
|
+
export type GET_VanityNameserverSetsBySetIdZones_Response_422 = HTTPValidationError;
|
|
825
|
+
|
|
795
826
|
export type PATCH_AiConciergeConversationsByConversationId_Response = PATCH_AiConciergeConversationsByConversationId_Response_200 | PATCH_AiConciergeConversationsByConversationId_Response_401 | PATCH_AiConciergeConversationsByConversationId_Response_404 | PATCH_AiConciergeConversationsByConversationId_Response_422 | PATCH_AiConciergeConversationsByConversationId_Response_502;
|
|
796
827
|
|
|
797
828
|
export type PATCH_AiConciergeConversationsByConversationId_Response_200 = Conversation;
|
|
@@ -832,6 +863,12 @@ export type PATCH_DnsByZoneNameRrsets_Response = PATCH_DnsByZoneNameRrsets_Respo
|
|
|
832
863
|
export type PATCH_DnsByZoneNameRrsets_Response_400 = Problem;
|
|
833
864
|
export type PATCH_DnsByZoneNameRrsets_Response_422 = HTTPValidationError;
|
|
834
865
|
|
|
866
|
+
export type PATCH_DnsByZoneNameVanitySet_Response = PATCH_DnsByZoneNameVanitySet_Response_200 | PATCH_DnsByZoneNameVanitySet_Response_400 | PATCH_DnsByZoneNameVanitySet_Response_422;
|
|
867
|
+
|
|
868
|
+
export type PATCH_DnsByZoneNameVanitySet_Response_200 = DnsZoneVanitySetUpdateRes;
|
|
869
|
+
export type PATCH_DnsByZoneNameVanitySet_Response_400 = Problem;
|
|
870
|
+
export type PATCH_DnsByZoneNameVanitySet_Response_422 = HTTPValidationError;
|
|
871
|
+
|
|
835
872
|
export type PATCH_DomainForwards_Response = PATCH_DomainForwards_Response_401 | PATCH_DomainForwards_Response_403 | PATCH_DomainForwards_Response_404 | PATCH_DomainForwards_Response_422;
|
|
836
873
|
|
|
837
874
|
export type PATCH_DomainForwards_Response_401 = Problem;
|
|
@@ -932,6 +969,11 @@ export type PATCH_UsersMePasswordReset_Response = PATCH_UsersMePasswordReset_Res
|
|
|
932
969
|
export type PATCH_UsersMePasswordReset_Response_401 = Problem;
|
|
933
970
|
export type PATCH_UsersMePasswordReset_Response_422 = HTTPValidationError;
|
|
934
971
|
|
|
972
|
+
export type PATCH_VanityNameserverSetsBySetIdDefault_Response = PATCH_VanityNameserverSetsBySetIdDefault_Response_200 | PATCH_VanityNameserverSetsBySetIdDefault_Response_422;
|
|
973
|
+
|
|
974
|
+
export type PATCH_VanityNameserverSetsBySetIdDefault_Response_200 = SetVanityNameserverSetDefaultRes;
|
|
975
|
+
export type PATCH_VanityNameserverSetsBySetIdDefault_Response_422 = HTTPValidationError;
|
|
976
|
+
|
|
935
977
|
export type POST_AiConciergeConversations_Response = POST_AiConciergeConversations_Response_201 | POST_AiConciergeConversations_Response_401 | POST_AiConciergeConversations_Response_404 | POST_AiConciergeConversations_Response_422 | POST_AiConciergeConversations_Response_502;
|
|
936
978
|
|
|
937
979
|
export type POST_AiConciergeConversations_Response_201 = Conversation;
|
|
@@ -1235,6 +1277,21 @@ export type POST_Users_Response = POST_Users_Response_200 | POST_Users_Response_
|
|
|
1235
1277
|
export type POST_Users_Response_200 = UserPublic;
|
|
1236
1278
|
export type POST_Users_Response_422 = HTTPValidationError;
|
|
1237
1279
|
|
|
1280
|
+
export type POST_VanityNameserverSets_Response = POST_VanityNameserverSets_Response_202 | POST_VanityNameserverSets_Response_422;
|
|
1281
|
+
|
|
1282
|
+
export type POST_VanityNameserverSets_Response_202 = VanityNameserverSetSummaryDTO;
|
|
1283
|
+
export type POST_VanityNameserverSets_Response_422 = HTTPValidationError;
|
|
1284
|
+
|
|
1285
|
+
export type POST_VanityNameserverSetsBySetIdRestore_Response = POST_VanityNameserverSetsBySetIdRestore_Response_200 | POST_VanityNameserverSetsBySetIdRestore_Response_422;
|
|
1286
|
+
|
|
1287
|
+
export type POST_VanityNameserverSetsBySetIdRestore_Response_200 = VanityNameserverSetSummaryDTO;
|
|
1288
|
+
export type POST_VanityNameserverSetsBySetIdRestore_Response_422 = HTTPValidationError;
|
|
1289
|
+
|
|
1290
|
+
export type POST_VanityNameserverSetsCheck_Response = POST_VanityNameserverSetsCheck_Response_200 | POST_VanityNameserverSetsCheck_Response_422;
|
|
1291
|
+
|
|
1292
|
+
export type POST_VanityNameserverSetsCheck_Response_200 = VanityNsCheckRes;
|
|
1293
|
+
export type POST_VanityNameserverSetsCheck_Response_422 = HTTPValidationError;
|
|
1294
|
+
|
|
1238
1295
|
export type PUT_ContactsByContactIdVerification_Response = PUT_ContactsByContactIdVerification_Response_400 | PUT_ContactsByContactIdVerification_Response_401 | PUT_ContactsByContactIdVerification_Response_403 | PUT_ContactsByContactIdVerification_Response_404 | PUT_ContactsByContactIdVerification_Response_422;
|
|
1239
1296
|
|
|
1240
1297
|
export type PUT_ContactsByContactIdVerification_Response_400 = Problem;
|