@bodhiapp/bodhi-js-react-core 0.0.38 → 0.0.40
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/BodhiProvider.d.ts +2 -1
- package/dist/SetupModalV2Processor.d.ts +2 -1
- package/dist/bodhi-react-core.cjs.js +2 -2
- package/dist/bodhi-react-core.esm.js +423 -411
- package/dist/index.d.ts +1 -0
- package/dist/url.d.ts +1 -0
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -20,4 +20,5 @@ export { isAuthError, isAuthLoading, isAuthenticated, isClientReady, } from '@bo
|
|
|
20
20
|
export type { ApiResponse } from '@bodhiapp/bodhi-browser-types';
|
|
21
21
|
export type { McpFetchLike, McpTransportConfig } from '@bodhiapp/bodhi-js-core';
|
|
22
22
|
export type { StreamTextResult } from '@bodhiapp/bodhi-js-core';
|
|
23
|
+
export { normalizeServerUrl } from './url';
|
|
23
24
|
export { BUILD_MODE as REACT_CORE_BUILD_MODE } from './build-info';
|
package/dist/url.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function normalizeServerUrl(url: string): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bodhiapp/bodhi-js-react-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.40",
|
|
4
4
|
"description": "Core React bindings for Bodhi Browser SDK (dependency injection)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/bodhi-react-core.cjs.js",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"typecheck": "tsc --noEmit"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@bodhiapp/bodhi-browser-types": "0.0.
|
|
61
|
-
"@bodhiapp/setup-modal-types": "0.0.
|
|
62
|
-
"@bodhiapp/setup-modal-v2-types": "0.0.
|
|
63
|
-
"@bodhiapp/bodhi-js-core": "0.0.
|
|
64
|
-
"@bodhiapp/ts-client": "0.1.
|
|
60
|
+
"@bodhiapp/bodhi-browser-types": "0.0.40",
|
|
61
|
+
"@bodhiapp/setup-modal-types": "0.0.40",
|
|
62
|
+
"@bodhiapp/setup-modal-v2-types": "0.0.40",
|
|
63
|
+
"@bodhiapp/bodhi-js-core": "0.0.40",
|
|
64
|
+
"@bodhiapp/ts-client": "0.1.35"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"react": "^18.3.0 || ^19.0.0"
|