@open-wa/wa-automate 4.34.2 → 4.34.3

Sign up to get free protection for your applications and to get access to all the features.
package/dist/cli/index.js CHANGED
@@ -183,9 +183,19 @@ function start() {
183
183
  spinner.succeed(`Port ${PORT} is now free.`);
184
184
  server_1.server.listen(PORT, () => __awaiter(this, void 0, void 0, function* () {
185
185
  spinner.succeed(`\n• Listening on port ${PORT}!`);
186
- (0, index_1.processSendData)({ port: PORT });
186
+ yield (0, index_1.processSendData)({ port: PORT });
187
187
  yield ready(Object.assign(Object.assign(Object.assign(Object.assign({}, cliConfig), createConfig), client.getSessionInfo()), { hostAccountNumber: yield client.getHostNumber() }));
188
188
  }));
189
+ process.on('message', function (data) {
190
+ var _a;
191
+ return __awaiter(this, void 0, void 0, function* () {
192
+ if (((_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.command) === "port_report") {
193
+ const response = { port: PORT };
194
+ yield (0, index_1.processSendData)(response);
195
+ return response;
196
+ }
197
+ });
198
+ });
189
199
  if (cliConfig.tunnel) {
190
200
  spinner.info(`\n• Setting up external tunnel`);
191
201
  const tunnel = yield (0, localtunnel_1.default)({ port: PORT });
@@ -490,7 +490,7 @@ function getWAPage(browser) {
490
490
  * @internal
491
491
  */
492
492
  const kill = (p, b, exit, pid, reason = "LAUNCH_KILL") => __awaiter(void 0, void 0, void 0, function* () {
493
- (0, tools_1.processSendData)({
493
+ yield (0, tools_1.processSendData)({
494
494
  reason
495
495
  });
496
496
  (0, tools_1.timeout)(3000);
@@ -111,7 +111,7 @@ function popup(config) {
111
111
  });
112
112
  });
113
113
  server.listen(PORT);
114
- (0, tools_1.processSendData)({ port: PORT });
114
+ yield (0, tools_1.processSendData)({ port: PORT });
115
115
  const os = (0, os_name_1.default)();
116
116
  const appName = os.includes('macOS') ? 'google chrome' : os.includes('Windows') ? 'chrome' : 'google-chrome';
117
117
  const hasChrome = yield (0, command_exists_1.default)(appName).then(() => true).catch(() => false);
@@ -67,7 +67,7 @@ export declare function timePromise(fn: () => Promise<any>): Promise<string>;
67
67
  * @param {any} data - The data to be sent to the parent process.
68
68
  * @returns Nothing.
69
69
  */
70
- export declare const processSendData: (data?: any) => void;
70
+ export declare const processSendData: (data?: any) => Promise<unknown>;
71
71
  /**
72
72
  * It generates a link to the GitHub issue template for the current session
73
73
  * @param {ConfigObject} config - the config object
@@ -211,13 +211,21 @@ exports.timePromise = timePromise;
211
211
  * @param {any} data - The data to be sent to the parent process.
212
212
  * @returns Nothing.
213
213
  */
214
- const processSendData = (data = {}) => {
215
- process.send({
214
+ const processSendData = (data = {}) => __awaiter(void 0, void 0, void 0, function* () {
215
+ const sd = (resolve, reject) => process.send({
216
216
  type: 'process:msg',
217
217
  data
218
+ }, (error) => {
219
+ if (error) {
220
+ console.error(error);
221
+ reject(error);
222
+ }
223
+ resolve(true);
218
224
  });
219
- return;
220
- };
225
+ return yield new Promise((resolve, reject) => {
226
+ sd(resolve, reject);
227
+ });
228
+ });
221
229
  exports.processSendData = processSendData;
222
230
  /**
223
231
  * It generates a link to the GitHub issue template for the current session
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-wa/wa-automate",
3
- "version": "4.34.2",
3
+ "version": "4.34.3",
4
4
  "licenseCheckUrl": "https://funcs.openwa.dev/license-check",
5
5
  "brokenMethodReportUrl": "https://funcs.openwa.dev/report-bm",
6
6
  "patches": "https://cdn.openwa.dev/patches.json",