@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.4.17",
3
+ "version": "0.4.18",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
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
  }