@rebilly/framepay-react 13.42.0 → 13.43.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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [13.42.0](https://github.com/Rebilly/rebilly/compare/framepay-react-v13.41.0...framepay-react-v13.42.0) (2026-01-08)
1
+ ## [13.43.0](https://github.com/Rebilly/rebilly/compare/framepay-react-v13.42.0...framepay-react-v13.43.0) (2026-01-12)
2
2
 
3
3
 
4
4
  ### Features
5
5
 
6
- * Upgrade ESLint and Prettier ([#17793](https://github.com/Rebilly/rebilly/issues/17793)) ([8883216](https://github.com/Rebilly/rebilly/commit/88832162761efa08569e6dcc03366f727eebd96a))
6
+ * **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#17865](https://github.com/Rebilly/rebilly/issues/17865)) ([17191c6](https://github.com/Rebilly/rebilly/commit/17191c66a6676ccecef26c44019de7af72ee35db))
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@rebilly/framepay-react",
3
- "version": "13.42.0",
3
+ "version": "13.43.0",
4
4
  "description": "A React wrapper for Rebilly's FramePay offering out-of-the-box support for Redux and other common React features",
5
5
  "main": "build/index.js",
6
6
  "author": "Rebilly",
7
7
  "types": "build/index.d.ts",
8
+ "targets": {
9
+ "main": false,
10
+ "types": false
11
+ },
8
12
  "repository": "https://github.com/Rebilly/rebilly",
9
13
  "license": "MIT",
10
14
  "keywords": [
@@ -37,8 +41,8 @@
37
41
  "clean-react-alias": "cross-env REACT_VERSION=clean node ./test/e2e/switch-react-version",
38
42
  "dotenv": "node ./env.js",
39
43
  "build": "cross-env NODE_ENV=production tsc -p tsconfig.json",
40
- "build:e2e": "cross-env NODE_ENV=production run-s dotenv build clean:e2e && parcel build ./test/e2e/fixtures/* --no-minify --no-cache --out-dir test/e2e/build",
41
- "dev:e2e": "cross-env NODE_ENV=development && run-s dotenv && parcel ./test/e2e/fixtures/* --no-cache --out-dir test/e2e/build",
44
+ "build:e2e": "cross-env NODE_ENV=production run-s dotenv build clean:e2e && parcel build ./test/e2e/fixtures/* --no-optimize --no-cache --no-scope-hoist --dist-dir test/e2e/build",
45
+ "dev:e2e": "cross-env NODE_ENV=development && run-s dotenv && parcel ./test/e2e/fixtures/* --no-cache --dist-dir test/e2e/build",
42
46
  "serve:e2e": "run-s dotenv build:* && node test/e2e/local-server.mjs",
43
47
  "serve:e2e:no-build": "node test/e2e/local-server.mjs",
44
48
  "test:unit": "jest --config ./test/unit/jest.config.js",
@@ -69,14 +73,14 @@
69
73
  "@fluffy-spoon/substitute": "^1.89.0",
70
74
  "@rebilly/eslint-config": "*",
71
75
  "@small-tech/auto-encrypt-localhost": "^8.4.0",
72
- "@testing-library/cypress": "^10.0.3",
76
+ "@testing-library/cypress": "^10.1.0",
73
77
  "@testing-library/react": "^15.0.7",
74
78
  "@types/jest": "^29.5.1",
75
79
  "@types/node": "^22.15.30",
76
80
  "@types/react": "^19.2.7",
77
81
  "core-js": "^3.42.0",
78
82
  "cross-env": "^10.1.0",
79
- "cypress": "^13.17.0",
83
+ "cypress": "^15.8.2",
80
84
  "cypress-iframe": "^1.0.1",
81
85
  "dotenv": "^16.5.0",
82
86
  "eslint-plugin-react": "^7.37.5",
@@ -85,7 +89,7 @@
85
89
  "jest": "^29.5.0",
86
90
  "jest-environment-jsdom": "^29.7.0",
87
91
  "npm-run-all": "^4.1.5",
88
- "parcel-bundler": "^1.12.5",
92
+ "parcel": "^2.0.0",
89
93
  "portfinder": "^1.0.35",
90
94
  "prop-types": "^15.0.0",
91
95
  "react": "^19.2.1",
@@ -8,7 +8,7 @@
8
8
 
9
9
  <body>
10
10
  <div id="app"></div>
11
- <script src="apple-pay.js"></script>
11
+ <script type="module" src="apple-pay.js"></script>
12
12
  <script src="nav.js"></script>
13
13
  </body>
14
14
 
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="bank-separate.js"></script>
9
+ <script type="module" src="bank-separate.js"></script>
10
10
  <script src="nav.js"></script>
11
11
  </body>
12
12
  </html>
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="card-separate-brands.js"></script>
9
+ <script type="module" src="card-separate-brands.js"></script>
10
10
  <script src="nav.js"></script>
11
11
  </body>
12
12
  </html>
@@ -1,12 +1,15 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
+
3
4
  <head>
4
- <meta charset="utf-8"/>
5
+ <meta charset="utf-8" />
5
6
  <title>Test Card Page Separate Fields</title>
6
7
  </head>
8
+
7
9
  <body>
8
- <div id="app"></div>
9
- <script src="card-separate-rebilly-fields.js"></script>
10
- <script src="nav.js"></script>
10
+ <div id="app"></div>
11
+ <script type="module" src="card-separate-rebilly-fields.js"></script>
12
+ <script src="nav.js"></script>
11
13
  </body>
14
+
12
15
  </html>
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="card-separate.js"></script>
9
+ <script type="module" src="card-separate.js"></script>
10
10
  <script src="nav.js"></script>
11
11
  </body>
12
12
  </html>
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="checkout-combined.js"></script>
9
+ <script type="module" src="checkout-combined.js"></script>
10
10
  <script src="nav.js"></script>
11
11
  </body>
12
12
  </html>
@@ -8,7 +8,7 @@
8
8
 
9
9
  <body>
10
10
  <div id="app"></div>
11
- <script src="google-pay.js"></script>
11
+ <script type="module" src="google-pay.js"></script>
12
12
  <script src="nav.js"></script>
13
13
  </body>
14
14
 
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="iban.js"></script>
9
+ <script type="module" src="iban.js"></script>
10
10
  <script src="nav.js"></script>
11
11
  </body>
12
12
  </html>
@@ -8,8 +8,8 @@
8
8
 
9
9
  <body>
10
10
  <div id="app"></div>
11
- <script src="inject-metadata.js"></script>
11
+ <script type="module" src="inject-metadata.js"></script>
12
12
  <script src="nav.js"></script>
13
13
  </body>
14
14
 
15
- </html>
15
+ </html>
@@ -6,7 +6,7 @@
6
6
  </head>
7
7
  <body>
8
8
  <div id="app"></div>
9
- <script src="multiple-methods.js"></script>
9
+ <script type="module" src="multiple-methods.js"></script>
10
10
  <script src="nav.js"></script>
11
11
  </body>
12
12
  </html>
@@ -8,7 +8,7 @@
8
8
 
9
9
  <body>
10
10
  <div id="app"></div>
11
- <script src="paypal.js"></script>
11
+ <script type="module" src="paypal.js"></script>
12
12
  <script src="nav.js"></script>
13
13
  </body>
14
14
 
@@ -8,7 +8,7 @@
8
8
 
9
9
  <body>
10
10
  <div id="app"></div>
11
- <script src="samsung-pay.js"></script>
11
+ <script type="module" src="samsung-pay.js"></script>
12
12
  <script src="nav.js"></script>
13
13
  </body>
14
14