chore: initialize dependencies and zca-js project files

This commit is contained in:
Victor Phan
2026-07-17 20:35:17 +07:00
parent caa9717571
commit d36007d989
1551 changed files with 191538 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
import { ThreadType } from "../models/index.js";
export type SendVideoOptions = {
/**
* Optional message to send along with the video
*/
msg?: string;
/**
* URL of the video
*/
videoUrl: string;
/**
* URL of the thumbnail
*/
thumbnailUrl: string;
/**
* Video duration in milliseconds || Eg: video duration: 5.5s => 5.5 * 1000 = 5500
*/
duration?: number;
/**
* Width of the video
*/
width?: number;
/**
* Height of the video
*/
height?: number;
/**
* Time to live in milliseconds (default: 0)
*/
ttl?: number;
};
export type SendVideoResponse = {
msgId: number;
};
export declare const sendVideoFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (options: SendVideoOptions, threadId: string, type?: ThreadType) => Promise<SendVideoResponse>;