@parra/parra-js-sdk 0.3.131 → 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 +21 -3
- package/dist/ParraAPI.js +6 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1584,9 +1584,22 @@ 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
|
+
}
|
|
1591
|
+
export interface TenantOnboardingApplicationIntent {
|
|
1592
|
+
skipped?: boolean | null;
|
|
1593
|
+
intent?: string | null;
|
|
1594
|
+
intent_other_description?: string | null;
|
|
1595
|
+
should_notify?: boolean | null;
|
|
1596
|
+
app_store_connect_setup?: boolean | null;
|
|
1597
|
+
app_store_connect_setup_skipped?: boolean | null;
|
|
1598
|
+
}
|
|
1587
1599
|
export interface TenantOnboarding {
|
|
1588
1600
|
skipped?: boolean | null;
|
|
1589
|
-
goal?:
|
|
1601
|
+
goal?: TenantOnboardingGoal | null;
|
|
1602
|
+
application_intent?: TenantOnboardingApplicationIntent | null;
|
|
1590
1603
|
}
|
|
1591
1604
|
export interface Entitlement {
|
|
1592
1605
|
}
|
|
@@ -1877,9 +1890,14 @@ export interface UpdateTenantRequestBody {
|
|
|
1877
1890
|
name?: string;
|
|
1878
1891
|
subdomain?: string | null;
|
|
1879
1892
|
onboarding_skipped?: boolean;
|
|
1880
|
-
onboarding_goal?:
|
|
1881
|
-
application_onboarding_skipped?: boolean;
|
|
1893
|
+
onboarding_goal?: TenantOnboardingGoal | null;
|
|
1882
1894
|
logo?: ImageAssetStub | null;
|
|
1895
|
+
onboarding_application_intent_skipped?: boolean | null;
|
|
1896
|
+
onboarding_application_intent?: string | null;
|
|
1897
|
+
onboarding_application_intent_other_description?: string | null;
|
|
1898
|
+
onboarding_application_intent_should_notify?: boolean | null;
|
|
1899
|
+
onboarding_application_intent_app_store_connect_setup?: boolean | null;
|
|
1900
|
+
onboarding_application_intent_app_store_connect_setup_skipped?: boolean | null;
|
|
1883
1901
|
}
|
|
1884
1902
|
export interface CreateTenantForUserRequestBody {
|
|
1885
1903
|
name: 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.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";
|