@opusdns/api 0.26.0 → 0.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/schemas-arrays.d.ts +11 -11
- package/src/openapi.yaml +6 -4
- package/src/schema.d.ts +1 -1
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* This file is auto-generated from the OpenAPI specification.
|
|
22
22
|
* Do not edit manually.
|
|
23
23
|
*/
|
|
24
|
-
import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, Nameserver, DeletePolicyType, SyncOperationType, DomainContact,
|
|
24
|
+
import { DomainDnssecData, DomainDnssecDataCreate, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, TldResponseShort, PostalAddressType, ContactConfigBase, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsRecordPatchOp, DnsRrset, DnsRrsetPatchOp, DomainAvailabilityCheck, Nameserver, DeletePolicyType, SyncOperationType, DomainContact, DomainSearchSuggestion, DomainStatus, DomainClientStatus, ValidationError, LaunchPhaseBase, LocalPresenceRequirementType, ContactRoleType, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, ContactSchema, DnsZone, Domain, EmailForwardAlias, EventResponse, OrganizationCredential, Organization, UserNotificationSummary, Period, Permission, PremiumAffectsType, Relation, TldBase, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
27
|
* DomainDnssecDataResponse
|
|
@@ -304,33 +304,33 @@ export type SyncOperationTypeArray = SyncOperationType[];
|
|
|
304
304
|
*/
|
|
305
305
|
export type DomainContactArray = DomainContact[];
|
|
306
306
|
/**
|
|
307
|
-
*
|
|
307
|
+
* DomainSearchSuggestion
|
|
308
308
|
*
|
|
309
309
|
* @remarks
|
|
310
|
-
* Array type for
|
|
310
|
+
* Array type for DomainSearchSuggestion objects. Used when the API returns a collection of DomainSearchSuggestion instances.
|
|
311
311
|
*
|
|
312
312
|
* @example
|
|
313
313
|
* ```typescript
|
|
314
|
-
* const items:
|
|
314
|
+
* const items: DomainSearchSuggestionArray = await api.getDomainSearchSuggestions();
|
|
315
315
|
* ```
|
|
316
316
|
*
|
|
317
|
-
* @see {@link
|
|
317
|
+
* @see {@link DomainSearchSuggestion} - The individual DomainSearchSuggestion type definition
|
|
318
318
|
*/
|
|
319
|
-
export type
|
|
319
|
+
export type DomainSearchSuggestionArray = DomainSearchSuggestion[];
|
|
320
320
|
/**
|
|
321
|
-
*
|
|
321
|
+
* DomainStatus
|
|
322
322
|
*
|
|
323
323
|
* @remarks
|
|
324
|
-
* Array type for
|
|
324
|
+
* Array type for DomainStatus objects. Used when the API returns a collection of DomainStatus instances.
|
|
325
325
|
*
|
|
326
326
|
* @example
|
|
327
327
|
* ```typescript
|
|
328
|
-
* const items:
|
|
328
|
+
* const items: DomainStatusArray = await api.getDomainStatuss();
|
|
329
329
|
* ```
|
|
330
330
|
*
|
|
331
|
-
* @see {@link
|
|
331
|
+
* @see {@link DomainStatus} - The individual DomainStatus type definition
|
|
332
332
|
*/
|
|
333
|
-
export type
|
|
333
|
+
export type DomainStatusArray = DomainStatus[];
|
|
334
334
|
/**
|
|
335
335
|
* DomainClientStatus
|
|
336
336
|
*
|
package/src/openapi.yaml
CHANGED
|
@@ -1574,7 +1574,7 @@ components:
|
|
|
1574
1574
|
registry_statuses:
|
|
1575
1575
|
description: All the domain statuses
|
|
1576
1576
|
items:
|
|
1577
|
-
|
|
1577
|
+
type: string
|
|
1578
1578
|
title: Registry Statuses
|
|
1579
1579
|
type: array
|
|
1580
1580
|
renewal_mode:
|
|
@@ -2317,8 +2317,10 @@ components:
|
|
|
2317
2317
|
ip_addresses:
|
|
2318
2318
|
description: The ip addresses of the name server
|
|
2319
2319
|
examples:
|
|
2320
|
-
- 0.0.0.0
|
|
2321
|
-
|
|
2320
|
+
- - 0.0.0.0
|
|
2321
|
+
- 127.0.0.1
|
|
2322
|
+
- - 2001:db8::1
|
|
2323
|
+
- 2001:db8::2
|
|
2322
2324
|
items:
|
|
2323
2325
|
format: ipvanyaddress
|
|
2324
2326
|
type: string
|
|
@@ -4785,7 +4787,7 @@ info:
|
|
|
4785
4787
|
'
|
|
4786
4788
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
4787
4789
|
title: OpusDNS API
|
|
4788
|
-
version: 2025-08-
|
|
4790
|
+
version: 2025-08-29-160817
|
|
4789
4791
|
x-logo:
|
|
4790
4792
|
altText: OpusDNS API Reference
|
|
4791
4793
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -2092,7 +2092,7 @@ export interface components {
|
|
|
2092
2092
|
* Registry Statuses
|
|
2093
2093
|
* @description All the domain statuses
|
|
2094
2094
|
*/
|
|
2095
|
-
registry_statuses?:
|
|
2095
|
+
registry_statuses?: string[];
|
|
2096
2096
|
/** @description The renewal mode of the domain */
|
|
2097
2097
|
renewal_mode?: components["schemas"]["RenewalMode"];
|
|
2098
2098
|
/**
|