@parra/parra-js-sdk 0.3.169 → 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.
Files changed (2) hide show
  1. package/dist/ParraAPI.d.ts +14 -0
  2. package/package.json +1 -1
@@ -187,10 +187,20 @@ export declare enum DomainStatus {
187
187
  disabled = "disabled",
188
188
  deleted = "deleted"
189
189
  }
190
+ export interface ExternalDomainVerificationChallenge {
191
+ domain: string;
192
+ reason: string;
193
+ type: string;
194
+ value: string;
195
+ }
190
196
  export interface ExternalDomainData {
191
197
  status: DomainStatus;
192
198
  domain: string;
193
199
  disabled: boolean;
200
+ verified: boolean;
201
+ configured: boolean;
202
+ verification_error?: string | null;
203
+ verification?: Array<ExternalDomainVerificationChallenge> | null;
194
204
  }
195
205
  export type DomainData = ExternalDomainData;
196
206
  export interface Domain {
@@ -1557,6 +1567,10 @@ export interface ExternalDomain {
1557
1567
  status: DomainStatus;
1558
1568
  domain: string;
1559
1569
  disabled: boolean;
1570
+ verified: boolean;
1571
+ configured: boolean;
1572
+ verification_error?: string | null;
1573
+ verification?: Array<ExternalDomainVerificationChallenge> | null;
1560
1574
  }
1561
1575
  export interface UpdateExternalDomainRequestBody {
1562
1576
  domain?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.169",
3
+ "version": "0.3.171",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",