@parra/parra-js-sdk 0.3.170 → 0.3.172

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 +10 -6
  2. package/package.json +1 -1
@@ -195,11 +195,13 @@ export interface ExternalDomainVerificationChallenge {
195
195
  }
196
196
  export interface ExternalDomainData {
197
197
  status: DomainStatus;
198
- domain: string;
198
+ name: string;
199
+ apex_name?: string;
199
200
  disabled: boolean;
200
201
  verified: boolean;
201
202
  configured: boolean;
202
- verification?: Array<ExternalDomainVerificationChallenge>;
203
+ verification_error?: string | null;
204
+ verification?: Array<ExternalDomainVerificationChallenge> | null;
203
205
  }
204
206
  export type DomainData = ExternalDomainData;
205
207
  export interface Domain {
@@ -1556,7 +1558,7 @@ export interface UpdateChannelRequestBody {
1556
1558
  inbox?: UpdateInboxChannelRequestBody;
1557
1559
  }
1558
1560
  export interface CreateExternalDomainRequestBody {
1559
- domain: string;
1561
+ name: string;
1560
1562
  }
1561
1563
  export interface ExternalDomain {
1562
1564
  id: string;
@@ -1564,14 +1566,16 @@ export interface ExternalDomain {
1564
1566
  updated_at: string;
1565
1567
  deleted_at?: string | null;
1566
1568
  status: DomainStatus;
1567
- domain: string;
1569
+ name: string;
1570
+ apex_name?: string;
1568
1571
  disabled: boolean;
1569
1572
  verified: boolean;
1570
1573
  configured: boolean;
1571
- verification?: Array<ExternalDomainVerificationChallenge>;
1574
+ verification_error?: string | null;
1575
+ verification?: Array<ExternalDomainVerificationChallenge> | null;
1572
1576
  }
1573
1577
  export interface UpdateExternalDomainRequestBody {
1574
- domain?: string;
1578
+ name?: string;
1575
1579
  disabled?: boolean;
1576
1580
  }
1577
1581
  export interface SubdomainAvailabilityRequestBody {
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.172",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",