@shipstatic/types 0.4.17 → 0.4.18
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/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -138,6 +138,8 @@ export interface DomainDnsResponse {
|
|
|
138
138
|
export interface DomainRecordsResponse {
|
|
139
139
|
/** The domain name */
|
|
140
140
|
domain: string;
|
|
141
|
+
/** The apex (registered) domain where DNS records are managed */
|
|
142
|
+
apex: string;
|
|
141
143
|
/** Required DNS records for configuration */
|
|
142
144
|
records: DnsRecord[];
|
|
143
145
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -158,6 +158,8 @@ export interface DomainDnsResponse {
|
|
|
158
158
|
export interface DomainRecordsResponse {
|
|
159
159
|
/** The domain name */
|
|
160
160
|
domain: string;
|
|
161
|
+
/** The apex (registered) domain where DNS records are managed */
|
|
162
|
+
apex: string;
|
|
161
163
|
/** Required DNS records for configuration */
|
|
162
164
|
records: DnsRecord[];
|
|
163
165
|
}
|