@stytch/react 19.5.0 → 19.5.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stytch/react
2
2
 
3
+ ## 19.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 96524b2: Fix packaging issue to include B2C `/headless` and `/ui` entrypoints
8
+
3
9
  ## 19.5.0
4
10
 
5
11
  ### Minor Changes
@@ -0,0 +1,6 @@
1
+ {
2
+ "internal": true,
3
+ "main": "../dist/index.headless.js",
4
+ "module": "../dist/index.headless.esm.js",
5
+ "types": "../dist/index.headless.d.ts"
6
+ }
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@stytch/react",
3
- "version": "19.5.0",
3
+ "version": "19.5.1",
4
4
  "description": "Stytch's official React Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "files": [
9
9
  "b2b",
10
- "dist"
10
+ "dist",
11
+ "headless",
12
+ "ui"
11
13
  ],
12
14
  "scripts": {
13
15
  "build": "npm run clean && npm run compile",
@@ -0,0 +1,6 @@
1
+ {
2
+ "internal": true,
3
+ "main": "../dist/index.ui.js",
4
+ "module": "../dist/index.ui.esm.js",
5
+ "types": "../dist/index.ui.d.ts"
6
+ }