@parra/parra-js-sdk 0.3.168 → 0.3.170
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 +12 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -187,10 +187,19 @@ 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?: Array<ExternalDomainVerificationChallenge>;
|
|
194
203
|
}
|
|
195
204
|
export type DomainData = ExternalDomainData;
|
|
196
205
|
export interface Domain {
|
|
@@ -1557,6 +1566,9 @@ export interface ExternalDomain {
|
|
|
1557
1566
|
status: DomainStatus;
|
|
1558
1567
|
domain: string;
|
|
1559
1568
|
disabled: boolean;
|
|
1569
|
+
verified: boolean;
|
|
1570
|
+
configured: boolean;
|
|
1571
|
+
verification?: Array<ExternalDomainVerificationChallenge>;
|
|
1560
1572
|
}
|
|
1561
1573
|
export interface UpdateExternalDomainRequestBody {
|
|
1562
1574
|
domain?: string;
|