@frontegg/rest-api 7.109.0-alpha.0 → 7.110.0
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/constants.d.ts +0 -1
- package/constants.js +1 -5
- package/index.d.ts +1 -1
- package/index.js +2 -2
- package/node/constants.js +2 -7
- package/node/index.js +1 -8
- package/package.json +1 -1
package/constants.d.ts
CHANGED
|
@@ -309,4 +309,3 @@ export declare const GENERIC_ERROR_CODE = "ER-ADMIN-PORTAL-GENERIC-ERROR";
|
|
|
309
309
|
export declare const FRONTEGG_TRACE_ID = "frontegg-trace-id";
|
|
310
310
|
export declare const INVITATION_TENANT_LOCKED_ERROR_CODE = "ER-01239";
|
|
311
311
|
export declare const INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = "ER-01240";
|
|
312
|
-
export declare const ACTIVATION_TENANT_LOCKED_ERROR_CODE = "ER-01241";
|
package/constants.js
CHANGED
|
@@ -316,8 +316,4 @@ export const INVITATION_TENANT_LOCKED_ERROR_CODE = 'ER-01239';
|
|
|
316
316
|
|
|
317
317
|
// Returned by identity-service when an admin attempts to create an invitation link for a
|
|
318
318
|
// locked tenant (HTTP 400 Bad Request, IdentityErrorCodes.InvitationLinkCreationTenantLockedException).
|
|
319
|
-
export const INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = 'ER-01240';
|
|
320
|
-
|
|
321
|
-
// Returned by identity-service when a user opens an activation link (from email) for a
|
|
322
|
-
// locked tenant (HTTP 400 Bad Request, IdentityErrorCodes.ActivationTenantLockedException).
|
|
323
|
-
export const ACTIVATION_TENANT_LOCKED_ERROR_CODE = 'ER-01241';
|
|
319
|
+
export const INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = 'ER-01240';
|
package/index.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export * from './user-phone-numbers/interfaces';
|
|
|
61
61
|
export * from './applications/interfaces';
|
|
62
62
|
export * from './velo/interfaces';
|
|
63
63
|
export * from './users-emails-policy/interfaces';
|
|
64
|
-
export { GENERIC_ERROR_CODE, GENERIC_ERROR_MESSAGE,
|
|
64
|
+
export { GENERIC_ERROR_CODE, GENERIC_ERROR_MESSAGE, INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE, INVITATION_TENANT_LOCKED_ERROR_CODE, } from './constants';
|
|
65
65
|
/**
|
|
66
66
|
* Frontegg API client for default app
|
|
67
67
|
*
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license Frontegg v7.
|
|
1
|
+
/** @license Frontegg v7.110.0
|
|
2
2
|
*
|
|
3
3
|
* This source code is licensed under the MIT license found in the
|
|
4
4
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -66,7 +66,7 @@ export * from './user-phone-numbers/interfaces';
|
|
|
66
66
|
export * from './applications/interfaces';
|
|
67
67
|
export * from './velo/interfaces';
|
|
68
68
|
export * from './users-emails-policy/interfaces';
|
|
69
|
-
export { GENERIC_ERROR_CODE, GENERIC_ERROR_MESSAGE,
|
|
69
|
+
export { GENERIC_ERROR_CODE, GENERIC_ERROR_MESSAGE, INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE, INVITATION_TENANT_LOCKED_ERROR_CODE } from './constants';
|
|
70
70
|
/**
|
|
71
71
|
* Frontegg API client for default app
|
|
72
72
|
*
|
package/node/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.urls = exports.INVITATION_TENANT_LOCKED_ERROR_CODE = exports.INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = exports.GENERIC_ERROR_MESSAGE = exports.GENERIC_ERROR_CODE = exports.FRONTEGG_TRACE_ID =
|
|
6
|
+
exports.urls = exports.INVITATION_TENANT_LOCKED_ERROR_CODE = exports.INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = exports.GENERIC_ERROR_MESSAGE = exports.GENERIC_ERROR_CODE = exports.FRONTEGG_TRACE_ID = void 0;
|
|
7
7
|
const urls = {
|
|
8
8
|
vendor: '/vendors',
|
|
9
9
|
identity: {
|
|
@@ -328,9 +328,4 @@ const INVITATION_TENANT_LOCKED_ERROR_CODE = 'ER-01239';
|
|
|
328
328
|
// locked tenant (HTTP 400 Bad Request, IdentityErrorCodes.InvitationLinkCreationTenantLockedException).
|
|
329
329
|
exports.INVITATION_TENANT_LOCKED_ERROR_CODE = INVITATION_TENANT_LOCKED_ERROR_CODE;
|
|
330
330
|
const INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = 'ER-01240';
|
|
331
|
-
|
|
332
|
-
// Returned by identity-service when a user opens an activation link (from email) for a
|
|
333
|
-
// locked tenant (HTTP 400 Bad Request, IdentityErrorCodes.ActivationTenantLockedException).
|
|
334
|
-
exports.INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE;
|
|
335
|
-
const ACTIVATION_TENANT_LOCKED_ERROR_CODE = 'ER-01241';
|
|
336
|
-
exports.ACTIVATION_TENANT_LOCKED_ERROR_CODE = ACTIVATION_TENANT_LOCKED_ERROR_CODE;
|
|
331
|
+
exports.INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE = INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE;
|
package/node/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license Frontegg v7.
|
|
1
|
+
/** @license Frontegg v7.110.0
|
|
2
2
|
*
|
|
3
3
|
* This source code is licensed under the MIT license found in the
|
|
4
4
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -31,16 +31,9 @@ var _exportNames = {
|
|
|
31
31
|
FronteggContext: true,
|
|
32
32
|
GENERIC_ERROR_CODE: true,
|
|
33
33
|
GENERIC_ERROR_MESSAGE: true,
|
|
34
|
-
ACTIVATION_TENANT_LOCKED_ERROR_CODE: true,
|
|
35
34
|
INVITATION_LINK_CREATION_TENANT_LOCKED_ERROR_CODE: true,
|
|
36
35
|
INVITATION_TENANT_LOCKED_ERROR_CODE: true
|
|
37
36
|
};
|
|
38
|
-
Object.defineProperty(exports, "ACTIVATION_TENANT_LOCKED_ERROR_CODE", {
|
|
39
|
-
enumerable: true,
|
|
40
|
-
get: function () {
|
|
41
|
-
return _constants.ACTIVATION_TENANT_LOCKED_ERROR_CODE;
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
37
|
Object.defineProperty(exports, "AuthStrategyEnum", {
|
|
45
38
|
enumerable: true,
|
|
46
39
|
get: function () {
|