@open-wa/wa-automate-types-only 4.32.12 → 4.32.15
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
CHANGED
@@ -43,6 +43,7 @@ export declare class Client {
|
|
43
43
|
private _onLogoutCallbacks;
|
44
44
|
private _queues;
|
45
45
|
private _autoEmojiSet;
|
46
|
+
private _autoEmojiQ;
|
46
47
|
private _onLogoutSet;
|
47
48
|
/**
|
48
49
|
* This is used to track if a listener is already used via webhook. Before, webhooks used to be set once per listener. Now a listener can be set via multiple webhooks, or revoked from a specific webhook.
|
@@ -28,7 +28,7 @@ export declare type AccountNumber = `${number}`;
|
|
28
28
|
*
|
29
29
|
* `"447123456789-1445627445@g.us"`
|
30
30
|
*/
|
31
|
-
export declare type GroupChatId = `${AccountNumber}-${number}@${GroupChatServer}`;
|
31
|
+
export declare type GroupChatId = `${AccountNumber}-${number}@${GroupChatServer}` | `${number}@${GroupChatServer}`;
|
32
32
|
/**
|
33
33
|
* A contact id ends with `@c.us` and only contains the number of the contact. For example, if the country code of a contact is `44` and their number is `7123456789` then the contact id would be `447123456789@c.us`
|
34
34
|
*
|
@@ -707,11 +707,11 @@ export interface ConfigObject {
|
|
707
707
|
*/
|
708
708
|
sessionDataBucketAuth?: string;
|
709
709
|
/**
|
710
|
-
* Set the automatic emoji detection character. Set this to false to disable auto emoji. Default is `:`.
|
710
|
+
* Set the automatic emoji detection character. Set this to `false` to disable auto emoji. Default is `:`.
|
711
711
|
*
|
712
712
|
* @default `:`
|
713
713
|
*/
|
714
|
-
autoEmoji?: string;
|
714
|
+
autoEmoji?: string | false;
|
715
715
|
/**
|
716
716
|
* Set the maximum amount of chats to be present in a session.
|
717
717
|
*/
|