@parra/parra-js-sdk 0.3.170 → 0.3.171

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.
@@ -199,7 +199,8 @@ export interface ExternalDomainData {
199
199
  disabled: boolean;
200
200
  verified: boolean;
201
201
  configured: boolean;
202
- verification?: Array<ExternalDomainVerificationChallenge>;
202
+ verification_error?: string | null;
203
+ verification?: Array<ExternalDomainVerificationChallenge> | null;
203
204
  }
204
205
  export type DomainData = ExternalDomainData;
205
206
  export interface Domain {
@@ -1568,7 +1569,8 @@ export interface ExternalDomain {
1568
1569
  disabled: boolean;
1569
1570
  verified: boolean;
1570
1571
  configured: boolean;
1571
- verification?: Array<ExternalDomainVerificationChallenge>;
1572
+ verification_error?: string | null;
1573
+ verification?: Array<ExternalDomainVerificationChallenge> | null;
1572
1574
  }
1573
1575
  export interface UpdateExternalDomainRequestBody {
1574
1576
  domain?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.170",
3
+ "version": "0.3.171",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",