@muhammedaksam/waha-node 2026.2.1 → 2026.2.2
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/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -365,7 +365,7 @@ interface RemoteFile {
|
|
|
365
365
|
* @example "filename.jpg"
|
|
366
366
|
*/
|
|
367
367
|
filename?: string;
|
|
368
|
-
/** @example "https://
|
|
368
|
+
/** @example "https://picsum.photos/1024" */
|
|
369
369
|
url: string;
|
|
370
370
|
}
|
|
371
371
|
interface BinaryFile {
|
|
@@ -648,7 +648,7 @@ interface MessageVideoRequest {
|
|
|
648
648
|
session: string;
|
|
649
649
|
}
|
|
650
650
|
interface FileURL {
|
|
651
|
-
/** @example "https://
|
|
651
|
+
/** @example "https://picsum.photos/1024" */
|
|
652
652
|
url?: string;
|
|
653
653
|
}
|
|
654
654
|
interface FileContent {
|
|
@@ -659,7 +659,7 @@ interface FileContent {
|
|
|
659
659
|
data?: string;
|
|
660
660
|
}
|
|
661
661
|
interface LinkPreviewData {
|
|
662
|
-
/** @example {"url":"https://
|
|
662
|
+
/** @example {"url":"https://picsum.photos/1024"} */
|
|
663
663
|
image?: FileURL | FileContent;
|
|
664
664
|
/** @default "https://github.com/" */
|
|
665
665
|
url: string;
|
package/package.json
CHANGED