@parra/parra-js-sdk 0.3.132 → 0.3.134
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 +8 -3
- package/dist/ParraAPI.js +8 -2
- 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 {
|
|
@@ -1676,7 +1680,8 @@ export interface ApiKeyCollectionResponse {
|
|
|
1676
1680
|
}
|
|
1677
1681
|
export declare enum ConnectedAppType {
|
|
1678
1682
|
parra = "parra",
|
|
1679
|
-
|
|
1683
|
+
appStoreConnectApi = "app-store-connect-api",
|
|
1684
|
+
appStoreConnectApns = "app-store-connect-apns",
|
|
1680
1685
|
slack = "slack",
|
|
1681
1686
|
x = "x"
|
|
1682
1687
|
}
|
|
@@ -1886,7 +1891,7 @@ export interface UpdateTenantRequestBody {
|
|
|
1886
1891
|
name?: string;
|
|
1887
1892
|
subdomain?: string | null;
|
|
1888
1893
|
onboarding_skipped?: boolean;
|
|
1889
|
-
onboarding_goal?:
|
|
1894
|
+
onboarding_goal?: TenantOnboardingGoal | null;
|
|
1890
1895
|
logo?: ImageAssetStub | null;
|
|
1891
1896
|
onboarding_application_intent_skipped?: boolean | null;
|
|
1892
1897
|
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,10 +213,16 @@ 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";
|
|
219
|
-
ConnectedAppType["
|
|
224
|
+
ConnectedAppType["appStoreConnectApi"] = "app-store-connect-api";
|
|
225
|
+
ConnectedAppType["appStoreConnectApns"] = "app-store-connect-apns";
|
|
220
226
|
ConnectedAppType["slack"] = "slack";
|
|
221
227
|
ConnectedAppType["x"] = "x";
|
|
222
228
|
})(ConnectedAppType || (exports.ConnectedAppType = ConnectedAppType = {}));
|