sales-frontend-bridge 0.0.23 → 0.0.25
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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -1683,7 +1683,7 @@ var NativeBridgeCore = class extends CommonBridgeCore {
|
|
|
1683
1683
|
* @param options
|
|
1684
1684
|
* @returns
|
|
1685
1685
|
*/
|
|
1686
|
-
async callToTarget(action, option) {
|
|
1686
|
+
async callToTarget(action, option = {}) {
|
|
1687
1687
|
return new Promise((resolve, reject) => {
|
|
1688
1688
|
const promiseId = `${action}_${this.generatePromiseId()}`;
|
|
1689
1689
|
console.log("[NativeBridgeCore callToNative] promiseId::", promiseId);
|
|
@@ -1863,7 +1863,7 @@ var NativeBridgeOz = class extends CommonBridge {
|
|
|
1863
1863
|
constructor() {
|
|
1864
1864
|
super();
|
|
1865
1865
|
__publicField(this, "core");
|
|
1866
|
-
this.core = new NativeBridgeCore("n2OzBridge", "
|
|
1866
|
+
this.core = new NativeBridgeCore("n2OzBridge", "n2ozBridge");
|
|
1867
1867
|
}
|
|
1868
1868
|
/**
|
|
1869
1869
|
* Iframe, App 공통으로 구현해야할 함수
|