@opusdns/api 0.265.0 → 0.267.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 +49 -1
- package/src/helpers/keys.ts +158 -360
- package/src/helpers/requests.d.ts +18 -0
- package/src/helpers/responses.d.ts +6 -0
- package/src/helpers/schemas-arrays.d.ts +29 -15
- package/src/helpers/schemas.d.ts +32 -96
- package/src/openapi.yaml +99 -81
- package/src/schema.d.ts +46 -47
|
@@ -1137,6 +1137,8 @@ export type GET_ContactsVerify_Request_Query = GET_ContactsVerify_Request['param
|
|
|
1137
1137
|
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
1138
1138
|
*
|
|
1139
1139
|
* @path /v1/dns
|
|
1140
|
+
* @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
|
|
1141
|
+
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
1140
1142
|
*
|
|
1141
1143
|
* @see {@link GET_Dns_Request_Query} - Query parameters type
|
|
1142
1144
|
* @see {@link GET_Dns_Request_Path} - Path parameters type
|
|
@@ -1158,6 +1160,8 @@ export type GET_Dns_Request = {
|
|
|
1158
1160
|
* Use this type to ensure type safety for query parameters.
|
|
1159
1161
|
*
|
|
1160
1162
|
* @path /v1/dns
|
|
1163
|
+
* @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
|
|
1164
|
+
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
1161
1165
|
*/
|
|
1162
1166
|
export type GET_Dns_Request_Query = GET_Dns_Request['parameters']['query'];
|
|
1163
1167
|
|
|
@@ -1361,6 +1365,7 @@ export type GET_DnsZoneName_Request = {
|
|
|
1361
1365
|
parameters: {
|
|
1362
1366
|
path: operations['get_zone_v1_dns__zone_name__get']['parameters']['path'];
|
|
1363
1367
|
};
|
|
1368
|
+
requestBody: unknown;
|
|
1364
1369
|
}
|
|
1365
1370
|
/**
|
|
1366
1371
|
* Path parameters for GET /v1/dns/{zone_name}
|
|
@@ -1376,6 +1381,19 @@ export type GET_DnsZoneName_Request = {
|
|
|
1376
1381
|
* @param zone_name (path) - DNS zone name (trailing dot optional)
|
|
1377
1382
|
*/
|
|
1378
1383
|
export type GET_DnsZoneName_Request_Path = GET_DnsZoneName_Request['parameters']['path'];
|
|
1384
|
+
/**
|
|
1385
|
+
* Request body for GET /v1/dns/{zone_name}
|
|
1386
|
+
*
|
|
1387
|
+
* @remarks
|
|
1388
|
+
* This type defines the request body structure for the GET /v1/dns/{zone_name} endpoint.
|
|
1389
|
+
* It provides type safety for the request body as defined in the OpenAPI specification.
|
|
1390
|
+
*
|
|
1391
|
+
* @example
|
|
1392
|
+
* Use this type to ensure type safety for request body structure.
|
|
1393
|
+
*
|
|
1394
|
+
* @path /v1/dns/{zone_name}
|
|
1395
|
+
*/
|
|
1396
|
+
export type GET_DnsZoneName_Request_Body = GET_DnsZoneName_Request['requestBody'];
|
|
1379
1397
|
|
|
1380
1398
|
/**
|
|
1381
1399
|
* Request type for POST DnsZoneNameDnssecDisable endpoint
|
|
@@ -1853,6 +1853,8 @@ export type GET_ContactsVerify_Response_422 = HTTPValidationError
|
|
|
1853
1853
|
|
|
1854
1854
|
*
|
|
1855
1855
|
* @path /v1/dns
|
|
1856
|
+
* @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
|
|
1857
|
+
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
1856
1858
|
*
|
|
1857
1859
|
* @see {@link GET_Dns_Response_200} - 200 response type
|
|
1858
1860
|
* @see {@link GET_Dns_Response_422} - 422 response type
|
|
@@ -1872,6 +1874,8 @@ export type GET_Dns_Response = GET_Dns_Response_200 | GET_Dns_Response_422;
|
|
|
1872
1874
|
|
|
1873
1875
|
*
|
|
1874
1876
|
* @path /v1/dns
|
|
1877
|
+
* @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
|
|
1878
|
+
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
1875
1879
|
*
|
|
1876
1880
|
* @see {@link GET_Dns_Response} - The main response type definition
|
|
1877
1881
|
* @see {@link Pagination_DnsZone} - The actual schema type definition
|
|
@@ -1889,6 +1893,8 @@ export type GET_Dns_Response_200 = Pagination_DnsZone
|
|
|
1889
1893
|
|
|
1890
1894
|
*
|
|
1891
1895
|
* @path /v1/dns
|
|
1896
|
+
* @param tag_ids (query) - Filter by tag IDs. Can be specified multiple times.
|
|
1897
|
+
* @param include (query) - Include additional data in the response. Can be specified multiple times.
|
|
1892
1898
|
*
|
|
1893
1899
|
* @see {@link GET_Dns_Response} - The main response type definition
|
|
1894
1900
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
@@ -21,8 +21,22 @@
|
|
|
21
21
|
* This file is auto-generated from the OpenAPI specification.
|
|
22
22
|
* Do not edit manually.
|
|
23
23
|
*/
|
|
24
|
-
import { DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, AttributeCondition, DomainContactType, ContactCreateBulkInstance, ContactAttributeLinkDetail, ContactAttributeDefinition, PostalAddressType, ContactConfigBase, CommandError, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsZoneCreateBulkInstance, DnsRecordPatchOp, DnsZonePatchRecordsBulkInstance, DnsRrsetPatchOp, DnsZonePatchRrsetsBulkInstance, DnsRrset, DnsZoneUpdateBulkInstance, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainCreateBulkInstance, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectRequest, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost,
|
|
24
|
+
import { ZoneIncludeField, DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, AttributeCondition, DomainContactType, ContactCreateBulkInstance, ContactAttributeLinkDetail, ContactAttributeDefinition, PostalAddressType, ContactConfigBase, CommandError, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsZoneCreateBulkInstance, DnsRecordPatchOp, DnsZonePatchRecordsBulkInstance, DnsRrsetPatchOp, DnsZonePatchRrsetsBulkInstance, DnsRrset, TagEnriched, DnsZoneUpdateBulkInstance, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainCreateBulkInstance, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectRequest, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainTransferBulkInstance, DomainClientStatus, DomainUpdateBulkInstance, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAliasMetrics, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LegalRequirementOperationType, LocalPresenceRequirementType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactAttributeSet, Contact, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, JobBatchMetadata, Job, ObjectLog, Organization, Parking, RequestHistory, Tag, UserPublic, ParkingCreateBulkInstance, ParkingDeleteBulkInstance, ParkingDisableBulkInstance, ParkingEnableBulkInstance, Period, Permission, PremiumAffectsType, PremiumPriceEntryRes, PremiumPricingAction, PublicReportRes, Relation, LegalRequirementBase, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
25
25
|
|
|
26
|
+
/**
|
|
27
|
+
* ZoneIncludeField
|
|
28
|
+
*
|
|
29
|
+
* @remarks
|
|
30
|
+
* Array type for ZoneIncludeField objects. Used when the API returns a collection of ZoneIncludeField instances.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* ```typescript
|
|
34
|
+
* const items: ZoneIncludeFieldArray = await api.getZoneIncludeFields();
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @see {@link ZoneIncludeField} - The individual ZoneIncludeField type definition
|
|
38
|
+
*/
|
|
39
|
+
export type ZoneIncludeFieldArray = ZoneIncludeField[];
|
|
26
40
|
/**
|
|
27
41
|
* DomainIncludeField
|
|
28
42
|
*
|
|
@@ -429,6 +443,20 @@ export type DnsZonePatchRrsetsBulkInstanceArray = DnsZonePatchRrsetsBulkInstance
|
|
|
429
443
|
* @see {@link DnsRrset} - The individual DnsRrsetResponse type definition
|
|
430
444
|
*/
|
|
431
445
|
export type DnsRrsetArray = DnsRrset[];
|
|
446
|
+
/**
|
|
447
|
+
* TagEnrichedResponse
|
|
448
|
+
*
|
|
449
|
+
* @remarks
|
|
450
|
+
* Array type for TagEnrichedResponse objects. Used when the API returns a collection of TagEnrichedResponse instances.
|
|
451
|
+
*
|
|
452
|
+
* @example
|
|
453
|
+
* ```typescript
|
|
454
|
+
* const items: TagEnrichedArray = await api.getTagEnricheds();
|
|
455
|
+
* ```
|
|
456
|
+
*
|
|
457
|
+
* @see {@link TagEnriched} - The individual TagEnrichedResponse type definition
|
|
458
|
+
*/
|
|
459
|
+
export type TagEnrichedArray = TagEnriched[];
|
|
432
460
|
/**
|
|
433
461
|
* DnsZoneUpdateBulkInstance
|
|
434
462
|
*
|
|
@@ -723,20 +751,6 @@ export type DomainContactArray = DomainContact[];
|
|
|
723
751
|
* @see {@link DomainHost} - The individual DomainHostResponse type definition
|
|
724
752
|
*/
|
|
725
753
|
export type DomainHostArray = DomainHost[];
|
|
726
|
-
/**
|
|
727
|
-
* DomainTagEnrichedResponse
|
|
728
|
-
*
|
|
729
|
-
* @remarks
|
|
730
|
-
* Array type for DomainTagEnrichedResponse objects. Used when the API returns a collection of DomainTagEnrichedResponse instances.
|
|
731
|
-
*
|
|
732
|
-
* @example
|
|
733
|
-
* ```typescript
|
|
734
|
-
* const items: DomainTagEnrichedArray = await api.getDomainTagEnricheds();
|
|
735
|
-
* ```
|
|
736
|
-
*
|
|
737
|
-
* @see {@link DomainTagEnriched} - The individual DomainTagEnrichedResponse type definition
|
|
738
|
-
*/
|
|
739
|
-
export type DomainTagEnrichedArray = DomainTagEnriched[];
|
|
740
754
|
/**
|
|
741
755
|
* DomainSearchSuggestionWithPrice
|
|
742
756
|
*
|
package/src/helpers/schemas.d.ts
CHANGED
|
@@ -778,22 +778,6 @@ export type Currency = components['schemas']['Currency'];
|
|
|
778
778
|
* @see {@link components} - The OpenAPI components schema definition
|
|
779
779
|
*/
|
|
780
780
|
export type DeletePolicyType = components['schemas']['DeletePolicyType'];
|
|
781
|
-
/**
|
|
782
|
-
* DeletedEvent
|
|
783
|
-
*
|
|
784
|
-
* @remarks
|
|
785
|
-
* Type alias for the `DeletedEvent` OpenAPI schema.
|
|
786
|
-
* This type represents deletedevent data structures used in API requests and responses.
|
|
787
|
-
*
|
|
788
|
-
* @example
|
|
789
|
-
* ```typescript
|
|
790
|
-
* const response = await api.getDeletedEvent();
|
|
791
|
-
* const item: DeletedEvent = response.results;
|
|
792
|
-
* ```
|
|
793
|
-
*
|
|
794
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
795
|
-
*/
|
|
796
|
-
export type DeletedEvent = components['schemas']['DeletedEvent'];
|
|
797
781
|
/**
|
|
798
782
|
* DnsChangeAction
|
|
799
783
|
*
|
|
@@ -2522,22 +2506,6 @@ export type DomainSummaryData = components['schemas']['DomainSummaryData'];
|
|
|
2522
2506
|
* @see {@link components} - The OpenAPI components schema definition
|
|
2523
2507
|
*/
|
|
2524
2508
|
export type DomainSummary = components['schemas']['DomainSummaryResponse'];
|
|
2525
|
-
/**
|
|
2526
|
-
* DomainTagEnrichedResponse
|
|
2527
|
-
*
|
|
2528
|
-
* @remarks
|
|
2529
|
-
* Type alias for the `DomainTagEnrichedResponse` OpenAPI schema.
|
|
2530
|
-
* This type represents domaintagenrichedresponse data structures used in API requests and responses.
|
|
2531
|
-
*
|
|
2532
|
-
* @example
|
|
2533
|
-
* ```typescript
|
|
2534
|
-
* const response = await api.getDomainTagEnriched();
|
|
2535
|
-
* const item: DomainTagEnriched = response.results;
|
|
2536
|
-
* ```
|
|
2537
|
-
*
|
|
2538
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
2539
|
-
*/
|
|
2540
|
-
export type DomainTagEnriched = components['schemas']['DomainTagEnrichedResponse'];
|
|
2541
2509
|
/**
|
|
2542
2510
|
* DomainTransferBulkCommand
|
|
2543
2511
|
*
|
|
@@ -3146,38 +3114,6 @@ export type EmailForwardZoneSortField = components['schemas']['EmailForwardZoneS
|
|
|
3146
3114
|
* @see {@link components} - The OpenAPI components schema definition
|
|
3147
3115
|
*/
|
|
3148
3116
|
export type EmailVerificationStatus = components['schemas']['EmailVerificationStatus'];
|
|
3149
|
-
/**
|
|
3150
|
-
* EmptyEvent
|
|
3151
|
-
*
|
|
3152
|
-
* @remarks
|
|
3153
|
-
* Type alias for the `EmptyEvent` OpenAPI schema.
|
|
3154
|
-
* This type represents emptyevent data structures used in API requests and responses.
|
|
3155
|
-
*
|
|
3156
|
-
* @example
|
|
3157
|
-
* ```typescript
|
|
3158
|
-
* const response = await api.getEmptyEvent();
|
|
3159
|
-
* const item: EmptyEvent = response.results;
|
|
3160
|
-
* ```
|
|
3161
|
-
*
|
|
3162
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
3163
|
-
*/
|
|
3164
|
-
export type EmptyEvent = components['schemas']['EmptyEvent'];
|
|
3165
|
-
/**
|
|
3166
|
-
* EppDateTime
|
|
3167
|
-
*
|
|
3168
|
-
* @remarks
|
|
3169
|
-
* Type alias for the `EppDateTime` OpenAPI schema.
|
|
3170
|
-
* This type represents eppdatetime data structures used in API requests and responses.
|
|
3171
|
-
*
|
|
3172
|
-
* @example
|
|
3173
|
-
* ```typescript
|
|
3174
|
-
* const response = await api.getEppDateTime();
|
|
3175
|
-
* const item: EppDateTime = response.results;
|
|
3176
|
-
* ```
|
|
3177
|
-
*
|
|
3178
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
3179
|
-
*/
|
|
3180
|
-
export type EppDateTime = components['schemas']['EppDateTime'];
|
|
3181
3117
|
/**
|
|
3182
3118
|
* EventObjectType
|
|
3183
3119
|
*
|
|
@@ -5460,22 +5396,6 @@ export type Relation = components['schemas']['Relation'];
|
|
|
5460
5396
|
* @see {@link components} - The OpenAPI components schema definition
|
|
5461
5397
|
*/
|
|
5462
5398
|
export type RelationSet = components['schemas']['RelationSet'];
|
|
5463
|
-
/**
|
|
5464
|
-
* RenewalEvent
|
|
5465
|
-
*
|
|
5466
|
-
* @remarks
|
|
5467
|
-
* Type alias for the `RenewalEvent` OpenAPI schema.
|
|
5468
|
-
* This type represents renewalevent data structures used in API requests and responses.
|
|
5469
|
-
*
|
|
5470
|
-
* @example
|
|
5471
|
-
* ```typescript
|
|
5472
|
-
* const response = await api.getRenewalEvent();
|
|
5473
|
-
* const item: RenewalEvent = response.results;
|
|
5474
|
-
* ```
|
|
5475
|
-
*
|
|
5476
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
5477
|
-
*/
|
|
5478
|
-
export type RenewalEvent = components['schemas']['RenewalEvent'];
|
|
5479
5399
|
/**
|
|
5480
5400
|
* RenewalMode
|
|
5481
5401
|
*
|
|
@@ -5780,6 +5700,22 @@ export type TagColor = components['schemas']['TagColor'];
|
|
|
5780
5700
|
* @see {@link components} - The OpenAPI components schema definition
|
|
5781
5701
|
*/
|
|
5782
5702
|
export type TagCreate = components['schemas']['TagCreate'];
|
|
5703
|
+
/**
|
|
5704
|
+
* TagEnrichedResponse
|
|
5705
|
+
*
|
|
5706
|
+
* @remarks
|
|
5707
|
+
* Type alias for the `TagEnrichedResponse` OpenAPI schema.
|
|
5708
|
+
* This type represents tagenrichedresponse data structures used in API requests and responses.
|
|
5709
|
+
*
|
|
5710
|
+
* @example
|
|
5711
|
+
* ```typescript
|
|
5712
|
+
* const response = await api.getTagEnriched();
|
|
5713
|
+
* const item: TagEnriched = response.results;
|
|
5714
|
+
* ```
|
|
5715
|
+
*
|
|
5716
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
5717
|
+
*/
|
|
5718
|
+
export type TagEnriched = components['schemas']['TagEnrichedResponse'];
|
|
5783
5719
|
/**
|
|
5784
5720
|
* TagFilterMode
|
|
5785
5721
|
*
|
|
@@ -5972,22 +5908,6 @@ export type TrademarkClaimsBase = components['schemas']['TrademarkClaimsBase'];
|
|
|
5972
5908
|
* @see {@link components} - The OpenAPI components schema definition
|
|
5973
5909
|
*/
|
|
5974
5910
|
export type TransferAckType = components['schemas']['TransferAckType'];
|
|
5975
|
-
/**
|
|
5976
|
-
* TransferEvent
|
|
5977
|
-
*
|
|
5978
|
-
* @remarks
|
|
5979
|
-
* Type alias for the `TransferEvent` OpenAPI schema.
|
|
5980
|
-
* This type represents transferevent data structures used in API requests and responses.
|
|
5981
|
-
*
|
|
5982
|
-
* @example
|
|
5983
|
-
* ```typescript
|
|
5984
|
-
* const response = await api.getTransferEvent();
|
|
5985
|
-
* const item: TransferEvent = response.results;
|
|
5986
|
-
* ```
|
|
5987
|
-
*
|
|
5988
|
-
* @see {@link components} - The OpenAPI components schema definition
|
|
5989
|
-
*/
|
|
5990
|
-
export type TransferEvent = components['schemas']['TransferEvent'];
|
|
5991
5911
|
/**
|
|
5992
5912
|
* TransferLockPolicyBase
|
|
5993
5913
|
*
|
|
@@ -6276,6 +6196,22 @@ export type VisitsByKeyBucket = components['schemas']['VisitsByKeyBucket'];
|
|
|
6276
6196
|
* @see {@link components} - The OpenAPI components schema definition
|
|
6277
6197
|
*/
|
|
6278
6198
|
export type WhoisBase = components['schemas']['WhoisBase'];
|
|
6199
|
+
/**
|
|
6200
|
+
* ZoneIncludeField
|
|
6201
|
+
*
|
|
6202
|
+
* @remarks
|
|
6203
|
+
* Type alias for the `ZoneIncludeField` OpenAPI schema.
|
|
6204
|
+
* This type represents zoneincludefield data structures used in API requests and responses.
|
|
6205
|
+
*
|
|
6206
|
+
* @example
|
|
6207
|
+
* ```typescript
|
|
6208
|
+
* const response = await api.getZoneIncludeField();
|
|
6209
|
+
* const item: ZoneIncludeField = response.results;
|
|
6210
|
+
* ```
|
|
6211
|
+
*
|
|
6212
|
+
* @see {@link components} - The OpenAPI components schema definition
|
|
6213
|
+
*/
|
|
6214
|
+
export type ZoneIncludeField = components['schemas']['ZoneIncludeField'];
|
|
6279
6215
|
/**
|
|
6280
6216
|
* ZoneSortField
|
|
6281
6217
|
*
|
package/src/openapi.yaml
CHANGED
|
@@ -1602,14 +1602,6 @@ components:
|
|
|
1602
1602
|
- expiration
|
|
1603
1603
|
title: DeletePolicyType
|
|
1604
1604
|
type: string
|
|
1605
|
-
DeletedEvent:
|
|
1606
|
-
properties:
|
|
1607
|
-
date:
|
|
1608
|
-
$ref: '#/components/schemas/EppDateTime'
|
|
1609
|
-
required:
|
|
1610
|
-
- date
|
|
1611
|
-
title: DeletedEvent
|
|
1612
|
-
type: object
|
|
1613
1605
|
DnsChangeAction:
|
|
1614
1606
|
enum:
|
|
1615
1607
|
- create_zone
|
|
@@ -2232,6 +2224,15 @@ components:
|
|
|
2232
2224
|
format: date-time
|
|
2233
2225
|
title: Created On
|
|
2234
2226
|
type: string
|
|
2227
|
+
dns_zone_id:
|
|
2228
|
+
description: The unique identifier of the zone
|
|
2229
|
+
examples:
|
|
2230
|
+
- zone_01h45ytscbebyvny4gc8cr8ma2
|
|
2231
|
+
format: typeid
|
|
2232
|
+
pattern: ^zone_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
2233
|
+
title: Dns Zone Id
|
|
2234
|
+
type: string
|
|
2235
|
+
x-typeid-prefix: zone
|
|
2235
2236
|
dnssec_status:
|
|
2236
2237
|
$ref: '#/components/schemas/DnssecStatus'
|
|
2237
2238
|
default: disabled
|
|
@@ -2245,6 +2246,15 @@ components:
|
|
|
2245
2246
|
$ref: '#/components/schemas/DnsRrsetResponse'
|
|
2246
2247
|
title: Rrsets
|
|
2247
2248
|
type: array
|
|
2249
|
+
tags:
|
|
2250
|
+
anyOf:
|
|
2251
|
+
- items:
|
|
2252
|
+
$ref: '#/components/schemas/TagEnrichedResponse'
|
|
2253
|
+
type: array
|
|
2254
|
+
- type: 'null'
|
|
2255
|
+
description: Tags assigned to this zone. Only included when ?include=tags
|
|
2256
|
+
is specified.
|
|
2257
|
+
title: Tags
|
|
2248
2258
|
updated_on:
|
|
2249
2259
|
description: The date/time the entry was last updated on
|
|
2250
2260
|
format: date-time
|
|
@@ -2252,6 +2262,7 @@ components:
|
|
|
2252
2262
|
type: string
|
|
2253
2263
|
required:
|
|
2254
2264
|
- name
|
|
2265
|
+
- dns_zone_id
|
|
2255
2266
|
title: DnsZoneResponse
|
|
2256
2267
|
type: object
|
|
2257
2268
|
DnsZoneRrsetsCreate:
|
|
@@ -3680,7 +3691,7 @@ components:
|
|
|
3680
3691
|
tags:
|
|
3681
3692
|
anyOf:
|
|
3682
3693
|
- items:
|
|
3683
|
-
$ref: '#/components/schemas/
|
|
3694
|
+
$ref: '#/components/schemas/TagEnrichedResponse'
|
|
3684
3695
|
type: array
|
|
3685
3696
|
- type: 'null'
|
|
3686
3697
|
description: Tags assigned to this domain. Only included when ?include=tags
|
|
@@ -3953,31 +3964,6 @@ components:
|
|
|
3953
3964
|
- domains
|
|
3954
3965
|
title: DomainSummaryResponse
|
|
3955
3966
|
type: object
|
|
3956
|
-
DomainTagEnrichedResponse:
|
|
3957
|
-
properties:
|
|
3958
|
-
color:
|
|
3959
|
-
$ref: '#/components/schemas/TagColor'
|
|
3960
|
-
description: The color of the tag
|
|
3961
|
-
label:
|
|
3962
|
-
description: The label of the tag
|
|
3963
|
-
minLength: 1
|
|
3964
|
-
title: Label
|
|
3965
|
-
type: string
|
|
3966
|
-
tag_id:
|
|
3967
|
-
description: The unique identifier of the tag
|
|
3968
|
-
examples:
|
|
3969
|
-
- tag_01h45ytscbebyvny4gc8cr8ma2
|
|
3970
|
-
format: typeid
|
|
3971
|
-
pattern: ^tag_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
3972
|
-
title: Tag Id
|
|
3973
|
-
type: string
|
|
3974
|
-
x-typeid-prefix: tag
|
|
3975
|
-
required:
|
|
3976
|
-
- tag_id
|
|
3977
|
-
- label
|
|
3978
|
-
- color
|
|
3979
|
-
title: DomainTagEnrichedResponse
|
|
3980
|
-
type: object
|
|
3981
3967
|
DomainTransferBulkCommand:
|
|
3982
3968
|
properties:
|
|
3983
3969
|
command:
|
|
@@ -5079,15 +5065,6 @@ components:
|
|
|
5079
5065
|
- canceled
|
|
5080
5066
|
title: EmailVerificationStatus
|
|
5081
5067
|
type: string
|
|
5082
|
-
EmptyEvent:
|
|
5083
|
-
properties: {}
|
|
5084
|
-
title: EmptyEvent
|
|
5085
|
-
type: object
|
|
5086
|
-
EppDateTime:
|
|
5087
|
-
anyOf:
|
|
5088
|
-
- format: date-time
|
|
5089
|
-
type: string
|
|
5090
|
-
- type: string
|
|
5091
5068
|
EventObjectType:
|
|
5092
5069
|
enum:
|
|
5093
5070
|
- DOMAIN
|
|
@@ -5147,7 +5124,6 @@ components:
|
|
|
5147
5124
|
description: The type of the event - indicates the kind of operation occurring
|
|
5148
5125
|
(e.g., 'ACCOUNT_CREATE', 'DOMAIN_MODIFICATION')
|
|
5149
5126
|
required:
|
|
5150
|
-
- event_data
|
|
5151
5127
|
- created_on
|
|
5152
5128
|
title: EventResponse
|
|
5153
5129
|
type: object
|
|
@@ -8560,17 +8536,6 @@ components:
|
|
|
8560
8536
|
type: array
|
|
8561
8537
|
title: RelationSet
|
|
8562
8538
|
type: object
|
|
8563
|
-
RenewalEvent:
|
|
8564
|
-
properties:
|
|
8565
|
-
registration_expiration_date:
|
|
8566
|
-
description: The new expiration date/time after the domain has been renewed
|
|
8567
|
-
format: date-time
|
|
8568
|
-
title: Registration Expiration Date
|
|
8569
|
-
type: string
|
|
8570
|
-
required:
|
|
8571
|
-
- registration_expiration_date
|
|
8572
|
-
title: RenewalEvent
|
|
8573
|
-
type: object
|
|
8574
8539
|
RenewalMode:
|
|
8575
8540
|
enum:
|
|
8576
8541
|
- renew
|
|
@@ -8869,6 +8834,31 @@ components:
|
|
|
8869
8834
|
- type
|
|
8870
8835
|
title: TagCreate
|
|
8871
8836
|
type: object
|
|
8837
|
+
TagEnrichedResponse:
|
|
8838
|
+
properties:
|
|
8839
|
+
color:
|
|
8840
|
+
$ref: '#/components/schemas/TagColor'
|
|
8841
|
+
description: The color of the tag
|
|
8842
|
+
label:
|
|
8843
|
+
description: The label of the tag
|
|
8844
|
+
minLength: 1
|
|
8845
|
+
title: Label
|
|
8846
|
+
type: string
|
|
8847
|
+
tag_id:
|
|
8848
|
+
description: The unique identifier of the tag
|
|
8849
|
+
examples:
|
|
8850
|
+
- tag_01h45ytscbebyvny4gc8cr8ma2
|
|
8851
|
+
format: typeid
|
|
8852
|
+
pattern: ^tag_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
8853
|
+
title: Tag Id
|
|
8854
|
+
type: string
|
|
8855
|
+
x-typeid-prefix: tag
|
|
8856
|
+
required:
|
|
8857
|
+
- tag_id
|
|
8858
|
+
- label
|
|
8859
|
+
- color
|
|
8860
|
+
title: TagEnrichedResponse
|
|
8861
|
+
type: object
|
|
8872
8862
|
TagFilterMode:
|
|
8873
8863
|
enum:
|
|
8874
8864
|
- match_any
|
|
@@ -9153,31 +9143,6 @@ components:
|
|
|
9153
9143
|
- both
|
|
9154
9144
|
title: TransferAckType
|
|
9155
9145
|
type: string
|
|
9156
|
-
TransferEvent:
|
|
9157
|
-
properties:
|
|
9158
|
-
current_registrar:
|
|
9159
|
-
title: Current Registrar
|
|
9160
|
-
type: string
|
|
9161
|
-
execution_date:
|
|
9162
|
-
$ref: '#/components/schemas/EppDateTime'
|
|
9163
|
-
expiration_date:
|
|
9164
|
-
anyOf:
|
|
9165
|
-
- $ref: '#/components/schemas/EppDateTime'
|
|
9166
|
-
- type: 'null'
|
|
9167
|
-
message:
|
|
9168
|
-
title: Message
|
|
9169
|
-
type: string
|
|
9170
|
-
requesting_registrar:
|
|
9171
|
-
title: Requesting Registrar
|
|
9172
|
-
type: string
|
|
9173
|
-
required:
|
|
9174
|
-
- execution_date
|
|
9175
|
-
- message
|
|
9176
|
-
- requesting_registrar
|
|
9177
|
-
- current_registrar
|
|
9178
|
-
- expiration_date
|
|
9179
|
-
title: TransferEvent
|
|
9180
|
-
type: object
|
|
9181
9146
|
TransferLockPolicyBase:
|
|
9182
9147
|
properties:
|
|
9183
9148
|
supported_by_registrar:
|
|
@@ -9970,6 +9935,11 @@ components:
|
|
|
9970
9935
|
title: Whois Server
|
|
9971
9936
|
title: WhoisBase
|
|
9972
9937
|
type: object
|
|
9938
|
+
ZoneIncludeField:
|
|
9939
|
+
enum:
|
|
9940
|
+
- tags
|
|
9941
|
+
title: ZoneIncludeField
|
|
9942
|
+
type: string
|
|
9973
9943
|
ZoneSortField:
|
|
9974
9944
|
enum:
|
|
9975
9945
|
- name
|
|
@@ -10156,7 +10126,7 @@ info:
|
|
|
10156
10126
|
\n\n"
|
|
10157
10127
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
10158
10128
|
title: OpusDNS API
|
|
10159
|
-
version: 2026-04-
|
|
10129
|
+
version: 2026-04-24-122704
|
|
10160
10130
|
x-logo:
|
|
10161
10131
|
altText: OpusDNS API Reference
|
|
10162
10132
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -12012,6 +11982,29 @@ paths:
|
|
|
12012
11982
|
schema:
|
|
12013
11983
|
$ref: '#/components/schemas/SortOrder'
|
|
12014
11984
|
default: desc
|
|
11985
|
+
- description: Filter by tag IDs. Can be specified multiple times.
|
|
11986
|
+
in: query
|
|
11987
|
+
name: tag_ids
|
|
11988
|
+
required: false
|
|
11989
|
+
schema:
|
|
11990
|
+
anyOf:
|
|
11991
|
+
- items:
|
|
11992
|
+
examples:
|
|
11993
|
+
- tag_01h45ytscbebyvny4gc8cr8ma2
|
|
11994
|
+
format: typeid
|
|
11995
|
+
pattern: ^tag_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
11996
|
+
type: string
|
|
11997
|
+
x-typeid-prefix: tag
|
|
11998
|
+
type: array
|
|
11999
|
+
- type: 'null'
|
|
12000
|
+
description: Filter by tag IDs. Can be specified multiple times.
|
|
12001
|
+
title: Tag Ids
|
|
12002
|
+
- in: query
|
|
12003
|
+
name: tag_mode
|
|
12004
|
+
required: false
|
|
12005
|
+
schema:
|
|
12006
|
+
$ref: '#/components/schemas/TagFilterMode'
|
|
12007
|
+
default: match_any
|
|
12015
12008
|
- in: query
|
|
12016
12009
|
name: dnssec_status
|
|
12017
12010
|
required: false
|
|
@@ -12080,6 +12073,20 @@ paths:
|
|
|
12080
12073
|
type: string
|
|
12081
12074
|
- type: 'null'
|
|
12082
12075
|
title: Updated Before
|
|
12076
|
+
- description: Include additional data in the response. Can be specified multiple
|
|
12077
|
+
times.
|
|
12078
|
+
in: query
|
|
12079
|
+
name: include
|
|
12080
|
+
required: false
|
|
12081
|
+
schema:
|
|
12082
|
+
anyOf:
|
|
12083
|
+
- items:
|
|
12084
|
+
$ref: '#/components/schemas/ZoneIncludeField'
|
|
12085
|
+
type: array
|
|
12086
|
+
- type: 'null'
|
|
12087
|
+
description: Include additional data in the response. Can be specified multiple
|
|
12088
|
+
times.
|
|
12089
|
+
title: Include
|
|
12083
12090
|
- in: query
|
|
12084
12091
|
name: page
|
|
12085
12092
|
required: false
|
|
@@ -12115,6 +12122,7 @@ paths:
|
|
|
12115
12122
|
total_pages: 1
|
|
12116
12123
|
results:
|
|
12117
12124
|
- created_on: '2025-11-18T12:43:35Z'
|
|
12125
|
+
dns_zone_id: zone_01kpwv13k2f329vastjvrckwjs
|
|
12118
12126
|
dnssec_status: disabled
|
|
12119
12127
|
domain_parts:
|
|
12120
12128
|
domain: example
|
|
@@ -12682,6 +12690,16 @@ paths:
|
|
|
12682
12690
|
description: DNS zone name (trailing dot optional)
|
|
12683
12691
|
title: Zone Name
|
|
12684
12692
|
type: string
|
|
12693
|
+
requestBody:
|
|
12694
|
+
content:
|
|
12695
|
+
application/json:
|
|
12696
|
+
schema:
|
|
12697
|
+
anyOf:
|
|
12698
|
+
- items:
|
|
12699
|
+
$ref: '#/components/schemas/ZoneIncludeField'
|
|
12700
|
+
type: array
|
|
12701
|
+
- type: 'null'
|
|
12702
|
+
title: Include
|
|
12685
12703
|
responses:
|
|
12686
12704
|
'200':
|
|
12687
12705
|
content:
|