@apolopay-sdk/core 1.2.0 → 1.2.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.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -381,7 +381,7 @@ var SocketService = class {
|
|
|
381
381
|
extraHeaders: {
|
|
382
382
|
"x-public-key": this.client.getPublicKey()
|
|
383
383
|
},
|
|
384
|
-
transports: ["
|
|
384
|
+
transports: ["polling"]
|
|
385
385
|
});
|
|
386
386
|
const { processId } = session;
|
|
387
387
|
this.socket.on("connect", () => this.socket?.emit("process:connect", { processId }));
|
package/dist/index.mjs
CHANGED
|
@@ -348,7 +348,7 @@ var SocketService = class {
|
|
|
348
348
|
extraHeaders: {
|
|
349
349
|
"x-public-key": this.client.getPublicKey()
|
|
350
350
|
},
|
|
351
|
-
transports: ["
|
|
351
|
+
transports: ["polling"]
|
|
352
352
|
});
|
|
353
353
|
const { processId } = session;
|
|
354
354
|
this.socket.on("connect", () => this.socket?.emit("process:connect", { processId }));
|