@parra/parra-js-sdk 0.3.171 → 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.
@@ -195,7 +195,8 @@ 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;
@@ -1557,7 +1558,7 @@ export interface UpdateChannelRequestBody {
1557
1558
  inbox?: UpdateInboxChannelRequestBody;
1558
1559
  }
1559
1560
  export interface CreateExternalDomainRequestBody {
1560
- domain: string;
1561
+ name: string;
1561
1562
  }
1562
1563
  export interface ExternalDomain {
1563
1564
  id: string;
@@ -1565,7 +1566,8 @@ export interface ExternalDomain {
1565
1566
  updated_at: string;
1566
1567
  deleted_at?: string | null;
1567
1568
  status: DomainStatus;
1568
- domain: string;
1569
+ name: string;
1570
+ apex_name?: string;
1569
1571
  disabled: boolean;
1570
1572
  verified: boolean;
1571
1573
  configured: boolean;
@@ -1573,7 +1575,7 @@ export interface ExternalDomain {
1573
1575
  verification?: Array<ExternalDomainVerificationChallenge> | null;
1574
1576
  }
1575
1577
  export interface UpdateExternalDomainRequestBody {
1576
- domain?: string;
1578
+ name?: string;
1577
1579
  disabled?: boolean;
1578
1580
  }
1579
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.171",
3
+ "version": "0.3.172",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",