@parra/parra-js-sdk 0.3.154 → 0.3.155
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 +15 -9
- package/dist/ParraAPI.js +7 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1497,6 +1497,21 @@ 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 ExternalDomain {
|
|
1506
|
+
id: string;
|
|
1507
|
+
created_at: string;
|
|
1508
|
+
updated_at: string;
|
|
1509
|
+
deleted_at?: string | null;
|
|
1510
|
+
status: DomainStatus;
|
|
1511
|
+
domain: string;
|
|
1512
|
+
disabled: boolean;
|
|
1513
|
+
dns_records: Array<ExternalDomain>;
|
|
1514
|
+
}
|
|
1500
1515
|
export declare enum DomainStatus {
|
|
1501
1516
|
setup = "setup",
|
|
1502
1517
|
pending = "pending",
|
|
@@ -1508,15 +1523,6 @@ export interface ExternalDomainData {
|
|
|
1508
1523
|
domain: string;
|
|
1509
1524
|
disabled: boolean;
|
|
1510
1525
|
}
|
|
1511
|
-
export interface ExternalDomain {
|
|
1512
|
-
id: string;
|
|
1513
|
-
created_at: string;
|
|
1514
|
-
updated_at: string;
|
|
1515
|
-
deleted_at?: string | null;
|
|
1516
|
-
status: DomainStatus;
|
|
1517
|
-
domain: string;
|
|
1518
|
-
disabled: boolean;
|
|
1519
|
-
}
|
|
1520
1526
|
export interface UpdateExternalDomainRequestBody {
|
|
1521
1527
|
domain?: string;
|
|
1522
1528
|
disabled?: boolean;
|
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";
|