@parra/parra-js-sdk 0.3.154 → 0.3.156
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 +22 -0
- package/dist/ParraAPI.js +7 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1497,6 +1497,27 @@ export interface UpdateChannelRequestBody {
|
|
|
1497
1497
|
export interface CreateExternalDomainRequestBody {
|
|
1498
1498
|
domain: string;
|
|
1499
1499
|
}
|
|
1500
|
+
export declare enum DnsRecordType {
|
|
1501
|
+
a = "A",
|
|
1502
|
+
cname = "CNAME",
|
|
1503
|
+
txt = "TXT"
|
|
1504
|
+
}
|
|
1505
|
+
export interface ExternalDomainDnsRecord {
|
|
1506
|
+
id: string;
|
|
1507
|
+
created_at: string;
|
|
1508
|
+
updated_at: string;
|
|
1509
|
+
deleted_at?: string | null;
|
|
1510
|
+
type: DnsRecordType;
|
|
1511
|
+
value: string;
|
|
1512
|
+
ttl?: number | null;
|
|
1513
|
+
priority?: number | null;
|
|
1514
|
+
weight?: number | null;
|
|
1515
|
+
port?: number | null;
|
|
1516
|
+
target?: string | null;
|
|
1517
|
+
verified: boolean;
|
|
1518
|
+
verified_at?: string | null;
|
|
1519
|
+
required: boolean;
|
|
1520
|
+
}
|
|
1500
1521
|
export declare enum DomainStatus {
|
|
1501
1522
|
setup = "setup",
|
|
1502
1523
|
pending = "pending",
|
|
@@ -1516,6 +1537,7 @@ export interface ExternalDomain {
|
|
|
1516
1537
|
status: DomainStatus;
|
|
1517
1538
|
domain: string;
|
|
1518
1539
|
disabled: boolean;
|
|
1540
|
+
dns_records: Array<ExternalDomainDnsRecord>;
|
|
1519
1541
|
}
|
|
1520
1542
|
export interface UpdateExternalDomainRequestBody {
|
|
1521
1543
|
domain?: string;
|
package/dist/ParraAPI.js
CHANGED
|
@@ -11,7 +11,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
11
11
|
return __assign.apply(this, arguments);
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.PolicyDocumentVersionStatus = exports.PolicyDocumentStatus = exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.DomainType = exports.TenantOnboardingGoal = exports.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = exports.PasswordlessStrategy = exports.DomainStatus = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = exports.IdentityType = exports.PolicyDocumentType = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = void 0;
|
|
14
|
+
exports.PolicyDocumentVersionStatus = exports.PolicyDocumentStatus = exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.DomainType = exports.TenantOnboardingGoal = exports.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = exports.PasswordlessStrategy = exports.DomainStatus = exports.DnsRecordType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = exports.IdentityType = exports.PolicyDocumentType = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = void 0;
|
|
15
15
|
var TicketType;
|
|
16
16
|
(function (TicketType) {
|
|
17
17
|
TicketType["bug"] = "bug";
|
|
@@ -187,6 +187,12 @@ var ApnsPushType;
|
|
|
187
187
|
ApnsPushType["voip"] = "voip";
|
|
188
188
|
ApnsPushType["mdm"] = "mdm";
|
|
189
189
|
})(ApnsPushType || (exports.ApnsPushType = ApnsPushType = {}));
|
|
190
|
+
var DnsRecordType;
|
|
191
|
+
(function (DnsRecordType) {
|
|
192
|
+
DnsRecordType["a"] = "A";
|
|
193
|
+
DnsRecordType["cname"] = "CNAME";
|
|
194
|
+
DnsRecordType["txt"] = "TXT";
|
|
195
|
+
})(DnsRecordType || (exports.DnsRecordType = DnsRecordType = {}));
|
|
190
196
|
var DomainStatus;
|
|
191
197
|
(function (DomainStatus) {
|
|
192
198
|
DomainStatus["setup"] = "setup";
|