@frontegg/rest-api
Advanced tools
Comparing version 3.1.30 to 3.1.31
export * from "./secutiry-poilicy"; | ||
export * from "./enums"; | ||
export { setTabTenantInSessionStorage, getTabTenantFromSessionStorage } from './utils'; | ||
export { setTabTenantInSessionStorage, getTabTenantFromSessionStorage, getCurrentUserTenantsFunction } from './utils'; | ||
import { ISamlRolesGroup } from "../teams/interfaces"; | ||
@@ -5,0 +5,0 @@ import { IAcceptInvitation, IActivateAccount, IAllowedToRememberMfaDevice, ICreateSamlGroup, IDeleteApiToken, IDisableMfa, IEnrollMfaResponse, IForgotPassword, IGetActivateAccountStrategy, IGetActivateAccountStrategyResponse, IGetUserById, IGetUserPasswordConfig, ILogin, ILoginResponse, ILoginViaSocialLogin, ILoginViaSocialLoginResponse, ILoginWithMfa, IOidcPostLogin, IOidcConfiguration, IPostLogin, IPreLogin, IRecoverMFAToken, IResendActivationEmail, IResetPassword, ISamlConfiguration, ISamlVendorConfigResponse, ISignUpResponse, ISignUpUser, ISocialLoginProviderConfiguration, ITenantApiTokensData, IUpdateSamlConfiguration, IUpdateSamlGroup, IUpdateSamlRoles, IUpdateSamlVendorMetadata, IUpdateTenantApiTokensData, IUpdateUserApiTokensData, IUserApiTokensData, IUserIdResponse, IVendorConfig, IVerifyMfa, IVerifyMfaResponse, TestConfig, ISSOPublicConfiguration, IPreLoginWithIdpTypeResponse, IPasswordlessPreLogin, IPasswordlessPostLogin, ICreateSSODomain, IVerifyInviteToken, ISSODomain, ISSOConfigurationDefaultRoles, ISSOConfiguration, IUpdateSSOConfiguration, IOidcPostLoginV2, IExchangeOAuthTokens, IOAuthTokenResponse, ISocialLoginProviderConfigurationV2, ILoginResponseV2, IResetPhoneNumber, IVerifyResetPhoneNumber, IChangePhoneNumber, IVerifyResetPhoneNumberResponse, IResetPhoneNumberResponse, IWebAuthnPreLogin, IWebAuthnPostLogin, IVerifyNewWebAuthnDevice, IWebAuthnPreLoginResponse, ICreateNewDeviceSessionResponse, IAuthStrategiesConfig, ISessionResponse, IChangePhoneNumberWithVerification, IChangePhoneNumberWithVerificationResponse, IVerifyChangePhoneNumber, ISessionConfigurations, IResendInvitationEmail, IPreEnrollMFA, IEnrollMFAAuthenticatorApp, IPreEnrollMFASMS, IEnrollMFASMS, IEnrollMFAWebAuthn, IPreEnrollMFAAuthenticatorAppResponse, IPreEnrollMFAWebAuthnResponse, IVerifyMFAAuthenticatorApp, IPreVerifyMFA, IPreVerifyMFASMSResponse, IVerifyMFASMS, IPreVerifyMFAWebAuthnResponse, IVerifyMFAWebAuthn, IPreEnrollMFASMSResponse, IPreDisableMFASMSResponse, IDisableMFASMS, IDisableMFAWebAuthn, IPreDisableMFAWebAuthnResponse, UserMFADevicesResponse, WithoutMFAToken, IMFAStrategiesResponse, IOAuthLogout, IGetUserAccessTokens, IGetTenantAccessTokens, IDeleteAccessToken, ICreateTenantAccessTokenData, ICreateUserAccessTokenData, IWebAuthnDevices, ICustomSocialLoginProviderConfigurationV1, ILoginResponseV3, IPreVerifyMFAEmailCodeResponse, IVerifyMFAEmailCode, ICreateOrUpdateSSOConfigurationByMetadataUrl } from './interfaces'; |
@@ -9,3 +9,3 @@ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; | ||
export * from "./enums"; | ||
export { setTabTenantInSessionStorage, getTabTenantFromSessionStorage } from './utils'; | ||
export { setTabTenantInSessionStorage, getTabTenantFromSessionStorage, getCurrentUserTenantsFunction } from './utils'; | ||
import { urls } from "../constants"; | ||
@@ -12,0 +12,0 @@ import { ContextHolder } from "../ContextHolder"; |
@@ -29,2 +29,3 @@ import * as auth from "./auth"; | ||
export * from "./auth/interfaces"; | ||
export { setTabTenantInSessionStorage, getTabTenantFromSessionStorage, getCurrentUserTenantsFunction } from './auth'; | ||
export * from "./teams/interfaces"; | ||
@@ -31,0 +32,0 @@ export * from "./metadata/interfaces"; |
@@ -1,2 +0,2 @@ | ||
/** @license Frontegg v3.1.30 | ||
/** @license Frontegg v3.1.31 | ||
* | ||
@@ -34,2 +34,3 @@ * This source code is licensed under the MIT license found in the | ||
export * from "./auth/interfaces"; | ||
export { setTabTenantInSessionStorage, getTabTenantFromSessionStorage, getCurrentUserTenantsFunction } from './auth'; | ||
export * from "./teams/interfaces"; | ||
@@ -36,0 +37,0 @@ export * from "./metadata/interfaces"; |
@@ -158,3 +158,4 @@ "use strict"; | ||
setTabTenantInSessionStorage: true, | ||
getTabTenantFromSessionStorage: true | ||
getTabTenantFromSessionStorage: true, | ||
getCurrentUserTenantsFunction: true | ||
}; | ||
@@ -213,2 +214,8 @@ exports.OAuthLogout = OAuthLogout; | ||
exports.getCurrentUserSessions = getCurrentUserSessions; | ||
Object.defineProperty(exports, "getCurrentUserTenantsFunction", { | ||
enumerable: true, | ||
get: function () { | ||
return _utils.getCurrentUserTenantsFunction; | ||
} | ||
}); | ||
exports.getCustomSocialLoginProvidersV1 = getCustomSocialLoginProvidersV1; | ||
@@ -215,0 +222,0 @@ exports.getMFADevices = getMFADevices; |
@@ -1,2 +0,2 @@ | ||
/** @license Frontegg v3.1.30 | ||
/** @license Frontegg v3.1.31 | ||
* | ||
@@ -16,2 +16,5 @@ * This source code is licensed under the MIT license found in the | ||
SocialLoginProviders: true, | ||
setTabTenantInSessionStorage: true, | ||
getTabTenantFromSessionStorage: true, | ||
getCurrentUserTenantsFunction: true, | ||
fetch: true, | ||
@@ -87,2 +90,20 @@ ISubscriptionCancellationPolicy: true, | ||
exports.fetch = exports.default = exports.api = void 0; | ||
Object.defineProperty(exports, "getCurrentUserTenantsFunction", { | ||
enumerable: true, | ||
get: function () { | ||
return auth.getCurrentUserTenantsFunction; | ||
} | ||
}); | ||
Object.defineProperty(exports, "getTabTenantFromSessionStorage", { | ||
enumerable: true, | ||
get: function () { | ||
return auth.getTabTenantFromSessionStorage; | ||
} | ||
}); | ||
Object.defineProperty(exports, "setTabTenantInSessionStorage", { | ||
enumerable: true, | ||
get: function () { | ||
return auth.setTabTenantInSessionStorage; | ||
} | ||
}); | ||
@@ -89,0 +110,0 @@ var auth = _interopRequireWildcard(require("./auth")); |
{ | ||
"name": "@frontegg/rest-api", | ||
"version": "3.1.30", | ||
"version": "3.1.31", | ||
"main": "./node/index.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
402892
10976