@open-wa/wa-automate-types-only 4.34.1 → 4.34.4
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/api/Client.d.ts +1 -1
- package/dist/utils/tools.d.ts +1 -1
- package/package.json +1 -1
package/dist/api/Client.d.ts
CHANGED
@@ -701,7 +701,7 @@ export declare class Client {
|
|
701
701
|
* Returns a PNG DataURL screenshot of the session
|
702
702
|
* @returns `Promise<DataURL>`
|
703
703
|
*/
|
704
|
-
getSnapshot(): Promise<DataURL>;
|
704
|
+
getSnapshot(chatId?: ChatId): Promise<DataURL>;
|
705
705
|
/**
|
706
706
|
* Returns an array of group ids where the host account is admin
|
707
707
|
*/
|
package/dist/utils/tools.d.ts
CHANGED
@@ -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) =>
|
70
|
+
export declare const processSendData: (data?: any) => boolean;
|
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
|