@parra/parra-js-sdk 0.3.151 → 0.3.153
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 +14 -0
- package/dist/ParraAPI.js +8 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1764,11 +1764,25 @@ export declare enum DomainType {
|
|
|
1764
1764
|
subdomain = "subdomain",
|
|
1765
1765
|
fallback = "fallback"
|
|
1766
1766
|
}
|
|
1767
|
+
export declare enum DomainStatus {
|
|
1768
|
+
setup = "setup",
|
|
1769
|
+
pending = "pending",
|
|
1770
|
+
error = "error",
|
|
1771
|
+
disabled = "disabled"
|
|
1772
|
+
}
|
|
1773
|
+
export interface ExternalDomainData {
|
|
1774
|
+
status: DomainStatus;
|
|
1775
|
+
domain: string;
|
|
1776
|
+
disabled: boolean;
|
|
1777
|
+
}
|
|
1778
|
+
export type DomainData = ExternalDomainData;
|
|
1767
1779
|
export interface Domain {
|
|
1768
1780
|
id: string;
|
|
1769
1781
|
type: DomainType;
|
|
1782
|
+
name: string;
|
|
1770
1783
|
title: string;
|
|
1771
1784
|
url: string;
|
|
1785
|
+
data?: DomainData | null;
|
|
1772
1786
|
}
|
|
1773
1787
|
export interface Entitlement {
|
|
1774
1788
|
}
|
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.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.DomainStatus = exports.DomainType = exports.TenantOnboardingGoal = exports.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = exports.PasswordlessStrategy = 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";
|
|
@@ -233,6 +233,13 @@ var DomainType;
|
|
|
233
233
|
DomainType["subdomain"] = "subdomain";
|
|
234
234
|
DomainType["fallback"] = "fallback";
|
|
235
235
|
})(DomainType || (exports.DomainType = DomainType = {}));
|
|
236
|
+
var DomainStatus;
|
|
237
|
+
(function (DomainStatus) {
|
|
238
|
+
DomainStatus["setup"] = "setup";
|
|
239
|
+
DomainStatus["pending"] = "pending";
|
|
240
|
+
DomainStatus["error"] = "error";
|
|
241
|
+
DomainStatus["disabled"] = "disabled";
|
|
242
|
+
})(DomainStatus || (exports.DomainStatus = DomainStatus = {}));
|
|
236
243
|
var ConnectedAppType;
|
|
237
244
|
(function (ConnectedAppType) {
|
|
238
245
|
ConnectedAppType["parra"] = "parra";
|