@open-wa/wa-automate 4.35.1 → 4.35.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  /// <reference types="node" />
2
2
  import { Page } from 'puppeteer';
3
- import { Chat, LiveLocationChangedEvent, ChatState, ChatMuteDuration, GroupChatCreationResponse } from './model/chat';
3
+ import { Chat, LiveLocationChangedEvent, ChatState, ChatMuteDuration, GroupChatCreationResponse, EphemeralDuration } from './model/chat';
4
4
  import { Contact, NumberCheck } from './model/contact';
5
5
  import { Message } from './model/message';
6
6
  import { AxiosRequestConfig } from 'axios';
@@ -1551,10 +1551,10 @@ export declare class Client {
1551
1551
  *
1552
1552
  * Turn the ephemeral setting in a chat to on or off
1553
1553
  * @param chatId The ID of the chat
1554
- * @param ephemeral `true` to turn on the ephemeral setting, `false` to turn off the ephemeral setting. Please note, if the setting is already on the requested setting, this method will return `true`.
1554
+ * @param ephemeral `true` to turn on the ephemeral setting to 1 day, `false` to turn off the ephemeral setting. Other options: `604800 | 7776000`
1555
1555
  * @returns `Promise<boolean>` true if the setting was set, `false` if the chat does not exist
1556
1556
  */
1557
- setChatEphemeral(chatId: ChatId, ephemeral: boolean): Promise<boolean>;
1557
+ setChatEphemeral(chatId: ChatId, ephemeral: EphemeralDuration | boolean): Promise<boolean>;
1558
1558
  /**
1559
1559
  * Send a giphy GIF as an animated sticker.
1560
1560
  * @param to ChatId
@@ -3203,7 +3203,7 @@ class Client {
3203
3203
  *
3204
3204
  * Turn the ephemeral setting in a chat to on or off
3205
3205
  * @param chatId The ID of the chat
3206
- * @param ephemeral `true` to turn on the ephemeral setting, `false` to turn off the ephemeral setting. Please note, if the setting is already on the requested setting, this method will return `true`.
3206
+ * @param ephemeral `true` to turn on the ephemeral setting to 1 day, `false` to turn off the ephemeral setting. Other options: `604800 | 7776000`
3207
3207
  * @returns `Promise<boolean>` true if the setting was set, `false` if the chat does not exist
3208
3208
  */
3209
3209
  setChatEphemeral(chatId, ephemeral) {
@@ -207,3 +207,7 @@ export interface GroupChatCreationResponse {
207
207
  ContactId?: GroupChatCreationParticipantAddResponse;
208
208
  }[];
209
209
  }
210
+ /**
211
+ * Ephemeral duration can be 1 day, 7 days or 90 days. The default is 1 day.
212
+ */
213
+ export declare type EphemeralDuration = 86400 | 604800 | 7776000;
@@ -12,6 +12,7 @@ export interface SessionInfo {
12
12
  NUM_HASH?: string;
13
13
  OW_KEY?: string;
14
14
  INSTANCE_ID?: string;
15
+ RAM_INFO?: string;
15
16
  LATEST_VERSION?: boolean;
16
17
  CLI?: boolean;
17
18
  ACC_TYPE?: 'PERSONAL' | 'BUSINESS';
@@ -39,6 +39,7 @@ const update_notifier_1 = __importDefault(require("update-notifier"));
39
39
  const Client_1 = require("../api/Client");
40
40
  const index_1 = require("../api/model/index");
41
41
  const path = __importStar(require("path"));
42
+ const os = __importStar(require("os"));
42
43
  const auth_1 = require("./auth");
43
44
  const browser_1 = require("./browser");
44
45
  const events_1 = require("./events");
@@ -148,6 +149,8 @@ function create(config = {}) {
148
149
  sessionId = 'session';
149
150
  const spinner = new events_1.Spin(sessionId, 'STARTUP', config === null || config === void 0 ? void 0 : config.disableSpins);
150
151
  const qrManager = new auth_1.QRManager(config);
152
+ const RAM_INFO = `Total: ${parseFloat(`${os.totalmem() / 1000000000}`).toFixed(2)} GB | Free: ${parseFloat(`${os.freemem() / 1000000000}`).toFixed(2)} GB`;
153
+ logging_1.log.info("RAM INFO", RAM_INFO);
151
154
  try {
152
155
  if (typeof config === 'string')
153
156
  console.error("AS OF VERSION 3+ YOU CAN NO LONGER SET THE SESSION ID AS THE FIRST PARAMETER OF CREATE. CREATE CAN ONLY TAKE A CONFIG OBJECT. IF YOU STILL HAVE CONFIGS AS A SECOND PARAMETER, THEY WILL HAVE NO EFFECT! PLEASE SEE DOCS.");
@@ -203,7 +206,8 @@ function create(config = {}) {
203
206
  WA_AUTOMATE_VERSION,
204
207
  BROWSER_VERSION,
205
208
  OS,
206
- START_TS
209
+ START_TS,
210
+ RAM_INFO
207
211
  };
208
212
  if ((config === null || config === void 0 ? void 0 : config.logDebugInfoAsObject) || (config === null || config === void 0 ? void 0 : config.disableSpins))
209
213
  spinner.succeed(`Debug info: ${JSON.stringify(debugInfo, null, 2)}`);
@@ -316,8 +320,6 @@ function create(config = {}) {
316
320
  //@ts-ignore
317
321
  const VALID_SESSION = yield waPage.waitForFunction(`window.Store && window.Store.Msg ? true : false`, { timeout: 9000, polling: 200 }).catch((e) => __awaiter(this, void 0, void 0, function* () {
318
322
  logging_1.log.error("Valid session check failed", e);
319
- const storeKeys = yield waPage.evaluate(`Object.keys(window.Store || {})`);
320
- logging_1.log.info("Store keys", storeKeys);
321
323
  return false;
322
324
  }));
323
325
  if (VALID_SESSION) {
@@ -433,6 +435,8 @@ function create(config = {}) {
433
435
  return client;
434
436
  }
435
437
  else {
438
+ const storeKeys = yield waPage.evaluate(`Object.keys(window.Store || {})`);
439
+ logging_1.log.info("Store keys", storeKeys);
436
440
  spinner.fail('The session is invalid. Retrying');
437
441
  yield (0, browser_1.kill)(waPage);
438
442
  return yield create(config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-wa/wa-automate",
3
- "version": "4.35.1",
3
+ "version": "4.35.4",
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",