@hiofu/apply-sdk 0.1.4 → 0.1.6-beta.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/README.md +73 -87
- package/dist/{chunk-MFY3F4OY.js → chunk-7JEEWWEX.js} +37 -10
- package/dist/{client-Ct5xyQMk.d.cts → client-7yPni-fK.d.cts} +7 -6
- package/dist/{client-Ct5xyQMk.d.ts → client-7yPni-fK.d.ts} +7 -6
- package/dist/index.cjs +57 -15
- package/dist/index.d.cts +19 -7
- package/dist/index.d.ts +19 -7
- package/dist/index.global.js +1 -1
- package/dist/index.js +21 -6
- package/dist/react.cjs +65 -13
- package/dist/react.d.cts +5 -3
- package/dist/react.d.ts +5 -3
- package/dist/react.js +29 -4
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiofu/apply-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.6-beta.0",
|
|
4
|
+
"description": "Browser SDK for HIOFU Apply with OAuth, HSP1 review, and idempotent application submission.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"dev": "tsup --watch",
|
|
33
33
|
"typecheck": "tsc --noEmit",
|
|
34
34
|
"smoke:pack": "node scripts/smoke-package.mjs",
|
|
35
|
+
"publish:beta": "npm publish --tag beta",
|
|
35
36
|
"prepack": "npm run build",
|
|
36
37
|
"prepublishOnly": "npm run typecheck && npm run smoke:pack"
|
|
37
38
|
},
|
|
@@ -48,7 +49,8 @@
|
|
|
48
49
|
"license": "Apache-2.0",
|
|
49
50
|
"homepage": "https://hiofu.com",
|
|
50
51
|
"publishConfig": {
|
|
51
|
-
"access": "public"
|
|
52
|
+
"access": "public",
|
|
53
|
+
"tag": "beta"
|
|
52
54
|
},
|
|
53
55
|
"engines": {
|
|
54
56
|
"node": ">=18"
|