@parra/parra-js-sdk 0.3.132 → 0.3.133
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 +6 -2
- package/dist/ParraAPI.js +6 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1584,6 +1584,10 @@ export interface UpdateApplicationRequestBody {
|
|
|
1584
1584
|
terms_of_service_policy_document_id?: string | null;
|
|
1585
1585
|
icon?: ImageAssetStub | null;
|
|
1586
1586
|
}
|
|
1587
|
+
export declare enum TenantOnboardingGoal {
|
|
1588
|
+
newProject = "new_project",
|
|
1589
|
+
existingProject = "existing_project"
|
|
1590
|
+
}
|
|
1587
1591
|
export interface TenantOnboardingApplicationIntent {
|
|
1588
1592
|
skipped?: boolean | null;
|
|
1589
1593
|
intent?: string | null;
|
|
@@ -1594,7 +1598,7 @@ export interface TenantOnboardingApplicationIntent {
|
|
|
1594
1598
|
}
|
|
1595
1599
|
export interface TenantOnboarding {
|
|
1596
1600
|
skipped?: boolean | null;
|
|
1597
|
-
goal?:
|
|
1601
|
+
goal?: TenantOnboardingGoal | null;
|
|
1598
1602
|
application_intent?: TenantOnboardingApplicationIntent | null;
|
|
1599
1603
|
}
|
|
1600
1604
|
export interface Entitlement {
|
|
@@ -1886,7 +1890,7 @@ export interface UpdateTenantRequestBody {
|
|
|
1886
1890
|
name?: string;
|
|
1887
1891
|
subdomain?: string | null;
|
|
1888
1892
|
onboarding_skipped?: boolean;
|
|
1889
|
-
onboarding_goal?:
|
|
1893
|
+
onboarding_goal?: TenantOnboardingGoal | null;
|
|
1890
1894
|
logo?: ImageAssetStub | null;
|
|
1891
1895
|
onboarding_application_intent_skipped?: boolean | null;
|
|
1892
1896
|
onboarding_application_intent?: string | null;
|
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.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = 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.TenantOnboardingGoal = exports.ApplicationType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = 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";
|
|
@@ -213,6 +213,11 @@ var ApplicationType;
|
|
|
213
213
|
(function (ApplicationType) {
|
|
214
214
|
ApplicationType["ios"] = "ios";
|
|
215
215
|
})(ApplicationType || (exports.ApplicationType = ApplicationType = {}));
|
|
216
|
+
var TenantOnboardingGoal;
|
|
217
|
+
(function (TenantOnboardingGoal) {
|
|
218
|
+
TenantOnboardingGoal["newProject"] = "new_project";
|
|
219
|
+
TenantOnboardingGoal["existingProject"] = "existing_project";
|
|
220
|
+
})(TenantOnboardingGoal || (exports.TenantOnboardingGoal = TenantOnboardingGoal = {}));
|
|
216
221
|
var ConnectedAppType;
|
|
217
222
|
(function (ConnectedAppType) {
|
|
218
223
|
ConnectedAppType["parra"] = "parra";
|