@iblai/web-utils 1.8.1 → 1.9.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/dist/auth/index.d.ts +202 -0
- package/dist/auth/index.esm.js +363 -0
- package/dist/auth/index.esm.js.map +1 -0
- package/dist/auth/index.js +379 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/web-utils/src/utils/auth.d.ts +199 -0
- package/dist/auth/web-utils/tests/hooks/chat/use-mentor-tools.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/hooks/subscription-v2/use-subscription-handler.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/hooks/use-mentor-settings.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/providers/mentor-provider.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/providers/tenant-provider.test.d.ts +1 -0
- package/dist/auth/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/auth/web-utils/tests/utils/helpers.test.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +6 -1
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +18 -11
package/dist/index.d.ts
CHANGED
|
@@ -1019,7 +1019,7 @@ declare const isNode: () => string | false;
|
|
|
1019
1019
|
declare const isExpo: () => any;
|
|
1020
1020
|
declare const isTauri: () => boolean;
|
|
1021
1021
|
declare function isSafariBrowser(): boolean;
|
|
1022
|
-
declare const getPlatform: () => "
|
|
1022
|
+
declare const getPlatform: () => "web" | "react-native" | "node" | "unknown";
|
|
1023
1023
|
declare const safeRequire: (moduleName: string) => any;
|
|
1024
1024
|
declare const getNextNavigation: () => any;
|
|
1025
1025
|
|