@urga-panel/ur-panels-core 1.0.0 → 1.0.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.
|
@@ -31,7 +31,7 @@ export class WVFrontService extends Service {
|
|
|
31
31
|
const callback = (args) => {
|
|
32
32
|
const param = args;
|
|
33
33
|
// Convert param to a Response object
|
|
34
|
-
debugger;
|
|
34
|
+
//debugger;
|
|
35
35
|
//@ts-ignore
|
|
36
36
|
const byteArray = Object.values(param._bodyBlob._buffer);
|
|
37
37
|
//@ts-ignore
|
|
@@ -42,7 +42,7 @@ export class WVFrontService extends Service {
|
|
|
42
42
|
status: 200,
|
|
43
43
|
headers: { "Content-Type": "application/json" }
|
|
44
44
|
});
|
|
45
|
-
debugger;
|
|
45
|
+
//debugger;
|
|
46
46
|
console.log("sendFetchRequest received", param);
|
|
47
47
|
this.oWebViewInterface.removeListener('sendFetchRequest', callback);
|
|
48
48
|
resolve(response);
|
package/package.json
CHANGED
|
@@ -45,7 +45,7 @@ export class WVFrontService extends Service {
|
|
|
45
45
|
const callback = (args: any) => {
|
|
46
46
|
const param = args as unknown;
|
|
47
47
|
// Convert param to a Response object
|
|
48
|
-
debugger;
|
|
48
|
+
//debugger;
|
|
49
49
|
//@ts-ignore
|
|
50
50
|
const byteArray = Object.values(param._bodyBlob._buffer);
|
|
51
51
|
//@ts-ignore
|
|
@@ -58,7 +58,7 @@ export class WVFrontService extends Service {
|
|
|
58
58
|
headers: { "Content-Type": "application/json" }
|
|
59
59
|
}
|
|
60
60
|
);
|
|
61
|
-
debugger;
|
|
61
|
+
//debugger;
|
|
62
62
|
console.log("sendFetchRequest received", param);
|
|
63
63
|
this.oWebViewInterface.removeListener('sendFetchRequest', callback);
|
|
64
64
|
resolve(response);
|