@open-wa/wa-automate-types-only 4.62.5 → 4.63.0

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.
@@ -1068,6 +1068,16 @@ export declare class Client {
1068
1068
  * @returns array of [Chat]
1069
1069
  */
1070
1070
  getAllChatsWithMessages(withNewMessageOnly?: boolean): Promise<Chat[]>;
1071
+ /**
1072
+ * Returns a properly formatted array of messages from to send to the openai api
1073
+ *
1074
+ * @param last The amount of previous messages to retrieve. Defaults to 10
1075
+ * @returns
1076
+ */
1077
+ getGptArray(last?: number): Promise<{
1078
+ role: "user" | "assistant";
1079
+ content: string;
1080
+ }[]>;
1071
1081
  /**
1072
1082
  * Retrieve all groups
1073
1083
  * @returns array of groups
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-wa/wa-automate-types-only",
3
- "version": "4.62.5",
3
+ "version": "4.63.0",
4
4
  "description": "Types generated from the @open-wa/wa-automate package",
5
5
  "scripts": {
6
6
  "build": "tsc",