signal-bridge 1.0.10 → 1.0.12

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 CHANGED
@@ -285,7 +285,7 @@ npm install signal-bridge
285
285
  <div id="app"></div>
286
286
 
287
287
  <script>
288
- const bridge = window.signalBridge.init('my-laravel-app', {
288
+ const bridge = window.signalBridge.initBridge('my-laravel-app', {
289
289
  allowedHostOrigins: ['https://host-app.example.com'],
290
290
  debug: true,
291
291
  });
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- var signalBridge = (() => {
2
+ var _signalBridgeLib = (() => {
3
3
  var __create = Object.create;
4
4
  var __defProp = Object.defineProperty;
5
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signal-bridge",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "Secure iframe communication bridge",
5
5
  "author": "Ekahersada <ekahersada@gmail.com>",
6
6
  "main": "dist/index.js",