@parafin/core 1.0.3 → 1.0.4

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/index.ts CHANGED
@@ -42,7 +42,7 @@ const openParafinDashboard = (props: {
42
42
  const token = `?token=${props.token}`
43
43
  const product = `&product=${props.product}`
44
44
  const externalBusinessId = props.externalBusinessId
45
- ? `&external_business_id=${props.externalBusinessId}`
45
+ ? `&externalBusinessId=${props.externalBusinessId}`
46
46
  : ''
47
47
 
48
48
  const closeParafinDashboard = ({ data, origin }: MessageEvent) => {
package/out/index.js CHANGED
@@ -31,7 +31,7 @@ const openParafinDashboard = (props) => {
31
31
  const token = `?token=${props.token}`;
32
32
  const product = `&product=${props.product}`;
33
33
  const externalBusinessId = props.externalBusinessId
34
- ? `&external_business_id=${props.externalBusinessId}`
34
+ ? `&externalBusinessId=${props.externalBusinessId}`
35
35
  : '';
36
36
  const closeParafinDashboard = ({ data, origin }) => {
37
37
  if (origin === baseUrl && data?.message === 'close-dashboard') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parafin/core",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Parafin embedded core",
5
5
  "author": "Parafin (https://www.parafin.com)",
6
6
  "module": "out/index.js",