@bodhiapp/bodhi-js 0.0.5 → 0.0.6
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/bodhi-browser-ext/src/types/common.d.ts +1 -0
- package/dist/bodhi-js-sdk/core/src/direct-client-base.d.ts +5 -5
- package/dist/bodhi-js-sdk/core/src/facade-client-base.d.ts +5 -5
- package/dist/bodhi-js-sdk/core/src/interface.d.ts +14 -6
- package/dist/bodhi-js-sdk/core/src/onboarding/modal.d.ts +1 -1
- package/dist/bodhi-js-sdk/core/src/types/auth.d.ts +37 -0
- package/dist/bodhi-js-sdk/core/src/types/callback.d.ts +1 -1
- package/dist/bodhi-js-sdk/core/src/types/client-state.d.ts +43 -93
- package/dist/bodhi-js-sdk/core/src/types/index.d.ts +4 -3
- package/dist/bodhi-js-sdk/core/src/types/user-info.d.ts +0 -32
- package/dist/bodhi-js-sdk/web/src/direct-client.d.ts +4 -5
- package/dist/bodhi-js-sdk/web/src/ext-client.d.ts +6 -6
- package/dist/bodhi-js-sdk/web/src/facade-client.d.ts +2 -2
- package/dist/bodhi-web.cjs.js +1 -1
- package/dist/bodhi-web.esm.js +233 -223
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bodhiapp/bodhi-js",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Web SDK for Bodhi Browser - window.bodhiext communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/bodhi-web.cjs.js",
|
|
@@ -29,12 +29,15 @@
|
|
|
29
29
|
"scripts": {
|
|
30
30
|
"clean": "rimraf dist",
|
|
31
31
|
"build": "vite build --mode development",
|
|
32
|
+
"ci:build": "vite build --mode development",
|
|
33
|
+
"dev:build": "node ../../scripts/build-fast.mjs bodhi-js-sdk/web 'npm run build' src package.json vite.config.ts",
|
|
32
34
|
"build:prod": "vite build --mode production",
|
|
33
35
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && prettier --check .",
|
|
34
|
-
"lint:fix": "prettier --write . && eslint . --ext .js,.jsx,.ts,.tsx --fix"
|
|
36
|
+
"lint:fix": "prettier --write . && eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
37
|
+
"typecheck": "tsc --noEmit"
|
|
35
38
|
},
|
|
36
39
|
"dependencies": {
|
|
37
|
-
"@bodhiapp/bodhi-js-core": "0.0.
|
|
40
|
+
"@bodhiapp/bodhi-js-core": "0.0.6",
|
|
38
41
|
"@bodhiapp/ts-client": "0.1.8"
|
|
39
42
|
},
|
|
40
43
|
"devDependencies": {
|