@frontegg/types 6.96.0-alpha.0 → 6.96.0-alpha.1

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.
@@ -0,0 +1,7 @@
1
+ import { CustomLoginState as CustomLoginStateTypeWithoutMetadata } from '@frontegg/redux-store';
2
+ import { FronteggMetadata } from './FronteggMetadata';
3
+ export interface CustomLoginState extends Omit<CustomLoginStateTypeWithoutMetadata, 'tenantMetadata'> {
4
+ tenantMetadata?: {
5
+ configuration: FronteggMetadata;
6
+ };
7
+ }
@@ -0,0 +1 @@
1
+ export {};
package/index.d.ts CHANGED
@@ -5,3 +5,4 @@ export * from './ThemeOptions';
5
5
  export * from './Localizations';
6
6
  export * from './Metadata';
7
7
  export * from './CheckoutDialogOptions';
8
+ export * from './CustomLoginTypes';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.96.0-alpha.0
1
+ /** @license Frontegg v6.96.0-alpha.1
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.
@@ -9,4 +9,5 @@ export * from './FronteggMetadata';
9
9
  export * from './ThemeOptions';
10
10
  export * from './Localizations';
11
11
  export * from './Metadata';
12
- export * from './CheckoutDialogOptions';
12
+ export * from './CheckoutDialogOptions';
13
+ export * from './CustomLoginTypes';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license Frontegg v6.96.0-alpha.0
1
+ /** @license Frontegg v6.96.0-alpha.1
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.
@@ -84,4 +84,15 @@ Object.keys(_CheckoutDialogOptions).forEach(function (key) {
84
84
  return _CheckoutDialogOptions[key];
85
85
  }
86
86
  });
87
+ });
88
+ var _CustomLoginTypes = require("./CustomLoginTypes");
89
+ Object.keys(_CustomLoginTypes).forEach(function (key) {
90
+ if (key === "default" || key === "__esModule") return;
91
+ if (key in exports && exports[key] === _CustomLoginTypes[key]) return;
92
+ Object.defineProperty(exports, key, {
93
+ enumerable: true,
94
+ get: function () {
95
+ return _CustomLoginTypes[key];
96
+ }
97
+ });
87
98
  });
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@frontegg/types",
3
- "version": "6.96.0-alpha.0",
3
+ "version": "6.96.0-alpha.1",
4
4
  "main": "./node/index.js",
5
5
  "author": "Frontegg LTD",
6
6
  "license": "MIT",
7
7
  "dependencies": {
8
8
  "@babel/runtime": "^7.18.6",
9
- "@frontegg/redux-store": "6.96.0-alpha.0",
9
+ "@frontegg/redux-store": "6.96.0-alpha.1",
10
10
  "csstype": "^3.0.9",
11
11
  "deepmerge": "^4.2.2"
12
12
  },