@parra/parra-js-sdk 0.3.116 → 0.3.117
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 +7 -1
- package/dist/ParraAPI.js +9 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -39,12 +39,18 @@ export interface UserResponse {
|
|
|
39
39
|
role_other_description?: string | null;
|
|
40
40
|
avatar?: ImageAssetStub;
|
|
41
41
|
}
|
|
42
|
+
export declare enum IdentityType {
|
|
43
|
+
username = "username",
|
|
44
|
+
email = "email",
|
|
45
|
+
phoneNumber = "phone_number",
|
|
46
|
+
externalId = "external_id"
|
|
47
|
+
}
|
|
42
48
|
export interface Identity {
|
|
43
49
|
id: string;
|
|
44
50
|
created_at: string;
|
|
45
51
|
updated_at: string;
|
|
46
52
|
deleted_at?: string | null;
|
|
47
|
-
type:
|
|
53
|
+
type: IdentityType;
|
|
48
54
|
provider?: string | null;
|
|
49
55
|
provider_user_id?: string | null;
|
|
50
56
|
email?: string | null;
|
package/dist/ParraAPI.js
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.ApplicationType = exports.JwtAlgorithm = exports.GrantType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = void 0;
|
|
3
|
+
exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.ApplicationType = exports.JwtAlgorithm = exports.GrantType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = 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 = void 0;
|
|
4
|
+
var IdentityType;
|
|
5
|
+
(function (IdentityType) {
|
|
6
|
+
IdentityType["username"] = "username";
|
|
7
|
+
IdentityType["email"] = "email";
|
|
8
|
+
IdentityType["phoneNumber"] = "phone_number";
|
|
9
|
+
IdentityType["externalId"] = "external_id";
|
|
10
|
+
})(IdentityType || (exports.IdentityType = IdentityType = {}));
|
|
4
11
|
var Interval;
|
|
5
12
|
(function (Interval) {
|
|
6
13
|
Interval["monthly"] = "monthly";
|
|
@@ -922,7 +929,7 @@ var ParraAPI = /** @class */ (function () {
|
|
|
922
929
|
};
|
|
923
930
|
this.getTenantUserInfo = function (tenant_id) {
|
|
924
931
|
return _this.http.execute("".concat(_this.options.baseUrl, "/v1/tenants/").concat(tenant_id, "/auth/user-info"), {
|
|
925
|
-
method: "
|
|
932
|
+
method: "get",
|
|
926
933
|
});
|
|
927
934
|
};
|
|
928
935
|
this.logoutUserForTenant = function (tenant_id) {
|