@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.
- package/dist/ParraAPI.d.ts +4 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -199,7 +199,8 @@ export interface ExternalDomainData {
|
|
|
199
199
|
disabled: boolean;
|
|
200
200
|
verified: boolean;
|
|
201
201
|
configured: boolean;
|
|
202
|
-
|
|
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
|
-
|
|
1572
|
+
verification_error?: string | null;
|
|
1573
|
+
verification?: Array<ExternalDomainVerificationChallenge> | null;
|
|
1572
1574
|
}
|
|
1573
1575
|
export interface UpdateExternalDomainRequestBody {
|
|
1574
1576
|
domain?: string;
|