@parra/parra-js-sdk 0.3.158 → 0.3.159

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.
@@ -1498,9 +1498,10 @@ export interface CreateExternalDomainRequestBody {
1498
1498
  domain: string;
1499
1499
  }
1500
1500
  export declare enum DnsRecordStatus {
1501
- setup = "setup",
1501
+ active = "active",
1502
1502
  pending = "pending",
1503
- failed = "failed"
1503
+ error = "error",
1504
+ deleted = "deleted"
1504
1505
  }
1505
1506
  export declare enum DnsRecordType {
1506
1507
  a = "A",
@@ -1527,8 +1528,9 @@ export interface ExternalDomainDnsRecord {
1527
1528
  export declare enum DomainStatus {
1528
1529
  setup = "setup",
1529
1530
  pending = "pending",
1530
- failed = "failed",
1531
- disabled = "disabled"
1531
+ error = "error",
1532
+ disabled = "disabled",
1533
+ deleted = "deleted"
1532
1534
  }
1533
1535
  export interface ExternalDomainData {
1534
1536
  status: DomainStatus;
package/dist/ParraAPI.js CHANGED
@@ -189,9 +189,10 @@ var ApnsPushType;
189
189
  })(ApnsPushType || (exports.ApnsPushType = ApnsPushType = {}));
190
190
  var DnsRecordStatus;
191
191
  (function (DnsRecordStatus) {
192
- DnsRecordStatus["setup"] = "setup";
192
+ DnsRecordStatus["active"] = "active";
193
193
  DnsRecordStatus["pending"] = "pending";
194
- DnsRecordStatus["failed"] = "failed";
194
+ DnsRecordStatus["error"] = "error";
195
+ DnsRecordStatus["deleted"] = "deleted";
195
196
  })(DnsRecordStatus || (exports.DnsRecordStatus = DnsRecordStatus = {}));
196
197
  var DnsRecordType;
197
198
  (function (DnsRecordType) {
@@ -203,8 +204,9 @@ var DomainStatus;
203
204
  (function (DomainStatus) {
204
205
  DomainStatus["setup"] = "setup";
205
206
  DomainStatus["pending"] = "pending";
206
- DomainStatus["failed"] = "failed";
207
+ DomainStatus["error"] = "error";
207
208
  DomainStatus["disabled"] = "disabled";
209
+ DomainStatus["deleted"] = "deleted";
208
210
  })(DomainStatus || (exports.DomainStatus = DomainStatus = {}));
209
211
  var PasswordlessStrategy;
210
212
  (function (PasswordlessStrategy) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.158",
3
+ "version": "0.3.159",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",