zaileys 4.8.2 → 4.8.3

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.cjs CHANGED
@@ -1,30 +1,30 @@
1
- 'use strict';var za=require('baileys'),Ae=require('node:fs/promises'),url=require('node:url'),os$1=require('node:os'),$e=require('node:path'),child_process=require('node:child_process'),jimp=require('jimp'),bi=require('node-webpmux'),crypto=require('node:crypto'),fs$1=require('node:fs');require('node:stream');var Io=require('qrcode-terminal'),Ro=require('pino'),events=require('node:events');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var za__default=/*#__PURE__*/_interopDefault(za);var Ae__default=/*#__PURE__*/_interopDefault(Ae);var $e__default=/*#__PURE__*/_interopDefault($e);var bi__default=/*#__PURE__*/_interopDefault(bi);var Io__default=/*#__PURE__*/_interopDefault(Io);var Ro__default=/*#__PURE__*/_interopDefault(Ro);var mi=(n=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(n,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):n)(function(n){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+n+'" is not supported')});var g=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysBuilderError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var P={OPUS:{CODEC:"libopus",CHANNELS:1,FREQUENCY:48e3,BITRATE:"48k",FORMAT:"ogg"},THUMBNAIL:{SIZE:100,QUALITY:50,TIMESTAMP:"10%"},STICKER:{SIZE:512,MAX_DURATION:6,FPS:10,DEFAULT_QUALITY:60,COMPRESSION_LEVEL:6},MIME:{AUDIO:"audio/",VIDEO:"video/",IMAGE:"image/",GIF:"image/gif",MP4:"video/mp4"}},Fn="ffmpeg",Un="ffprobe",Bn=false,Xt=async(n=false)=>{if(!(n||Bn)){Bn=true;try{let e=(await import('@ffmpeg-installer/ffmpeg')).default;if(e?.path){Fn=e.path;let t=$e__default.default.dirname(e.path),r=process.platform==="win32"?";":":",s=process.env.PATH??"";s.split(r).includes(t)||(process.env.PATH=`${t}${r}${s}`);}}catch{}try{let e=(await import('@ffprobe-installer/ffprobe')).default;e?.path&&(Un=e.path);}catch{}}},ct=()=>Date.now().toString(36)+Math.random().toString(36).slice(2,8),L=async n=>{let{fileTypeFromBuffer:e}=await import('file-type');return e(n)},V=class{static generateUniqueId(){return `${Date.now()}_${Math.random().toString(36).slice(2,11)}`}static createTempPath(e,t){return $e__default.default.join(os$1.tmpdir(),`${e}_${this.generateUniqueId()}.${t}`)}static async cleanup(e){await Promise.allSettled(e.map(t=>Ae__default.default.unlink(t)));}static async safeReadFile(e){try{return await Ae__default.default.readFile(e)}catch{throw new Error(`Failed to read file: ${e}`)}}static async safeWriteFile(e,t){try{await Ae__default.default.writeFile(e,t);}catch{throw new Error(`Failed to write file: ${e}`)}}},k=class{static async toBuffer(e){if(Buffer.isBuffer(e))return e;if(e instanceof ArrayBuffer)return Buffer.from(e);if(typeof e=="string")return this.fromString(e);throw new Error("Invalid input type: expected string, Buffer, or ArrayBuffer")}static async fromString(e){if(e.startsWith("http://")||e.startsWith("https://"))return this.fromUrl(e);try{if(await Ae__default.default.stat(e).then(t=>t.isFile()).catch(()=>!1))return await Ae__default.default.readFile(e)}catch{}return Buffer.from(e,"base64")}static async fromUrl(e){try{let t=await fetch(e);if(!t.ok)throw new Error(`HTTP ${t.status}: ${t.statusText}`);let r=await t.arrayBuffer();return Buffer.from(r)}catch(t){throw new Error(`Failed to fetch URL: ${t instanceof Error?t.message:String(t)}`)}}static async getExtension(e){let{fileTypeFromBuffer:t}=await import('file-type'),r=await t(e);if(!r)return "tmp";let s=r.ext.toLowerCase();return ["wav","ogg","mp4","gif","jpg","webp","tmp","mp3","png"].includes(s)?s:"tmp"}},_=class{static validate(e,t){if(!e?.mime?.startsWith(t))throw new Error(`Invalid file type: expected ${t}*, got ${e?.mime||"unknown"}`)}static isMedia(e){return e.startsWith(P.MIME.IMAGE)||e.startsWith(P.MIME.VIDEO)}static isAnimated(e){return e===P.MIME.GIF||e.startsWith(P.MIME.VIDEO)}},X=class{static async process(e){return await Xt(),new Promise((t,r)=>{let s=["-y","-i",e.input,...e.options,e.output],i=child_process.spawn(Fn,s,{stdio:"ignore"});i.on("close",async o=>{if(o===0)try{await e.onEnd(),t();}catch(a){r(a);}else try{let a=new Error(`FFmpeg exited with code ${o}`);await e.onError(a),r(a);}catch(a){r(a);}}),i.on("error",async o=>{try{await e.onError(o);}finally{r(o);}});})}static async getDuration(e){return new Promise((t,r)=>{let s=child_process.spawn(Un,["-v","error","-show_entries","format=duration","-of","default=noprint_wrappers=1:nokey=1",e]),i="";s.stdout.on("data",o=>i+=o.toString()),s.on("close",o=>{o===0?t(parseFloat(i.trim())||0):r(new Error(`ffprobe exited with code ${o}`));}),s.on("error",r);})}};var yi=3e4,jn="application/octet-stream",me=async n=>n.byteLength===0?jn:(await L(n))?.mime??jn,Pe=async n=>({buffer:n,mime:await me(n),size:n.byteLength}),qn=async(n,e)=>{let t=new AbortController,r=setTimeout(()=>t.abort(),e);try{let s=await fetch(n,{signal:t.signal});if(!s.ok)throw new g("MEDIA_LOAD_FAILED",`fetch ${n} failed with status ${s.status}`,{cause:s.status});return Buffer.from(await s.arrayBuffer())}catch(s){throw s instanceof g?s:new g("MEDIA_LOAD_FAILED",`fetch ${n} failed: ${s.message}`,{cause:s})}finally{clearTimeout(r);}},Kn=async n=>{try{return await Ae.readFile(n)}catch(e){throw new g("MEDIA_LOAD_FAILED",`read ${n} failed: ${e.message}`,{cause:e})}},wi=n=>n.startsWith("http://")||n.startsWith("https://"),x=async(n,e)=>{await Xt();let t=e?.timeoutMs??yi;return Buffer.isBuffer(n)?Pe(n):n instanceof URL?n.protocol==="file:"?Pe(await Kn(url.fileURLToPath(n))):Pe(await qn(n.toString(),t)):wi(n)?Pe(await qn(n,t)):Pe(await Kn(n))};var ge=async(n,e)=>{let{buffer:t}=await x(n),r={image:t};return e?.caption!==void 0&&(r.caption=e.caption),e?.viewOnce!==void 0&&(r.viewOnce=e.viewOnce),r};var ee=async(n,e)=>{let{buffer:t,mime:r}=await x(n);if(!r.startsWith("video/"))throw new g("INVALID_OPTIONS",`video() expects a video source, got mime ${r}`);let s={video:t};return e?.caption!==void 0&&(s.caption=e.caption),e?.gifPlayback!==void 0&&(s.gifPlayback=e.gifPlayback),e?.viewOnce!==void 0&&(s.viewOnce=e.viewOnce),e?.ptv===true&&(s.ptv=true),s};var $n=2,Jn=30,vi=async n=>{if(n.type==="image")return ge(n.src,n.caption!==void 0?{caption:n.caption}:void 0);if(n.type==="video")return ee(n.src,n.caption!==void 0?{caption:n.caption}:void 0);throw new g("INVALID_OPTIONS",`album() item type must be 'image' or 'video', got ${String(n.type)}`)},Gn=async(n,e,t,r)=>{if(!Array.isArray(t)||t.length<$n)throw new g("INVALID_OPTIONS",`album() requires a minimum of ${$n} items`);if(t.length>Jn)throw new g("INVALID_OPTIONS",`album() accepts a maximum of ${Jn} items`);let s=0,i=0;for(let u of t)if(u.type==="image")s+=1;else if(u.type==="video")i+=1;else throw new g("INVALID_OPTIONS",`album() item type must be 'image' or 'video', got ${String(u.type)}`);let o={album:{expectedImageCount:s,expectedVideoCount:i}};r.mentions&&r.mentions.length>0&&(o.mentions=r.mentions),r.mentionAll&&(o.mentionAll=true);let a={};r.quoted&&(a.quoted=r.quoted),r.disappearingSeconds!==void 0&&(a.ephemeralExpiration=r.disappearingSeconds);let c;try{c=await n.sendMessage(e,o,a);}catch(u){throw new g("SEND_FAILED","album parent send rejected",{cause:u})}let d=c?.key;if(!d)throw new g("SEND_FAILED","album parent returned no message key");let l=0;for(let u of t){let w=await vi(u);w.albumParentKey=d;try{await n.sendMessage(e,w);}catch(M){throw new g("SEND_FAILED","album child send rejected",{cause:{parentKey:d,index:l,error:M}})}l+=1;}return d};var j=async(n,e,t,r,s)=>{let i=r.replace(/[^a-z0-9]+/gi,"_").toLowerCase(),o=V.createTempPath(`${i}_in`,e),a=V.createTempPath(`${i}_out`,t);await V.safeWriteFile(o,n);try{let c=typeof s=="function"?await s(o):s;return await X.process({input:o,output:a,options:c,onEnd:async()=>{},onError:async()=>{}}),await V.safeReadFile(a)}catch(c){throw new Error(`${r} failed: ${c instanceof Error?c.message:String(c)}`)}finally{await V.cleanup([o,a]);}};var dt=64,Vn=8e3,te=class{static async toOpus(e){return this.convert(e,"opus")}static async toMp3(e){return this.convert(e,"mp3")}static async convert(e,t="opus"){let r=await k.toBuffer(e);_.validate(await L(r),P.MIME.AUDIO);let s=await k.getExtension(r),i=t==="opus"?["-vn","-c:a","libopus","-b:a","48k","-ac","1","-avoid_negative_ts","make_zero","-map_metadata","-1","-f","ogg"]:["-vn","-c:a","libmp3lame","-b:a","128k","-ac","2","-avoid_negative_ts","make_zero","-map_metadata","-1","-f","mp3"];return j(r,s,t==="opus"?"ogg":"mp3",`${t.toUpperCase()} conversion`,i)}static async waveform(e){let t=await k.toBuffer(e),r=await k.getExtension(t),s=await j(t,r,"tmp","Waveform generation",["-vn","-ac","1","-ar",String(Vn),"-f","s16le"]),i=Math.floor(s.length/2);return {waveform:this.computeWaveform(s),seconds:Math.max(1,Math.round(i/Vn))}}static computeWaveform(e){let t=Math.floor(e.length/2),r=new Uint8Array(dt);if(t===0)return r;let s=Math.max(1,Math.floor(t/dt)),i=[];for(let a=0;a<dt;a++){let c=0,d=0;for(let l=0;l<s;l++){let u=(a*s+l)*2;u+1<e.length&&(c+=Math.abs(e.readInt16LE(u)),d+=1);}i.push(d>0?c/d:0);}let o=Math.max(...i)||1;for(let a=0;a<dt;a++)r[a]=Math.floor(i[a]/o*100);return r}};var Mi=["-c:v","libx264","-preset","ultrafast","-crf","28","-c:a","aac","-b:a","128k","-movflags","+faststart","-vf","scale=trunc(iw/2)*2:trunc(ih/2)*2","-pix_fmt","yuv420p","-f","mp4"],q=class{static async toMp4(e){let t=await k.toBuffer(e);_.validate(await L(t),P.MIME.VIDEO);let r=await k.getExtension(t);return j(t,r,"mp4","Video re-encoding",Mi)}static async thumbnail(e){let t=await k.toBuffer(e);_.validate(await L(t),P.MIME.VIDEO);let r=await k.getExtension(t),s=P.THUMBNAIL.SIZE;return (await j(t,r,"jpg","Thumbnail generation",async o=>{let a=await X.getDuration(o);return ["-ss",Math.max(0,a*.1).toString(),"-vframes","1","-s",`${s}x${s}`]})).toString("base64")}static async duration(e){return X.getDuration(e)}};var fe=null,Hn=false;async function Si(){if(Hn)return fe;Hn=true;let n=e=>{typeof e=="function"&&(fe=e);};try{n(mi("sharp"));}catch{fe=null;}if(!fe)try{let e=await import('sharp');n(e.default??e);}catch{fe=null;}return fe}function zn(n,e){let t=new Uint8Array(n*n),r=n/2,s=n/2,i=n/10,o=[[i,i],[n-i,i],[i,n-i],[n-i,n-i]];for(let a=0;a<n;a++)for(let c=0;c<n;c++){let d=false;if(e==="circle"){let l=c-r,u=a-s;d=l*l+u*u<=r*r;}else if(e==="rounded"){let l=c>=i&&c<n-i&&a>=0&&a<n,u=c>=0&&c<n&&a>=i&&a<n-i,w=false;for(let M of o){let v=c-M[0],C=a-M[1];if(v*v+C*C<=i*i){w=true;break}}d=l||u||w;}else if(e==="oval"){let l=(c-r)/(n/2),u=(a-s)/(n/3);d=l*l+u*u<=1;}t[a*n+c]=d?255:0;}return t}var en=class{sharp;constructor(e){this.sharp=e;}async thumbnail(e){let t=this.sharp,r=t(e).resize(P.THUMBNAIL.SIZE,P.THUMBNAIL.SIZE,{fit:"cover"});return (await r.metadata()).format==="gif"&&(r=t(e,{pages:1}).resize(P.THUMBNAIL.SIZE,P.THUMBNAIL.SIZE)),(await r.jpeg({quality:P.THUMBNAIL.QUALITY}).toBuffer()).toString("base64")}async resize(e,t,r){return this.sharp(e).resize(t,r,{fit:"cover"}).png().toBuffer()}async toJpeg(e){let t=this.sharp,r=await k.toBuffer(e),s=await t(r).metadata();if(!s.format)throw new Error("Invalid image type: format could not be determined");return s.format==="webp"||s.format==="png"?t(r).jpeg().toBuffer():r}async resizeForSticker(e,t,r="default"){let s=this.sharp,i=P.STICKER.SIZE,o=s(e).resize(i,i,{fit:"contain",background:{r:0,g:0,b:0,alpha:0}});if(r!=="default"){let a=Buffer.from(zn(i,r)),c=s(a,{raw:{width:i,height:i,channels:1}});o=o.joinChannel(await c.png().toBuffer());}return o.webp({quality:t}).toBuffer()}},tn=class{async thumbnail(e){let t=P.THUMBNAIL.SIZE,r=await jimp.Jimp.fromBuffer(e);r.cover({w:t,h:t});let s=await r.getBuffer("image/jpeg",{quality:P.THUMBNAIL.QUALITY});return Buffer.from(s).toString("base64")}async resize(e,t,r){let s=await jimp.Jimp.fromBuffer(e);s.cover({w:t,h:r});let i=await s.getBuffer("image/png");return Buffer.from(i)}async toJpeg(e){let t=await k.toBuffer(e);try{let s=await(await jimp.Jimp.fromBuffer(t)).getBuffer("image/jpeg");return Buffer.from(s)}catch{return t}}async resizeForSticker(e,t,r="default"){let s=P.STICKER.SIZE,i=await jimp.Jimp.fromBuffer(e);if(i.contain({w:s,h:s}),r!=="default"){let c=zn(s,r),d=new jimp.Jimp({width:s,height:s,color:255});for(let l=0;l<s;l++)for(let u=0;u<s;u++)c[l*s+u]===255&&d.setPixelColor(4294967295,u,l);i.mask(d);}let o=Buffer.from(await i.getBuffer("image/png")),a=Math.max(1,Math.min(100,t));return j(o,"png","webp","Jimp WebP conversion",["-vcodec","libwebp","-q:v",`${a}`,"-preset","default"])}},Ee=null;async function lt(){if(Ee)return Ee;let n=await Si();return n?Ee=new en(n):(console.warn("\x1B[33m%s\x1B[0m","[media-process] Jimp is slow. For faster performance, run: npm install sharp"),Ee=new tn),Ee}var F=class{static async thumbnail(e){return (await lt()).thumbnail(e)}static async resize(e,t,r){return (await lt()).resize(e,t,r)}static async toJpeg(e){return (await lt()).toJpeg(e)}static async resizeForSticker(e,t,r="default"){return (await lt()).resizeForSticker(e,t,r)}};var ut=class{static async create(e,t){try{let r=await k.toBuffer(e),s=await L(r);if(!s)throw new Error("Unable to detect file type");let i=t?.quality||P.STICKER.DEFAULT_QUALITY,o=_.isAnimated(s.mime),a=t?.shape||"default",c=s.mime==="image/webp"?r:o?await this.processAnimated(r,s.mime,i):await F.resizeForSticker(r,i,a),d=this.createExifMetadata(t),l=new bi__default.default.Image;await l.load(c),l.exif=d;let u=await l.save(null);return Buffer.isBuffer(u)?u:Buffer.from(u)}catch(r){throw new Error(`Sticker creation failed: ${r instanceof Error?r.message:String(r)}`)}}static createExifMetadata(e){let t={"sticker-pack-id":ct(),"sticker-pack-name":e?.packageName||"Zaileys Library","sticker-pack-publisher":e?.authorName||"https://github.com/zeative/zaileys",emojis:["\u{1F913}"],"android-app-store-link":"https://play.google.com/store/apps/details?id=com.marsvard.stickermakerforwhatsapp","ios-app-store-link":"https://itunes.apple.com/app/sticker-maker-studio/id1443326857"},r=Buffer.from([73,73,42,0,8,0,0,0,1,0,65,87,7,0,0,0,0,0,22,0,0,0]),s=Buffer.from(JSON.stringify(t),"utf8"),i=Buffer.concat([r,s]);return i.writeUIntLE(s.length,14,4),i}static async processAnimated(e,t,r){let s=P.STICKER.SIZE,i=P.STICKER.FPS,o=`scale=${s}:${s}:force_original_aspect_ratio=decrease,fps=${i},pad=${s}:${s}:(ow-iw)/2:(oh-ih)/2:color=0x00000000,format=rgba`,a=Math.max(1,Math.min(100,r));return j(e,this.getExtension(t),"webp","Animated sticker processing",async c=>{let d=P.STICKER.MAX_DURATION;try{d=Math.min(await q.duration(c),P.STICKER.MAX_DURATION);}catch{console.warn("Using default duration:",P.STICKER.MAX_DURATION);}return ["-vcodec libwebp",`-vf ${o}`,`-q:v ${a}`,"-loop 0","-preset default","-an","-vsync 0",`-t ${d}`,`-compression_level ${P.STICKER.COMPRESSION_LEVEL}`]})}static getExtension(e){return e===P.MIME.GIF?"gif":e.startsWith(P.MIME.VIDEO)?"mp4":"tmp"}};var pt=class{static async create(e){try{let t=await k.toBuffer(e),r=await L(t);if(!r)throw new Error("Unable to detect file type");let s;return r.mime.startsWith(P.MIME.VIDEO)?s=await q.thumbnail(t):_.isMedia(r.mime)?s=await F.thumbnail(t):s="",{document:t,mimetype:r.mime,ext:r.ext,fileName:ct(),jpegThumbnail:s}}catch(t){throw new Error(`Document creation failed: ${t instanceof Error?t.message:String(t)}`)}}};var ne=class{input;constructor(e){this.input=e;}get audio(){return {toOpus:()=>te.toOpus(this.input),toMp3:()=>te.toMp3(this.input),convert:(e="opus")=>te.convert(this.input,e),waveform:()=>te.waveform(this.input)}}get video(){return {toMp4:()=>q.toMp4(this.input),thumbnail:()=>q.thumbnail(this.input)}}get image(){return {toJpeg:()=>F.toJpeg(this.input),thumbnail:async()=>{let e=await k.toBuffer(this.input);return F.thumbnail(e)},resize:async(e,t)=>{let r=await k.toBuffer(this.input);return F.resize(r,e,t)}}}get sticker(){return {create:e=>ut.create(this.input,e)}}get document(){return {create:()=>pt.create(this.input)}}get thumbnail(){return {get:async()=>{let e=await k.toBuffer(this.input),t=await L(e);if(!t||!_.isMedia(t.mime))throw new Error("Invalid media type: expected image or video");return t.mime.startsWith(P.MIME.VIDEO)?q.thumbnail(this.input):F.thumbnail(e)}}}async toBuffer(){return k.toBuffer(this.input)}};var Yn=async(n,e)=>{let{buffer:t}=await x(n),r;try{r=await new ne(t).audio.toOpus();}catch(o){throw new g("MEDIA_LOAD_FAILED",`audio() transcode failed: ${o.message}`,{cause:o})}let s=e?.ptt??true,i={audio:r,ptt:s};if(s)try{let{waveform:o,seconds:a}=await new ne(t).audio.waveform();i.waveform=o,e?.seconds===void 0&&(i.seconds=a);}catch{}return e?.seconds!==void 0&&(i.seconds=e.seconds),i};var Zn=10,N="__zaileysRelayMessage",nn="__zaileysHeaderMedia",H=n=>typeof n=="string"&&n.length>0,Ai=n=>{let e=n.text;if(!H(e)||e.trim().length===0)throw new g("INVALID_OPTIONS","button text must be a non-empty string");return e},Pi=(n,e)=>{let t=n.type??"reply";if(t==="location"){let s=n.text;return {name:"send_location",buttonParamsJson:JSON.stringify(H(s)?{display_text:s}:{})}}let r=Ai(n);if(t==="reply"){let s=n.id;if(!H(s))throw new g("INVALID_OPTIONS","reply button requires a non-empty id");if(e.has(s))throw new g("INVALID_OPTIONS",`duplicate button id: ${s}`);return e.add(s),{name:"quick_reply",buttonParamsJson:JSON.stringify({display_text:r,id:s})}}if(t==="url"){let s=n.url;if(!H(s))throw new g("INVALID_OPTIONS","url button requires a non-empty url");let i=n.webview===true;return {name:"cta_url",buttonParamsJson:JSON.stringify({display_text:r,url:s,merchant_url:s,webview_interaction:i})}}if(t==="copy"){let s=n.code;if(!H(s))throw new g("INVALID_OPTIONS","copy button requires a non-empty code");return {name:"cta_copy",buttonParamsJson:JSON.stringify({display_text:r,id:s,copy_code:s})}}if(t==="call"){let s=n.phone;if(!H(s))throw new g("INVALID_OPTIONS","call button requires a non-empty phone");return {name:"cta_call",buttonParamsJson:JSON.stringify({display_text:r,id:s,phone_number:s})}}if(t==="reminder"||t==="cancel-reminder"){let s=n.id;return {name:t==="reminder"?"cta_reminder":"cta_cancel_reminder",buttonParamsJson:JSON.stringify({display_text:r,id:H(s)?s:r})}}if(t==="address"){let s=n.id;return {name:"address_message",buttonParamsJson:JSON.stringify({display_text:r,id:H(s)?s:r})}}throw new g("INVALID_OPTIONS",`unknown button type: ${String(t)}`)},Ci=n=>{let e={};if(n?.bottomSheet){let t=n.bottomSheet;e.bottom_sheet={...t.buttonsLimit!==void 0?{in_thread_buttons_limit:t.buttonsLimit}:{},...t.dividers!==void 0?{divider_indices:t.dividers}:{},...t.listTitle!==void 0?{list_title:t.listTitle}:{},...t.buttonTitle!==void 0?{button_title:t.buttonTitle}:{}};}if(n?.limitedTimeOffer){let t=n.limitedTimeOffer;e.limited_time_offer={...t.text!==void 0?{text:t.text}:{},...t.url!==void 0?{url:t.url}:{},...t.copyCode!==void 0?{copy_code:t.copyCode}:{},...t.expiresAt!==void 0?{expiration_time:t.expiresAt}:{}};}return Object.keys(e).length>0?JSON.stringify(e):""},rn=n=>{if(!Array.isArray(n)||n.length===0)throw new g("INVALID_OPTIONS","buttons() requires at least one button");if(n.length>Zn)throw new g("INVALID_OPTIONS",`buttons() accepts at most ${Zn} buttons`);let e=new Set;return n.map(t=>Pi(t,e))},mt=(n,e)=>{let t=rn(n),r={body:{text:e?.text&&e.text.length>0?e.text:" "},nativeFlowMessage:{buttons:t,messageParamsJson:Ci(e)}};e?.footer&&e.footer.length>0&&(r.footer={text:e.footer});let s=e?.image?{kind:"image",src:e.image}:e?.video?{kind:"video",src:e.video}:void 0;return (e?.title&&e.title.length>0||e?.subtitle&&e.subtitle.length>0||s)&&(r.header={title:e?.title??"",subtitle:e?.subtitle??"",hasMediaAttachment:s!==void 0}),s!==void 0?{[N]:{interactiveMessage:r},[nn]:s}:{[N]:{interactiveMessage:r}}};var Qn=10,sn="__zaileysCardsMedia",Xn=(n,e)=>{if(!Array.isArray(n)||n.length===0)throw new g("INVALID_OPTIONS","carousel() requires at least one card");if(n.length>Qn)throw new g("INVALID_OPTIONS",`carousel() accepts at most ${Qn} cards`);let t=[],r=n.map((o,a)=>{let c={body:{text:o.body&&o.body.length>0?o.body:" "}};o.buttons&&o.buttons.length>0&&(c.nativeFlowMessage={buttons:rn(o.buttons),messageParamsJson:""}),o.footer&&o.footer.length>0&&(c.footer={text:o.footer});let d=o.image?{kind:"image",src:o.image}:o.video?{kind:"video",src:o.video}:void 0;return (o.title&&o.title.length>0||o.subtitle&&o.subtitle.length>0||d)&&(c.header={title:o.title??"",subtitle:o.subtitle??"",hasMediaAttachment:d!==void 0}),d&&t.push({...d,index:a}),c}),s={body:{text:e?.text&&e.text.length>0?e.text:" "},carouselMessage:{cards:r}};return t.length>0?{[N]:{interactiveMessage:s},[sn]:t}:{[N]:{interactiveMessage:s}}};var ki=n=>{let e=[],t="",r=0,s=1,i=0,o=0,a=[];for(let c=0;c<n.length;c++)if(n[c]==="["&&n[c-1]!=="\\")a.push(c);else if(n[c]==="]"&&(n[c+1]==="("||n[c+1]==="<")){let d=a.pop();if(d==null)continue;let l=n[c+1],u=l==="("?")":">",w=l==="<",M=c+2,v=1;for(;M<n.length&&v>0;)n[M]===l&&n[M-1]!=="\\"?v++:n[M]===u&&n[M-1]!=="\\"&&v--,M++;if(v>0)continue;let C=n.slice(d+1,c).trim(),y=n.slice(c+2,M-1).trim(),p,m;if(w){let[b="",E="",pe="",zt="",Yt=""]=C.split("|").map(Zt=>Zt.trim());p=`zaileys_LATEX_${o++}`,m=`{{${p}}}${b||"image"}{{/${p}}}`,e.push({type:"latex",ie:{key:p,text:b,url:y,width:E,height:pe,font_height:zt,padding:Yt}});}else C?(p=`zaileys_HYPERLINK_${i++}`,m=`{{${p}}}${y}{{/${p}}}`,e.push({type:"hyperlink",ie:{key:p,text:C,url:y}})):(p=`zaileys_CITATION_${s-1}`,m=`{{${p}}}${y}{{/${p}}}`,e.push({type:"citation",ie:{key:p,reference_id:String(s++),url:y}}));t+=n.slice(r,d)+m,r=M,c=M-1;}return t+=n.slice(r),{text:t,ie:e}},Ti=n=>n.ie.map(({type:e,ie:t})=>e==="hyperlink"?{key:t.key,metadata:{display_name:t.text,is_trusted:true,url:t.url,__typename:"GenAIInlineLinkItem"}}:e==="latex"?{key:t.key,metadata:{latex_expression:t.text,latex_image:{url:t.url,width:Number(t.width)||100,height:Number(t.height)||100},font_height:Number(t.font_height)||83.33333333333333,padding:Number(t.padding)||15,__typename:"GenAILatexItem"}}:{key:t.key,metadata:{reference_id:Number(t.reference_id),reference_url:t.url,reference_title:t.url,reference_display_name:t.url,sources:[],__typename:"GenAISearchCitationItem"}}),Ii=n=>{if(!Array.isArray(n)||n.length===0||!n.every(i=>Array.isArray(i)))throw new g("INVALID_OPTIONS","table must be a non-empty array of string rows");let[e,...t]=n,r=Math.max(e.length,...t.map(i=>i.length)),s=i=>[...i,...Array(r-i.length).fill("")];return [{is_header:true,cells:s(e)},...t.map(i=>({is_header:false,cells:s(i)}))]},Oi={0:"DEFAULT",1:"KEYWORD",2:"METHOD",3:"STR",4:"NUMBER",5:"COMMENT"},gt=new Set(["break","case","catch","continue","debugger","delete","do","else","finally","for","function","if","in","instanceof","new","return","switch","this","throw","try","typeof","var","void","while","with","true","false","null","undefined","class","const","let","super","extends","export","import","from","as","default","yield","static","constructor","async","await","get","set"]),xi={javascript:gt,js:gt,typescript:gt,ts:gt},Ri=(n,e)=>{let t=xi[e.toLowerCase()]??new Set,r=[],s=(o,a)=>{if(!o)return;let c=r[r.length-1];c&&c.highlightType===a?c.codeContent+=o:r.push({codeContent:o,highlightType:a});},i=0;for(;i<n.length;){let o=n[i];if(/\s/.test(o)){let a=i;for(;i<n.length&&/\s/.test(n[i]);)i++;s(n.slice(a,i),0);continue}if(o==="/"&&n[i+1]==="/"){let a=i;for(i+=2;i<n.length&&n[i]!==`
2
- `;)i++;s(n.slice(a,i),5);continue}if(o==='"'||o==="'"||o==="`"){let a=i,c=o;for(i++;i<n.length;)if(n[i]==="\\"&&i+1<n.length)i+=2;else if(n[i]===c){i++;break}else i++;s(n.slice(a,i),3);continue}if(/[0-9]/.test(o)){let a=i;for(;i<n.length&&/[0-9.]/.test(n[i]);)i++;s(n.slice(a,i),4);continue}if(/[a-zA-Z_$]/.test(o)){let a=i;for(;i<n.length&&/[a-zA-Z0-9_$]/.test(n[i]);)i++;let c=n.slice(a,i),d=0;if(t.has(c))d=1;else {let l=i;for(;l<n.length&&/\s/.test(n[l]);)l++;n[l]==="("&&(d=2);}s(c,d);continue}s(o,0),i++;}return r},D=(n,e)=>({view_model:{[Array.isArray(e)?"primitives":"primitive"]:e,__typename:`GenAI${n}LayoutViewModel`}}),_i="https://github.com/zeative/zaileys",er=(n,e)=>{if(!Array.isArray(n)||n.length===0)throw new g("INVALID_OPTIONS","text({ rich: true }) requires non-empty markdown content");let t=[],r=[];for(let o of n)if(o.type==="text"){let a=ki(o.text),c=Ti(a);r.push({messageType:2,messageText:a.text}),t.push(D("Single",{text:a.text,...c.length>0?{inline_entities:c}:{},__typename:"GenAIMarkdownTextUXPrimitive"}));}else if(o.type==="code"){let a=o.language??"plaintext",c=Ri(o.content,a);r.push({messageType:5,codeMetadata:{codeLanguage:a,codeBlocks:c}}),t.push(D("Single",{language:a,code_blocks:c.map(d=>({content:d.codeContent,type:Oi[d.highlightType]})),__typename:"GenAICodeUXPrimitive"}));}else if(o.type==="table"){let a=Ii(o.rows);r.push({messageType:4,tableMetadata:{title:"",rows:a.map(c=>({items:c.cells,...c.is_header?{isHeading:true}:{}}))}}),t.push(D("Single",{rows:a,__typename:"GenATableUXPrimitive"}));}else if(o.type==="image"){let a=Array.isArray(o.url)?o.url:[o.url];if(a.length===0)throw new g("INVALID_OPTIONS","image requires at least one url");r.push({messageType:1,gridImageMetadata:{gridImageUrl:{imagePreviewUrl:a[0]},imageUrls:a.map(c=>({imagePreviewUrl:c,imageHighResUrl:c,sourceUrl:_i}))}});for(let c of a)t.push(D("Single",{media:{url:c,mime_type:"image/png"},imagine_type:"IMAGE",status:{status:"READY"},__typename:"GenAIImaginePrimitive"}));}else if(o.type==="video"){let a=Array.isArray(o.url)?o.url:[o.url];if(a.length===0)throw new g("INVALID_OPTIONS","video requires at least one url");r.push({messageType:2,messageText:"[ CANNOT_LOAD_VIDEO - zaileys ]"});for(let c of a)t.push(D("Single",{media:{url:c,mime_type:"video/mp4",duration:o.duration??0},imagine_type:"ANIMATE",status:{status:"READY"},__typename:"GenAIImaginePrimitive"}));}else if(o.type==="product"){let a=Array.isArray(o.products),c=a?o.products:[o.products];if(c.length===0)throw new g("INVALID_OPTIONS","product requires at least one item");r.push({messageType:2,messageText:"[ CANNOT_LOAD_PRODUCT - zaileys ]"});let d=c.map(l=>({title:l.title,brand:l.brand??"",price:l.price??"",sale_price:l.salePrice??"",product_url:l.url??"",image:{url:l.image??""},additional_images:[{url:l.icon??""}],__typename:"GenAIProductItemCardPrimitive"}));t.push(a?D("HScroll",d):D("Single",d[0]));}else if(o.type==="reels"){let a=Array.isArray(o.reels)?o.reels:[o.reels];if(a.length===0)throw new g("INVALID_OPTIONS","reels requires at least one item");r.push({messageType:9,contentItemsMetadata:{contentType:1,itemsMetadata:a.map(c=>({reelItem:{title:c.username??"",profileIconUrl:c.profileUrl??"",thumbnailUrl:c.thumbnail??"",videoUrl:c.url??""}}))}}),t.push(D("HScroll",a.map(c=>({reels_url:c.url??"",thumbnail_url:c.thumbnail??"",creator:c.username??c.title??"",avatar_url:c.profileUrl??"",reels_title:c.title??"",likes_count:c.likes??0,shares_count:c.shares??0,view_count:c.views??0,reel_source:c.source??"IG",is_verified:!!c.verified,__typename:"GenAIReelPrimitive"}))));}else if(o.type==="post"){let a=Array.isArray(o.posts)?o.posts:[o.posts];if(a.length===0)throw new g("INVALID_OPTIONS","post requires at least one item");r.push({messageType:2,messageText:"[ CANNOT_LOAD_POST - zaileys ]"}),t.push(D("HScroll",a.map(c=>({title:c.title??"",subtitle:c.subtitle??"",username:c.username??"",profile_picture_url:c.profileUrl??"",is_verified:!!c.verified,thumbnail_url:c.thumbnail??"",post_caption:c.caption??"",likes_count:c.likes??0,comments_count:c.comments??0,shares_count:c.shares??0,post_url:c.url??"",post_deeplink:c.deeplink??"",source_app:c.source??"INSTAGRAM",footer_label:c.footer??"",footer_icon:c.icon??"",is_carousel:a.length>1,orientation:c.orientation??"LANDSCAPE",post_type:c.postType??"VIDEO",__typename:"GenAIPostPrimitive"}))));}else if(o.type==="tip")r.push({messageType:2,messageText:o.text}),t.push(D("Single",{text:o.text,__typename:"GenAIMetadataTextPrimitive"}));else {let a=Array.isArray(o.prompts)?o.prompts:[o.prompts];if(a.length===0)throw new g("INVALID_OPTIONS","suggest requires at least one prompt");t.push(D("ActionRow",a.map(c=>({prompt_text:c,prompt_type:"SUGGESTED_PROMPT",__typename:"GenAIFollowUpSuggestionPillPrimitive"}))));}e?.footer&&e.footer.length>0&&t.push(D("Single",{text:e.footer,__typename:"GenAIMetadataTextPrimitive"}));let s=(e?.sources??[]).map(([o,a,c])=>({source_type:"THIRD_PARTY",source_display_name:c??"",source_subtitle:"AI",source_url:a??"",favicon:{url:o??"",mime_type:"image/jpeg",width:16,height:16}})),i={messageContextInfo:{deviceListMetadata:{},deviceListMetadataVersion:2,botMetadata:{messageDisclaimerText:e?.title??"",richResponseSourcesMetadata:{sources:s}}},botForwardedMessage:{message:{richResponseMessage:{messageType:1,submessages:r,unifiedResponse:{data:Buffer.from(JSON.stringify({response_id:crypto.randomUUID(),sections:t})).toString("base64")},contextInfo:{forwardingScore:1,isForwarded:true,forwardedAiBotMessageInfo:{botJid:"0@bot"},forwardOrigin:4}}}}};return {[N]:i}};var Li=/^:::([a-zA-Z]+)\s*$/,Ni=/^:::\s*$/,tr=/^```(\w*)\s*$/,nr=/^!\[[^\]]*\]\(([^)]+)\)\s*$/,Di=/^\s*\|?\s*:?-{2,}[\s|:-]*$/,ft=n=>n.split("|").map(e=>e.trim()),on=n=>{let e={};for(let t of ft(n)){let r=t.indexOf(":");if(r===-1)continue;let s=t.slice(0,r).trim().toLowerCase(),i=t.slice(r+1).trim();s.length>0&&(e[s]=i);}return e},re=n=>{if(n===void 0||n.trim().length===0)return;let e=Number(n);return Number.isNaN(e)?void 0:e},sr=n=>n==="true"||n==="1"||n==="yes",rr=n=>{let e=n.trim();return e.startsWith("|")&&(e=e.slice(1)),e.endsWith("|")&&(e=e.slice(0,-1)),e.split("|").map(t=>t.trim())},Bi=n=>{let e=on(n),t=e.title;if(t===void 0||t.length===0)return null;let r={title:t};return e.price&&(r.price=e.price),e.sale&&(r.salePrice=e.sale),e.saleprice&&(r.salePrice=e.saleprice),e.brand&&(r.brand=e.brand),e.url&&(r.url=e.url),e.image&&(r.image=e.image),e.icon&&(r.icon=e.icon),r},Wi=n=>{let e=on(n),t={};e.user&&(t.username=e.user),e.username&&(t.username=e.username),e.title&&(t.title=e.title),e.profile&&(t.profileUrl=e.profile),e.thumb&&(t.thumbnail=e.thumb),e.url&&(t.url=e.url);let r=re(e.likes);r!==void 0&&(t.likes=r);let s=re(e.shares);s!==void 0&&(t.shares=s);let i=re(e.views);return i!==void 0&&(t.views=i),e.source&&(t.source=e.source),"verified"in e&&(t.verified=sr(e.verified)),t},Fi=n=>{let e=on(n),t={};e.user&&(t.username=e.user),e.username&&(t.username=e.username),e.title&&(t.title=e.title),e.subtitle&&(t.subtitle=e.subtitle),e.profile&&(t.profileUrl=e.profile),e.thumb&&(t.thumbnail=e.thumb),e.caption&&(t.caption=e.caption);let r=re(e.likes);r!==void 0&&(t.likes=r);let s=re(e.comments);s!==void 0&&(t.comments=s);let i=re(e.shares);return i!==void 0&&(t.shares=i),e.url&&(t.url=e.url),e.source&&(t.source=e.source),e.footer&&(t.footer=e.footer),e.icon&&(t.icon=e.icon),"verified"in e&&(t.verified=sr(e.verified)),t},Ui=(n,e)=>{let t=e.map(r=>r.replace(/^[-*]\s*/,"").trim()).filter(r=>r.length>0);if(n==="suggest"){let r=t.flatMap(s=>ft(s)).filter(s=>s.length>0);return r.length>0?{type:"suggest",prompts:r}:null}if(n==="tip")return t.length>0?{type:"tip",text:t.join(`
3
- `)}:null;if(n==="image")return t.length>0?{type:"image",url:t.length===1?t[0]:t}:null;if(n==="video"){if(t.length===0)return null;let r=t.map(o=>ft(o)[0]??"").filter(o=>o.length>0);if(r.length===0)return null;let s=re(ft(t[0])[1]),i={type:"video",url:r.length===1?r[0]:r};return s!==void 0&&(i.duration=s),i}if(n==="product"){let r=t.map(Bi).filter(s=>s!==null);return r.length>0?{type:"product",products:r.length===1?r[0]:r}:null}if(n==="reels"){let r=t.map(Wi);return r.length>0?{type:"reels",reels:r}:null}if(n==="post"){let r=t.map(Fi);return r.length>0?{type:"post",posts:r}:null}return null},ir=n=>{let e=n.replace(/\r\n/g,`
1
+ 'use strict';var Ya=require('baileys'),Ae=require('node:fs/promises'),url=require('node:url'),os$1=require('node:os'),$e=require('node:path'),child_process=require('node:child_process'),jimp=require('jimp'),bi=require('node-webpmux'),crypto=require('node:crypto'),fs$1=require('node:fs');require('node:stream');var Io=require('qrcode-terminal'),Ro=require('pino'),events=require('node:events');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var Ya__default=/*#__PURE__*/_interopDefault(Ya);var Ae__default=/*#__PURE__*/_interopDefault(Ae);var $e__default=/*#__PURE__*/_interopDefault($e);var bi__default=/*#__PURE__*/_interopDefault(bi);var Io__default=/*#__PURE__*/_interopDefault(Io);var Ro__default=/*#__PURE__*/_interopDefault(Ro);var mi=(n=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(n,{get:(e,t)=>(typeof require<"u"?require:e)[t]}):n)(function(n){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+n+'" is not supported')});var g=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysBuilderError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var C={OPUS:{CODEC:"libopus",CHANNELS:1,FREQUENCY:48e3,BITRATE:"48k",FORMAT:"ogg"},THUMBNAIL:{SIZE:100,QUALITY:50,TIMESTAMP:"10%"},STICKER:{SIZE:512,MAX_DURATION:6,FPS:10,DEFAULT_QUALITY:60,COMPRESSION_LEVEL:6},MIME:{AUDIO:"audio/",VIDEO:"video/",IMAGE:"image/",GIF:"image/gif",MP4:"video/mp4"}},Fn="ffmpeg",Un="ffprobe",Bn=false,Xt=async(n=false)=>{if(!(n||Bn)){Bn=true;try{let e=(await import('@ffmpeg-installer/ffmpeg')).default;if(e?.path){Fn=e.path;let t=$e__default.default.dirname(e.path),r=process.platform==="win32"?";":":",s=process.env.PATH??"";s.split(r).includes(t)||(process.env.PATH=`${t}${r}${s}`);}}catch{}try{let e=(await import('@ffprobe-installer/ffprobe')).default;e?.path&&(Un=e.path);}catch{}}},ct=()=>Date.now().toString(36)+Math.random().toString(36).slice(2,8),L=async n=>{let{fileTypeFromBuffer:e}=await import('file-type');return e(n)},V=class{static generateUniqueId(){return `${Date.now()}_${Math.random().toString(36).slice(2,11)}`}static createTempPath(e,t){return $e__default.default.join(os$1.tmpdir(),`${e}_${this.generateUniqueId()}.${t}`)}static async cleanup(e){await Promise.allSettled(e.map(t=>Ae__default.default.unlink(t)));}static async safeReadFile(e){try{return await Ae__default.default.readFile(e)}catch{throw new Error(`Failed to read file: ${e}`)}}static async safeWriteFile(e,t){try{await Ae__default.default.writeFile(e,t);}catch{throw new Error(`Failed to write file: ${e}`)}}},k=class{static async toBuffer(e){if(Buffer.isBuffer(e))return e;if(e instanceof ArrayBuffer)return Buffer.from(e);if(typeof e=="string")return this.fromString(e);throw new Error("Invalid input type: expected string, Buffer, or ArrayBuffer")}static async fromString(e){if(e.startsWith("http://")||e.startsWith("https://"))return this.fromUrl(e);try{if(await Ae__default.default.stat(e).then(t=>t.isFile()).catch(()=>!1))return await Ae__default.default.readFile(e)}catch{}return Buffer.from(e,"base64")}static async fromUrl(e){try{let t=await fetch(e);if(!t.ok)throw new Error(`HTTP ${t.status}: ${t.statusText}`);let r=await t.arrayBuffer();return Buffer.from(r)}catch(t){throw new Error(`Failed to fetch URL: ${t instanceof Error?t.message:String(t)}`)}}static async getExtension(e){let{fileTypeFromBuffer:t}=await import('file-type'),r=await t(e);if(!r)return "tmp";let s=r.ext.toLowerCase();return ["wav","ogg","mp4","gif","jpg","webp","tmp","mp3","png"].includes(s)?s:"tmp"}},_=class{static validate(e,t){if(!e?.mime?.startsWith(t))throw new Error(`Invalid file type: expected ${t}*, got ${e?.mime||"unknown"}`)}static isMedia(e){return e.startsWith(C.MIME.IMAGE)||e.startsWith(C.MIME.VIDEO)}static isAnimated(e){return e===C.MIME.GIF||e.startsWith(C.MIME.VIDEO)}},ee=class{static async process(e){return await Xt(),new Promise((t,r)=>{let s=["-y","-i",e.input,...e.options,e.output],i=child_process.spawn(Fn,s,{stdio:"ignore"});i.on("close",async o=>{if(o===0)try{await e.onEnd(),t();}catch(a){r(a);}else try{let a=new Error(`FFmpeg exited with code ${o}`);await e.onError(a),r(a);}catch(a){r(a);}}),i.on("error",async o=>{try{await e.onError(o);}finally{r(o);}});})}static async getDuration(e){return new Promise((t,r)=>{let s=child_process.spawn(Un,["-v","error","-show_entries","format=duration","-of","default=noprint_wrappers=1:nokey=1",e]),i="";s.stdout.on("data",o=>i+=o.toString()),s.on("close",o=>{o===0?t(parseFloat(i.trim())||0):r(new Error(`ffprobe exited with code ${o}`));}),s.on("error",r);})}};var yi=3e4,jn="application/octet-stream",me=async n=>n.byteLength===0?jn:(await L(n))?.mime??jn,Ce=async n=>({buffer:n,mime:await me(n),size:n.byteLength}),qn=async(n,e)=>{let t=new AbortController,r=setTimeout(()=>t.abort(),e);try{let s=await fetch(n,{signal:t.signal});if(!s.ok)throw new g("MEDIA_LOAD_FAILED",`fetch ${n} failed with status ${s.status}`,{cause:s.status});return Buffer.from(await s.arrayBuffer())}catch(s){throw s instanceof g?s:new g("MEDIA_LOAD_FAILED",`fetch ${n} failed: ${s.message}`,{cause:s})}finally{clearTimeout(r);}},Kn=async n=>{try{return await Ae.readFile(n)}catch(e){throw new g("MEDIA_LOAD_FAILED",`read ${n} failed: ${e.message}`,{cause:e})}},wi=n=>n.startsWith("http://")||n.startsWith("https://"),x=async(n,e)=>{await Xt();let t=e?.timeoutMs??yi;return Buffer.isBuffer(n)?Ce(n):n instanceof URL?n.protocol==="file:"?Ce(await Kn(url.fileURLToPath(n))):Ce(await qn(n.toString(),t)):wi(n)?Ce(await qn(n,t)):Ce(await Kn(n))};var ge=async(n,e)=>{let{buffer:t}=await x(n),r={image:t};return e?.caption!==void 0&&(r.caption=e.caption),e?.viewOnce!==void 0&&(r.viewOnce=e.viewOnce),r};var te=async(n,e)=>{let{buffer:t,mime:r}=await x(n);if(!r.startsWith("video/"))throw new g("INVALID_OPTIONS",`video() expects a video source, got mime ${r}`);let s={video:t};return e?.caption!==void 0&&(s.caption=e.caption),e?.gifPlayback!==void 0&&(s.gifPlayback=e.gifPlayback),e?.viewOnce!==void 0&&(s.viewOnce=e.viewOnce),e?.ptv===true&&(s.ptv=true),s};var $n=2,Jn=30,vi=async n=>{if(n.type==="image")return ge(n.src,n.caption!==void 0?{caption:n.caption}:void 0);if(n.type==="video")return te(n.src,n.caption!==void 0?{caption:n.caption}:void 0);throw new g("INVALID_OPTIONS",`album() item type must be 'image' or 'video', got ${String(n.type)}`)},Gn=async(n,e,t,r)=>{if(!Array.isArray(t)||t.length<$n)throw new g("INVALID_OPTIONS",`album() requires a minimum of ${$n} items`);if(t.length>Jn)throw new g("INVALID_OPTIONS",`album() accepts a maximum of ${Jn} items`);let s=0,i=0;for(let u of t)if(u.type==="image")s+=1;else if(u.type==="video")i+=1;else throw new g("INVALID_OPTIONS",`album() item type must be 'image' or 'video', got ${String(u.type)}`);let o={album:{expectedImageCount:s,expectedVideoCount:i}};r.mentions&&r.mentions.length>0&&(o.mentions=r.mentions),r.mentionAll&&(o.mentionAll=true);let a={};r.quoted&&(a.quoted=r.quoted),r.disappearingSeconds!==void 0&&(a.ephemeralExpiration=r.disappearingSeconds);let c;try{c=await n.sendMessage(e,o,a);}catch(u){throw new g("SEND_FAILED","album parent send rejected",{cause:u})}let d=c?.key;if(!d)throw new g("SEND_FAILED","album parent returned no message key");let l=0;for(let u of t){let w=await vi(u);w.albumParentKey=d;try{await n.sendMessage(e,w);}catch(M){throw new g("SEND_FAILED","album child send rejected",{cause:{parentKey:d,index:l,error:M}})}l+=1;}return d};var j=async(n,e,t,r,s)=>{let i=r.replace(/[^a-z0-9]+/gi,"_").toLowerCase(),o=V.createTempPath(`${i}_in`,e),a=V.createTempPath(`${i}_out`,t);await V.safeWriteFile(o,n);try{let c=typeof s=="function"?await s(o):s;return await ee.process({input:o,output:a,options:c,onEnd:async()=>{},onError:async()=>{}}),await V.safeReadFile(a)}catch(c){throw new Error(`${r} failed: ${c instanceof Error?c.message:String(c)}`)}finally{await V.cleanup([o,a]);}};var dt=64,Vn=8e3,ne=class{static async toOpus(e){return this.convert(e,"opus")}static async toMp3(e){return this.convert(e,"mp3")}static async convert(e,t="opus"){let r=await k.toBuffer(e);_.validate(await L(r),C.MIME.AUDIO);let s=await k.getExtension(r),i=t==="opus"?["-vn","-c:a","libopus","-b:a","48k","-ac","1","-avoid_negative_ts","make_zero","-map_metadata","-1","-f","ogg"]:["-vn","-c:a","libmp3lame","-b:a","128k","-ac","2","-avoid_negative_ts","make_zero","-map_metadata","-1","-f","mp3"];return j(r,s,t==="opus"?"ogg":"mp3",`${t.toUpperCase()} conversion`,i)}static async waveform(e){let t=await k.toBuffer(e),r=await k.getExtension(t),s=await j(t,r,"tmp","Waveform generation",["-vn","-ac","1","-ar",String(Vn),"-f","s16le"]),i=Math.floor(s.length/2);return {waveform:this.computeWaveform(s),seconds:Math.max(1,Math.round(i/Vn))}}static computeWaveform(e){let t=Math.floor(e.length/2),r=new Uint8Array(dt);if(t===0)return r;let s=Math.max(1,Math.floor(t/dt)),i=[];for(let a=0;a<dt;a++){let c=0,d=0;for(let l=0;l<s;l++){let u=(a*s+l)*2;u+1<e.length&&(c+=Math.abs(e.readInt16LE(u)),d+=1);}i.push(d>0?c/d:0);}let o=Math.max(...i)||1;for(let a=0;a<dt;a++)r[a]=Math.floor(i[a]/o*100);return r}};var Mi=["-c:v","libx264","-preset","ultrafast","-crf","28","-c:a","aac","-b:a","128k","-movflags","+faststart","-vf","scale=trunc(iw/2)*2:trunc(ih/2)*2","-pix_fmt","yuv420p","-f","mp4"],q=class{static async toMp4(e){let t=await k.toBuffer(e);_.validate(await L(t),C.MIME.VIDEO);let r=await k.getExtension(t);return j(t,r,"mp4","Video re-encoding",Mi)}static async thumbnail(e){let t=await k.toBuffer(e);_.validate(await L(t),C.MIME.VIDEO);let r=await k.getExtension(t),s=C.THUMBNAIL.SIZE;return (await j(t,r,"jpg","Thumbnail generation",async o=>{let a=await ee.getDuration(o);return ["-ss",Math.max(0,a*.1).toString(),"-vframes","1","-s",`${s}x${s}`]})).toString("base64")}static async duration(e){return ee.getDuration(e)}};var fe=null,Hn=false;async function Si(){if(Hn)return fe;Hn=true;let n=e=>{typeof e=="function"&&(fe=e);};try{n(mi("sharp"));}catch{fe=null;}if(!fe)try{let e=await import('sharp');n(e.default??e);}catch{fe=null;}return fe}function zn(n,e){let t=new Uint8Array(n*n),r=n/2,s=n/2,i=n/10,o=[[i,i],[n-i,i],[i,n-i],[n-i,n-i]];for(let a=0;a<n;a++)for(let c=0;c<n;c++){let d=false;if(e==="circle"){let l=c-r,u=a-s;d=l*l+u*u<=r*r;}else if(e==="rounded"){let l=c>=i&&c<n-i&&a>=0&&a<n,u=c>=0&&c<n&&a>=i&&a<n-i,w=false;for(let M of o){let v=c-M[0],P=a-M[1];if(v*v+P*P<=i*i){w=true;break}}d=l||u||w;}else if(e==="oval"){let l=(c-r)/(n/2),u=(a-s)/(n/3);d=l*l+u*u<=1;}t[a*n+c]=d?255:0;}return t}var en=class{sharp;constructor(e){this.sharp=e;}async thumbnail(e){let t=this.sharp,r=t(e).resize(C.THUMBNAIL.SIZE,C.THUMBNAIL.SIZE,{fit:"cover"});return (await r.metadata()).format==="gif"&&(r=t(e,{pages:1}).resize(C.THUMBNAIL.SIZE,C.THUMBNAIL.SIZE)),(await r.jpeg({quality:C.THUMBNAIL.QUALITY}).toBuffer()).toString("base64")}async resize(e,t,r){return this.sharp(e).resize(t,r,{fit:"cover"}).png().toBuffer()}async toJpeg(e){let t=this.sharp,r=await k.toBuffer(e),s=await t(r).metadata();if(!s.format)throw new Error("Invalid image type: format could not be determined");return s.format==="webp"||s.format==="png"?t(r).jpeg().toBuffer():r}async resizeForSticker(e,t,r="default"){let s=this.sharp,i=C.STICKER.SIZE,o=s(e).resize(i,i,{fit:"contain",background:{r:0,g:0,b:0,alpha:0}});if(r!=="default"){let a=Buffer.from(zn(i,r)),c=s(a,{raw:{width:i,height:i,channels:1}});o=o.joinChannel(await c.png().toBuffer());}return o.webp({quality:t}).toBuffer()}},tn=class{async thumbnail(e){let t=C.THUMBNAIL.SIZE,r=await jimp.Jimp.fromBuffer(e);r.cover({w:t,h:t});let s=await r.getBuffer("image/jpeg",{quality:C.THUMBNAIL.QUALITY});return Buffer.from(s).toString("base64")}async resize(e,t,r){let s=await jimp.Jimp.fromBuffer(e);s.cover({w:t,h:r});let i=await s.getBuffer("image/png");return Buffer.from(i)}async toJpeg(e){let t=await k.toBuffer(e);try{let s=await(await jimp.Jimp.fromBuffer(t)).getBuffer("image/jpeg");return Buffer.from(s)}catch{return t}}async resizeForSticker(e,t,r="default"){let s=C.STICKER.SIZE,i=await jimp.Jimp.fromBuffer(e);if(i.contain({w:s,h:s}),r!=="default"){let c=zn(s,r),d=new jimp.Jimp({width:s,height:s,color:255});for(let l=0;l<s;l++)for(let u=0;u<s;u++)c[l*s+u]===255&&d.setPixelColor(4294967295,u,l);i.mask(d);}let o=Buffer.from(await i.getBuffer("image/png")),a=Math.max(1,Math.min(100,t));return j(o,"png","webp","Jimp WebP conversion",["-vcodec","libwebp","-q:v",`${a}`,"-preset","default"])}},Ee=null;async function lt(){if(Ee)return Ee;let n=await Si();return n?Ee=new en(n):(console.warn("\x1B[33m%s\x1B[0m","[media-process] Jimp is slow. For faster performance, run: npm install sharp"),Ee=new tn),Ee}var F=class{static async thumbnail(e){return (await lt()).thumbnail(e)}static async resize(e,t,r){return (await lt()).resize(e,t,r)}static async toJpeg(e){return (await lt()).toJpeg(e)}static async resizeForSticker(e,t,r="default"){return (await lt()).resizeForSticker(e,t,r)}};var ut=class{static async create(e,t){try{let r=await k.toBuffer(e),s=await L(r);if(!s)throw new Error("Unable to detect file type");let i=t?.quality||C.STICKER.DEFAULT_QUALITY,o=_.isAnimated(s.mime),a=t?.shape||"default",c=s.mime==="image/webp"?r:o?await this.processAnimated(r,s.mime,i):await F.resizeForSticker(r,i,a),d=this.createExifMetadata(t),l=new bi__default.default.Image;await l.load(c),l.exif=d;let u=await l.save(null);return Buffer.isBuffer(u)?u:Buffer.from(u)}catch(r){throw new Error(`Sticker creation failed: ${r instanceof Error?r.message:String(r)}`)}}static createExifMetadata(e){let t={"sticker-pack-id":ct(),"sticker-pack-name":e?.packageName||"Zaileys Library","sticker-pack-publisher":e?.authorName||"https://github.com/zeative/zaileys",emojis:["\u{1F913}"],"android-app-store-link":"https://play.google.com/store/apps/details?id=com.marsvard.stickermakerforwhatsapp","ios-app-store-link":"https://itunes.apple.com/app/sticker-maker-studio/id1443326857"},r=Buffer.from([73,73,42,0,8,0,0,0,1,0,65,87,7,0,0,0,0,0,22,0,0,0]),s=Buffer.from(JSON.stringify(t),"utf8"),i=Buffer.concat([r,s]);return i.writeUIntLE(s.length,14,4),i}static async processAnimated(e,t,r){let s=C.STICKER.SIZE,i=C.STICKER.FPS,o=`scale=${s}:${s}:force_original_aspect_ratio=decrease,fps=${i},pad=${s}:${s}:(ow-iw)/2:(oh-ih)/2:color=0x00000000,format=rgba`,a=Math.max(1,Math.min(100,r));return j(e,this.getExtension(t),"webp","Animated sticker processing",async c=>{let d=C.STICKER.MAX_DURATION;try{d=Math.min(await q.duration(c),C.STICKER.MAX_DURATION);}catch{console.warn("Using default duration:",C.STICKER.MAX_DURATION);}return ["-vcodec libwebp",`-vf ${o}`,`-q:v ${a}`,"-loop 0","-preset default","-an","-vsync 0",`-t ${d}`,`-compression_level ${C.STICKER.COMPRESSION_LEVEL}`]})}static getExtension(e){return e===C.MIME.GIF?"gif":e.startsWith(C.MIME.VIDEO)?"mp4":"tmp"}};var pt=class{static async create(e){try{let t=await k.toBuffer(e),r=await L(t);if(!r)throw new Error("Unable to detect file type");let s;return r.mime.startsWith(C.MIME.VIDEO)?s=await q.thumbnail(t):_.isMedia(r.mime)?s=await F.thumbnail(t):s="",{document:t,mimetype:r.mime,ext:r.ext,fileName:ct(),jpegThumbnail:s}}catch(t){throw new Error(`Document creation failed: ${t instanceof Error?t.message:String(t)}`)}}};var re=class{input;constructor(e){this.input=e;}get audio(){return {toOpus:()=>ne.toOpus(this.input),toMp3:()=>ne.toMp3(this.input),convert:(e="opus")=>ne.convert(this.input,e),waveform:()=>ne.waveform(this.input)}}get video(){return {toMp4:()=>q.toMp4(this.input),thumbnail:()=>q.thumbnail(this.input)}}get image(){return {toJpeg:()=>F.toJpeg(this.input),thumbnail:async()=>{let e=await k.toBuffer(this.input);return F.thumbnail(e)},resize:async(e,t)=>{let r=await k.toBuffer(this.input);return F.resize(r,e,t)}}}get sticker(){return {create:e=>ut.create(this.input,e)}}get document(){return {create:()=>pt.create(this.input)}}get thumbnail(){return {get:async()=>{let e=await k.toBuffer(this.input),t=await L(e);if(!t||!_.isMedia(t.mime))throw new Error("Invalid media type: expected image or video");return t.mime.startsWith(C.MIME.VIDEO)?q.thumbnail(this.input):F.thumbnail(e)}}}async toBuffer(){return k.toBuffer(this.input)}};var Yn=async(n,e)=>{let{buffer:t}=await x(n),r;try{r=await new re(t).audio.toOpus();}catch(o){throw new g("MEDIA_LOAD_FAILED",`audio() transcode failed: ${o.message}`,{cause:o})}let s=e?.ptt??true,i={audio:r,ptt:s};if(s)try{let{waveform:o,seconds:a}=await new re(t).audio.waveform();i.waveform=o,e?.seconds===void 0&&(i.seconds=a);}catch{}return e?.seconds!==void 0&&(i.seconds=e.seconds),i};var Zn=10,N="__zaileysRelayMessage",nn="__zaileysHeaderMedia",H=n=>typeof n=="string"&&n.length>0,Ai=n=>{let e=n.text;if(!H(e)||e.trim().length===0)throw new g("INVALID_OPTIONS","button text must be a non-empty string");return e},Ci=(n,e)=>{let t=n.type??"reply";if(t==="location"){let s=n.text;return {name:"send_location",buttonParamsJson:JSON.stringify(H(s)?{display_text:s}:{})}}let r=Ai(n);if(t==="reply"){let s=n.id;if(!H(s))throw new g("INVALID_OPTIONS","reply button requires a non-empty id");if(e.has(s))throw new g("INVALID_OPTIONS",`duplicate button id: ${s}`);return e.add(s),{name:"quick_reply",buttonParamsJson:JSON.stringify({display_text:r,id:s})}}if(t==="url"){let s=n.url;if(!H(s))throw new g("INVALID_OPTIONS","url button requires a non-empty url");let i=n.webview===true;return {name:"cta_url",buttonParamsJson:JSON.stringify({display_text:r,url:s,merchant_url:s,webview_interaction:i})}}if(t==="copy"){let s=n.code;if(!H(s))throw new g("INVALID_OPTIONS","copy button requires a non-empty code");return {name:"cta_copy",buttonParamsJson:JSON.stringify({display_text:r,id:s,copy_code:s})}}if(t==="call"){let s=n.phone;if(!H(s))throw new g("INVALID_OPTIONS","call button requires a non-empty phone");return {name:"cta_call",buttonParamsJson:JSON.stringify({display_text:r,id:s,phone_number:s})}}if(t==="reminder"||t==="cancel-reminder"){let s=n.id;return {name:t==="reminder"?"cta_reminder":"cta_cancel_reminder",buttonParamsJson:JSON.stringify({display_text:r,id:H(s)?s:r})}}if(t==="address"){let s=n.id;return {name:"address_message",buttonParamsJson:JSON.stringify({display_text:r,id:H(s)?s:r})}}throw new g("INVALID_OPTIONS",`unknown button type: ${String(t)}`)},Pi=n=>{let e={};if(n?.bottomSheet){let t=n.bottomSheet;e.bottom_sheet={...t.buttonsLimit!==void 0?{in_thread_buttons_limit:t.buttonsLimit}:{},...t.dividers!==void 0?{divider_indices:t.dividers}:{},...t.listTitle!==void 0?{list_title:t.listTitle}:{},...t.buttonTitle!==void 0?{button_title:t.buttonTitle}:{}};}if(n?.limitedTimeOffer){let t=n.limitedTimeOffer;e.limited_time_offer={...t.text!==void 0?{text:t.text}:{},...t.url!==void 0?{url:t.url}:{},...t.copyCode!==void 0?{copy_code:t.copyCode}:{},...t.expiresAt!==void 0?{expiration_time:t.expiresAt}:{}};}return Object.keys(e).length>0?JSON.stringify(e):""},rn=n=>{if(!Array.isArray(n)||n.length===0)throw new g("INVALID_OPTIONS","buttons() requires at least one button");if(n.length>Zn)throw new g("INVALID_OPTIONS",`buttons() accepts at most ${Zn} buttons`);let e=new Set;return n.map(t=>Ci(t,e))},mt=(n,e)=>{let t=rn(n),r={body:{text:e?.text&&e.text.length>0?e.text:" "},nativeFlowMessage:{buttons:t,messageParamsJson:Pi(e)}};e?.footer&&e.footer.length>0&&(r.footer={text:e.footer});let s=e?.image?{kind:"image",src:e.image}:e?.video?{kind:"video",src:e.video}:void 0;return (e?.title&&e.title.length>0||e?.subtitle&&e.subtitle.length>0||s)&&(r.header={title:e?.title??"",subtitle:e?.subtitle??"",hasMediaAttachment:s!==void 0}),s!==void 0?{[N]:{interactiveMessage:r},[nn]:s}:{[N]:{interactiveMessage:r}}};var Qn=10,sn="__zaileysCardsMedia",Xn=(n,e)=>{if(!Array.isArray(n)||n.length===0)throw new g("INVALID_OPTIONS","carousel() requires at least one card");if(n.length>Qn)throw new g("INVALID_OPTIONS",`carousel() accepts at most ${Qn} cards`);let t=[],r=n.map((o,a)=>{let c={body:{text:o.body&&o.body.length>0?o.body:" "}};o.buttons&&o.buttons.length>0&&(c.nativeFlowMessage={buttons:rn(o.buttons),messageParamsJson:""}),o.footer&&o.footer.length>0&&(c.footer={text:o.footer});let d=o.image?{kind:"image",src:o.image}:o.video?{kind:"video",src:o.video}:void 0;return (o.title&&o.title.length>0||o.subtitle&&o.subtitle.length>0||d)&&(c.header={title:o.title??"",subtitle:o.subtitle??"",hasMediaAttachment:d!==void 0}),d&&t.push({...d,index:a}),c}),s={body:{text:e?.text&&e.text.length>0?e.text:" "},carouselMessage:{cards:r}};return t.length>0?{[N]:{interactiveMessage:s},[sn]:t}:{[N]:{interactiveMessage:s}}};var ki=n=>{let e=[],t="",r=0,s=1,i=0,o=0,a=[];for(let c=0;c<n.length;c++)if(n[c]==="["&&n[c-1]!=="\\")a.push(c);else if(n[c]==="]"&&(n[c+1]==="("||n[c+1]==="<")){let d=a.pop();if(d==null)continue;let l=n[c+1],u=l==="("?")":">",w=l==="<",M=c+2,v=1;for(;M<n.length&&v>0;)n[M]===l&&n[M-1]!=="\\"?v++:n[M]===u&&n[M-1]!=="\\"&&v--,M++;if(v>0)continue;let P=n.slice(d+1,c).trim(),y=n.slice(c+2,M-1).trim(),p,m;if(w){let[b="",E="",pe="",zt="",Yt=""]=P.split("|").map(Zt=>Zt.trim());p=`zaileys_LATEX_${o++}`,m=`{{${p}}}${b||"image"}{{/${p}}}`,e.push({type:"latex",ie:{key:p,text:b,url:y,width:E,height:pe,font_height:zt,padding:Yt}});}else P?(p=`zaileys_HYPERLINK_${i++}`,m=`{{${p}}}${y}{{/${p}}}`,e.push({type:"hyperlink",ie:{key:p,text:P,url:y}})):(p=`zaileys_CITATION_${s-1}`,m=`{{${p}}}${y}{{/${p}}}`,e.push({type:"citation",ie:{key:p,reference_id:String(s++),url:y}}));t+=n.slice(r,d)+m,r=M,c=M-1;}return t+=n.slice(r),{text:t,ie:e}},Ti=n=>n.ie.map(({type:e,ie:t})=>e==="hyperlink"?{key:t.key,metadata:{display_name:t.text,is_trusted:true,url:t.url,__typename:"GenAIInlineLinkItem"}}:e==="latex"?{key:t.key,metadata:{latex_expression:t.text,latex_image:{url:t.url,width:Number(t.width)||100,height:Number(t.height)||100},font_height:Number(t.font_height)||83.33333333333333,padding:Number(t.padding)||15,__typename:"GenAILatexItem"}}:{key:t.key,metadata:{reference_id:Number(t.reference_id),reference_url:t.url,reference_title:t.url,reference_display_name:t.url,sources:[],__typename:"GenAISearchCitationItem"}}),Ii=n=>{if(!Array.isArray(n)||n.length===0||!n.every(i=>Array.isArray(i)))throw new g("INVALID_OPTIONS","table must be a non-empty array of string rows");let[e,...t]=n,r=Math.max(e.length,...t.map(i=>i.length)),s=i=>[...i,...Array(r-i.length).fill("")];return [{is_header:true,cells:s(e)},...t.map(i=>({is_header:false,cells:s(i)}))]},Oi={0:"DEFAULT",1:"KEYWORD",2:"METHOD",3:"STR",4:"NUMBER",5:"COMMENT"},gt=new Set(["break","case","catch","continue","debugger","delete","do","else","finally","for","function","if","in","instanceof","new","return","switch","this","throw","try","typeof","var","void","while","with","true","false","null","undefined","class","const","let","super","extends","export","import","from","as","default","yield","static","constructor","async","await","get","set"]),xi={javascript:gt,js:gt,typescript:gt,ts:gt},Ri=(n,e)=>{let t=xi[e.toLowerCase()]??new Set,r=[],s=(o,a)=>{if(!o)return;let c=r[r.length-1];c&&c.highlightType===a?c.codeContent+=o:r.push({codeContent:o,highlightType:a});},i=0;for(;i<n.length;){let o=n[i];if(/\s/.test(o)){let a=i;for(;i<n.length&&/\s/.test(n[i]);)i++;s(n.slice(a,i),0);continue}if(o==="/"&&n[i+1]==="/"){let a=i;for(i+=2;i<n.length&&n[i]!==`
2
+ `;)i++;s(n.slice(a,i),5);continue}if(o==='"'||o==="'"||o==="`"){let a=i,c=o;for(i++;i<n.length;)if(n[i]==="\\"&&i+1<n.length)i+=2;else if(n[i]===c){i++;break}else i++;s(n.slice(a,i),3);continue}if(/[0-9]/.test(o)){let a=i;for(;i<n.length&&/[0-9.]/.test(n[i]);)i++;s(n.slice(a,i),4);continue}if(/[a-zA-Z_$]/.test(o)){let a=i;for(;i<n.length&&/[a-zA-Z0-9_$]/.test(n[i]);)i++;let c=n.slice(a,i),d=0;if(t.has(c))d=1;else {let l=i;for(;l<n.length&&/\s/.test(n[l]);)l++;n[l]==="("&&(d=2);}s(c,d);continue}s(o,0),i++;}return r},D=(n,e)=>({view_model:{[Array.isArray(e)?"primitives":"primitive"]:e,__typename:`GenAI${n}LayoutViewModel`}}),_i="https://github.com/zeative/zaileys",er=(n,e)=>{if(!Array.isArray(n)||n.length===0)throw new g("INVALID_OPTIONS","text({ rich: true }) requires non-empty markdown content");let t=[],r=[];for(let o of n)if(o.type==="text"){let a=ki(o.text),c=Ti(a);r.push({messageType:2,messageText:a.text}),t.push(D("Single",{text:a.text,...c.length>0?{inline_entities:c}:{},__typename:"GenAIMarkdownTextUXPrimitive"}));}else if(o.type==="code"){let a=o.language??"plaintext",c=Ri(o.content,a);r.push({messageType:5,codeMetadata:{codeLanguage:a,codeBlocks:c}}),t.push(D("Single",{language:a,code_blocks:c.map(d=>({content:d.codeContent,type:Oi[d.highlightType]})),__typename:"GenAICodeUXPrimitive"}));}else if(o.type==="table"){let a=Ii(o.rows);r.push({messageType:4,tableMetadata:{title:"",rows:a.map(c=>({items:c.cells,...c.is_header?{isHeading:true}:{}}))}}),t.push(D("Single",{rows:a,__typename:"GenATableUXPrimitive"}));}else if(o.type==="image"){let a=Array.isArray(o.url)?o.url:[o.url];if(a.length===0)throw new g("INVALID_OPTIONS","image requires at least one url");r.push({messageType:1,gridImageMetadata:{gridImageUrl:{imagePreviewUrl:a[0]},imageUrls:a.map(c=>({imagePreviewUrl:c,imageHighResUrl:c,sourceUrl:_i}))}});for(let c of a)t.push(D("Single",{media:{url:c,mime_type:"image/png"},imagine_type:"IMAGE",status:{status:"READY"},__typename:"GenAIImaginePrimitive"}));}else if(o.type==="video"){let a=Array.isArray(o.url)?o.url:[o.url];if(a.length===0)throw new g("INVALID_OPTIONS","video requires at least one url");r.push({messageType:2,messageText:"[ CANNOT_LOAD_VIDEO - zaileys ]"});for(let c of a)t.push(D("Single",{media:{url:c,mime_type:"video/mp4",duration:o.duration??0},imagine_type:"ANIMATE",status:{status:"READY"},__typename:"GenAIImaginePrimitive"}));}else if(o.type==="product"){let a=Array.isArray(o.products),c=a?o.products:[o.products];if(c.length===0)throw new g("INVALID_OPTIONS","product requires at least one item");r.push({messageType:2,messageText:"[ CANNOT_LOAD_PRODUCT - zaileys ]"});let d=c.map(l=>({title:l.title,brand:l.brand??"",price:l.price??"",sale_price:l.salePrice??"",product_url:l.url??"",image:{url:l.image??""},additional_images:[{url:l.icon??""}],__typename:"GenAIProductItemCardPrimitive"}));t.push(a?D("HScroll",d):D("Single",d[0]));}else if(o.type==="reels"){let a=Array.isArray(o.reels)?o.reels:[o.reels];if(a.length===0)throw new g("INVALID_OPTIONS","reels requires at least one item");r.push({messageType:9,contentItemsMetadata:{contentType:1,itemsMetadata:a.map(c=>({reelItem:{title:c.username??"",profileIconUrl:c.profileUrl??"",thumbnailUrl:c.thumbnail??"",videoUrl:c.url??""}}))}}),t.push(D("HScroll",a.map(c=>({reels_url:c.url??"",thumbnail_url:c.thumbnail??"",creator:c.username??c.title??"",avatar_url:c.profileUrl??"",reels_title:c.title??"",likes_count:c.likes??0,shares_count:c.shares??0,view_count:c.views??0,reel_source:c.source??"IG",is_verified:!!c.verified,__typename:"GenAIReelPrimitive"}))));}else if(o.type==="post"){let a=Array.isArray(o.posts)?o.posts:[o.posts];if(a.length===0)throw new g("INVALID_OPTIONS","post requires at least one item");r.push({messageType:2,messageText:"[ CANNOT_LOAD_POST - zaileys ]"}),t.push(D("HScroll",a.map(c=>({title:c.title??"",subtitle:c.subtitle??"",username:c.username??"",profile_picture_url:c.profileUrl??"",is_verified:!!c.verified,thumbnail_url:c.thumbnail??"",post_caption:c.caption??"",likes_count:c.likes??0,comments_count:c.comments??0,shares_count:c.shares??0,post_url:c.url??"",post_deeplink:c.deeplink??"",source_app:c.source??"INSTAGRAM",footer_label:c.footer??"",footer_icon:c.icon??"",is_carousel:a.length>1,orientation:c.orientation??"LANDSCAPE",post_type:c.postType??"VIDEO",__typename:"GenAIPostPrimitive"}))));}else if(o.type==="tip")r.push({messageType:2,messageText:o.text}),t.push(D("Single",{text:o.text,__typename:"GenAIMetadataTextPrimitive"}));else {let a=Array.isArray(o.prompts)?o.prompts:[o.prompts];if(a.length===0)throw new g("INVALID_OPTIONS","suggest requires at least one prompt");t.push(D("ActionRow",a.map(c=>({prompt_text:c,prompt_type:"SUGGESTED_PROMPT",__typename:"GenAIFollowUpSuggestionPillPrimitive"}))));}e?.footer&&e.footer.length>0&&t.push(D("Single",{text:e.footer,__typename:"GenAIMetadataTextPrimitive"}));let s=(e?.sources??[]).map(([o,a,c])=>({source_type:"THIRD_PARTY",source_display_name:c??"",source_subtitle:"AI",source_url:a??"",favicon:{url:o??"",mime_type:"image/jpeg",width:16,height:16}})),i={messageContextInfo:{deviceListMetadata:{},deviceListMetadataVersion:2,botMetadata:{messageDisclaimerText:e?.title??"",richResponseSourcesMetadata:{sources:s}}},botForwardedMessage:{message:{richResponseMessage:{messageType:1,submessages:r,unifiedResponse:{data:Buffer.from(JSON.stringify({response_id:crypto.randomUUID(),sections:t})).toString("base64")},contextInfo:{forwardingScore:1,isForwarded:true,forwardedAiBotMessageInfo:{botJid:"0@bot"},forwardOrigin:4}}}}};return {[N]:i}};var Li=/^:::([a-zA-Z]+)\s*$/,Ni=/^:::\s*$/,tr=/^```(\w*)\s*$/,nr=/^!\[[^\]]*\]\(([^)]+)\)\s*$/,Di=/^\s*\|?\s*:?-{2,}[\s|:-]*$/,ft=n=>n.split("|").map(e=>e.trim()),on=n=>{let e={};for(let t of ft(n)){let r=t.indexOf(":");if(r===-1)continue;let s=t.slice(0,r).trim().toLowerCase(),i=t.slice(r+1).trim();s.length>0&&(e[s]=i);}return e},se=n=>{if(n===void 0||n.trim().length===0)return;let e=Number(n);return Number.isNaN(e)?void 0:e},sr=n=>n==="true"||n==="1"||n==="yes",rr=n=>{let e=n.trim();return e.startsWith("|")&&(e=e.slice(1)),e.endsWith("|")&&(e=e.slice(0,-1)),e.split("|").map(t=>t.trim())},Bi=n=>{let e=on(n),t=e.title;if(t===void 0||t.length===0)return null;let r={title:t};return e.price&&(r.price=e.price),e.sale&&(r.salePrice=e.sale),e.saleprice&&(r.salePrice=e.saleprice),e.brand&&(r.brand=e.brand),e.url&&(r.url=e.url),e.image&&(r.image=e.image),e.icon&&(r.icon=e.icon),r},Wi=n=>{let e=on(n),t={};e.user&&(t.username=e.user),e.username&&(t.username=e.username),e.title&&(t.title=e.title),e.profile&&(t.profileUrl=e.profile),e.thumb&&(t.thumbnail=e.thumb),e.url&&(t.url=e.url);let r=se(e.likes);r!==void 0&&(t.likes=r);let s=se(e.shares);s!==void 0&&(t.shares=s);let i=se(e.views);return i!==void 0&&(t.views=i),e.source&&(t.source=e.source),"verified"in e&&(t.verified=sr(e.verified)),t},Fi=n=>{let e=on(n),t={};e.user&&(t.username=e.user),e.username&&(t.username=e.username),e.title&&(t.title=e.title),e.subtitle&&(t.subtitle=e.subtitle),e.profile&&(t.profileUrl=e.profile),e.thumb&&(t.thumbnail=e.thumb),e.caption&&(t.caption=e.caption);let r=se(e.likes);r!==void 0&&(t.likes=r);let s=se(e.comments);s!==void 0&&(t.comments=s);let i=se(e.shares);return i!==void 0&&(t.shares=i),e.url&&(t.url=e.url),e.source&&(t.source=e.source),e.footer&&(t.footer=e.footer),e.icon&&(t.icon=e.icon),"verified"in e&&(t.verified=sr(e.verified)),t},Ui=(n,e)=>{let t=e.map(r=>r.replace(/^[-*]\s*/,"").trim()).filter(r=>r.length>0);if(n==="suggest"){let r=t.flatMap(s=>ft(s)).filter(s=>s.length>0);return r.length>0?{type:"suggest",prompts:r}:null}if(n==="tip")return t.length>0?{type:"tip",text:t.join(`
3
+ `)}:null;if(n==="image")return t.length>0?{type:"image",url:t.length===1?t[0]:t}:null;if(n==="video"){if(t.length===0)return null;let r=t.map(o=>ft(o)[0]??"").filter(o=>o.length>0);if(r.length===0)return null;let s=se(ft(t[0])[1]),i={type:"video",url:r.length===1?r[0]:r};return s!==void 0&&(i.duration=s),i}if(n==="product"){let r=t.map(Bi).filter(s=>s!==null);return r.length>0?{type:"product",products:r.length===1?r[0]:r}:null}if(n==="reels"){let r=t.map(Wi);return r.length>0?{type:"reels",reels:r}:null}if(n==="post"){let r=t.map(Fi);return r.length>0?{type:"post",posts:r}:null}return null},ir=n=>{let e=n.replace(/\r\n/g,`
4
4
  `).split(`
5
5
  `),t=[],r=[],s=()=>{let o=r.join(`
6
6
  `).trim();o.length>0&&t.push({type:"text",text:o}),r=[];},i=0;for(;i<e.length;){let o=e[i],a=Li.exec(o);if(a){s();let u=[];for(i++;i<e.length&&!Ni.test(e[i]);)u.push(e[i]),i++;i++;let w=Ui(a[1].toLowerCase(),u);w&&t.push(w);continue}let c=tr.exec(o);if(c){s();let u=[];for(i++;i<e.length&&!tr.test(e[i]);)u.push(e[i]),i++;i++;let w=c[1]&&c[1].length>0?c[1]:void 0;t.push(w?{type:"code",language:w,content:u.join(`
7
7
  `)}:{type:"code",content:u.join(`
8
- `)});continue}let d=e[i+1];if(o.includes("|")&&d!==void 0&&d.includes("|")&&Di.test(d)){s();let u=[rr(o)];for(i+=2;i<e.length&&e[i].includes("|")&&e[i].trim().length>0;)u.push(rr(e[i])),i++;t.push({type:"table",rows:u});continue}let l=nr.exec(o);if(l){s();let u=[l[1]];for(i++;i<e.length;){let w=nr.exec(e[i]);if(!w)break;u.push(w[1]),i++;}t.push({type:"image",url:u.length===1?u[0]:u});continue}r.push(o),i++;}return s(),t};var or=(n,e)=>{if(typeof n!="string"||!n.trimStart().startsWith("BEGIN:VCARD"))throw new g("INVALID_OPTIONS","contact() requires a vcard string starting with BEGIN:VCARD");let t={contacts:[{vcard:n}]};return {contacts:t}};var ar=async(n,e)=>{if(typeof e?.fileName!="string"||e.fileName.trim().length===0)throw new g("INVALID_OPTIONS","document() requires a non-empty fileName");let{buffer:t,mime:r}=await x(n),s={document:t,fileName:e.fileName,mimetype:e.mimetype??r};return e.caption!==void 0&&(s.caption=e.caption),s};var cr=(n,e)=>{let t=n instanceof Date?n:new Date(n);if(Number.isNaN(t.getTime()))throw new g("INVALID_OPTIONS",`event() ${e} must be a valid Date or epoch ms`);return new Date(Math.floor(t.getTime()/1e3)*1e3)},dr=n=>{if(n==null||typeof n.name!="string"||n.name.trim().length===0)throw new g("INVALID_OPTIONS","event() requires a non-empty name");return {event:{name:n.name,startDate:cr(n.startAt,"startAt"),...n.description!==void 0?{description:n.description}:{},...n.endAt!==void 0?{endDate:cr(n.endAt,"endAt")}:{},...n.call!==void 0?{call:n.call}:{},...n.canceled!==void 0?{isCancelled:n.canceled}:{},...n.location!==void 0?{location:{degreesLatitude:n.location.latitude,degreesLongitude:n.location.longitude,...n.location.name!==void 0?{name:n.location.name}:{},...n.location.address!==void 0?{address:n.location.address}:{}}}:{}}}};var lr=n=>{if(n==null||typeof n.jid!="string"||!n.jid.endsWith("@g.us"))throw new g("INVALID_OPTIONS","groupInvite() requires a group jid ending in @g.us");if(typeof n.code!="string"||n.code.trim().length===0)throw new g("INVALID_OPTIONS","groupInvite() requires an invite code");let e={inviteCode:n.code,inviteExpiration:n.expiresAt??Math.floor(Date.now()/1e3)+3*86400,groupJid:n.jid,groupName:n.subject??"",caption:n.caption??""};return n.thumbnail!==void 0&&(e.jpegThumbnail=n.thumbnail),{[N]:{groupInviteMessage:e}}};var ur=10,pr=n=>{if(typeof n?.buttonText!="string"||n.buttonText.trim().length===0)throw new g("INVALID_OPTIONS","list() requires a non-empty buttonText");if(!Array.isArray(n.sections)||n.sections.length===0)throw new g("INVALID_OPTIONS","list() requires at least one section");let e=0,t=new Set,r=n.sections.map(a=>{if(!Array.isArray(a.rows)||a.rows.length===0)throw new g("INVALID_OPTIONS","each list section requires at least one row");let c=a.rows.map(d=>{if(typeof d.id!="string"||d.id.length===0)throw new g("INVALID_OPTIONS","list row id must be a non-empty string");if(typeof d.title!="string"||d.title.trim().length===0)throw new g("INVALID_OPTIONS","list row title must be a non-empty string");if(t.has(d.id))throw new g("INVALID_OPTIONS",`duplicate list row id: ${d.id}`);return t.add(d.id),e+=1,{header:"",title:d.title,description:d.description??"",id:d.id}});return {title:a.title,highlight_label:"",rows:c}});if(e>ur)throw new g("INVALID_OPTIONS",`list() accepts at most ${ur} rows total`);let s={name:"single_select",buttonParamsJson:JSON.stringify({title:n.buttonText,sections:r})},i={body:{text:n.description&&n.description.length>0?n.description:" "},nativeFlowMessage:{buttons:[s],messageParamsJson:""}};return n.footerText&&n.footerText.length>0&&(i.footer={text:n.footerText}),n.title&&n.title.length>0&&(i.header={title:n.title,subtitle:"",hasMediaAttachment:false}),{[N]:{interactiveMessage:i}}};var mr=(n,e,t)=>{if(typeof n!="number"||Number.isNaN(n)||n<-90||n>90)throw new g("INVALID_OPTIONS",`location() latitude must be within -90..90, got ${String(n)}`);if(typeof e!="number"||Number.isNaN(e)||e<-180||e>180)throw new g("INVALID_OPTIONS",`location() longitude must be within -180..180, got ${String(e)}`);let r={degreesLatitude:n,degreesLongitude:e};return t?.name!==void 0&&(r.name=t.name),t?.address!==void 0&&(r.address=t.address),{location:r}};var gr=2,fr=12,hr=(n,e,t)=>{if(typeof n!="string"||n.trim().length===0)throw new g("EMPTY_CONTENT","poll() requires a non-empty question");if(!Array.isArray(e)||e.length<gr)throw new g("INVALID_OPTIONS",`poll() requires a minimum of ${gr} options`);if(e.length>fr)throw new g("INVALID_OPTIONS",`poll() accepts a maximum of ${fr} options`);let r=new Set;for(let i of e){if(typeof i!="string"||i.trim().length===0)throw new g("INVALID_OPTIONS","poll options must be non-empty strings");if(r.has(i))throw new g("INVALID_OPTIONS",`duplicate poll options: ${i}`);r.add(i);}return {poll:{name:n,values:e,selectableCount:t?.multipleChoice?e.length:1}}};var yr=async n=>{if(n==null||typeof n.title!="string"||n.title.trim().length===0)throw new g("INVALID_OPTIONS","product() requires a non-empty title");if(typeof n.businessOwnerId!="string"||n.businessOwnerId.length===0)throw new g("INVALID_OPTIONS","product() requires businessOwnerId");let{buffer:e}=await x(n.image),t={productImage:e,title:n.title};n.productId!==void 0&&(t.productId=n.productId),n.description!==void 0&&(t.description=n.description),n.currency!==void 0&&(t.currencyCode=n.currency),n.price!==void 0&&(t.priceAmount1000=Math.round(n.price*1e3)),n.retailerId!==void 0&&(t.retailerId=n.retailerId),n.url!==void 0&&(t.url=n.url);let r={product:t,businessOwnerJid:n.businessOwnerId};return n.body!==void 0&&(r.body=n.body),n.footer!==void 0&&(r.footer=n.footer),r};var wr=async(n,e)=>{let{buffer:t}=await x(n),r;try{r=await new ne(t).sticker.create();}catch(i){throw new g("MEDIA_LOAD_FAILED",`sticker() conversion failed: ${i.message}`,{cause:i})}return {sticker:r,isAnimated:e?.animated??false}};var vr=3,Mr=n=>{if(typeof n?.body!="string"||n.body.trim().length===0)throw new g("INVALID_OPTIONS","template() requires a non-empty body");if(!Array.isArray(n.buttons)||n.buttons.length===0)throw new g("INVALID_OPTIONS","template() requires at least one button");if(n.buttons.length>vr)throw new g("INVALID_OPTIONS",`template() accepts at most ${vr} buttons`);let t={text:`${n.header&&n.header.length>0?`*${n.header}*
8
+ `)});continue}let d=e[i+1];if(o.includes("|")&&d!==void 0&&d.includes("|")&&Di.test(d)){s();let u=[rr(o)];for(i+=2;i<e.length&&e[i].includes("|")&&e[i].trim().length>0;)u.push(rr(e[i])),i++;t.push({type:"table",rows:u});continue}let l=nr.exec(o);if(l){s();let u=[l[1]];for(i++;i<e.length;){let w=nr.exec(e[i]);if(!w)break;u.push(w[1]),i++;}t.push({type:"image",url:u.length===1?u[0]:u});continue}r.push(o),i++;}return s(),t};var or=(n,e)=>{if(typeof n!="string"||!n.trimStart().startsWith("BEGIN:VCARD"))throw new g("INVALID_OPTIONS","contact() requires a vcard string starting with BEGIN:VCARD");let t={contacts:[{vcard:n}]};return {contacts:t}};var ar=async(n,e)=>{if(typeof e?.fileName!="string"||e.fileName.trim().length===0)throw new g("INVALID_OPTIONS","document() requires a non-empty fileName");let{buffer:t,mime:r}=await x(n),s={document:t,fileName:e.fileName,mimetype:e.mimetype??r};return e.caption!==void 0&&(s.caption=e.caption),s};var cr=(n,e)=>{let t=n instanceof Date?n:new Date(n);if(Number.isNaN(t.getTime()))throw new g("INVALID_OPTIONS",`event() ${e} must be a valid Date or epoch ms`);return new Date(Math.floor(t.getTime()/1e3)*1e3)},dr=n=>{if(n==null||typeof n.name!="string"||n.name.trim().length===0)throw new g("INVALID_OPTIONS","event() requires a non-empty name");return {event:{name:n.name,startDate:cr(n.startAt,"startAt"),...n.description!==void 0?{description:n.description}:{},...n.endAt!==void 0?{endDate:cr(n.endAt,"endAt")}:{},...n.call!==void 0?{call:n.call}:{},...n.canceled!==void 0?{isCancelled:n.canceled}:{},...n.location!==void 0?{location:{degreesLatitude:n.location.latitude,degreesLongitude:n.location.longitude,...n.location.name!==void 0?{name:n.location.name}:{},...n.location.address!==void 0?{address:n.location.address}:{}}}:{}}}};var lr=n=>{if(n==null||typeof n.jid!="string"||!n.jid.endsWith("@g.us"))throw new g("INVALID_OPTIONS","groupInvite() requires a group jid ending in @g.us");if(typeof n.code!="string"||n.code.trim().length===0)throw new g("INVALID_OPTIONS","groupInvite() requires an invite code");let e={inviteCode:n.code,inviteExpiration:n.expiresAt??Math.floor(Date.now()/1e3)+3*86400,groupJid:n.jid,groupName:n.subject??"",caption:n.caption??""};return n.thumbnail!==void 0&&(e.jpegThumbnail=n.thumbnail),{[N]:{groupInviteMessage:e}}};var ur=10,pr=n=>{if(typeof n?.buttonText!="string"||n.buttonText.trim().length===0)throw new g("INVALID_OPTIONS","list() requires a non-empty buttonText");if(!Array.isArray(n.sections)||n.sections.length===0)throw new g("INVALID_OPTIONS","list() requires at least one section");let e=0,t=new Set,r=n.sections.map(a=>{if(!Array.isArray(a.rows)||a.rows.length===0)throw new g("INVALID_OPTIONS","each list section requires at least one row");let c=a.rows.map(d=>{if(typeof d.id!="string"||d.id.length===0)throw new g("INVALID_OPTIONS","list row id must be a non-empty string");if(typeof d.title!="string"||d.title.trim().length===0)throw new g("INVALID_OPTIONS","list row title must be a non-empty string");if(t.has(d.id))throw new g("INVALID_OPTIONS",`duplicate list row id: ${d.id}`);return t.add(d.id),e+=1,{header:"",title:d.title,description:d.description??"",id:d.id}});return {title:a.title,highlight_label:"",rows:c}});if(e>ur)throw new g("INVALID_OPTIONS",`list() accepts at most ${ur} rows total`);let s={name:"single_select",buttonParamsJson:JSON.stringify({title:n.buttonText,sections:r})},i={body:{text:n.description&&n.description.length>0?n.description:" "},nativeFlowMessage:{buttons:[s],messageParamsJson:""}};return n.footerText&&n.footerText.length>0&&(i.footer={text:n.footerText}),n.title&&n.title.length>0&&(i.header={title:n.title,subtitle:"",hasMediaAttachment:false}),{[N]:{interactiveMessage:i}}};var mr=(n,e,t)=>{if(typeof n!="number"||Number.isNaN(n)||n<-90||n>90)throw new g("INVALID_OPTIONS",`location() latitude must be within -90..90, got ${String(n)}`);if(typeof e!="number"||Number.isNaN(e)||e<-180||e>180)throw new g("INVALID_OPTIONS",`location() longitude must be within -180..180, got ${String(e)}`);let r={degreesLatitude:n,degreesLongitude:e};return t?.name!==void 0&&(r.name=t.name),t?.address!==void 0&&(r.address=t.address),{location:r}};var gr=2,fr=12,hr=(n,e,t)=>{if(typeof n!="string"||n.trim().length===0)throw new g("EMPTY_CONTENT","poll() requires a non-empty question");if(!Array.isArray(e)||e.length<gr)throw new g("INVALID_OPTIONS",`poll() requires a minimum of ${gr} options`);if(e.length>fr)throw new g("INVALID_OPTIONS",`poll() accepts a maximum of ${fr} options`);let r=new Set;for(let i of e){if(typeof i!="string"||i.trim().length===0)throw new g("INVALID_OPTIONS","poll options must be non-empty strings");if(r.has(i))throw new g("INVALID_OPTIONS",`duplicate poll options: ${i}`);r.add(i);}return {poll:{name:n,values:e,selectableCount:t?.multipleChoice?e.length:1}}};var yr=async n=>{if(n==null||typeof n.title!="string"||n.title.trim().length===0)throw new g("INVALID_OPTIONS","product() requires a non-empty title");if(typeof n.businessOwnerId!="string"||n.businessOwnerId.length===0)throw new g("INVALID_OPTIONS","product() requires businessOwnerId");let{buffer:e}=await x(n.image),t={productImage:e,title:n.title};n.productId!==void 0&&(t.productId=n.productId),n.description!==void 0&&(t.description=n.description),n.currency!==void 0&&(t.currencyCode=n.currency),n.price!==void 0&&(t.priceAmount1000=Math.round(n.price*1e3)),n.retailerId!==void 0&&(t.retailerId=n.retailerId),n.url!==void 0&&(t.url=n.url);let r={product:t,businessOwnerJid:n.businessOwnerId};return n.body!==void 0&&(r.body=n.body),n.footer!==void 0&&(r.footer=n.footer),r};var wr=async(n,e)=>{let{buffer:t}=await x(n),r;try{r=await new re(t).sticker.create();}catch(i){throw new g("MEDIA_LOAD_FAILED",`sticker() conversion failed: ${i.message}`,{cause:i})}return {sticker:r,isAnimated:e?.animated??false}};var vr=3,Mr=n=>{if(typeof n?.body!="string"||n.body.trim().length===0)throw new g("INVALID_OPTIONS","template() requires a non-empty body");if(!Array.isArray(n.buttons)||n.buttons.length===0)throw new g("INVALID_OPTIONS","template() requires at least one button");if(n.buttons.length>vr)throw new g("INVALID_OPTIONS",`template() accepts at most ${vr} buttons`);let t={text:`${n.header&&n.header.length>0?`*${n.header}*
9
9
 
10
- `:""}${n.body}`};return n.footer!==void 0&&(t.footer=n.footer),mt(n.buttons,t)};var ht=n=>{if(typeof n!="string"||n.trim().length===0)throw new g("EMPTY_CONTENT","text() requires a non-empty string");return {text:n}};var Sr=(n,e,t)=>({recipient:n,...e?{resolveRecipient:e}:{},...t?{recordSent:t}:{}});var Ki=[{tag:"biz",attrs:{},content:[{tag:"interactive",attrs:{type:"native_flow",v:"1"},content:[{tag:"native_flow",attrs:{v:"9",name:"mixed"}}]}]}],z=class n{socket;internal;constructor(e,t){this.socket=e,this.internal=t;}static create(e,t,r,s){return new n(e,Sr(t,r,s))}to(e){return this.internal.recipient=e,delete this.internal.resolveRecipient,this}text(e,t){return t?.rich===true?this.internal.content=er(ir(e),t):this.internal.content=ht(e),this}image(e,t){return this.internal.pendingContent=ge(e,t),this}videoNote(e,t){return this.internal.pendingContent=ee(e,{...t,ptv:true}),this}video(e,t){return this.internal.pendingContent=ee(e,t),this}audio(e,t){return this.internal.pendingContent=Yn(e,t),this}document(e,t){return this.internal.pendingContent=ar(e,t),this}sticker(e,t){return this.internal.pendingContent=wr(e,t),this}buttons(e,t){return this.internal.content=mt(e,t),this}carousel(e,t){return this.internal.content=Xn(e,t),this}list(e){return this.internal.content=pr(e),this}poll(e,t,r){return this.internal.content=hr(e,t,r),this}location(e,t,r){return this.internal.content=mr(e,t,r),this}contact(e){return this.internal.content=or(e),this}template(e){return this.internal.content=Mr(e),this}event(e){return this.internal.content=dr(e),this}groupInvite(e){return this.internal.content=lr(e),this}product(e){return this.internal.pendingContent=yr(e),this}requestPhoneNumber(){return this.internal.content={requestPhoneNumber:{}},this}sharePhoneNumber(){return this.internal.content={sharePhoneNumber:{}},this}limitSharing(e=true){return this.internal.content={limitSharing:e},this}album(e){return this.internal.albumItems=e,this}reply(e){if(e==null)throw new g("INVALID_OPTIONS","reply() requires a quoted message or key");let t="key"in e&&e.key!=null;return this.internal.quoted=t?e:{key:e},this}mentions(e){if(e.length===0)throw new g("INVALID_OPTIONS","mentions() requires at least one jid");for(let r of e)if(typeof r!="string"||!r.includes("@"))throw new g("INVALID_OPTIONS",`invalid jid: ${String(r)}`);let t=new Set([...this.internal.mentions??[],...e]);return this.internal.mentions=[...t],this}mentionAll(){return this.internal.mentionAll=true,this}disappearing(e){if(!Number.isInteger(e)||e<=0)throw new g("INVALID_OPTIONS","disappearing() requires a positive integer duration");return this.internal.disappearingSeconds=e,this}then(e,t){return (async()=>{if(this.internal.resolveRecipient&&(this.internal.recipient=await this.internal.resolveRecipient(this.internal.recipient),delete this.internal.resolveRecipient),this.internal.albumItems){let d={recipient:this.internal.recipient};return this.internal.quoted!==void 0&&(d.quoted=this.internal.quoted),this.internal.mentions!==void 0&&(d.mentions=this.internal.mentions),this.internal.mentionAll!==void 0&&(d.mentionAll=this.internal.mentionAll),this.internal.disappearingSeconds!==void 0&&(d.disappearingSeconds=this.internal.disappearingSeconds),Gn(this.socket,this.internal.recipient,this.internal.albumItems,d)}if(this.internal.pendingContent&&(this.internal.content=await this.internal.pendingContent),!this.internal.content)throw new g("EMPTY_CONTENT","no content set");let s=this.internal.content,i=s[N];if(i!==void 0){let d=s[nn],l=s[sn];return this.sendRelay(i,d,l)}let o=this.internal.content;this.internal.mentions&&this.internal.mentions.length>0&&(o.mentions=this.internal.mentions),this.internal.mentionAll&&(o.mentionAll=true);let a={};this.internal.quoted&&(a.quoted=this.internal.quoted),this.internal.disappearingSeconds!==void 0&&(a.ephemeralExpiration=this.internal.disappearingSeconds);let c;try{c=await this.socket.sendMessage(this.internal.recipient,o,a);}catch(d){throw new g("SEND_FAILED","socket sendMessage rejected",{cause:d})}if(!c?.key)throw new g("SEND_FAILED","socket returned no message key");return c.key})().then(e,t)}async uploadHeaderMedia(e,t){let{buffer:r}=await x(t.src),s=await za.prepareWAMessageMedia({[t.kind]:r},{upload:this.socket.waUploadToServer});e.hasMediaAttachment=true,t.kind==="image"&&s.imageMessage&&(e.imageMessage=s.imageMessage),t.kind==="video"&&s.videoMessage&&(e.videoMessage=s.videoMessage);}async sendRelay(e,t,r){let s=this.socket.relayMessage;if(typeof s!="function")throw new g("SEND_FAILED","socket does not support relayMessage (interactive content)");if(this.socket.waUploadToServer!==void 0)try{let u=e.interactiveMessage?.header;t!==void 0&&u&&await this.uploadHeaderMedia(u,t);let w=e.interactiveMessage?.carouselMessage?.cards;if(r!==void 0&&w)for(let M of r){let v=w[M.index]?.header;v&&await this.uploadHeaderMedia(v,M);}}catch(u){throw new g("SEND_FAILED","interactive media upload failed",{cause:u})}let o={userJid:this.socket.user?.id??""},a=this.internal.quoted;a!==void 0&&a.message!=null&&(o.quoted=a);let c=za.generateWAMessageFromContent(this.internal.recipient,e,o);if(typeof c.key?.id!="string")throw new g("SEND_FAILED","failed to generate relay message key");let l="interactiveMessage"in e&&e.interactiveMessage!=null?{messageId:c.key.id,additionalNodes:Ki}:{messageId:c.key.id};try{await s(this.internal.recipient,c.message,l);}catch(u){throw new g("SEND_FAILED","socket relayMessage rejected",{cause:u})}return this.internal.recordSent?.(c),c.key}};var ke=class{socket;key;content;pendingContent;constructor(e,t){this.socket=e,this.key=t;}text(e){return this.content=ht(e),this}image(e,t){return this.pendingContent=ge(e,t),this}video(e,t){return this.pendingContent=ee(e,t),this}then(e,t){return this.send().then(e,t)}async send(){let e=this.key.remoteJid;if(typeof e!="string"||e.length===0)throw new g("INVALID_OPTIONS","message key is missing remoteJid");if(this.pendingContent&&(this.content=await this.pendingContent),!this.content)throw new g("EMPTY_CONTENT","edit() requires a content method before await");let t={...this.content,edit:this.key},r;try{r=await this.socket.sendMessage(e,t);}catch(s){throw new g("SEND_FAILED","socket sendMessage rejected",{cause:s})}if(!r?.key)throw new g("SEND_FAILED","socket returned no message key");return r.key}};var an=n=>{let e=n.remoteJid;if(typeof e!="string"||e.length===0)throw new g("INVALID_OPTIONS","message key is missing remoteJid");return e},cn=n=>{if(!n?.key)throw new g("SEND_FAILED","socket returned no message key");return n.key},dn=async(n,e,t={})=>{let r=an(e);if(t.forEveryone??true){await n.sendMessage(r,{delete:e});return}if(typeof n.chatModify!="function")throw new g("INVALID_OPTIONS","delete-for-me is not supported by this socket");await n.chatModify({deleteForMe:{deleteMedia:false,key:e,timestamp:Date.now()}},r);},ln=async(n,e,t)=>{let r=an(e),s=await n.sendMessage(r,{react:{text:t,key:e}});return cn(s)},un=async(n,e,t,r)=>{let s=await e.getMessage(t);if(!s)throw new g("MESSAGE_NOT_FOUND","message not found in store for forward");let i=await n.sendMessage(r,{forward:s});return cn(i)},yt=async(n,e,t,r={})=>{let s=an(e),i={pin:e,type:t?1:2,time:r.duration??86400},o=await n.sendMessage(s,i);return cn(o)};var $i=/@(s\.whatsapp\.net|g\.us|lid|newsletter|broadcast|c\.us)$/,Te=n=>$i.test(n),pn=async(n,e,t,r=Ji)=>{if(Te(e))return e;let s=t.get(e);if(s!==void 0)return s;let i=r.get(e);if(i!==void 0)return i;let o=(async()=>{let c=(await n.onWhatsApp(e))?.find(d=>d.exists&&d.jid);if(!c)throw new g("USERNAME_NOT_FOUND",`username "${e}" not found`);return t.set(e,c.jid),c.jid})();r.set(e,o);try{return await o}finally{r.delete(e);}},Ji=new Map;var T=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysDomainError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var Ie=class{constructor(e,t){this.getSocket=e;this.guard=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}mapParticipants(e){return e.map(t=>({jid:t.jid,status:t.status}))}run(e,t){return this.guard?this.guard.run(e,t):t()}async create(e,t){return this.run("group.create",()=>this.requireSocket().groupCreate(e,t))}async addMember(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"add"));return this.mapParticipants(r)}async removeMember(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"remove"));return this.mapParticipants(r)}async promote(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"promote"));return this.mapParticipants(r)}async demote(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"demote"));return this.mapParticipants(r)}async updateSubject(e,t){await this.requireSocket().groupUpdateSubject(e,t);}async updateDescription(e,t){await this.requireSocket().groupUpdateDescription(e,t);}async leave(e){await this.requireSocket().groupLeave(e);}async metadata(e){return this.requireSocket().groupMetadata(e)}async tagMember(e,t,r){await this.requireSocket().updateMemberLabel(e,r);}async inviteCode(e){let t=await this.requireSocket().groupInviteCode(e);if(!t)throw new T("OPERATION_FAILED","invite code unavailable");return t}async revokeInvite(e){let t=await this.requireSocket().groupRevokeInvite(e);if(!t)throw new T("OPERATION_FAILED","invite code unavailable");return t}async acceptInvite(e){let t=await this.run("group.join",()=>this.requireSocket().groupAcceptInvite(e));if(!t)throw new T("OPERATION_FAILED","invite acceptance failed");return t}async toggleEphemeral(e,t){await this.requireSocket().groupToggleEphemeral(e,t);}async setting(e,t){await this.requireSocket().groupSettingUpdate(e,t);}async list(){let e=await this.requireSocket().groupFetchAllParticipating();return Object.values(e)}async inviteInfo(e){return this.requireSocket().groupGetInviteInfo(e)}async joinRequests(e){return this.requireSocket().groupRequestParticipantsList(e)}async approveJoin(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupRequestParticipantsUpdate(e,t,"approve"));return this.mapParticipants(r)}async rejectJoin(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupRequestParticipantsUpdate(e,t,"reject"));return this.mapParticipants(r)}async joinApproval(e,t){await this.requireSocket().groupJoinApprovalMode(e,t?"on":"off");}async memberAddMode(e,t){await this.requireSocket().groupMemberAddMode(e,t?"admin_add":"all_member_add");}};var Oe=class{constructor(e){this.getSocket=e;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async set(e){let t=this.requireSocket();if(e.lastSeen!==void 0&&await t.updateLastSeenPrivacy(e.lastSeen),e.online!==void 0&&await t.updateOnlinePrivacy(e.online),e.profile!==void 0&&await t.updateProfilePicturePrivacy(e.profile),e.status!==void 0&&await t.updateStatusPrivacy(e.status),e.readReceipts!==void 0){let r=typeof e.readReceipts=="boolean"?e.readReceipts?"all":"none":e.readReceipts;await t.updateReadReceiptsPrivacy(r);}e.groupAdd!==void 0&&await t.updateGroupsAddPrivacy(e.groupAdd);}async get(){return this.requireSocket().fetchPrivacySettings()}async block(e){await this.requireSocket().updateBlockStatus(e,"block");}async unblock(e){await this.requireSocket().updateBlockStatus(e,"unblock");}async blocklist(){return this.requireSocket().fetchBlocklist()}async disappearingMode(e){await this.requireSocket().updateDefaultDisappearingMode(e);}};var xe=class{constructor(e,t){this.getSocket=e;this.guard=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}run(e,t){return this.guard?this.guard.run(e,t):t()}async create(e,t){return this.run("newsletter.create",async()=>{let r=this.requireSocket(),s=await r.newsletterCreate(e,t?.description);return t?.picture&&await r.newsletterUpdatePicture(s.id,t.picture),s})}async follow(e){await this.run("newsletter.follow",()=>this.requireSocket().newsletterFollow(e));}async unfollow(e){await this.run("newsletter.follow",()=>this.requireSocket().newsletterUnfollow(e));}async metadata(e){let r=await this.requireSocket().newsletterMetadata("jid",e);if(!r)throw new T("NEWSLETTER_NOT_FOUND",`newsletter ${e} not found`);return r}async updateName(e,t){await this.requireSocket().newsletterUpdateName(e,t);}async updateDescription(e,t){await this.requireSocket().newsletterUpdateDescription(e,t);}async updatePicture(e,t){await this.requireSocket().newsletterUpdatePicture(e,t);}async mute(e){await this.requireSocket().newsletterMute(e);}async unmute(e){await this.requireSocket().newsletterUnmute(e);}async delete(e){await this.requireSocket().newsletterDelete(e);}async removePicture(e){await this.requireSocket().newsletterRemovePicture(e);}async react(e,t,r){await this.requireSocket().newsletterReactMessage(e,t,r);}async unreact(e,t){await this.requireSocket().newsletterReactMessage(e,t);}async subscribers(e){return this.requireSocket().newsletterSubscribers(e)}async messages(e,t=50,r){return this.requireSocket().newsletterFetchMessages(e,t,r?.since,r?.after)}async adminCount(e){return this.requireSocket().newsletterAdminCount(e)}async changeOwner(e,t){await this.requireSocket().newsletterChangeOwner(e,t);}async demote(e,t){await this.requireSocket().newsletterDemote(e,t);}};var Re=class{constructor(e,t){this.getSocket=e;this.guard=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}run(e,t){return this.guard?this.guard.run(e,t):t()}async create(e,t){return this.run("community.create",()=>this.requireSocket().communityCreate(e,t))}async createGroup(e,t,r){return this.run("community.create",()=>this.requireSocket().communityCreateGroup(e,t,r))}async linkGroup(e,t){await this.requireSocket().communityLinkGroup(t,e);}async unlinkGroup(e,t){await this.requireSocket().communityUnlinkGroup(t,e);}async subGroups(e){return (await this.requireSocket().communityFetchLinkedGroups(e)).linkedGroups}async leave(e){await this.requireSocket().communityLeave(e);}async updateSubject(e,t){await this.requireSocket().communityUpdateSubject(e,t);}async updateDescription(e,t){await this.requireSocket().communityUpdateDescription(e,t);}async inviteCode(e){return this.requireSocket().communityInviteCode(e)}async revokeInvite(e){return this.requireSocket().communityRevokeInvite(e)}async acceptInvite(e){return this.run("community.join",()=>this.requireSocket().communityAcceptInvite(e))}async metadata(e){return this.requireSocket().communityMetadata(e)}async list(){return Object.values(await this.requireSocket().communityFetchAllParticipating())}async inviteInfo(e){return this.requireSocket().communityGetInviteInfo(e)}async toggleEphemeral(e,t){await this.requireSocket().communityToggleEphemeral(e,t);}async setting(e,t){await this.requireSocket().communitySettingUpdate(e,t);}async memberAddMode(e,t){await this.requireSocket().communityMemberAddMode(e,t?"admin_add":"all_member_add");}async joinApproval(e,t){await this.requireSocket().communityJoinApprovalMode(e,t?"on":"off");}};var _e=class{constructor(e){this.getSocket=e;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async setName(e){await this.requireSocket().updateProfileName(e);}async setStatus(e){await this.requireSocket().updateProfileStatus(e);}async setPicture(e,t){await this.requireSocket().updateProfilePicture(e,t);}async removePicture(e){await this.requireSocket().removeProfilePicture(e);}async getPicture(e,t=false){return await this.requireSocket().profilePictureUrl(e,t?"image":"preview")??null}async getStatus(e){return this.requireSocket().fetchStatus(e)}};var Gi=n=>{if(typeof n.remoteJid!="string"||n.remoteJid.length===0)throw new T("OPERATION_FAILED","message key is missing remoteJid");return n.remoteJid},Le=class{constructor(e,t){this.getSocket=e;this.resolveLast=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async last(e){return await this.resolveLast?.(e)??[]}async archive(e){await this.requireSocket().chatModify({archive:true,lastMessages:await this.last(e)},e);}async unarchive(e){await this.requireSocket().chatModify({archive:false,lastMessages:await this.last(e)},e);}async pin(e){await this.requireSocket().chatModify({pin:true},e);}async unpin(e){await this.requireSocket().chatModify({pin:false},e);}async mute(e,t){await this.requireSocket().chatModify({mute:t??Date.now()+365*24*60*60*1e3},e);}async unmute(e){await this.requireSocket().chatModify({mute:null},e);}async markRead(e){let t=await this.last(e);t.length!==0&&await this.requireSocket().chatModify({markRead:true,lastMessages:t},e);}async markUnread(e){let t=await this.last(e);t.length!==0&&await this.requireSocket().chatModify({markRead:false,lastMessages:t},e);}async star(e,t=true){let r=Gi(e);await this.requireSocket().chatModify({star:{messages:[{id:e.id??"",fromMe:e.fromMe===true}],star:t}},r);}async unstar(e){await this.star(e,false);}async delete(e){await this.requireSocket().chatModify({delete:true,lastMessages:await this.last(e)},e);}async clear(e){await this.requireSocket().chatModify({clear:true,lastMessages:await this.last(e)},e);}};var Ne=class{constructor(e,t){this.getSocket=e;this.normalize=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async check(...e){return (await this.requireSocket().onWhatsApp(...e)??[]).map(r=>{let s={jid:r.jid,exists:r.exists};return r.lid!==void 0&&(s.lid=r.lid),s})}async exists(e){let[t]=await this.check(e);return t?.exists??false}async save(e,t){await this.requireSocket().addOrEditContact(this.normalize(e),t);}async remove(e){await this.requireSocket().removeContact(this.normalize(e));}};var De=class{constructor(e){this.getSocket=e;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async profile(e){return this.requireSocket().getBusinessProfile(e)}async catalog(e={}){return this.requireSocket().getCatalog(e)}async collections(e,t){return this.requireSocket().getCollections(e,t)}async orderDetails(e,t){return this.requireSocket().getOrderDetails(e,t)}async createProduct(e){return this.requireSocket().productCreate(e)}async updateProduct(e,t){return this.requireSocket().productUpdate(e,t)}async deleteProduct(...e){return this.requireSocket().productDelete(e)}};var R=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysCommandError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var Vi=n=>{let e=n[0];return e==="{"||e==="["},Hi=n=>{try{return {ok:!0,value:JSON.parse(n)}}catch{return {ok:false}}},zi=n=>n===" "||n===" "||n===`
11
- `||n==="\r",Yi=n=>{let e=[],t="",r=null,s=false,i=false,o=true;for(let a=0;a<n.length;a+=1){let c=n[a];if(s){t+=c,s=false,i=true,o=false;continue}if(c==="\\"&&r!==null){s=true;continue}if(r!==null){c===r?r=null:t+=c,o=false;continue}if((c==='"'||c==="'")&&o){r=c,i=true,o=false;continue}if(zi(c)){i&&(e.push(t),t="",i=false),o=true;continue}t+=c,i=true,o=false;}return i&&e.push(t),e},Zi=(n,e)=>{for(let t of e)if(t.length>0&&n.startsWith(t))return t;return null},Qi=n=>({matched:false,args:[],flags:{},json:void 0,raw:n});function mn(n,e){let t=Zi(n,e);if(t===null)return Qi(n);let r=n.slice(t.length),s=Yi(r),i={matched:true,args:[],flags:{},json:void 0,raw:n};if(s.length===0)return i.name="",i;i.name=(s[0]??"").toLowerCase();let o=false;for(let a=1;a<s.length;a+=1){let c=s[a];if(c!==void 0){if(c.startsWith("--")){let d=c.slice(2);if(d.length===0){i.args.push(c);continue}let l=d.indexOf("=");if(l!==-1){let w=d.slice(0,l),M=d.slice(l+1);i.flags[w]=M;continue}let u=s[a+1];u!==void 0&&!u.startsWith("--")?(i.flags[d]=u,a+=1):i.flags[d]=true;continue}if(!o&&Vi(c)){let d=Hi(c);d.ok&&(i.json=d.value,o=true);}i.args.push(c);}}return i}var br=n=>{let e=n.trim().split(/\s+/).filter(t=>t.length>0).map(t=>t.toLowerCase());if(e.length===0)throw new R("INVALID_COMMAND_NAME","empty command segment in spec");return e},he=n=>n.join(" "),Be=class{paths=new Map;defs=[];maxDepth=1;register(e,t){if(e.trim().length===0)throw new R("INVALID_COMMAND_NAME","command spec must not be empty");let r=e.split("|").map(a=>br(a)),s=r[0],i=r.slice(1).map(a=>he(a)),o={name:he(s),aliases:i,parts:s,handler:t};for(let a of r){let c=he(a);if(this.paths.has(c))throw new R("DUPLICATE_COMMAND",`command "${c}" is already registered`)}for(let a of r)this.paths.set(he(a),o),a.length>this.maxDepth&&(this.maxDepth=a.length);this.defs.push(o);}resolve(e){if(!e.matched||e.name===void 0||e.name.length===0)return;let t=[e.name.toLowerCase(),...e.args.map(s=>s.toLowerCase())],r=Math.min(this.maxDepth,t.length);for(let s=r;s>=1;s-=1){let i=t.slice(0,s).join(" "),o=this.paths.get(i);if(o!==void 0)return {def:o,args:e.args.slice(s-1)}}}unregister(e){let t=e.split("|").map(o=>br(o)),r=he(t[0]),s=this.paths.get(r);if(s===void 0)return;for(let o of [s.parts,...s.aliases.map(a=>a.split(" "))])this.paths.delete(he(o));let i=this.defs.indexOf(s);i>=0&&this.defs.splice(i,1),this.maxDepth=this.defs.reduce((o,a)=>Math.max(o,a.parts.length),1);}list(){return [...this.defs]}};async function gn(n,e,t){let r=-1,s={error:void 0,thrown:false},i=async o=>{if(o<=r)throw new R("MIDDLEWARE_ERROR","next() called multiple times");if(r=o,o===n.length){try{await t();}catch(c){throw s.error=c,s.thrown=true,c}return}let a=n[o];try{await a(e,()=>i(o+1));}catch(c){throw s.thrown||c instanceof R?c:new R("MIDDLEWARE_ERROR","middleware threw during execution",{cause:c})}};await i(0);}function fn(n){if(n.prefixes.length===0)return {detach(){}};let e=s=>{let i=mn(s.text,n.prefixes);if(!i.matched)return;let o=n.registry.resolve(i);if(o===void 0)return;let a={command:o.def.name,args:o.args,flags:i.flags,json:i.json,raw:i.raw},c=n.buildContext(a,s);Promise.resolve(gn(n.middleware,c,()=>o.def.handler(c))).catch(d=>{let l=d instanceof R?d:new R("HANDLER_ERROR","command handler failed",{cause:d});n.logger.error(l,"command dispatch failed");});},t=n.onText(e),r=false;return {detach(){r||(r=true,t());}}}var Ar=n=>n;var We=class{host;logger;plugins=new Map;constructor(e){this.host=e.client,this.logger=e.logger??e.client.logger;}has(e){return this.plugins.has(e)}list(){return [...this.plugins.keys()]}async loadPlugin(e,t){if(typeof e?.name!="string"||typeof e?.setup!="function"){this.logger?.warn({file:t},"plugin: invalid shape (need name + setup); skipped");return}if(this.plugins.has(e.name)){this.logger?.warn({name:e.name,file:t},"plugin: duplicate name; skipped");return}let r=[],s={client:this.host,logger:this.logger,pluginDir:$e__default.default.dirname(t),command:(i,o)=>{this.host.command(i,o),r.push(()=>this.host.unregisterCommand(i));},use:i=>{this.host.use(i),r.push(()=>{this.host.unuse(i);});},on:(i,o)=>{let a=this.host.on(i,o);return r.push(a),a},once:(i,o)=>{let a=false,c=this.host.on(i,d=>{a||(a=true,c(),o(d));});return r.push(c),c}};try{let i=await e.setup(s);typeof i=="function"&&r.push(i);}catch(i){for(let o of [...r].reverse())try{await o();}catch{}this.logger?.error({err:i,name:e.name,file:t},"plugin: setup failed; skipped");return}this.plugins.set(e.name,{plugin:e,file:t,disposers:r});}async unload(e){let t=this.plugins.get(e);if(t){this.plugins.delete(e);for(let r of [...t.disposers].reverse())try{await r();}catch(s){this.logger?.warn({err:s,name:e},"plugin: disposer threw");}try{await t.plugin.onUnload?.();}catch(r){this.logger?.warn({err:r,name:e},"plugin: onUnload threw");}}}async unloadAll(){for(let e of this.list())await this.unload(e);}};var no=/\.(ts|js|mjs|cjs)$/,ro=/(\.d\.ts$|^_|[/\\]_)/;async function yn(n,e,t){let r;try{r=await fs$1.promises.readdir(n,{withFileTypes:!0});}catch{return []}let s=[];for(let i of r){let o=$e__default.default.join(n,i.name);t.test(i.name)||t.test(o)||(i.isDirectory()?s.push(...await yn(o,e,t)):e.test(i.name)&&s.push(o));}return s}async function Cr(n,e){try{let r=await import(url.pathToFileURL(n).href+(e!==void 0?`?t=${e}`:"")),s=r.default??r;return s&&typeof s.name=="string"&&typeof s.setup=="function"?s:void 0}catch{return}}var Fe=class{dir;pattern;ignore;watchEnabled;onError;registry;logger;watcher;fileToName=new Map;bust=0;debounce;pending=new Set;flushChain=Promise.resolve();constructor(e){this.registry=e.registry,this.logger=e.logger,this.dir=$e__default.default.resolve(e.options.dir??"./plugins"),this.pattern=e.options.pattern??no,this.ignore=e.options.ignore??ro,this.watchEnabled=e.options.watch!==false,this.onError=e.options.onError;}async start(){let e=await yn(this.dir,this.pattern,this.ignore);for(let t of e)await this.loadFile(t);this.watchEnabled&&this.startWatch();}async stop(){this.debounce&&clearTimeout(this.debounce),this.watcher?.close(),this.watcher=void 0,await this.flushChain,await this.registry.unloadAll(),this.fileToName.clear();}async loadFile(e){let t=await Cr(e,this.bust);if(!t){let i=new Error(`failed to import plugin: ${e}`);this.onError?.(i,e),this.logger?.warn({file:e},"plugin: import failed; skipped");return}let r=this.registry.list();await this.registry.loadPlugin(t,e);let s=this.registry.list().find(i=>!r.includes(i));s&&this.fileToName.set(e,s);}startWatch(){try{this.watcher=fs$1.watch(this.dir,{recursive:!0},(e,t)=>{if(t==null)return;let r=$e__default.default.join(this.dir,t.toString());this.ignore.test(t.toString())||!this.pattern.test(t.toString())||(this.pending.add(r),this.debounce&&clearTimeout(this.debounce),this.debounce=setTimeout(()=>{this.flushChain=this.flushChain.then(()=>this.flush());},150),this.debounce.unref?.());});}catch(e){this.logger?.warn({err:e,dir:this.dir},"plugin: watch unavailable; hot-reload disabled");}}async flush(){let e=[...this.pending];this.pending.clear(),this.bust+=1;for(let t of e){let r=this.fileToName.get(t);r&&(await this.registry.unload(r),this.fileToName.delete(t));let s=true;try{await fs$1.promises.access(t);}catch{s=false;}s&&await this.loadFile(t);}}};var O=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysAutomationError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var so=n=>n<=0?Promise.resolve():new Promise(e=>setTimeout(e,n)),se=class{now;sleep;perJidRatePerMs;perJidCapacity;global;perJid=new Map;constructor(e,t={}){if(!(e.perSec>0))throw new O("RATE_LIMIT_INVALID","perSec must be greater than zero");if(e.perJidPerSec!==void 0&&!(e.perJidPerSec>0))throw new O("RATE_LIMIT_INVALID","perJidPerSec must be greater than zero");if(e.burst!==void 0&&!(e.burst>0))throw new O("RATE_LIMIT_INVALID","burst must be greater than zero");this.now=t.now??Date.now,this.sleep=t.sleep??so;let r=e.burst??e.perSec;this.global={tokens:r,capacity:r,ratePerMs:e.perSec/1e3,last:this.now()},e.perJidPerSec!==void 0&&(this.perJidRatePerMs=e.perJidPerSec/1e3,this.perJidCapacity=e.perJidPerSec);}async acquire(e){await this.consume(this.global),e!==void 0&&this.perJidRatePerMs!==void 0&&await this.consume(this.bucketFor(e));}bucketFor(e){let t=this.perJid.get(e);if(t)return t;let r=this.perJidCapacity??1,s={tokens:r,capacity:r,ratePerMs:this.perJidRatePerMs??1,last:this.now()};return this.perJid.set(e,s),s}consume(e){if(this.refill(e),e.tokens>=1)return e.tokens-=1,Promise.resolve();let t=(1-e.tokens)/e.ratePerMs;return e.tokens-=1,this.sleep(t)}refill(e){let t=this.now(),r=t-e.last;r>0&&(e.tokens=Math.min(e.capacity,e.tokens+r*e.ratePerMs),e.last=t);}};var io={"group.create":6e4,"group.join":3e4,"group.participants":1e4,"group.update":3e3,"community.create":12e4,"community.join":3e4,"community.update":3e3,"newsletter.create":12e4,"newsletter.follow":2e3,"newsletter.update":3e3},oo=n=>n<=0?Promise.resolve():new Promise(e=>setTimeout(e,n));function wn(n={},e={}){let t=n.enabled??true,r=e.now??Date.now,s=e.sleep??oo,i={...io,...n.intervalsMs??{}},o=new Map,a=new Map,c=async(d,l)=>{let u=i[d]??0,w=o.get(d);if(w!==void 0&&u>0){let M=u-(r()-w);M>0&&await s(M);}return o.set(d,r()),l()};return {run(d,l){if(!t)return l();let w=(a.get(d)??Promise.resolve()).then(()=>c(d,l),()=>c(d,l));return a.set(d,w.then(()=>{},()=>{})),w}}}var ao={maxRetries:0,backoffMs:()=>0},co=n=>n<=0?Promise.resolve():new Promise(e=>setTimeout(e,n)),Ue=class{concurrency;retry;sleep;pending=[];active=0;idleWaiters=[];constructor(e={},t={}){this.concurrency=e.concurrency??1,this.retry=e.retry??ao,this.sleep=t.sleep??co;}add(e){return new Promise((t,r)=>{this.pending.push({run:()=>this.execute(e).then(t,r)}),this.pump();})}onIdle(){return this.active===0&&this.pending.length===0?Promise.resolve():new Promise(e=>{this.idleWaiters.push(e);})}pump(){for(;this.active<this.concurrency&&this.pending.length>0;){let e=this.pending.shift();if(!e)break;this.active++,e.run().finally(()=>{this.active--,this.pump(),this.settleIdle();});}}settleIdle(){if(this.active===0&&this.pending.length===0&&this.idleWaiters.length>0){let e=this.idleWaiters;this.idleWaiters=[];for(let t of e)t();}}async execute(e){let t=0;for(;;)try{return await e()}catch(r){if(t>=this.retry.maxRetries)throw r;t+=1,await this.sleep(this.retry.backoffMs(t));}}};var lo=n=>n instanceof Error?n:new Error(typeof n=="string"?n:String(n));async function vn(n,e,t,r={}){let s={sent:[],failed:[]};if(n.length===0)return s;let i=r.rateLimitPerSec??5,o={};t.now&&(o.now=t.now),t.sleep&&(o.sleep=t.sleep);let a=t.limiter??new se({perSec:i},o),c=r.retry,d=t.sleep?{sleep:t.sleep}:{},l=c?new Ue({concurrency:1,retry:c},d):void 0,u=n.length,w=0;for(let M of n){await a.acquire(M);let v=()=>e(t.sendTo(M)).then(()=>{});try{l?await l.add(v):await v(),s.sent.push(M),w+=1,r.onProgress?.(w,u,M,!0);}catch(C){s.failed.push({jid:M,error:lo(C)}),w+=1,r.onProgress?.(w,u,M,false);}}return s}var uo=1e3,je=class{constructor(e,t,r){this.getSocket=e;this.throttleEnabled=t?.enabled??true,this.minIntervalMs=t?.minIntervalMs??uo,this.now=r?.now??Date.now;}throttleEnabled;minIntervalMs;now;lastSent=new Map;requireSocket(){let e=this.getSocket();if(!e)throw new O("NOT_CONNECTED","client not connected");return e}throttled(e,t){if(!this.throttleEnabled||this.minIntervalMs<=0)return false;let r=`${e}:${t??"global"}`,s=this.lastSent.get(r),i=this.now();return s!==void 0&&i-s<this.minIntervalMs?true:(this.lastSent.set(r,i),false)}async update(e,t){let r=this.requireSocket();if(!this.throttled(e,t))try{await(t===void 0?r.sendPresenceUpdate(e):r.sendPresenceUpdate(e,t));}catch(s){throw new O("PRESENCE_FAILED",`presence update '${e}' failed`,{cause:s})}}scheduleClear(e,t){let r=this.getSocket();if(!r)return;let s=setTimeout(()=>{r.sendPresenceUpdate("paused",e).catch(()=>{});},t);typeof s.unref=="function"&&s.unref();}async online(){await this.update("available");}async offline(){await this.update("unavailable");}async typing(e,t){await this.update("composing",e),t!==void 0&&this.scheduleClear(e,t);}async recording(e,t){await this.update("recording",e),t!==void 0&&this.scheduleClear(e,t);}};var mo={set:(n,e)=>setTimeout(n,e),clear:n=>clearTimeout(n)},go=n=>typeof n=="object"&&n!==null&&typeof n.recipient=="string"&&typeof n.content=="object",qe=class{store;sendSnapshot;now;timer;logger;acquire;memory=new Map;timers=new Map;constructor(e){this.store=e.store,this.sendSnapshot=e.sendSnapshot,this.now=e.now??(()=>Date.now()),this.timer=e.timer??mo,this.logger=e.logger,this.acquire=e.acquire;}async scheduleAt(e,t){let r=e.getTime();if(Number.isNaN(r))throw new O("SCHEDULE_INVALID","scheduleAt requires a valid Date");let s=await this.evaluate(t),i=crypto.randomUUID(),o={id:i,fireAt:r,recipient:s.recipient,payload:s};return await this.persist(o),this.arm(o),{id:i,cancel:()=>{this.cancel(i);}}}async loadPending(){let e=this.store.listScheduledJobs;if(!e){for(let r of this.memory.values())this.timers.has(r.id)||this.arm(r);return}let t;try{t=await e.call(this.store);}catch(r){this.logger?.warn(r,"scheduler loadPending failed");return}for(let r of t)this.timers.has(r.id)||(this.memory.set(r.id,r),this.arm(r));}dispose(){for(let e of this.timers.values())this.timer.clear(e);this.timers.clear();}cancel(e){let t=this.timers.get(e);t!==void 0&&(this.timer.clear(t),this.timers.delete(e)),this.memory.delete(e),this.remove(e);}arm(e){let t=Math.max(0,e.fireAt-this.now()),r=this.timer.set(()=>{this.fire(e);},t);this.timers.set(e.id,r);}async fire(e){if(this.timers.delete(e.id),go(e.payload))try{this.acquire&&await this.acquire(),await this.sendSnapshot(e.payload);}catch(t){this.logger?.warn(t,"scheduled send failed; retaining job for retry");return}this.memory.delete(e.id),await this.remove(e.id);}async persist(e){let t=this.store.saveScheduledJob;if(t){await t.call(this.store,e);return}this.memory.set(e.id,e);}async remove(e){let t=this.store.deleteScheduledJob;if(t)try{await t.call(this.store,e);}catch(r){this.logger?.warn(r,"scheduler deleteScheduledJob failed");}this.memory.delete(e);}async evaluate(e){let t,r=0,s={sendMessage:async(o,a,c)=>{if(r+=1,r>1)throw new O("SCHEDULE_INVALID","scheduling multi-part messages (e.g. album) is not supported; schedule a single message");return t=c?{recipient:o,content:a,options:c}:{recipient:o,content:a},{key:{remoteJid:o,id:"scheduled-snapshot",fromMe:true}}},relayMessage:async()=>{throw new O("SCHEDULE_INVALID","scheduling interactive/relayed content is not supported; schedule a text or media message")}},i=z.create(s,"");try{await e(i);}catch(o){throw o instanceof O?o:new O("SCHEDULE_INVALID","scheduled builder evaluation failed",{cause:o})}if(!t)throw new O("SCHEDULE_INVALID","scheduled builder produced no content");return t}};async function Er(n,e){if(typeof n.deleteMessage!="function"||typeof n.listChats!="function")return 0;let t=await n.listChats(),r=0;for(let s of t){let i=s.id??"";if(i.length===0||e.chatFilter&&!e.chatFilter(i))continue;let a=[...await n.listMessages(i)].sort((c,d)=>Number(d.messageTimestamp??0)-Number(c.messageTimestamp??0));for(let c=0;c<a.length;c+=1){let d=a[c],l=Number(d.messageTimestamp??0),u=e.olderThan!==void 0&&l<e.olderThan,w=e.maxPerChat!==void 0&&c>=e.maxPerChat;(u||w)&&(await n.deleteMessage(d.key),r+=1);}}return r}var Ke=class{store;options;logger;now;timer;running=false;warnedUnsupported=false;disabled=false;constructor(e){this.store=e.store,this.options=e.options,this.logger=e.logger,this.now=e.now??Date.now;}get active(){return this.options.maxAgeMs!==void 0||this.options.maxPerChat!==void 0}buildPruneOptions(){let e={};return this.options.maxAgeMs!==void 0&&(e.olderThan=Math.floor((this.now()-this.options.maxAgeMs)/1e3)),this.options.maxPerChat!==void 0&&(e.maxPerChat=this.options.maxPerChat),typeof this.options.chats=="function"&&(e.chatFilter=this.options.chats),e}async runOnce(){if(!this.active||this.disabled)return 0;let e=this.buildPruneOptions();return typeof this.store.pruneMessages=="function"?this.store.pruneMessages(e):typeof this.store.deleteMessage=="function"?Er(this.store,e):(this.disabled=true,this.warnedUnsupported||(this.warnedUnsupported=true,this.logger?.warn({code:"AUTO_DELETE_UNSUPPORTED"},"autoDelete: store implements neither pruneMessages nor deleteMessage; sweeper disabled")),0)}start(){if(!this.active||this.timer)return;let e=this.options.intervalMs??6e4;this.timer=setInterval(()=>{this.running||(this.running=true,this.runOnce().catch(t=>this.logger?.warn(t,"autoDelete sweep failed")).finally(()=>{this.running=false;}));},e),this.timer.unref?.();}stop(){this.timer&&(clearInterval(this.timer),this.timer=void 0);}};var fo={image:"imageMessage",video:"videoMessage",audio:"audioMessage",document:"documentMessage",sticker:"stickerMessage"},ho=(n,e)=>{let t=n.message;if(t==null)return null;let r=t[fo[e]];if(r==null||typeof r!="object")return null;let s=r.mimetype;return typeof s=="string"&&s.length>0?s:null},wt=(n,e,t)=>async()=>{try{let{downloadMediaMessage:r}=await import('baileys'),s=await r(n,"buffer",{}),i=ho(n,e)??"application/octet-stream";return {buffer:s,mime:i,size:s.byteLength}}catch(r){throw t?.warn({error:r,kind:e,id:n.key?.id},"media download failed"),r instanceof Error?r:new Error("media download failed")}},kr=(n,e,t)=>async()=>{try{let{downloadMediaMessage:r}=await import('baileys');return await r(n,"stream",{})}catch(r){throw t?.warn({error:r,kind:e,id:n.key?.id},"media stream download failed"),r instanceof Error?r:new Error("media stream download failed")}};var ie="[zaileys]",yo="The saved session looks invalid or corrupted (connection keeps closing before it authenticates). Delete the auth folder (default: ./.zaileys) and run again to scan a fresh QR / request a new pairing code.";function Ir(n){switch(n.kind){case "connecting":return `${ie} Connecting to WhatsApp (session: ${n.sessionId})...`;case "qr":return `${ie} Scan the QR code above with WhatsApp > Linked devices to authenticate.`;case "pairing-code":return `${ie} Pairing code: ${n.code} \u2014 enter it in WhatsApp > Linked devices > Link with phone number.`;case "connected":return `${ie} Connected as ${n.id}.`;case "reconnecting":{let e=(n.delayMs/1e3).toFixed(1),t=`${ie} Connection lost (${n.reason}). Reconnecting in ${e}s (attempt ${n.attempt})...`;return n.invalidCredsSuspected?`${t}
12
- ${ie} ${yo}`:t}case "disconnect":return n.willReconnect?null:`${ie} Disconnected (${n.reason}).`;default:return null}}var Tr=false,wo=["Closing session:","Closing open session","Closing stale open session","Opening session:","Removing old closed session","Migrating session to:","Session already closed","Decrypted message with closed session","Failed to decrypt message with any known session","Session error:"],vo=n=>typeof n[0]=="string"&&wo.some(e=>n[0].startsWith(e));function Or(){if(Tr)return;Tr=true;let n=e=>{let t=console[e].bind(console);console[e]=(...r)=>{vo(r)||t(...r);};};n("info"),n("warn"),n("error");}var f=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysStoreError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var So="./.zaileys/auth",bo=n=>n.replace(/[^a-zA-Z0-9._-]/g,e=>`_${e.charCodeAt(0).toString(16)}`),Je=n=>typeof n=="object"&&n!==null&&n.code==="ENOENT",Mt=class{basePath;closed=false;constructor(e){this.basePath=e?.basePath??So;}signal={read:async(e,t)=>{this.assertOpen();let r={};return await Promise.all(t.map(async s=>{let i=this.signalPath(e,s);try{let o=await fs$1.promises.readFile(i,"utf8");r[s]=JSON.parse(o,za.BufferJSON.reviver);}catch(o){if(Je(o))return;throw new f("STORE_READ_FAILED",`failed to read ${i}`,{cause:o})}})),r},write:async e=>{this.assertOpen();let t=[];for(let r of Object.keys(e)){let s=e[r];if(!s)continue;let i=this.signalDir(r);await fs$1.promises.mkdir(i,{recursive:true});for(let o of Object.keys(s)){let a=s[o],c=this.signalPath(r,o);a===null?t.push(fs$1.promises.unlink(c).catch(d=>{if(!Je(d))throw new f("STORE_WRITE_FAILED",`failed to unlink ${c}`,{cause:d})})):a!==void 0&&t.push(this.atomicWrite(c,JSON.stringify(a,za.BufferJSON.replacer)));}}await Promise.all(t);},delete:async(e,t)=>{this.assertOpen(),await Promise.all(t.map(async r=>{let s=this.signalPath(e,r);try{await fs$1.promises.unlink(s);}catch(i){if(!Je(i))throw new f("STORE_WRITE_FAILED",`failed to unlink ${s}`,{cause:i})}}));},clear:async()=>{this.assertOpen(),await fs$1.promises.rm(this.basePath,{recursive:true,force:true});},close:async()=>{this.closed=true;}};creds={readCreds:async()=>{this.assertOpen();try{let e=await fs$1.promises.readFile(this.credsPath(),"utf8");return JSON.parse(e,za.BufferJSON.reviver)}catch(e){if(Je(e))return;throw new f("STORE_READ_FAILED","failed to read creds.json",{cause:e})}},writeCreds:async e=>{this.assertOpen(),await fs$1.promises.mkdir(this.basePath,{recursive:true}),await this.atomicWrite(this.credsPath(),JSON.stringify(e,za.BufferJSON.replacer));},deleteCreds:async()=>{this.assertOpen();try{await fs$1.promises.unlink(this.credsPath());}catch(e){if(!Je(e))throw new f("STORE_WRITE_FAILED","failed to delete creds.json",{cause:e})}}};credsPath(){return $e__default.default.join(this.basePath,"creds.json")}signalDir(e){return $e__default.default.join(this.basePath,"signal",String(e))}signalPath(e,t){return $e__default.default.join(this.signalDir(e),`${bo(t)}.json`)}async atomicWrite(e,t){let r=$e__default.default.join($e__default.default.dirname(e),`tmp-${crypto.randomBytes(8).toString("hex")}`);try{await fs$1.promises.writeFile(r,t,"utf8"),await fs$1.promises.rename(r,e);}catch(s){throw await fs$1.promises.unlink(r).catch(()=>{}),new f("STORE_WRITE_FAILED",`failed to write ${e}`,{cause:s})}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","FileAuthStore is closed")}};function xr(n,e){let t=n.signal,s=za.makeCacheableSignalKeyStore({get:(o,a)=>t.read(o,a),set:o=>t.write(o),clear:()=>t.clear()},e?.logger??void 0),i={read:async(o,a)=>await s.get(o,[...a]),write:async o=>{await s.set(o);},delete:async(o,a)=>{await t.delete(o,a);let c={},d={};for(let l of a)d[l]=null;c[o]=d,await s.set(c);},clear:async()=>{let o=s.clear;typeof o=="function"?await o.call(s):await t.clear();},close:()=>t.close()};return {creds:n.creds,signal:i}}function Rr(n,e){return {get:async(t,r)=>await n.read(t,r),set:async t=>{await n.write(t);},clear:async()=>{await n.clear();}}}var Po=429;function _r(n){if(n===Po)return "rate-limited";switch(n){case za.DisconnectReason.loggedOut:return "logged-out";case za.DisconnectReason.forbidden:return "forbidden";case za.DisconnectReason.connectionLost:return "connection-lost";case za.DisconnectReason.multideviceMismatch:return "multi-device-mismatch";case za.DisconnectReason.connectionClosed:return "connection-closed";case za.DisconnectReason.connectionReplaced:return "connection-replaced";case za.DisconnectReason.badSession:return "bad-session";case za.DisconnectReason.unavailableService:return "unavailable-service";case za.DisconnectReason.restartRequired:return "restart-required";default:return "unknown"}}function Ge(n){return n==="logged-out"||n==="connection-replaced"||n==="forbidden"}function St(n){return n==="rate-limited"}function Lr(n){return n==="logged-out"||n==="connection-replaced"||n==="forbidden"||n==="bad-session"}function Vp(n){return !Ge(n)}var bt={enabled:true,maxQrAttempts:5,maxPairingAttempts:3,pairingCooldownMs:6e4},Co=3e5;function Nr(n={}){let e=n.enabled??bt.enabled,t=n.maxQrAttempts??bt.maxQrAttempts,r=n.maxPairingAttempts??bt.maxPairingAttempts,s=n.pairingCooldownMs??bt.pairingCooldownMs,i=0,o=0,a=0,c=w=>w<=0?0:Math.min(s*w,Co);return {evaluate:(w,M)=>{if(!e)return {allowed:true,waitMs:0,attempts:w==="pairing"?o:i,max:Number.POSITIVE_INFINITY};if(w==="pairing"){if(o>=r)return {allowed:false,reason:"budget-exhausted",waitMs:0,attempts:o,max:r};let v=c(o),C=M-a;return o>0&&C<v?{allowed:false,reason:"cooldown",waitMs:v-C,attempts:o,max:r}:{allowed:true,waitMs:0,attempts:o,max:r}}return i>=t?{allowed:false,reason:"budget-exhausted",waitMs:0,attempts:i,max:t}:{allowed:true,waitMs:0,attempts:i,max:t}},record:(w,M)=>{w==="pairing"?(o+=1,a=M):i+=1;},reset:()=>{i=0,o=0,a=0;},get enabled(){return e},get qrAttempts(){return i},get pairingAttempts(){return o}}}var Eo=/[\s\-()+]/g;function ko(n){return typeof n!="string"?"":n.replace(Eo,"")}function To(n){if(!n||typeof n!="string"||!n.trim())throw new Error("phoneNumber is required");let e=ko(n);if(!/^\d+$/.test(e))throw new Error("phoneNumber must be E.164 with country code");if(e.length<8||e.length>15)throw new Error("phoneNumber must be E.164 with country code");return e}function Dr(n){let e=To(n.phoneNumber),t=n.ttlMs??6e4;return {phoneNumber:e,async requestCode(r){let s;try{s=await r.requestPairingCode(e);}catch(i){let o=i instanceof Error?i.message:String(i);throw new Error(`failed to request pairing code: ${o}`)}return {code:s,expiresAt:Date.now()+t}}}}function Oo(n){return !n||typeof n!="string"||!n.trim()?Promise.reject(new Error("qr string is required")):new Promise(e=>{Io__default.default.generate(n,{small:true},t=>e(t));})}async function Br(n,e=t=>{process.stdout.write(t);}){let t=await Oo(n);e(t+`
13
- `);}var ye={enabled:true,maxAttempts:Number.POSITIVE_INFINITY,initialDelayMs:3e3,maxDelayMs:6e4,jitterFactor:.2,rateLimitedDelayMs:3e5};function Wr(n,e){let t=n?.enabled??ye.enabled,r=n?.maxAttempts??ye.maxAttempts,s=n?.initialDelayMs??ye.initialDelayMs,i=n?.maxDelayMs??ye.maxDelayMs,o=n?.jitterFactor??ye.jitterFactor,a=n?.rateLimitedDelayMs??ye.rateLimitedDelayMs,c=e?.random??Math.random,d=0;return {next:w=>{if(!t||Ge(w))return null;let M=d+1;if(M>r)return null;if(d=M,St(w))return {attempt:M,delayMs:a};let v=Math.pow(2,M-1),C=Math.min(i,s*v),y=1+(c()*2-1)*o,p=C*y,m=Math.min(i,Math.max(0,p));return {attempt:M,delayMs:Math.round(m)}},reset:()=>{d=0;},get attempts(){return d}}}var xo={idle:["connecting"],connecting:["qr-pending","pairing-pending","connected","reconnecting","disconnecting","disconnected"],"qr-pending":["connecting","connected","reconnecting","disconnecting","disconnected"],"pairing-pending":["connecting","connected","reconnecting","disconnecting","disconnected"],connected:["disconnecting","reconnecting","disconnected"],reconnecting:["connecting","disconnecting","disconnected"],disconnecting:["disconnected"],disconnected:["idle","connecting","reconnecting"]};function Fr(n="idle"){let e=n,t=new Set,r=s=>xo[e].includes(s);return {get state(){return e},canTransition:r,transition(s){if(!r(s))throw new Error(`invalid state transition: ${e} -> ${s}`);let i=e;e=s;for(let o of t)try{o(i,s);}catch{}},onChange(s){return t.add(s),()=>{t.delete(s);}}}}var At=n=>`${n.remoteJid??""}|${n.id??""}|${n.fromMe?1:0}`,Pt=class{messages=new Map;messagesByJid=new Map;chats=new Map;contacts=new Map;presence=new Map;boundSocket;listeners=new Map;closed=false;async saveMessage(e){this.assertOpen();let t=At(e.key);this.messages.set(t,structuredClone(e));let r=e.key.remoteJid??"",s=this.messagesByJid.get(r);s||(s=new Set,this.messagesByJid.set(r,s)),s.add(t);}async getMessage(e){this.assertOpen();let t=this.messages.get(At(e));return t?structuredClone(t):void 0}async listMessages(e,t){this.assertOpen();let r=this.messagesByJid.get(e);if(!r)return [];let s=[];for(let o of r){let a=this.messages.get(o);a&&s.push(a);}s.sort((o,a)=>Number(a.messageTimestamp)-Number(o.messageTimestamp));let i=s;if(typeof t?.before=="number"){let o=t.before;i=i.filter(a=>Number(a.messageTimestamp)<o);}return typeof t?.limit=="number"&&(i=i.slice(0,t.limit)),i.map(o=>structuredClone(o))}async saveChat(e){this.assertOpen();let t=e.id;t&&this.chats.set(t,structuredClone(e));}async getChat(e){this.assertOpen();let t=this.chats.get(e);return t?structuredClone(t):void 0}async listChats(e){this.assertOpen();let t=[];for(let r of this.chats.values())e?.archived===true&&r.archived!==true||t.push(structuredClone(r));return t}async saveContact(e){this.assertOpen(),this.contacts.set(e.id,structuredClone(e));}async getContact(e){this.assertOpen();let t=this.contacts.get(e);return t?structuredClone(t):void 0}async listContacts(){return this.assertOpen(),Array.from(this.contacts.values(),e=>structuredClone(e))}async savePresence(e,t){this.assertOpen(),this.presence.set(e,structuredClone(t));}async getPresence(e){this.assertOpen();let t=this.presence.get(e);return t?structuredClone(t):void 0}bind(e){this.assertOpen(),this.boundSocket=e;let t=(...c)=>{let l=c[0]?.messages;if(Array.isArray(l))for(let u of l)this.saveMessage(u).catch(()=>{});},r=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d){let u=this.messages.get(At(l.key));if(u){let w={...u,...l.update};this.saveMessage(w).catch(()=>{});}}},s=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveChat(l).catch(()=>{});},i=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d){let w={...this.chats.get(l.id)??{},...l};this.saveChat(w).catch(()=>{});}},o=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveContact(l).catch(()=>{});},a=(...c)=>{let d=c[0];if(d?.presences)for(let l of Object.keys(d.presences)){let u=d.presences[l];u&&this.savePresence(l,u).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("messages.update",r),this.listeners.set("chats.upsert",s),this.listeners.set("chats.update",i),this.listeners.set("contacts.upsert",o),this.listeners.set("presence.update",a);for(let[c,d]of this.listeners)e.ev.on(c,d);}async deleteMessage(e){this.assertOpen();let t=At(e);this.messages.delete(t);let r=e.remoteJid??"",s=this.messagesByJid.get(r);s&&(s.delete(t),s.size===0&&this.messagesByJid.delete(r));}async pruneMessages(e){this.assertOpen();let t=0;for(let[r,s]of [...this.messagesByJid.entries()]){if(e.chatFilter&&!e.chatFilter(r))continue;let i=[];for(let a of s){let c=this.messages.get(a);c&&i.push(c);}i.sort((a,c)=>Number(c.messageTimestamp??0)-Number(a.messageTimestamp??0));let o=i.filter((a,c)=>{let d=Number(a.messageTimestamp??0);return e.olderThan!==void 0&&d<e.olderThan||e.maxPerChat!==void 0&&c>=e.maxPerChat});for(let a of o)await this.deleteMessage(a.key),t+=1;}return t}async clear(){this.assertOpen(),this.messages.clear(),this.messagesByJid.clear(),this.chats.clear(),this.contacts.clear(),this.presence.clear();}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);return this.listeners.clear(),this.boundSocket=void 0,Promise.resolve()}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","MemoryMessageStore is closed")}};var _o=["silent","fatal","error","warn","info","debug","trace"];function Lo(n){if(n)return n;let e=process.env.ZAILEYS_DEBUG;return e===void 0?"silent":e==="1"?"info":_o.includes(e)?e:"silent"}function No(n={}){let e=Lo(n.level),t=Ro__default.default({level:e});return n.sessionId!==void 0?t.child({sessionId:n.sessionId}):t}var Ur=["debug","info","warn","error","fatal"];function Do(n){if(n===null||typeof n!="object")return false;for(let e of Ur)if(typeof n[e]!="function")return false;return true}function Ve(){}function Bo(n){let e={debug:Ve,info:Ve,warn:Ve,error:Ve,fatal:Ve};for(let t of Ur){let r=n[t];typeof r=="function"&&(e[t]=r.bind(n));}return e}function Mn(n,e){return n===void 0?e??No():Do(n)?n:Bo(n)}var om=Object.freeze(["HISTORY_SYNC_NOTIFICATION","APP_STATE_SYNC_KEY_SHARE","LID_MIGRATION_MAPPING_SYNC","PEER_DATA_OPERATION_REQUEST_RESPONSE_MESSAGE"]),jr=n=>{let e=n.requestId!=null,t=n.messages.filter(r=>{if(e)return false;let s=r.messageStubParameters;if(Array.isArray(s)){for(let i of s)if(typeof i=="string"&&i.startsWith("requestId:"))return false}return true});return {...n,messages:t}};var Wo=new Set(["offer","ringing"]),Fo=new Set(["timeout","reject","accept","terminate"]),qr=n=>{let e=n instanceof Date?n.getTime():Date.parse(String(n));return Number.isFinite(e)?e:0},Kr=n=>typeof n.id!="string"||n.id.length===0||!Wo.has(n.status)?null:{kind:"incoming",callId:n.id,from:n.from,isGroup:n.isGroup===true,isVideo:n.isVideo===true,timestamp:qr(n.date),status:n.status},$r=n=>typeof n.id!="string"||n.id.length===0||!Fo.has(n.status)?null:{kind:"ended",callId:n.id,from:n.from,isGroup:n.isGroup===true,isVideo:n.isVideo===true,timestamp:qr(n.date),status:n.status};var B=n=>typeof n=="string"&&n.length>0,Uo=n=>{let e={};return typeof n.subject=="string"&&(e.subject=n.subject),typeof n.desc=="string"&&(e.description=n.desc),typeof n.announce=="boolean"&&(e.announce=n.announce),typeof n.restrict=="boolean"&&(e.restrict=n.restrict),typeof n.ephemeralDuration=="number"&&(e.ephemeralDuration=n.ephemeralDuration),e},Jr=(n,e,t)=>n.filter(r=>B(r?.id)).map(r=>{let s={jid:r.id},i=r.lid??r.pn??r.phoneNumber;return B(i)&&(s.participantAlt=i),B(e)&&(s.authorPn=e),B(t)&&(s.authorUsername=t),s.isAdmin=r.admin==="admin"||r.admin==="superadmin",s}),Gr=n=>B(n?.id)?{groupId:n.id,update:Uo(n),timestamp:Date.now()}:null,Vr=n=>{if(!B(n?.groupId)||!B(n?.participant))return null;let e={groupId:n.groupId,participant:n.participant,label:typeof n.label=="string"?n.label:"",timestamp:typeof n.messageTimestamp=="number"?n.messageTimestamp:Date.now()};return B(n.participantAlt)&&(e.participantAlt=n.participantAlt),e},jo=new Set(["add","invite","invite-link"]),qo=new Set(["remove","leave"]),Hr=n=>{if(!B(n?.id)||!jo.has(n.action)||!Array.isArray(n.participants)||n.participants.length===0)return null;let e=Jr(n.participants,n.authorPn,n.authorUsername);if(e.length===0)return null;let t={groupId:n.id,participants:e,action:n.action,timestamp:Date.now()};return B(n.author)&&(t.by=n.author),t},zr=n=>{if(!B(n?.id)||!qo.has(n.action)||!Array.isArray(n.participants)||n.participants.length===0)return null;let e=Jr(n.participants,n.authorPn,n.authorUsername);if(e.length===0)return null;let t={groupId:n.id,participants:e,action:n.action,timestamp:Date.now()};return B(n.author)&&(t.by=n.author),t};var we=n=>typeof n!="string"||n.length===0?null:za.jidNormalizedUser(n),Y=n=>typeof n=="string"&&n.length>0?n:void 0,Jo=["@s.whatsapp.net","@c.us"],Ct=n=>n.endsWith("@lid"),Yr=n=>Jo.some(e=>n.endsWith(e)),K=(n,e)=>{if(!n)return null;let t=Y(n.participant)??n.remoteJid,r=we(t);if(r===null)return null;let s=Y(n.participantAlt)??Y(n.remoteJidAlt),i=s!=null?we(s):null,o=Y(n.participantUsername)??Y(n.remoteJidUsername),a={jid:r,isMe:n.fromMe===true};typeof t=="string"&&t.length>0&&(a.deviceJid=t);let c=i!==null?[r,i]:[r],d=c.find(Ct),l=c.find(Yr);d!==void 0&&(a.lid=d),l!==void 0&&(a.pn=l),o!==void 0&&(a.username=o);let u=Y(e);return u!==void 0&&(a.pushName=u),a},Zr=n=>{if(!n)return null;let e=n.stanzaId;if(typeof e!="string"||e.length===0)return null;let t=Y(n.participant),r=Y(n.remoteJid)??t,s={id:e};typeof r=="string"&&(s.remoteJid=r),typeof t=="string"&&(s.participant=t);let i={key:s},o=K(s);return o&&(i.sender=o),i},He=n=>{if(!n)return {mentionedJids:[],mentionAll:false};let e=n.mentionedJid,t=Array.isArray(e)?e.filter(i=>typeof i=="string"):[],r=n.groupMentions,s=Array.isArray(r)&&r.length>0;return {mentionedJids:t,mentionAll:s}};var ve=n=>za.isJidGroup(n)===true,Me=n=>{if(n==null)return null;if(typeof n=="number")return Number.isFinite(n)?n:null;if(typeof n.toNumber=="function"){let e=n.toNumber();return Number.isFinite(e)?e:null}return null};var Go=["quick_reply","cta_url","cta_call","button_click"],Vo=["list_select","single_select"],J=n=>typeof n=="string"&&n.length>0,Xr=n=>{let e=typeof n.pushName=="string"?n.pushName:void 0;return K(n.key,e)},es=n=>Me(n.messageTimestamp)??0,ts=(n,e)=>{if(!J(n))return null;try{let t=JSON.parse(n);return t!==null&&typeof t=="object"?t:null}catch{return e?.debug({paramsJson:n},"interactive: failed to parse nativeFlow paramsJson"),null}},Et=(n,e)=>{for(let t of e){let r=n[t];if(J(r))return r}},ns=(n,e)=>{let t=n.message;if(!t)return null;let r=t.buttonsResponseMessage;if(r&&J(r.selectedButtonId))return Sn(n,r.selectedButtonId,r.selectedDisplayText);let s=t.templateButtonReplyMessage;if(s&&J(s.selectedId))return Sn(n,s.selectedId,s.selectedDisplayText);let i=t.interactiveResponseMessage?.nativeFlowResponseMessage;if(i&&J(i.name)&&Go.includes(i.name)){let o=ts(i.paramsJson,e.logger);if(!o)return null;let a=Et(o,["id","button_id"]);return a===void 0?null:Sn(n,a,Et(o,["display_text"])??null)}return null},Sn=(n,e,t)=>{let r=Xr(n);if(!r||!n.key)return null;let s={key:n.key,buttonId:e,sender:r,timestamp:es(n)};return J(t)&&(s.buttonText=t),s},rs=(n,e)=>{let t=n.message;if(!t)return null;let r=t.listResponseMessage,s=r?.singleSelectReply?.selectedRowId;if(J(s))return Qr(n,s,r?.title);let i=t.interactiveResponseMessage?.nativeFlowResponseMessage;if(i&&J(i.name)&&Vo.includes(i.name)){let o=ts(i.paramsJson,e.logger);if(!o)return null;let a=Et(o,["row_id","id"]);return a===void 0?null:Qr(n,a,Et(o,["title"])??null)}return null},Qr=(n,e,t)=>{let r=Xr(n);if(!r||!n.key)return null;let s={key:n.key,rowId:e,sender:r,timestamp:es(n)};return J(t)&&(s.title=t),s};var Ho=new Set(["available","unavailable","composing","recording","paused"]),zo=n=>n instanceof Date?n.getTime():typeof n=="number"&&Number.isFinite(n)?n:0,ss=n=>n.status!=="complete"&&n.status!=="paused"?null:{syncType:String(n.syncType),status:n.status,explicit:n.explicit===true},bn=n=>{if(n.source==="connection-update"){let t=n.reachoutTimeLock;return t.isActive!==true?null:{reason:"reachout-timelock",retryAt:zo(t.timeEnforcementEnds)}}if(n.capInfo.capping_status!=="CAPPED")return null;let e={reason:"chat-limit-reached"};return typeof n.capInfo.used_quota=="number"&&(e.usedQuota=n.capInfo.used_quota),typeof n.capInfo.total_quota=="number"&&(e.totalQuota=n.capInfo.total_quota),e},is=n=>{if(typeof n.id!="string"||n.id.length===0)return [];let e=[];for(let[t,r]of Object.entries(n.presences??{})){let s=r?.lastKnownPresence;typeof s!="string"||!Ho.has(s)||e.push({jid:n.id,participant:t,status:s});}return e},ze=n=>{let e=n.payload.id;if(typeof e!="string"||e.length===0)return null;let t=Date.now();switch(n.source){case "reaction":{let r={action:"reaction",newsletterId:e,timestamp:t};return typeof n.payload.server_id=="string"&&(r.serverId=n.payload.server_id),typeof n.payload.reaction?.code=="string"&&(r.emoji=n.payload.reaction.code),r}case "view":{let r={action:"view",newsletterId:e,timestamp:t};return typeof n.payload.server_id=="string"&&(r.serverId=n.payload.server_id),typeof n.payload.count=="number"&&(r.count=n.payload.count),r}case "participants":return {action:"participants",newsletterId:e,timestamp:t};case "settings":{let r={action:"settings",newsletterId:e,timestamp:t};return n.payload.update&&(r.update=n.payload.update),r}}};var as=n=>{let e=n.match(/(https?:\/\/[^\s]+)/g);return e?e.map(t=>t.replace(/[.,;:!?]+$/,"")):[]},os=(n,e=2166136261)=>{let t=e>>>0;for(let r=0;r<n.length;r++)t^=n.charCodeAt(r),t=Math.imul(t,16777619)>>>0;return t>>>0},cs=n=>(os(n).toString(16).padStart(8,"0")+os(n,2646966556).toString(16).padStart(8,"0")).toUpperCase(),ds=n=>cs(`${n.remoteJid??""}|${n.id??""}|${n.fromMe===true?"1":"0"}`),ls=(n,e)=>cs(`${n??""}|${e}`),us=n=>{let e=null;if(typeof n=="number")e=n;else if(typeof n=="bigint")e=Number(n);else if(typeof n=="string"){let t=Number.parseInt(n,10);e=Number.isFinite(t)?t:null;}else if(n!=null&&typeof n=="object"){let t=n;typeof t.toNumber=="function"?e=t.toNumber():typeof t.low=="number"&&(e=(typeof t.high=="number"?t.high:0)*4294967296+(t.low>>>0));}return e!=null&&Number.isFinite(e)&&e>0?e*1e3:0},ps=n=>{let e=za.jidDecode(n);if(!e)return "unknown";let t=e.device;return t===void 0||t===0?"android":t===2?"ios":t===3?"web":t===4?"desktop":"unknown"},Zo=n=>n.trim().endsWith("?"),Qo=(n,e)=>e.length===0?false:e.some(t=>t.length>0&&n.startsWith(t)),Xo=(n,e)=>{if(e.length===0)return false;let t;try{t=za.jidNormalizedUser(n);}catch{t=n;}return e.some(r=>{try{return za.jidNormalizedUser(r)===t}catch{return r===n}})},ea=(n,e)=>{let t=async r=>r===void 0?false:Array.isArray(r)?r.includes(e):r(e);return {authors:()=>t(n?.authors),banned:()=>t(n?.banned)}},ta=0,na=14,ra=1,sa=2,kt=n=>n!=null&&typeof n=="object"?n:null,ia=n=>{let e=kt(n.message);if(e==null)return {isEdited:false,isDeleted:false,isPinned:false,isUnPinned:false,isBot:false,isStatusMention:false,isGroupStatusMention:false};let t=kt(e.protocolMessage),r=typeof t?.type=="number"?t.type:void 0,s=typeof kt(e.pinInChatMessage)?.type=="number"?e.pinInChatMessage.type:void 0;return {isEdited:e.editedMessage!=null||r===na,isDeleted:r===ta,isPinned:s===ra,isUnPinned:s===sa,isBot:kt(e.messageContextInfo)?.botMetadata!=null,isStatusMention:e.statusMentionMessage!=null,isGroupStatusMention:e.groupStatusMentionMessage!=null}},An=n=>{let e=typeof n.key.remoteJid=="string"?n.key.remoteJid:null,t=e!==null&&ve(e),r=ia(n.message),s=c=>n.lidMap!=null&&c.endsWith("@lid")?n.lidMap.get(c)??c:c,i=s(n.sender.pn??n.sender.jid),o=t?e?za.jidNormalizedUser(e):null:n.key.fromMe===true&&e?s(za.jidNormalizedUser(e)):i,a={uniqueId:ds(n.key),staticId:ls(o,i),channelId:n.channelId,chatId:n.key.id??"",chatType:n.chatType,receiverId:n.receiverId?s(za.jidNormalizedUser(n.receiverId)):n.receiverId,roomId:o,senderId:i,senderLid:n.sender.lid??null,senderName:n.sender.pushName??null,senderDevice:ps(n.sender.deviceJid??n.sender.jid),timestamp:us(n.message.messageTimestamp),text:n.text,mentions:n.mentions,links:as(n.text),isFromMe:n.key.fromMe===true,isGroup:t,isNewsletter:n.isNewsletter,isBroadcast:n.isBroadcast,isViewOnce:n.isViewOnce,isEphemeral:n.isEphemeral,isForwarded:n.isForwarded,isQuestion:Zo(n.text),isPrefix:Qo(n.text,n.prefixes),isTagMe:Xo(n.selfJid,n.mentions),isEdited:r.isEdited,isDeleted:r.isDeleted,isPinned:r.isPinned,isUnPinned:r.isUnPinned,isBot:r.isBot,isSpam:false,isHideTags:n.mentions.length>0&&!/@\d/.test(n.text),isStatusMention:r.isStatusMention,isGroupStatusMention:r.isGroupStatusMention,isStory:e==="status@broadcast",roomName:n.resolveRoomName,receiverName:n.resolveReceiverName,replied:n.resolveReplied,reply:n.reply,react:n.react,message:()=>n.message,citation:ea(n.citationConfig,n.sender.pn??n.sender.jid)};return n.media!==void 0&&(a.media=n.media),a};var It={image:"imageMessage",video:"videoMessage",audio:"audioMessage",document:"documentMessage",sticker:"stickerMessage"},gs=n=>{let e=n?.remoteJid;return typeof e=="string"&&e.length>0?e:""},h=n=>n!=null&&typeof n=="object"?n:null,S=n=>typeof n=="string"&&n.length>0?n:null,Z=(...n)=>{for(let e of n){let t=S(e);if(t!=null)return t}return null},oa=["ephemeralMessage","viewOnceMessage","viewOnceMessageV2","viewOnceMessageV2Extension","documentWithCaptionMessage","editedMessage","lottieStickerMessage"],Xe=n=>{let e=n;for(let t=0;t<5;t++){let r=null;for(let s of oa){let i=h(h(e[s])?.message);if(i!=null){r=i;break}}if(r==null)break;e=r;}return e},fs=n=>{let e=h(n.message);if(e==null)return n;let t=Xe(e);return t===e?n:{...n,message:t}},aa=n=>{let t=h(h(h(n.botForwardedMessage)?.message)?.richResponseMessage)??h(n.richResponseMessage);if(t==null)return null;let r=t.submessages;if(!Array.isArray(r))return null;let s=[];for(let o of r){let a=S(h(o)?.messageText);a!=null&&s.push(a);}let i=s.join(`
14
- `).trim();return i.length>0?i:null},ca=n=>{let e=h(n.templateMessage),t=h(e?.hydratedTemplate)??h(e?.hydratedFourRowTemplate);return S(t?.hydratedContentText)},da=n=>Z(h(n.pollCreationMessage)?.name,h(n.pollCreationMessageV2)?.name,h(n.pollCreationMessageV3)?.name),la=n=>{let e=h(n.locationMessage)??h(n.liveLocationMessage);if(e==null)return null;let t=Z(e.name,e.address);if(t!=null){let i=S(e.name),o=S(e.address);return i!=null&&o!=null&&i!==o?`${i} \u2014 ${o}`:t}let r=e.degreesLatitude,s=e.degreesLongitude;return typeof r=="number"&&typeof s=="number"?`${r}, ${s}`:null},ua=n=>{let e=S(h(n.contactMessage)?.displayName);if(e!=null)return e;let t=h(n.contactsArrayMessage),r=S(t?.displayName);if(r!=null)return r;let s=t?.contacts;if(Array.isArray(s)){let i=s.map(o=>S(h(o)?.displayName)).filter(o=>o!=null);if(i.length>0)return i.join(", ")}return null},hs=n=>Z(n.conversation,h(n.extendedTextMessage)?.text,aa(n),S(h(h(n.interactiveMessage)?.body)?.text),h(n.buttonsMessage)?.contentText,h(n.listMessage)?.description,ca(n),da(n),la(n),ua(n)),pa=n=>Z(h(n.buttonsResponseMessage)?.selectedDisplayText,h(n.buttonsResponseMessage)?.selectedButtonId,h(n.templateButtonReplyMessage)?.selectedDisplayText,h(n.templateButtonReplyMessage)?.selectedId,h(n.listResponseMessage)?.title,h(h(n.listResponseMessage)?.singleSelectReply)?.selectedRowId,h(h(n.interactiveResponseMessage)?.body)?.text),ma=n=>Z(h(n.imageMessage)?.caption,h(n.videoMessage)?.caption,h(n.documentMessage)?.caption,h(n.documentMessage)?.fileName),I=n=>{if(typeof n=="number")return n;let e=Me(n);return typeof e=="number"?e:null},ga=[["pollCreationMessage","poll"],["pollCreationMessageV2","poll"],["pollCreationMessageV3","poll"],["contactMessage","contact"],["contactsArrayMessage","contact"],["locationMessage","location"],["liveLocationMessage","live-location"],["eventMessage","event"],["albumMessage","album"],["groupInviteMessage","group-invite"],["productMessage","product"],["orderMessage","order"],["requestPaymentMessage","payment"],["sendPaymentMessage","payment"],["paymentInviteMessage","payment"],["buttonsMessage","buttons"],["listMessage","list"],["interactiveMessage","interactive"],["templateMessage","template"]],ys=n=>{let e=h(n.pollCreationMessage)??h(n.pollCreationMessageV2)??h(n.pollCreationMessageV3);if(e!=null){let p=Array.isArray(e.options)?e.options:[];return {type:"poll",name:S(e.name),options:p.map(m=>S(h(m)?.optionName)).filter(m=>m!=null),selectableCount:I(e.selectableOptionsCount)??0}}let t=h(n.contactMessage);if(t!=null)return {type:"contact",displayName:S(t.displayName),vcard:S(t.vcard),contacts:[{displayName:S(t.displayName),vcard:S(t.vcard)}]};let r=h(n.contactsArrayMessage);if(r!=null){let p=Array.isArray(r.contacts)?r.contacts:[];return {type:"contact",displayName:S(r.displayName),vcard:null,contacts:p.map(m=>({displayName:S(h(m)?.displayName),vcard:S(h(m)?.vcard)}))}}let s=h(n.locationMessage);if(s!=null)return {type:"location",latitude:I(s.degreesLatitude),longitude:I(s.degreesLongitude),name:S(s.name),address:S(s.address),accuracy:I(s.accuracyInMeters),speed:I(s.speedInMps),caption:S(s.comment)};let i=h(n.liveLocationMessage);if(i!=null)return {type:"live-location",latitude:I(i.degreesLatitude),longitude:I(i.degreesLongitude),name:null,address:null,accuracy:I(i.accuracyInMeters),speed:I(i.speedInMps),caption:S(i.caption)};let o=h(n.albumMessage);if(o!=null)return {type:"album",expectedImageCount:I(o.expectedImageCount),expectedVideoCount:I(o.expectedVideoCount)};let a=h(n.groupInviteMessage);if(a!=null)return {type:"group-invite",groupId:S(a.groupJid),groupName:S(a.groupName),inviteCode:S(a.inviteCode),caption:S(a.caption),expiresAt:I(a.inviteExpiration)};let c=h(h(n.productMessage)?.product);if(h(n.productMessage)!=null){let p=S(h(n.productMessage)?.businessOwnerJid),m=I(c?.priceAmount1000);return {type:"product",productId:S(c?.productId),title:S(c?.title),description:S(c?.description),price:m!=null?m/1e3:null,currency:S(c?.currencyCode),retailerId:S(c?.retailerId),url:S(c?.url),businessOwnerId:p}}let d=h(n.orderMessage);if(d!=null){let p=I(d.totalAmount1000),m={1:"inquiry",2:"accepted",3:"declined"},b=d.status;return {type:"order",orderId:S(d.orderId),title:S(d.orderTitle),itemCount:I(d.itemCount),total:p!=null?p/1e3:null,currency:S(d.totalCurrencyCode),status:typeof b=="number"?m[b]??null:S(b),message:S(d.message)}}let l=h(n.requestPaymentMessage)!=null&&{node:n.requestPaymentMessage,kind:"request"}||h(n.sendPaymentMessage)!=null&&{node:n.sendPaymentMessage,kind:"send"}||h(n.paymentInviteMessage)!=null&&{node:n.paymentInviteMessage,kind:"invite"};if(l!==false){let p=h(l.node),m=I(p?.amount1000),b=h(p?.noteMessage);return {type:"payment",kind:l.kind,amount:m!=null?m/1e3:null,currency:S(p?.currencyCodeIso4217),note:Z(b?.conversation,h(b?.extendedTextMessage)?.text),expiresAt:I(p?.expiryTimestamp)}}let u=h(n.eventMessage);if(u!=null){let p=h(u.location);return {type:"event",name:S(u.name),description:S(u.description),location:p!=null?Z(p.name,p.address):null,startTime:I(u.startTime),endTime:I(u.endTime),isCanceled:u.isCanceled===true}}let w=h(n.buttonsMessage);if(w!=null){let p=Array.isArray(w.buttons)?w.buttons:[];return {type:"buttons",contentText:S(w.contentText),footerText:S(w.footerText),buttons:p.map(m=>({id:S(h(m)?.buttonId),text:S(h(h(m)?.buttonText)?.displayText)}))}}let M=h(n.listMessage);if(M!=null){let p=Array.isArray(M.sections)?M.sections:[];return {type:"list",title:S(M.title),description:S(M.description),buttonText:S(M.buttonText),sections:p.map(m=>{let b=Array.isArray(h(m)?.rows)?h(m).rows:[];return {title:S(h(m)?.title),rows:b.map(E=>({id:S(h(E)?.rowId),title:S(h(E)?.title),description:S(h(E)?.description)}))}})}}let v=h(n.interactiveMessage);if(v!=null){let p=h(v.nativeFlowMessage),m=Array.isArray(p?.buttons)?p.buttons:[];return {type:"interactive",title:S(h(v.header)?.title),body:S(h(v.body)?.text),footer:S(h(v.footer)?.text),buttons:m.map(b=>({name:S(h(b)?.name),params:S(h(b)?.buttonParamsJson)}))}}let C=h(n.templateMessage);if(C!=null){let p=h(C.hydratedTemplate)??h(C.hydratedFourRowTemplate),m=Array.isArray(p?.hydratedButtons)?p.hydratedButtons:[];return {type:"template",text:S(p?.hydratedContentText),buttons:m.map(b=>{let E=h(b),pe=h(E?.quickReplyButton)??h(E?.urlButton)??h(E?.callButton);return {id:S(pe?.id),text:S(pe?.displayText)}})}}let y=h(n.extendedTextMessage);if(y!=null){let p=Z(y.canonicalUrl,y.matchedText),m=S(y.title),b=S(y.description);if(p!=null&&(m!=null||b!=null))return {type:"link",url:p,title:m,description:b}}return null};var Ze=n=>{let e=h(n.message);if(e==null)return null;let t=Xe(e);return hs(t)??pa(t)??ma(t)},Ot=n=>{let e=h(fs(n).message);if(e==null)return null;let t=h(e.extendedTextMessage)?.contextInfo;if(t!=null)return t;for(let r of Object.values(It)){let s=e[r];if(s!=null&&typeof s=="object"){let i=s.contextInfo;if(i!=null)return i}}return null},fa=(n,e)=>{let t=n.message;if(t==null)return null;let r=t[It[e]];return r==null||typeof r!="object"?null:r},ha=n=>{let e=n.message;if(e==null)return false;if(e.viewOnceMessage!=null||e.viewOnceMessageV2!=null||e.viewOnceMessageV2Extension!=null)return true;for(let t of Object.values(It)){let r=e[t];if(r!=null&&typeof r=="object"&&r.viewOnce===true)return true}return false},ya=(n,e)=>n.message?.ephemeralMessage!=null?true:typeof e?.expiration=="number"&&e.expiration>0,oe=n=>{let e=h(n);if(e==null)return "text";let t=Xe(e);for(let r of Object.values(It))if(t[r]!=null)return r.replace("Message","");for(let[r,s]of ga)if(t[r]!=null)return s;return "text"},wa=(n,e)=>{if(n==null)return false;let t=[n.pn,n.lid,n.jid].filter(s=>typeof s=="string"&&s.length>0),r=[e.pn,e.lid,e.jid].filter(s=>typeof s=="string"&&s.length>0);return t.some(s=>r.includes(s))},va=async(n,e,t,r,s)=>{try{if(n==null||n.quotedMessage==null)return null;let i=n.stanzaId;if(typeof i!="string"||i.length===0)return null;if(e.resolveQuoted!=null&&t.length>0){let v=await e.resolveQuoted(i,t);if(v!=null&&v.message!=null){let C=Ze(v)??"",y=ae(v,e,oe(v.message),C,Qe(v,e),s);if(y!==null)return y}}let o=Zr(n);if(o===null||typeof o.key.id!="string"||o.key.id.length===0||(t.length>0&&(o.key.remoteJid=t),typeof o.key.remoteJid!="string"||o.key.remoteJid.length===0))return null;let a=o.key.participant,c=typeof a=="string"&&(e.selfJid.length>0&&Tt(a,e.selfJid)||e.selfLid!=null&&Tt(a,e.selfLid)),d=ve(t),l=o.sender?.pushName;c?(o.key.fromMe=!0,e.selfJid.length>0&&(o.key.participant=e.selfJid),e.selfLid!=null&&(o.key.participantAlt=e.selfLid),l==null&&(l=e.selfName)):r!=null&&(!d||wa(o.sender,r))&&(r.pn!=null&&(o.key.participant=r.pn),r.lid!=null&&(o.key.participantAlt=r.lid),l==null&&(l=r.pushName));let u=n.quotedMessage,w=Object.assign({key:o.key,message:u??null},l!=null?{pushName:l}:{}),M=Ze(w)??"";return ae(w,e,oe(u),M,Qe(w,e),s)}catch{return null}},ws=n=>He(Ot(n)).mentionedJids,Ma=n=>{try{return za.jidNormalizedUser(n)}catch{return n}},vs=(n,e)=>n.map(t=>{let r=Ma(t);return e.lidMap?.get(r)??r}),ms=n=>(n.split("@")[0]??"").split(":")[0]??"",Sa=(n,e)=>{if(e==null||e.size===0||n.length===0)return n;let t=[...e].map(([s,i])=>[ms(s),ms(i)]).filter(([s,i])=>s.length>0&&i.length>0&&s!==i).sort((s,i)=>i[0].length-s[0].length),r=n;for(let[s,i]of t)r=r.split(`@${s}`).join(`@${i}`);return r},ae=(n,e,t,r,s,i)=>{let o=n.key;if(o==null)return null;let a=K(o,n.pushName??void 0);if(a===null)return null;let c=gs(o);if(c.length===0)return null;let d=Ot(n),l=ve(c),u=c.endsWith("@broadcast"),w=c.endsWith("@newsletter"),M=d?.isForwarded===true||(d?.forwardingScore??0)>0,v=ha(n),C=ya(n,d),y=e.channelId??"",p=e.receiverId??"",m=e.prefixes??[],b=i??(()=>l?e.resolveRoomName!=null?e.resolveRoomName(c):Promise.resolve(null):Promise.resolve(a.pushName??null)),E=e.resolveReceiverName??(()=>Promise.resolve(null)),pe=()=>va(d,e,c,a,b),zt=c.length>0?c:a.pn??a.jid,Yt=(Qt,pi)=>e.reply==null?Promise.reject(new Error("zaileys: ctx.reply() requires a connected client")):e.reply(zt,Qt,pi,n),Zt=Qt=>e.react==null?Promise.reject(new Error("zaileys: ctx.react() requires a connected client")):e.react(o,Qt),li=vs(He(d).mentionedJids,e),ui=Sa(r,e.lidMap),Ln={message:n,key:o,channelId:y,receiverId:p,selfJid:e.selfJid,text:ui,chatType:t,sender:a,mentions:li,isViewOnce:v,isEphemeral:C,isForwarded:M,isBroadcast:u,isNewsletter:w,prefixes:m,...e.lidMap!=null?{lidMap:e.lidMap}:{},resolveRoomName:b,resolveReceiverName:E,resolveReplied:pe,reply:Yt,react:Zt},Nn=s!==void 0?{...Ln,media:s}:Ln;return An(e.citationConfig!==void 0?{...Nn,citationConfig:e.citationConfig}:Nn)},ba=["image","video","audio","document","sticker"],Ms=(n,e,t)=>{let r=fs(n),s=fa(r,e);if(s===null)return null;let i=wt(r,e,t.logger),o=kr(r,e,t.logger);return {type:e,mimetype:typeof s.mimetype=="string"?s.mimetype:null,caption:typeof s.caption=="string"?s.caption:null,fileName:typeof s.fileName=="string"?s.fileName:null,fileSize:I(s.fileLength),ptt:s.ptt===true,buffer:async()=>(await i()).buffer,stream:o}},Qe=(n,e)=>{let t=h(n.message);if(t==null)return;let r=oe(n.message);return ba.includes(r)?Ms(n,r,e)??void 0:ys(Xe(t))??void 0},Ss=(n,e)=>{if(h(n.message)==null)return null;let r=oe(n.message),s=Qe(n,e),i=Ze(n)??"";return i===""&&s===void 0?null:ae(n,e,r,i,s)},bs=(n,e)=>{let t=h(n.message);if(t==null)return null;let r=Xe(t),s=hs(r),i=ys(r)??void 0;return s===null&&i===void 0?null:ae(n,e,oe(n.message),s??"",i)},et=(n,e,t)=>{let r=Ms(e,n,t);return r===null?null:ae(e,t,n,r.caption??"",r)},As=(n,e)=>et("image",n,e),Ps=(n,e)=>et("video",n,e),Cs=(n,e)=>et("audio",n,e),Es=(n,e)=>et("document",n,e),ks=(n,e)=>et("sticker",n,e),Tt=(n,e)=>{try{return za.jidNormalizedUser(n)===za.jidNormalizedUser(e)}catch{return n===e}},Ts=(n,e)=>{if(n.key==null)return null;let r=Ot(n),s=He(r).mentionedJids;if(s.length===0)return null;let i=vs(s,e);if(!(i.some(u=>Tt(u,e.selfJid))||e.selfLid!=null&&s.some(u=>Tt(u,e.selfLid)))||h(n.message)==null)return null;let c=Ze(n)??"",d=Qe(n,e),l=ae(n,e,oe(n.message),c,d);return l===null?null:{...l,mentionedJids:i,selfJid:e.selfJid}},Is=(n,e)=>{let t=n.key;if(t==null)return null;let r=gs(t);if(r.length===0||!ve(r))return null;let{mentionAll:s}=He(Ot(n));if(!s||h(n.message)==null)return null;let o=Ze(n)??"",a=Qe(n,e),c=ae(n,e,oe(n.message),o,a);return c===null?null:{...c,isMentionAll:true,selfJid:e.selfJid}};var ce=(n,e)=>{let t=Me(n);return t===null?e:t},Aa=n=>{if(!n)return "";if(typeof n.conversation=="string")return n.conversation;let e=n.extendedTextMessage?.text;if(typeof e=="string")return e;let t=n.imageMessage?.caption;if(typeof t=="string")return t;let r=n.videoMessage?.caption;if(typeof r=="string")return r;let s=n.documentMessage?.caption;if(typeof s=="string")return s;let o=(n.botForwardedMessage?.message?.richResponseMessage??n.richResponseMessage)?.submessages;if(Array.isArray(o)){let a=o.map(c=>c?.messageText).filter(c=>typeof c=="string"&&c.length>0);if(a.length>0)return a.join(`
15
- `)}return ""},Pa=n=>Array.isArray(n)?n.map(e=>Buffer.from(e).toString("hex")):[],xs=(n,e)=>{let t=n?.reaction,r=t?.key;if(!r)return null;let s=K(n.key,e.pushName);if(s===null)return null;let i=t.text,o=typeof i=="string"&&i.length>0?i:null;return {key:r,emoji:o,sender:s,timestamp:ce(t.senderTimestampMs,0)}},Rs=(n,e)=>{let t=n?.update?.message?.protocolMessage;if(!t||t.type!==za.proto.Message.ProtocolMessage.Type.MESSAGE_EDIT)return null;let r=t.key;if(!r)return null;let s=K(n.key,e.pushName);return s===null?null:{key:r,newContent:Aa(t.editedMessage),editedAt:ce(n.update.messageTimestamp,0),sender:s}},_s=(n,e)=>{let t=n?.update?.message?.protocolMessage;if(!t||t.type!==za.proto.Message.ProtocolMessage.Type.REVOKE)return null;let r=t.key;if(!r)return null;let s=K(n.key,e.pushName);if(s===null)return null;let i=we(n.key.remoteJid),o=we(e.selfJid);return {key:r,deletedFor:i!==null&&o!==null&&i===o?"me":"everyone",sender:s,timestamp:ce(n.update.messageTimestamp,0)}},Ls=(n,e)=>{let t=n?.update?.pollUpdates?.[0],r=n?.update?.message?.pollUpdateMessage,s=K(n?.key,e.pushName);if(s===null)return null;if(t){let i=t.pollUpdateMessageKey;return i?{pollKey:i,selectedOptions:Pa(t.vote?.selectedOptions),voter:s,timestamp:ce(t.senderTimestampMs,ce(n.update.messageTimestamp,0))}:null}if(r){let i=r.pollCreationMessageKey;return i?{pollKey:i,selectedOptions:[],voter:s,timestamp:ce(r.senderTimestampMs,ce(n.update.messageTimestamp,0))}:null}return null};var xt=n=>Array.isArray(n)?n:[],Ca=3e3,Ea=(n,e)=>new Promise(t=>{let r=setTimeout(()=>t(null),e);n.then(s=>{clearTimeout(r),t(s);},()=>{clearTimeout(r),t(null);});}),ka=n=>{if(n==null||typeof n!="object")return null;let e=n.reachoutTimeLock;return e==null||typeof e!="object"?null:e};function Cn(n,e,t){let r=[],s=new Map,i=t.groupMetadata!=null?y=>{let p=s.get(y);if(p!==void 0)return p;let m=t.groupMetadata;if(m==null)return Promise.resolve(null);let b=m(y).then(E=>E?.subject??null).catch(()=>null);return s.set(y,b),b}:void 0,o={selfJid:t.selfJid,...t.selfLid!=null?{selfLid:t.selfLid}:{},...t.selfName!=null?{selfName:t.selfName}:{},receiverId:t.receiverId??t.selfJid,...t.logger!=null?{logger:t.logger}:{},...t.channelId!=null?{channelId:t.channelId}:{},...t.prefixes!=null?{prefixes:t.prefixes}:{},...t.citationConfig!=null?{citationConfig:t.citationConfig}:{},...i!=null?{resolveRoomName:i}:{},...t.receiverName!=null?{resolveReceiverName:t.receiverName}:{},...t.resolveQuoted!=null?{resolveQuoted:t.resolveQuoted}:{},...t.sendReply!=null?{reply:t.sendReply}:{},...t.react!=null?{react:t.react}:{}},a=t.logger?{selfJid:t.selfJid,logger:t.logger}:{selfJid:t.selfJid},c={selfJid:t.selfJid},d=(y,p)=>{let m=(...b)=>{try{p(b[0]);}catch(E){t.logger?.warn(E,`inbound pipeline: handler for ${y} threw`);}};e.ev.on(y,m),r.push(()=>e.ev.off(y,m));},l=(y,p)=>{v(()=>Ss(y,p),m=>n.emit("message",m)),v(()=>bs(y,p),m=>n.emit("text",m)),v(()=>As(y,p),m=>n.emit("image",m)),v(()=>Ps(y,p),m=>n.emit("video",m)),v(()=>Cs(y,p),m=>n.emit("audio",m)),v(()=>Es(y,p),m=>n.emit("document",m)),v(()=>ks(y,p),m=>n.emit("sticker",m)),v(()=>Ts(y,p),m=>n.emit("mention",m)),v(()=>Is(y,p),m=>n.emit("mention-all",m)),v(()=>ns(y,a),m=>n.emit("button-click",m)),v(()=>rs(y,a),m=>n.emit("list-select",m));},u=y=>{if(typeof y!="string"||y.length===0)return null;let p;try{p=za.jidNormalizedUser(y);}catch{p=y;}return Ct(p)?p:null},w=y=>{let p=new Set;for(let m of [y.key?.participant,y.key?.remoteJid,t.selfJid,...ws(y)]){let b=u(m);b!=null&&p.add(b);}return [...p]},M=async y=>{let p=t.resolveLidToPn;if(p==null||y.length===0)return;let m=new Map;return await Promise.all(y.map(async b=>{try{let E=await Ea(Promise.resolve(p(b)),Ca);if(E!=null&&E.length>0)try{m.set(b,za.jidNormalizedUser(E));}catch{m.set(b,E);}}catch(E){t.logger?.warn(E,"inbound pipeline: lid->pn resolve threw");}})),m.size>0?m:void 0},v=(y,p)=>{let m;try{m=y();}catch(b){t.logger?.warn(b,"inbound pipeline: decoder threw");return}m!=null&&p(m);};d("messages.upsert",y=>{let p=jr(y);for(let m of p.messages){if(t.ignoreMe===!0&&m.key?.fromMe===!0)continue;let b=t.resolveLidToPn!=null?w(m):[];if(b.length===0){l(m,o);continue}M(b).then(E=>l(m,E!=null?{...o,lidMap:E}:o)).catch(E=>{t.logger?.warn(E,"inbound pipeline: deferred lid resolve emit failed"),l(m,o);});}}),d("messages.update",y=>{for(let p of xt(y))v(()=>Rs(p,c),m=>n.emit("edit",m)),v(()=>_s(p,c),m=>n.emit("delete",m)),v(()=>Ls(p,c),m=>n.emit("poll-vote",m));}),d("messages.reaction",y=>{for(let p of xt(y))v(()=>xs(p,c),m=>n.emit("reaction",m));}),d("groups.update",y=>{for(let p of xt(y))v(()=>Gr(p),m=>n.emit("group-update",m));}),d("group-participants.update",y=>{let p=y;v(()=>Hr(p),m=>n.emit("group-join",m)),v(()=>zr(p),m=>n.emit("group-leave",m));}),d("group.member-tag.update",y=>{v(()=>Vr(y),p=>n.emit("member-tag",p));}),d("call",y=>{for(let p of xt(y))v(()=>Kr(p),m=>n.emit("call-incoming",m)),v(()=>$r(p),m=>n.emit("call-ended",m));}),d("messaging-history.status",y=>{v(()=>ss(y),p=>n.emit("history-sync",p));}),d("presence.update",y=>{let p=(()=>{try{return is(y)}catch(m){return t.logger?.warn(m,"inbound pipeline: decodePresence threw"),[]}})();for(let m of p)n.emit("presence",m);}),d("connection.update",y=>{let p=ka(y);p!==null&&v(()=>bn({source:"connection-update",reachoutTimeLock:p}),m=>n.emit("limited",m));}),d("message-capping.update",y=>{v(()=>bn({source:"message-capping",capInfo:y}),p=>n.emit("limited",p));}),d("newsletter.reaction",y=>{v(()=>ze({source:"reaction",payload:y}),p=>n.emit("newsletter",p));}),d("newsletter.view",y=>{v(()=>ze({source:"view",payload:y}),p=>n.emit("newsletter",p));}),d("newsletter-participants.update",y=>{v(()=>ze({source:"participants",payload:y}),p=>n.emit("newsletter",p));}),d("newsletter-settings.update",y=>{v(()=>ze({source:"settings",payload:y}),p=>n.emit("newsletter",p));});let C=false;return {detach(){if(!C){C=true;for(let y of r)y();r.length=0;}}}}var Rt=class{inner=new events.EventEmitter;emitterLogger;constructor(e){this.emitterLogger=e?.logger,this.inner.setMaxListeners(0);}on(e,t){let r=this.wrap(e,t);this.tag(t,e,r),this.inner.on(e,r);let s=false;return ()=>{s||(s=true,this.inner.off(e,r),this.untag(t,e));}}off(e,t){let r=this.lookup(t,e);r&&(this.inner.off(e,r),this.untag(t,e));}emit(e,t){let r=this.inner.listeners(e).slice();for(let s of r)try{s(t);}catch(i){this.emitterLogger?.error(i,"listener threw");}}removeAllListeners(e){e===void 0?this.inner.removeAllListeners():this.inner.removeAllListeners(e);}listenerCount(e){return this.inner.listenerCount(e)}wrap(e,t){return r=>{try{t(r);}catch(s){this.emitterLogger?.error(s,"listener threw");}}}tag(e,t,r){this.tagMap(e).set(t,r);}untag(e,t){this.tagMap(e).delete(t);}lookup(e,t){return this.tagMap(e).get(t)}tagMap(e){let t=Ia,r=e,s=r[t];return s||(s=new Map,r[t]=s),s}},Ia=Symbol("zaileys.typed-ee.tag");var tt=class extends Error{code="UNSUPPORTED_ON_CLOUD";feature;constructor(e){super(`${e} is not supported by the official WhatsApp Cloud API \u2014 it only exists on the web (baileys) provider`),this.name="ZaileysProviderError",this.feature=e;}},A=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysCloudError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};function En(n){if(!n||typeof n.accessToken!="string"||n.accessToken.length===0)throw new A("CONFIG","provider 'cloud' requires cloud.accessToken");if(typeof n.phoneNumberId!="string"||n.phoneNumberId.length===0)throw new A("CONFIG","provider 'cloud' requires cloud.phoneNumberId");return n}var _t="v23.0",kn="https://graph.facebook.com",Ds=3,Oa=500,xa=n=>new Promise(e=>setTimeout(e,n));function Lt(n,e){let t=n.baseUrl??kn,r=n.apiVersion??_t,s=xa,i=a=>`${t}/${r}/${a}`,o=async(a,c)=>{let d;for(let l=1;l<=Ds;l++){let u;try{u=await fetch(i(a),{...c,headers:{Authorization:`Bearer ${n.accessToken}`,...c.headers}});}catch(p){throw new A("REQUEST_FAILED","graph request failed (network)",{cause:p})}if(u.ok)return await u.json().catch(()=>({}));let w=await u.json().catch(()=>({})),M=w.error?.message??`http ${u.status}`,v=w.error?` (code ${w.error.code??"?"}${w.error.error_subcode?`/${w.error.error_subcode}`:""})`:"";if(u.status===401||u.status===403)throw new A("AUTH",`graph auth rejected: ${M}${v}`);let C=u.status===429||u.status>=500,y=u.status===429?"RATE_LIMITED":"REQUEST_FAILED";if(d=new A(y,`graph request failed: ${M}${v}`),!C)throw d;l<Ds&&await s(Oa*2**(l-1));}throw d??new A("REQUEST_FAILED","graph request failed")};return {url:i,get:a=>o(a,{method:"GET"}),post:(a,c)=>o(a,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)}),postForm:(a,c)=>o(a,{method:"POST",body:c}),delete:(a,c)=>o(a,{method:"DELETE",...c!==void 0?{headers:{"Content-Type":"application/json"},body:JSON.stringify(c)}:{}})}}var Bs=n=>n.split("@")[0]??n,de=n=>n.includes("@")?n:`${n}@s.whatsapp.net`,G=(n,e,t)=>{let r={messaging_product:"whatsapp",recipient_type:"individual",to:Bs(n),type:e},s=t?.quoted?.key?.id;return s&&(r.context={message_id:s}),r};function Ws(n,e,t){let r=e;if(typeof r.text=="string")return {...G(n,"text",t),text:{body:r.text}};let s=r.react;if(s&&typeof s=="object"&&typeof s.key?.id=="string")return {...G(n,"reaction",t),reaction:{message_id:s.key.id,emoji:s.text??""}};let i=r.location;if(i&&typeof i.degreesLatitude=="number"&&typeof i.degreesLongitude=="number")return {...G(n,"location",t),location:{latitude:i.degreesLatitude,longitude:i.degreesLongitude,...i.name!==void 0?{name:i.name}:{},...i.address!==void 0?{address:i.address}:{}}};let o=r.contacts;if(o?.contacts&&Array.isArray(o.contacts)){let a=o.contacts.map(c=>typeof c.vcard=="string"?Ra(c.vcard):null).filter(c=>c!==null);if(a.length>0)return {...G(n,"contacts",t),contacts:a}}return null}function Ra(n){let e=n.split(/\r?\n/),t="",r="",s="",i=[];for(let a of e){if(a.startsWith("FN:")&&(t=a.slice(3).trim()),a.startsWith("N:")){let c=a.slice(2).split(";");s=(c[0]??"").trim(),r=(c[1]??"").trim();}if(a.startsWith("TEL")){let c=a.indexOf(":");if(c>0){let d=a.slice(c+1).trim(),l=/waid=([0-9]+)/.exec(a);d.length>0&&i.push({phone:d,...l?.[1]?{wa_id:l[1]}:{}});}}}if(t.length===0&&i.length===0)return null;let o=t||i[0]?.phone||"Contact";if(r.length===0&&s.length===0){let a=o.split(/\s+/);r=a[0]??o,a.length>1&&(s=a.slice(1).join(" "));}return {name:{formatted_name:o,first_name:r||o,...s?{last_name:s}:{}},...i.length>0?{phones:i}:{}}}function nt(n,e,t,r){let s=t,i=typeof s.text=="string"?{conversation:s.text}:{};return {key:{id:n,remoteJid:de(Bs(e)),fromMe:true},message:i,messageTimestamp:Math.floor(r/1e3)}}var _a=["image","video","audio","document","sticker"];function Fs(n){let e=n;for(let t of _a){let r=e[t];if(Buffer.isBuffer(r))return {kind:t,buffer:r,...typeof e.caption=="string"?{caption:e.caption}:{},...typeof e.fileName=="string"?{fileName:e.fileName}:{},...typeof e.mimetype=="string"?{mimetype:e.mimetype}:{}}}return null}async function Us(n,e,t){let r=t.mimetype??await me(t.buffer),s=new FormData;s.set("messaging_product","whatsapp"),s.set("type",r),s.set("file",new Blob([new Uint8Array(t.buffer)],{type:r}),t.fileName??"file");let i=await n.postForm(`${e}/media`,s);if(!i.id)throw new A("REQUEST_FAILED","media upload returned no id");return i.id}function js(n,e){return {id:e,...n.caption!==void 0&&n.kind!=="audio"&&n.kind!=="sticker"?{caption:n.caption}:{},...n.kind==="document"&&n.fileName!==void 0?{filename:n.fileName}:{}}}var La=["image","video","audio","document","sticker"],Na=n=>{let e=n.event,t=n.message_template_name;return typeof e!="string"||typeof t!="string"?null:{event:e,id:String(n.message_template_id??""),name:t,...typeof n.message_template_language=="string"?{language:n.message_template_language}:{},...typeof n.reason=="string"?{reason:n.reason}:{}}},Nt=(n,e)=>n.contacts?.find(t=>t.wa_id===e)?.profile?.name??n.contacts?.[0]?.profile?.name,Da=n=>{for(let e of La){let t=n[e];if(n.type===e&&t&&typeof t=="object"){let r=t;return {[`${e}Message`]:{...r.mime_type?{mimetype:r.mime_type}:{},...r.caption?{caption:r.caption}:{},...r.filename?{fileName:r.filename}:{},...r.voice===true?{ptt:true}:{},...r.id?{cloudMediaId:r.id}:{}}}}}return null},Ba=n=>{let e=n.interactive;return n.type!=="interactive"||!e?null:e.type==="button_reply"&&e.button_reply?.id?{buttonsResponseMessage:{selectedButtonId:e.button_reply.id,selectedDisplayText:e.button_reply.title??""}}:e.type==="list_reply"&&e.list_reply?.id?{listResponseMessage:{singleSelectReply:{selectedRowId:e.list_reply.id},title:e.list_reply.title??""}}:null},Wa=n=>{let e=n.location;return n.type!=="location"||typeof e?.latitude!="number"||typeof e.longitude!="number"?null:{locationMessage:{degreesLatitude:e.latitude,degreesLongitude:e.longitude,...e.name?{name:e.name}:{},...e.address?{address:e.address}:{}}}},Fa=n=>{let e=n.contacts;if(n.type!=="contacts"||!Array.isArray(e)||e.length===0)return null;let t=e.map(s=>{let i=s.name?.formatted_name??"",o=(s.phones??[]).filter(a=>typeof a.phone=="string").map(a=>`TEL${a.wa_id?`;waid=${a.wa_id}`:""}:${a.phone}`).join(`
10
+ `:""}${n.body}`};return n.footer!==void 0&&(t.footer=n.footer),mt(n.buttons,t)};var ht=n=>{if(typeof n!="string"||n.trim().length===0)throw new g("EMPTY_CONTENT","text() requires a non-empty string");return {text:n}};var Sr=(n,e,t)=>({recipient:n,...e?{resolveRecipient:e}:{},...t?{recordSent:t}:{}});var Ki=[{tag:"biz",attrs:{},content:[{tag:"interactive",attrs:{type:"native_flow",v:"1"},content:[{tag:"native_flow",attrs:{v:"9",name:"mixed"}}]}]}],z=class n{socket;internal;constructor(e,t){this.socket=e,this.internal=t;}static create(e,t,r,s){return new n(e,Sr(t,r,s))}to(e){return this.internal.recipient=e,delete this.internal.resolveRecipient,this}text(e,t){return t?.rich===true?this.internal.content=er(ir(e),t):this.internal.content=ht(e),this}image(e,t){return this.internal.pendingContent=ge(e,t),this}videoNote(e,t){return this.internal.pendingContent=te(e,{...t,ptv:true}),this}video(e,t){return this.internal.pendingContent=te(e,t),this}audio(e,t){return this.internal.pendingContent=Yn(e,t),this}document(e,t){return this.internal.pendingContent=ar(e,t),this}sticker(e,t){return this.internal.pendingContent=wr(e,t),this}buttons(e,t){return this.internal.content=mt(e,t),this}carousel(e,t){return this.internal.content=Xn(e,t),this}list(e){return this.internal.content=pr(e),this}poll(e,t,r){return this.internal.content=hr(e,t,r),this}location(e,t,r){return this.internal.content=mr(e,t,r),this}contact(e){return this.internal.content=or(e),this}template(e){return this.internal.content=Mr(e),this}event(e){return this.internal.content=dr(e),this}groupInvite(e){return this.internal.content=lr(e),this}product(e){return this.internal.pendingContent=yr(e),this}requestPhoneNumber(){return this.internal.content={requestPhoneNumber:{}},this}sharePhoneNumber(){return this.internal.content={sharePhoneNumber:{}},this}limitSharing(e=true){return this.internal.content={limitSharing:e},this}album(e){return this.internal.albumItems=e,this}reply(e){if(e==null)throw new g("INVALID_OPTIONS","reply() requires a quoted message or key");let t="key"in e&&e.key!=null;return this.internal.quoted=t?e:{key:e},this}mentions(e){if(e.length===0)throw new g("INVALID_OPTIONS","mentions() requires at least one jid");for(let r of e)if(typeof r!="string"||!r.includes("@"))throw new g("INVALID_OPTIONS",`invalid jid: ${String(r)}`);let t=new Set([...this.internal.mentions??[],...e]);return this.internal.mentions=[...t],this}mentionAll(){return this.internal.mentionAll=true,this}disappearing(e){if(!Number.isInteger(e)||e<=0)throw new g("INVALID_OPTIONS","disappearing() requires a positive integer duration");return this.internal.disappearingSeconds=e,this}then(e,t){return (async()=>{if(this.internal.resolveRecipient&&(this.internal.recipient=await this.internal.resolveRecipient(this.internal.recipient),delete this.internal.resolveRecipient),this.internal.albumItems){let d={recipient:this.internal.recipient};return this.internal.quoted!==void 0&&(d.quoted=this.internal.quoted),this.internal.mentions!==void 0&&(d.mentions=this.internal.mentions),this.internal.mentionAll!==void 0&&(d.mentionAll=this.internal.mentionAll),this.internal.disappearingSeconds!==void 0&&(d.disappearingSeconds=this.internal.disappearingSeconds),Gn(this.socket,this.internal.recipient,this.internal.albumItems,d)}if(this.internal.pendingContent&&(this.internal.content=await this.internal.pendingContent),!this.internal.content)throw new g("EMPTY_CONTENT","no content set");let s=this.internal.content,i=s[N];if(i!==void 0){let d=s[nn],l=s[sn];return this.sendRelay(i,d,l)}let o=this.internal.content;this.internal.mentions&&this.internal.mentions.length>0&&(o.mentions=this.internal.mentions),this.internal.mentionAll&&(o.mentionAll=true);let a={};this.internal.quoted&&(a.quoted=this.internal.quoted),this.internal.disappearingSeconds!==void 0&&(a.ephemeralExpiration=this.internal.disappearingSeconds);let c;try{c=await this.socket.sendMessage(this.internal.recipient,o,a);}catch(d){throw new g("SEND_FAILED","socket sendMessage rejected",{cause:d})}if(!c?.key)throw new g("SEND_FAILED","socket returned no message key");return c.key})().then(e,t)}async uploadHeaderMedia(e,t){let{buffer:r}=await x(t.src),s=await Ya.prepareWAMessageMedia({[t.kind]:r},{upload:this.socket.waUploadToServer});e.hasMediaAttachment=true,t.kind==="image"&&s.imageMessage&&(e.imageMessage=s.imageMessage),t.kind==="video"&&s.videoMessage&&(e.videoMessage=s.videoMessage);}async sendRelay(e,t,r){let s=this.socket.relayMessage;if(typeof s!="function")throw new g("SEND_FAILED","socket does not support relayMessage (interactive content)");if(this.socket.waUploadToServer!==void 0)try{let u=e.interactiveMessage?.header;t!==void 0&&u&&await this.uploadHeaderMedia(u,t);let w=e.interactiveMessage?.carouselMessage?.cards;if(r!==void 0&&w)for(let M of r){let v=w[M.index]?.header;v&&await this.uploadHeaderMedia(v,M);}}catch(u){throw new g("SEND_FAILED","interactive media upload failed",{cause:u})}let o={userJid:this.socket.user?.id??""},a=this.internal.quoted;a!==void 0&&a.message!=null&&(o.quoted=a);let c=Ya.generateWAMessageFromContent(this.internal.recipient,e,o);if(typeof c.key?.id!="string")throw new g("SEND_FAILED","failed to generate relay message key");let l="interactiveMessage"in e&&e.interactiveMessage!=null?{messageId:c.key.id,additionalNodes:Ki}:{messageId:c.key.id};try{await s(this.internal.recipient,c.message,l);}catch(u){throw new g("SEND_FAILED","socket relayMessage rejected",{cause:u})}return this.internal.recordSent?.(c),c.key}};var ke=class{socket;key;content;pendingContent;constructor(e,t){this.socket=e,this.key=t;}text(e){return this.content=ht(e),this}image(e,t){return this.pendingContent=ge(e,t),this}video(e,t){return this.pendingContent=te(e,t),this}then(e,t){return this.send().then(e,t)}async send(){let e=this.key.remoteJid;if(typeof e!="string"||e.length===0)throw new g("INVALID_OPTIONS","message key is missing remoteJid");if(this.pendingContent&&(this.content=await this.pendingContent),!this.content)throw new g("EMPTY_CONTENT","edit() requires a content method before await");let t={...this.content,edit:this.key},r;try{r=await this.socket.sendMessage(e,t);}catch(s){throw new g("SEND_FAILED","socket sendMessage rejected",{cause:s})}if(!r?.key)throw new g("SEND_FAILED","socket returned no message key");return r.key}};var an=n=>{let e=n.remoteJid;if(typeof e!="string"||e.length===0)throw new g("INVALID_OPTIONS","message key is missing remoteJid");return e},cn=n=>{if(!n?.key)throw new g("SEND_FAILED","socket returned no message key");return n.key},dn=async(n,e,t={})=>{let r=an(e);if(t.forEveryone??true){await n.sendMessage(r,{delete:e});return}if(typeof n.chatModify!="function")throw new g("INVALID_OPTIONS","delete-for-me is not supported by this socket");await n.chatModify({deleteForMe:{deleteMedia:false,key:e,timestamp:Date.now()}},r);},ln=async(n,e,t)=>{let r=an(e),s=await n.sendMessage(r,{react:{text:t,key:e}});return cn(s)},un=async(n,e,t,r)=>{let s=await e.getMessage(t);if(!s)throw new g("MESSAGE_NOT_FOUND","message not found in store for forward");let i=await n.sendMessage(r,{forward:s});return cn(i)},yt=async(n,e,t,r={})=>{let s=an(e),i={pin:e,type:t?1:2,time:r.duration??86400},o=await n.sendMessage(s,i);return cn(o)};var $i=/@(s\.whatsapp\.net|g\.us|lid|newsletter|broadcast|c\.us)$/,Te=n=>$i.test(n),pn=async(n,e,t,r=Ji)=>{if(Te(e))return e;let s=t.get(e);if(s!==void 0)return s;let i=r.get(e);if(i!==void 0)return i;let o=(async()=>{let c=(await n.onWhatsApp(e))?.find(d=>d.exists&&d.jid);if(!c)throw new g("USERNAME_NOT_FOUND",`username "${e}" not found`);return t.set(e,c.jid),c.jid})();r.set(e,o);try{return await o}finally{r.delete(e);}},Ji=new Map;var T=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysDomainError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var Ie=class{constructor(e,t){this.getSocket=e;this.guard=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}mapParticipants(e){return e.map(t=>({jid:t.jid,status:t.status}))}run(e,t){return this.guard?this.guard.run(e,t):t()}async create(e,t){return this.run("group.create",()=>this.requireSocket().groupCreate(e,t))}async addMember(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"add"));return this.mapParticipants(r)}async removeMember(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"remove"));return this.mapParticipants(r)}async promote(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"promote"));return this.mapParticipants(r)}async demote(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupParticipantsUpdate(e,t,"demote"));return this.mapParticipants(r)}async updateSubject(e,t){await this.requireSocket().groupUpdateSubject(e,t);}async updateDescription(e,t){await this.requireSocket().groupUpdateDescription(e,t);}async leave(e){await this.requireSocket().groupLeave(e);}async metadata(e){return this.requireSocket().groupMetadata(e)}async tagMember(e,t,r){await this.requireSocket().updateMemberLabel(e,r);}async inviteCode(e){let t=await this.requireSocket().groupInviteCode(e);if(!t)throw new T("OPERATION_FAILED","invite code unavailable");return t}async revokeInvite(e){let t=await this.requireSocket().groupRevokeInvite(e);if(!t)throw new T("OPERATION_FAILED","invite code unavailable");return t}async acceptInvite(e){let t=await this.run("group.join",()=>this.requireSocket().groupAcceptInvite(e));if(!t)throw new T("OPERATION_FAILED","invite acceptance failed");return t}async toggleEphemeral(e,t){await this.requireSocket().groupToggleEphemeral(e,t);}async setting(e,t){await this.requireSocket().groupSettingUpdate(e,t);}async list(){let e=await this.requireSocket().groupFetchAllParticipating();return Object.values(e)}async inviteInfo(e){return this.requireSocket().groupGetInviteInfo(e)}async joinRequests(e){return this.requireSocket().groupRequestParticipantsList(e)}async approveJoin(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupRequestParticipantsUpdate(e,t,"approve"));return this.mapParticipants(r)}async rejectJoin(e,t){let r=await this.run("group.participants",()=>this.requireSocket().groupRequestParticipantsUpdate(e,t,"reject"));return this.mapParticipants(r)}async joinApproval(e,t){await this.requireSocket().groupJoinApprovalMode(e,t?"on":"off");}async memberAddMode(e,t){await this.requireSocket().groupMemberAddMode(e,t?"admin_add":"all_member_add");}};var Oe=class{constructor(e){this.getSocket=e;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async set(e){let t=this.requireSocket();if(e.lastSeen!==void 0&&await t.updateLastSeenPrivacy(e.lastSeen),e.online!==void 0&&await t.updateOnlinePrivacy(e.online),e.profile!==void 0&&await t.updateProfilePicturePrivacy(e.profile),e.status!==void 0&&await t.updateStatusPrivacy(e.status),e.readReceipts!==void 0){let r=typeof e.readReceipts=="boolean"?e.readReceipts?"all":"none":e.readReceipts;await t.updateReadReceiptsPrivacy(r);}e.groupAdd!==void 0&&await t.updateGroupsAddPrivacy(e.groupAdd);}async get(){return this.requireSocket().fetchPrivacySettings()}async block(e){await this.requireSocket().updateBlockStatus(e,"block");}async unblock(e){await this.requireSocket().updateBlockStatus(e,"unblock");}async blocklist(){return this.requireSocket().fetchBlocklist()}async disappearingMode(e){await this.requireSocket().updateDefaultDisappearingMode(e);}};var xe=class{constructor(e,t){this.getSocket=e;this.guard=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}run(e,t){return this.guard?this.guard.run(e,t):t()}async create(e,t){return this.run("newsletter.create",async()=>{let r=this.requireSocket(),s=await r.newsletterCreate(e,t?.description);return t?.picture&&await r.newsletterUpdatePicture(s.id,t.picture),s})}async follow(e){await this.run("newsletter.follow",()=>this.requireSocket().newsletterFollow(e));}async unfollow(e){await this.run("newsletter.follow",()=>this.requireSocket().newsletterUnfollow(e));}async metadata(e){let r=await this.requireSocket().newsletterMetadata("jid",e);if(!r)throw new T("NEWSLETTER_NOT_FOUND",`newsletter ${e} not found`);return r}async updateName(e,t){await this.requireSocket().newsletterUpdateName(e,t);}async updateDescription(e,t){await this.requireSocket().newsletterUpdateDescription(e,t);}async updatePicture(e,t){await this.requireSocket().newsletterUpdatePicture(e,t);}async mute(e){await this.requireSocket().newsletterMute(e);}async unmute(e){await this.requireSocket().newsletterUnmute(e);}async delete(e){await this.requireSocket().newsletterDelete(e);}async removePicture(e){await this.requireSocket().newsletterRemovePicture(e);}async react(e,t,r){await this.requireSocket().newsletterReactMessage(e,t,r);}async unreact(e,t){await this.requireSocket().newsletterReactMessage(e,t);}async subscribers(e){return this.requireSocket().newsletterSubscribers(e)}async messages(e,t=50,r){return this.requireSocket().newsletterFetchMessages(e,t,r?.since,r?.after)}async adminCount(e){return this.requireSocket().newsletterAdminCount(e)}async changeOwner(e,t){await this.requireSocket().newsletterChangeOwner(e,t);}async demote(e,t){await this.requireSocket().newsletterDemote(e,t);}};var Re=class{constructor(e,t){this.getSocket=e;this.guard=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}run(e,t){return this.guard?this.guard.run(e,t):t()}async create(e,t){return this.run("community.create",()=>this.requireSocket().communityCreate(e,t))}async createGroup(e,t,r){return this.run("community.create",()=>this.requireSocket().communityCreateGroup(e,t,r))}async linkGroup(e,t){await this.requireSocket().communityLinkGroup(t,e);}async unlinkGroup(e,t){await this.requireSocket().communityUnlinkGroup(t,e);}async subGroups(e){return (await this.requireSocket().communityFetchLinkedGroups(e)).linkedGroups}async leave(e){await this.requireSocket().communityLeave(e);}async updateSubject(e,t){await this.requireSocket().communityUpdateSubject(e,t);}async updateDescription(e,t){await this.requireSocket().communityUpdateDescription(e,t);}async inviteCode(e){return this.requireSocket().communityInviteCode(e)}async revokeInvite(e){return this.requireSocket().communityRevokeInvite(e)}async acceptInvite(e){return this.run("community.join",()=>this.requireSocket().communityAcceptInvite(e))}async metadata(e){return this.requireSocket().communityMetadata(e)}async list(){return Object.values(await this.requireSocket().communityFetchAllParticipating())}async inviteInfo(e){return this.requireSocket().communityGetInviteInfo(e)}async toggleEphemeral(e,t){await this.requireSocket().communityToggleEphemeral(e,t);}async setting(e,t){await this.requireSocket().communitySettingUpdate(e,t);}async memberAddMode(e,t){await this.requireSocket().communityMemberAddMode(e,t?"admin_add":"all_member_add");}async joinApproval(e,t){await this.requireSocket().communityJoinApprovalMode(e,t?"on":"off");}};var _e=class{constructor(e){this.getSocket=e;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async setName(e){await this.requireSocket().updateProfileName(e);}async setStatus(e){await this.requireSocket().updateProfileStatus(e);}async setPicture(e,t){await this.requireSocket().updateProfilePicture(e,t);}async removePicture(e){await this.requireSocket().removeProfilePicture(e);}async getPicture(e,t=false){return await this.requireSocket().profilePictureUrl(e,t?"image":"preview")??null}async getStatus(e){return this.requireSocket().fetchStatus(e)}};var Gi=n=>{if(typeof n.remoteJid!="string"||n.remoteJid.length===0)throw new T("OPERATION_FAILED","message key is missing remoteJid");return n.remoteJid},Le=class{constructor(e,t){this.getSocket=e;this.resolveLast=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async last(e){return await this.resolveLast?.(e)??[]}async archive(e){await this.requireSocket().chatModify({archive:true,lastMessages:await this.last(e)},e);}async unarchive(e){await this.requireSocket().chatModify({archive:false,lastMessages:await this.last(e)},e);}async pin(e){await this.requireSocket().chatModify({pin:true},e);}async unpin(e){await this.requireSocket().chatModify({pin:false},e);}async mute(e,t){await this.requireSocket().chatModify({mute:t??Date.now()+365*24*60*60*1e3},e);}async unmute(e){await this.requireSocket().chatModify({mute:null},e);}async markRead(e){let t=await this.last(e);t.length!==0&&await this.requireSocket().chatModify({markRead:true,lastMessages:t},e);}async markUnread(e){let t=await this.last(e);t.length!==0&&await this.requireSocket().chatModify({markRead:false,lastMessages:t},e);}async star(e,t=true){let r=Gi(e);await this.requireSocket().chatModify({star:{messages:[{id:e.id??"",fromMe:e.fromMe===true}],star:t}},r);}async unstar(e){await this.star(e,false);}async delete(e){await this.requireSocket().chatModify({delete:true,lastMessages:await this.last(e)},e);}async clear(e){await this.requireSocket().chatModify({clear:true,lastMessages:await this.last(e)},e);}};var Ne=class{constructor(e,t){this.getSocket=e;this.normalize=t;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async check(...e){return (await this.requireSocket().onWhatsApp(...e)??[]).map(r=>{let s={jid:r.jid,exists:r.exists};return r.lid!==void 0&&(s.lid=r.lid),s})}async exists(e){let[t]=await this.check(e);return t?.exists??false}async save(e,t){await this.requireSocket().addOrEditContact(this.normalize(e),t);}async remove(e){await this.requireSocket().removeContact(this.normalize(e));}};var De=class{constructor(e){this.getSocket=e;}requireSocket(){let e=this.getSocket();if(!e)throw new T("NOT_CONNECTED","client not connected");return e}async profile(e){return this.requireSocket().getBusinessProfile(e)}async catalog(e={}){return this.requireSocket().getCatalog(e)}async collections(e,t){return this.requireSocket().getCollections(e,t)}async orderDetails(e,t){return this.requireSocket().getOrderDetails(e,t)}async createProduct(e){return this.requireSocket().productCreate(e)}async updateProduct(e,t){return this.requireSocket().productUpdate(e,t)}async deleteProduct(...e){return this.requireSocket().productDelete(e)}};var R=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysCommandError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var Vi=n=>{let e=n[0];return e==="{"||e==="["},Hi=n=>{try{return {ok:!0,value:JSON.parse(n)}}catch{return {ok:false}}},zi=n=>n===" "||n===" "||n===`
11
+ `||n==="\r",Yi=n=>{let e=[],t="",r=null,s=false,i=false,o=true;for(let a=0;a<n.length;a+=1){let c=n[a];if(s){t+=c,s=false,i=true,o=false;continue}if(c==="\\"&&r!==null){s=true;continue}if(r!==null){c===r?r=null:t+=c,o=false;continue}if((c==='"'||c==="'")&&o){r=c,i=true,o=false;continue}if(zi(c)){i&&(e.push(t),t="",i=false),o=true;continue}t+=c,i=true,o=false;}return i&&e.push(t),e},Zi=(n,e)=>{for(let t of e)if(t.length>0&&n.startsWith(t))return t;return null},Qi=n=>({matched:false,args:[],flags:{},json:void 0,raw:n});function mn(n,e){let t=Zi(n,e);if(t===null)return Qi(n);let r=n.slice(t.length),s=Yi(r),i={matched:true,args:[],flags:{},json:void 0,raw:n};if(s.length===0)return i.name="",i;i.name=(s[0]??"").toLowerCase();let o=false;for(let a=1;a<s.length;a+=1){let c=s[a];if(c!==void 0){if(c.startsWith("--")){let d=c.slice(2);if(d.length===0){i.args.push(c);continue}let l=d.indexOf("=");if(l!==-1){let w=d.slice(0,l),M=d.slice(l+1);i.flags[w]=M;continue}let u=s[a+1];u!==void 0&&!u.startsWith("--")?(i.flags[d]=u,a+=1):i.flags[d]=true;continue}if(!o&&Vi(c)){let d=Hi(c);d.ok&&(i.json=d.value,o=true);}i.args.push(c);}}return i}var br=n=>{let e=n.trim().split(/\s+/).filter(t=>t.length>0).map(t=>t.toLowerCase());if(e.length===0)throw new R("INVALID_COMMAND_NAME","empty command segment in spec");return e},he=n=>n.join(" "),Be=class{paths=new Map;defs=[];maxDepth=1;register(e,t){if(e.trim().length===0)throw new R("INVALID_COMMAND_NAME","command spec must not be empty");let r=e.split("|").map(a=>br(a)),s=r[0],i=r.slice(1).map(a=>he(a)),o={name:he(s),aliases:i,parts:s,handler:t};for(let a of r){let c=he(a);if(this.paths.has(c))throw new R("DUPLICATE_COMMAND",`command "${c}" is already registered`)}for(let a of r)this.paths.set(he(a),o),a.length>this.maxDepth&&(this.maxDepth=a.length);this.defs.push(o);}resolve(e){if(!e.matched||e.name===void 0||e.name.length===0)return;let t=[e.name.toLowerCase(),...e.args.map(s=>s.toLowerCase())],r=Math.min(this.maxDepth,t.length);for(let s=r;s>=1;s-=1){let i=t.slice(0,s).join(" "),o=this.paths.get(i);if(o!==void 0)return {def:o,args:e.args.slice(s-1)}}}unregister(e){let t=e.split("|").map(o=>br(o)),r=he(t[0]),s=this.paths.get(r);if(s===void 0)return;for(let o of [s.parts,...s.aliases.map(a=>a.split(" "))])this.paths.delete(he(o));let i=this.defs.indexOf(s);i>=0&&this.defs.splice(i,1),this.maxDepth=this.defs.reduce((o,a)=>Math.max(o,a.parts.length),1);}list(){return [...this.defs]}};async function gn(n,e,t){let r=-1,s={error:void 0,thrown:false},i=async o=>{if(o<=r)throw new R("MIDDLEWARE_ERROR","next() called multiple times");if(r=o,o===n.length){try{await t();}catch(c){throw s.error=c,s.thrown=true,c}return}let a=n[o];try{await a(e,()=>i(o+1));}catch(c){throw s.thrown||c instanceof R?c:new R("MIDDLEWARE_ERROR","middleware threw during execution",{cause:c})}};await i(0);}function fn(n){if(n.prefixes.length===0)return {detach(){}};let e=s=>{let i=mn(s.text,n.prefixes);if(!i.matched)return;let o=n.registry.resolve(i);if(o===void 0)return;let a={command:o.def.name,args:o.args,flags:i.flags,json:i.json,raw:i.raw},c=n.buildContext(a,s);Promise.resolve(gn(n.middleware,c,()=>o.def.handler(c))).catch(d=>{let l=d instanceof R?d:new R("HANDLER_ERROR","command handler failed",{cause:d});n.logger.error(l,"command dispatch failed");});},t=n.onText(e),r=false;return {detach(){r||(r=true,t());}}}var Ar=n=>n;var We=class{host;logger;plugins=new Map;constructor(e){this.host=e.client,this.logger=e.logger??e.client.logger;}has(e){return this.plugins.has(e)}list(){return [...this.plugins.keys()]}async loadPlugin(e,t){if(typeof e?.name!="string"||typeof e?.setup!="function"){this.logger?.warn({file:t},"plugin: invalid shape (need name + setup); skipped");return}if(this.plugins.has(e.name)){this.logger?.warn({name:e.name,file:t},"plugin: duplicate name; skipped");return}let r=[],s={client:this.host,logger:this.logger,pluginDir:$e__default.default.dirname(t),command:(i,o)=>{this.host.command(i,o),r.push(()=>this.host.unregisterCommand(i));},use:i=>{this.host.use(i),r.push(()=>{this.host.unuse(i);});},on:(i,o)=>{let a=this.host.on(i,o);return r.push(a),a},once:(i,o)=>{let a=false,c=this.host.on(i,d=>{a||(a=true,c(),o(d));});return r.push(c),c}};try{let i=await e.setup(s);typeof i=="function"&&r.push(i);}catch(i){for(let o of [...r].reverse())try{await o();}catch{}this.logger?.error({err:i,name:e.name,file:t},"plugin: setup failed; skipped");return}this.plugins.set(e.name,{plugin:e,file:t,disposers:r});}async unload(e){let t=this.plugins.get(e);if(t){this.plugins.delete(e);for(let r of [...t.disposers].reverse())try{await r();}catch(s){this.logger?.warn({err:s,name:e},"plugin: disposer threw");}try{await t.plugin.onUnload?.();}catch(r){this.logger?.warn({err:r,name:e},"plugin: onUnload threw");}}}async unloadAll(){for(let e of this.list())await this.unload(e);}};var no=/\.(ts|js|mjs|cjs)$/,ro=/(\.d\.ts$|^_|[/\\]_)/;async function yn(n,e,t){let r;try{r=await fs$1.promises.readdir(n,{withFileTypes:!0});}catch{return []}let s=[];for(let i of r){let o=$e__default.default.join(n,i.name);t.test(i.name)||t.test(o)||(i.isDirectory()?s.push(...await yn(o,e,t)):e.test(i.name)&&s.push(o));}return s}async function Pr(n,e){try{let r=await import(url.pathToFileURL(n).href+(e!==void 0?`?t=${e}`:"")),s=r.default??r;return s&&typeof s.name=="string"&&typeof s.setup=="function"?s:void 0}catch{return}}var Fe=class{dir;pattern;ignore;watchEnabled;onError;registry;logger;watcher;fileToName=new Map;bust=0;debounce;pending=new Set;flushChain=Promise.resolve();constructor(e){this.registry=e.registry,this.logger=e.logger,this.dir=$e__default.default.resolve(e.options.dir??"./plugins"),this.pattern=e.options.pattern??no,this.ignore=e.options.ignore??ro,this.watchEnabled=e.options.watch!==false,this.onError=e.options.onError;}async start(){let e=await yn(this.dir,this.pattern,this.ignore);for(let t of e)await this.loadFile(t);this.watchEnabled&&this.startWatch();}async stop(){this.debounce&&clearTimeout(this.debounce),this.watcher?.close(),this.watcher=void 0,await this.flushChain,await this.registry.unloadAll(),this.fileToName.clear();}async loadFile(e){let t=await Pr(e,this.bust);if(!t){let i=new Error(`failed to import plugin: ${e}`);this.onError?.(i,e),this.logger?.warn({file:e},"plugin: import failed; skipped");return}let r=this.registry.list();await this.registry.loadPlugin(t,e);let s=this.registry.list().find(i=>!r.includes(i));s&&this.fileToName.set(e,s);}startWatch(){try{this.watcher=fs$1.watch(this.dir,{recursive:!0},(e,t)=>{if(t==null)return;let r=$e__default.default.join(this.dir,t.toString());this.ignore.test(t.toString())||!this.pattern.test(t.toString())||(this.pending.add(r),this.debounce&&clearTimeout(this.debounce),this.debounce=setTimeout(()=>{this.flushChain=this.flushChain.then(()=>this.flush());},150),this.debounce.unref?.());});}catch(e){this.logger?.warn({err:e,dir:this.dir},"plugin: watch unavailable; hot-reload disabled");}}async flush(){let e=[...this.pending];this.pending.clear(),this.bust+=1;for(let t of e){let r=this.fileToName.get(t);r&&(await this.registry.unload(r),this.fileToName.delete(t));let s=true;try{await fs$1.promises.access(t);}catch{s=false;}s&&await this.loadFile(t);}}};var O=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysAutomationError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var so=n=>n<=0?Promise.resolve():new Promise(e=>setTimeout(e,n)),ie=class{now;sleep;perJidRatePerMs;perJidCapacity;global;perJid=new Map;constructor(e,t={}){if(!(e.perSec>0))throw new O("RATE_LIMIT_INVALID","perSec must be greater than zero");if(e.perJidPerSec!==void 0&&!(e.perJidPerSec>0))throw new O("RATE_LIMIT_INVALID","perJidPerSec must be greater than zero");if(e.burst!==void 0&&!(e.burst>0))throw new O("RATE_LIMIT_INVALID","burst must be greater than zero");this.now=t.now??Date.now,this.sleep=t.sleep??so;let r=e.burst??e.perSec;this.global={tokens:r,capacity:r,ratePerMs:e.perSec/1e3,last:this.now()},e.perJidPerSec!==void 0&&(this.perJidRatePerMs=e.perJidPerSec/1e3,this.perJidCapacity=e.perJidPerSec);}async acquire(e){await this.consume(this.global),e!==void 0&&this.perJidRatePerMs!==void 0&&await this.consume(this.bucketFor(e));}bucketFor(e){let t=this.perJid.get(e);if(t)return t;let r=this.perJidCapacity??1,s={tokens:r,capacity:r,ratePerMs:this.perJidRatePerMs??1,last:this.now()};return this.perJid.set(e,s),s}consume(e){if(this.refill(e),e.tokens>=1)return e.tokens-=1,Promise.resolve();let t=(1-e.tokens)/e.ratePerMs;return e.tokens-=1,this.sleep(t)}refill(e){let t=this.now(),r=t-e.last;r>0&&(e.tokens=Math.min(e.capacity,e.tokens+r*e.ratePerMs),e.last=t);}};var io={"group.create":6e4,"group.join":3e4,"group.participants":1e4,"group.update":3e3,"community.create":12e4,"community.join":3e4,"community.update":3e3,"newsletter.create":12e4,"newsletter.follow":2e3,"newsletter.update":3e3},oo=n=>n<=0?Promise.resolve():new Promise(e=>setTimeout(e,n));function wn(n={},e={}){let t=n.enabled??true,r=e.now??Date.now,s=e.sleep??oo,i={...io,...n.intervalsMs??{}},o=new Map,a=new Map,c=async(d,l)=>{let u=i[d]??0,w=o.get(d);if(w!==void 0&&u>0){let M=u-(r()-w);M>0&&await s(M);}return o.set(d,r()),l()};return {run(d,l){if(!t)return l();let w=(a.get(d)??Promise.resolve()).then(()=>c(d,l),()=>c(d,l));return a.set(d,w.then(()=>{},()=>{})),w}}}var ao={maxRetries:0,backoffMs:()=>0},co=n=>n<=0?Promise.resolve():new Promise(e=>setTimeout(e,n)),Ue=class{concurrency;retry;sleep;pending=[];active=0;idleWaiters=[];constructor(e={},t={}){this.concurrency=e.concurrency??1,this.retry=e.retry??ao,this.sleep=t.sleep??co;}add(e){return new Promise((t,r)=>{this.pending.push({run:()=>this.execute(e).then(t,r)}),this.pump();})}onIdle(){return this.active===0&&this.pending.length===0?Promise.resolve():new Promise(e=>{this.idleWaiters.push(e);})}pump(){for(;this.active<this.concurrency&&this.pending.length>0;){let e=this.pending.shift();if(!e)break;this.active++,e.run().finally(()=>{this.active--,this.pump(),this.settleIdle();});}}settleIdle(){if(this.active===0&&this.pending.length===0&&this.idleWaiters.length>0){let e=this.idleWaiters;this.idleWaiters=[];for(let t of e)t();}}async execute(e){let t=0;for(;;)try{return await e()}catch(r){if(t>=this.retry.maxRetries)throw r;t+=1,await this.sleep(this.retry.backoffMs(t));}}};var lo=n=>n instanceof Error?n:new Error(typeof n=="string"?n:String(n));async function vn(n,e,t,r={}){let s={sent:[],failed:[]};if(n.length===0)return s;let i=r.rateLimitPerSec??5,o={};t.now&&(o.now=t.now),t.sleep&&(o.sleep=t.sleep);let a=t.limiter??new ie({perSec:i},o),c=r.retry,d=t.sleep?{sleep:t.sleep}:{},l=c?new Ue({concurrency:1,retry:c},d):void 0,u=n.length,w=0;for(let M of n){await a.acquire(M);let v=()=>e(t.sendTo(M)).then(()=>{});try{l?await l.add(v):await v(),s.sent.push(M),w+=1,r.onProgress?.(w,u,M,!0);}catch(P){s.failed.push({jid:M,error:lo(P)}),w+=1,r.onProgress?.(w,u,M,false);}}return s}var uo=1e3,je=class{constructor(e,t,r){this.getSocket=e;this.throttleEnabled=t?.enabled??true,this.minIntervalMs=t?.minIntervalMs??uo,this.now=r?.now??Date.now;}throttleEnabled;minIntervalMs;now;lastSent=new Map;requireSocket(){let e=this.getSocket();if(!e)throw new O("NOT_CONNECTED","client not connected");return e}throttled(e,t){if(!this.throttleEnabled||this.minIntervalMs<=0)return false;let r=`${e}:${t??"global"}`,s=this.lastSent.get(r),i=this.now();return s!==void 0&&i-s<this.minIntervalMs?true:(this.lastSent.set(r,i),false)}async update(e,t){let r=this.requireSocket();if(!this.throttled(e,t))try{await(t===void 0?r.sendPresenceUpdate(e):r.sendPresenceUpdate(e,t));}catch(s){throw new O("PRESENCE_FAILED",`presence update '${e}' failed`,{cause:s})}}scheduleClear(e,t){let r=this.getSocket();if(!r)return;let s=setTimeout(()=>{r.sendPresenceUpdate("paused",e).catch(()=>{});},t);typeof s.unref=="function"&&s.unref();}async online(){await this.update("available");}async offline(){await this.update("unavailable");}async typing(e,t){await this.update("composing",e),t!==void 0&&this.scheduleClear(e,t);}async recording(e,t){await this.update("recording",e),t!==void 0&&this.scheduleClear(e,t);}};var mo={set:(n,e)=>setTimeout(n,e),clear:n=>clearTimeout(n)},go=n=>typeof n=="object"&&n!==null&&typeof n.recipient=="string"&&typeof n.content=="object",qe=class{store;sendSnapshot;now;timer;logger;acquire;memory=new Map;timers=new Map;constructor(e){this.store=e.store,this.sendSnapshot=e.sendSnapshot,this.now=e.now??(()=>Date.now()),this.timer=e.timer??mo,this.logger=e.logger,this.acquire=e.acquire;}async scheduleAt(e,t){let r=e.getTime();if(Number.isNaN(r))throw new O("SCHEDULE_INVALID","scheduleAt requires a valid Date");let s=await this.evaluate(t),i=crypto.randomUUID(),o={id:i,fireAt:r,recipient:s.recipient,payload:s};return await this.persist(o),this.arm(o),{id:i,cancel:()=>{this.cancel(i);}}}async loadPending(){let e=this.store.listScheduledJobs;if(!e){for(let r of this.memory.values())this.timers.has(r.id)||this.arm(r);return}let t;try{t=await e.call(this.store);}catch(r){this.logger?.warn(r,"scheduler loadPending failed");return}for(let r of t)this.timers.has(r.id)||(this.memory.set(r.id,r),this.arm(r));}dispose(){for(let e of this.timers.values())this.timer.clear(e);this.timers.clear();}cancel(e){let t=this.timers.get(e);t!==void 0&&(this.timer.clear(t),this.timers.delete(e)),this.memory.delete(e),this.remove(e);}arm(e){let t=Math.max(0,e.fireAt-this.now()),r=this.timer.set(()=>{this.fire(e);},t);this.timers.set(e.id,r);}async fire(e){if(this.timers.delete(e.id),go(e.payload))try{this.acquire&&await this.acquire(),await this.sendSnapshot(e.payload);}catch(t){this.logger?.warn(t,"scheduled send failed; retaining job for retry");return}this.memory.delete(e.id),await this.remove(e.id);}async persist(e){let t=this.store.saveScheduledJob;if(t){await t.call(this.store,e);return}this.memory.set(e.id,e);}async remove(e){let t=this.store.deleteScheduledJob;if(t)try{await t.call(this.store,e);}catch(r){this.logger?.warn(r,"scheduler deleteScheduledJob failed");}this.memory.delete(e);}async evaluate(e){let t,r=0,s={sendMessage:async(o,a,c)=>{if(r+=1,r>1)throw new O("SCHEDULE_INVALID","scheduling multi-part messages (e.g. album) is not supported; schedule a single message");return t=c?{recipient:o,content:a,options:c}:{recipient:o,content:a},{key:{remoteJid:o,id:"scheduled-snapshot",fromMe:true}}},relayMessage:async()=>{throw new O("SCHEDULE_INVALID","scheduling interactive/relayed content is not supported; schedule a text or media message")}},i=z.create(s,"");try{await e(i);}catch(o){throw o instanceof O?o:new O("SCHEDULE_INVALID","scheduled builder evaluation failed",{cause:o})}if(!t)throw new O("SCHEDULE_INVALID","scheduled builder produced no content");return t}};async function Er(n,e){if(typeof n.deleteMessage!="function"||typeof n.listChats!="function")return 0;let t=await n.listChats(),r=0;for(let s of t){let i=s.id??"";if(i.length===0||e.chatFilter&&!e.chatFilter(i))continue;let a=[...await n.listMessages(i)].sort((c,d)=>Number(d.messageTimestamp??0)-Number(c.messageTimestamp??0));for(let c=0;c<a.length;c+=1){let d=a[c],l=Number(d.messageTimestamp??0),u=e.olderThan!==void 0&&l<e.olderThan,w=e.maxPerChat!==void 0&&c>=e.maxPerChat;(u||w)&&(await n.deleteMessage(d.key),r+=1);}}return r}var Ke=class{store;options;logger;now;timer;running=false;warnedUnsupported=false;disabled=false;constructor(e){this.store=e.store,this.options=e.options,this.logger=e.logger,this.now=e.now??Date.now;}get active(){return this.options.maxAgeMs!==void 0||this.options.maxPerChat!==void 0}buildPruneOptions(){let e={};return this.options.maxAgeMs!==void 0&&(e.olderThan=Math.floor((this.now()-this.options.maxAgeMs)/1e3)),this.options.maxPerChat!==void 0&&(e.maxPerChat=this.options.maxPerChat),typeof this.options.chats=="function"&&(e.chatFilter=this.options.chats),e}async runOnce(){if(!this.active||this.disabled)return 0;let e=this.buildPruneOptions();return typeof this.store.pruneMessages=="function"?this.store.pruneMessages(e):typeof this.store.deleteMessage=="function"?Er(this.store,e):(this.disabled=true,this.warnedUnsupported||(this.warnedUnsupported=true,this.logger?.warn({code:"AUTO_DELETE_UNSUPPORTED"},"autoDelete: store implements neither pruneMessages nor deleteMessage; sweeper disabled")),0)}start(){if(!this.active||this.timer)return;let e=this.options.intervalMs??6e4;this.timer=setInterval(()=>{this.running||(this.running=true,this.runOnce().catch(t=>this.logger?.warn(t,"autoDelete sweep failed")).finally(()=>{this.running=false;}));},e),this.timer.unref?.();}stop(){this.timer&&(clearInterval(this.timer),this.timer=void 0);}};var fo={image:"imageMessage",video:"videoMessage",audio:"audioMessage",document:"documentMessage",sticker:"stickerMessage"},ho=(n,e)=>{let t=n.message;if(t==null)return null;let r=t[fo[e]];if(r==null||typeof r!="object")return null;let s=r.mimetype;return typeof s=="string"&&s.length>0?s:null},wt=(n,e,t)=>async()=>{try{let{downloadMediaMessage:r}=await import('baileys'),s=await r(n,"buffer",{}),i=ho(n,e)??"application/octet-stream";return {buffer:s,mime:i,size:s.byteLength}}catch(r){throw t?.warn({error:r,kind:e,id:n.key?.id},"media download failed"),r instanceof Error?r:new Error("media download failed")}},kr=(n,e,t)=>async()=>{try{let{downloadMediaMessage:r}=await import('baileys');return await r(n,"stream",{})}catch(r){throw t?.warn({error:r,kind:e,id:n.key?.id},"media stream download failed"),r instanceof Error?r:new Error("media stream download failed")}};var oe="[zaileys]",yo="The saved session looks invalid or corrupted (connection keeps closing before it authenticates). Delete the auth folder (default: ./.zaileys) and run again to scan a fresh QR / request a new pairing code.";function Ir(n){switch(n.kind){case "connecting":return `${oe} Connecting to WhatsApp (session: ${n.sessionId})...`;case "qr":return `${oe} Scan the QR code above with WhatsApp > Linked devices to authenticate.`;case "pairing-code":return `${oe} Pairing code: ${n.code} \u2014 enter it in WhatsApp > Linked devices > Link with phone number.`;case "connected":return `${oe} Connected as ${n.id}.`;case "reconnecting":{let e=(n.delayMs/1e3).toFixed(1),t=`${oe} Connection lost (${n.reason}). Reconnecting in ${e}s (attempt ${n.attempt})...`;return n.invalidCredsSuspected?`${t}
12
+ ${oe} ${yo}`:t}case "disconnect":return n.willReconnect?null:`${oe} Disconnected (${n.reason}).`;default:return null}}var Tr=false,wo=["Closing session:","Closing open session","Closing stale open session","Opening session:","Removing old closed session","Migrating session to:","Session already closed","Decrypted message with closed session","Failed to decrypt message with any known session","Session error:"],vo=n=>typeof n[0]=="string"&&wo.some(e=>n[0].startsWith(e));function Or(){if(Tr)return;Tr=true;let n=e=>{let t=console[e].bind(console);console[e]=(...r)=>{vo(r)||t(...r);};};n("info"),n("warn"),n("error");}var f=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysStoreError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};var So="./.zaileys/auth",bo=n=>n.replace(/[^a-zA-Z0-9._-]/g,e=>`_${e.charCodeAt(0).toString(16)}`),Je=n=>typeof n=="object"&&n!==null&&n.code==="ENOENT",Mt=class{basePath;closed=false;constructor(e){this.basePath=e?.basePath??So;}signal={read:async(e,t)=>{this.assertOpen();let r={};return await Promise.all(t.map(async s=>{let i=this.signalPath(e,s);try{let o=await fs$1.promises.readFile(i,"utf8");r[s]=JSON.parse(o,Ya.BufferJSON.reviver);}catch(o){if(Je(o))return;throw new f("STORE_READ_FAILED",`failed to read ${i}`,{cause:o})}})),r},write:async e=>{this.assertOpen();let t=[];for(let r of Object.keys(e)){let s=e[r];if(!s)continue;let i=this.signalDir(r);await fs$1.promises.mkdir(i,{recursive:true});for(let o of Object.keys(s)){let a=s[o],c=this.signalPath(r,o);a===null?t.push(fs$1.promises.unlink(c).catch(d=>{if(!Je(d))throw new f("STORE_WRITE_FAILED",`failed to unlink ${c}`,{cause:d})})):a!==void 0&&t.push(this.atomicWrite(c,JSON.stringify(a,Ya.BufferJSON.replacer)));}}await Promise.all(t);},delete:async(e,t)=>{this.assertOpen(),await Promise.all(t.map(async r=>{let s=this.signalPath(e,r);try{await fs$1.promises.unlink(s);}catch(i){if(!Je(i))throw new f("STORE_WRITE_FAILED",`failed to unlink ${s}`,{cause:i})}}));},clear:async()=>{this.assertOpen(),await fs$1.promises.rm(this.basePath,{recursive:true,force:true});},close:async()=>{this.closed=true;}};creds={readCreds:async()=>{this.assertOpen();try{let e=await fs$1.promises.readFile(this.credsPath(),"utf8");return JSON.parse(e,Ya.BufferJSON.reviver)}catch(e){if(Je(e))return;throw new f("STORE_READ_FAILED","failed to read creds.json",{cause:e})}},writeCreds:async e=>{this.assertOpen(),await fs$1.promises.mkdir(this.basePath,{recursive:true}),await this.atomicWrite(this.credsPath(),JSON.stringify(e,Ya.BufferJSON.replacer));},deleteCreds:async()=>{this.assertOpen();try{await fs$1.promises.unlink(this.credsPath());}catch(e){if(!Je(e))throw new f("STORE_WRITE_FAILED","failed to delete creds.json",{cause:e})}}};credsPath(){return $e__default.default.join(this.basePath,"creds.json")}signalDir(e){return $e__default.default.join(this.basePath,"signal",String(e))}signalPath(e,t){return $e__default.default.join(this.signalDir(e),`${bo(t)}.json`)}async atomicWrite(e,t){let r=$e__default.default.join($e__default.default.dirname(e),`tmp-${crypto.randomBytes(8).toString("hex")}`);try{await fs$1.promises.writeFile(r,t,"utf8"),await fs$1.promises.rename(r,e);}catch(s){throw await fs$1.promises.unlink(r).catch(()=>{}),new f("STORE_WRITE_FAILED",`failed to write ${e}`,{cause:s})}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","FileAuthStore is closed")}};function xr(n,e){let t=n.signal,s=Ya.makeCacheableSignalKeyStore({get:(o,a)=>t.read(o,a),set:o=>t.write(o),clear:()=>t.clear()},e?.logger??void 0),i={read:async(o,a)=>await s.get(o,[...a]),write:async o=>{await s.set(o);},delete:async(o,a)=>{await t.delete(o,a);let c={},d={};for(let l of a)d[l]=null;c[o]=d,await s.set(c);},clear:async()=>{let o=s.clear;typeof o=="function"?await o.call(s):await t.clear();},close:()=>t.close()};return {creds:n.creds,signal:i}}function Rr(n,e){return {get:async(t,r)=>await n.read(t,r),set:async t=>{await n.write(t);},clear:async()=>{await n.clear();}}}var Co=429;function _r(n){if(n===Co)return "rate-limited";switch(n){case Ya.DisconnectReason.loggedOut:return "logged-out";case Ya.DisconnectReason.forbidden:return "forbidden";case Ya.DisconnectReason.connectionLost:return "connection-lost";case Ya.DisconnectReason.multideviceMismatch:return "multi-device-mismatch";case Ya.DisconnectReason.connectionClosed:return "connection-closed";case Ya.DisconnectReason.connectionReplaced:return "connection-replaced";case Ya.DisconnectReason.badSession:return "bad-session";case Ya.DisconnectReason.unavailableService:return "unavailable-service";case Ya.DisconnectReason.restartRequired:return "restart-required";default:return "unknown"}}function Ge(n){return n==="logged-out"||n==="connection-replaced"||n==="forbidden"}function St(n){return n==="rate-limited"}function Lr(n){return n==="logged-out"||n==="connection-replaced"||n==="forbidden"||n==="bad-session"}function Hp(n){return !Ge(n)}var bt={enabled:true,maxQrAttempts:5,maxPairingAttempts:3,pairingCooldownMs:6e4},Po=3e5;function Nr(n={}){let e=n.enabled??bt.enabled,t=n.maxQrAttempts??bt.maxQrAttempts,r=n.maxPairingAttempts??bt.maxPairingAttempts,s=n.pairingCooldownMs??bt.pairingCooldownMs,i=0,o=0,a=0,c=w=>w<=0?0:Math.min(s*w,Po);return {evaluate:(w,M)=>{if(!e)return {allowed:true,waitMs:0,attempts:w==="pairing"?o:i,max:Number.POSITIVE_INFINITY};if(w==="pairing"){if(o>=r)return {allowed:false,reason:"budget-exhausted",waitMs:0,attempts:o,max:r};let v=c(o),P=M-a;return o>0&&P<v?{allowed:false,reason:"cooldown",waitMs:v-P,attempts:o,max:r}:{allowed:true,waitMs:0,attempts:o,max:r}}return i>=t?{allowed:false,reason:"budget-exhausted",waitMs:0,attempts:i,max:t}:{allowed:true,waitMs:0,attempts:i,max:t}},record:(w,M)=>{w==="pairing"?(o+=1,a=M):i+=1;},reset:()=>{i=0,o=0,a=0;},get enabled(){return e},get qrAttempts(){return i},get pairingAttempts(){return o}}}var Eo=/[\s\-()+]/g;function ko(n){return typeof n!="string"?"":n.replace(Eo,"")}function To(n){if(!n||typeof n!="string"||!n.trim())throw new Error("phoneNumber is required");let e=ko(n);if(!/^\d+$/.test(e))throw new Error("phoneNumber must be E.164 with country code");if(e.length<8||e.length>15)throw new Error("phoneNumber must be E.164 with country code");return e}function Dr(n){let e=To(n.phoneNumber),t=n.ttlMs??6e4;return {phoneNumber:e,async requestCode(r){let s;try{s=await r.requestPairingCode(e);}catch(i){let o=i instanceof Error?i.message:String(i);throw new Error(`failed to request pairing code: ${o}`)}return {code:s,expiresAt:Date.now()+t}}}}function Oo(n){return !n||typeof n!="string"||!n.trim()?Promise.reject(new Error("qr string is required")):new Promise(e=>{Io__default.default.generate(n,{small:true},t=>e(t));})}async function Br(n,e=t=>{process.stdout.write(t);}){let t=await Oo(n);e(t+`
13
+ `);}var ye={enabled:true,maxAttempts:Number.POSITIVE_INFINITY,initialDelayMs:3e3,maxDelayMs:6e4,jitterFactor:.2,rateLimitedDelayMs:3e5};function Wr(n,e){let t=n?.enabled??ye.enabled,r=n?.maxAttempts??ye.maxAttempts,s=n?.initialDelayMs??ye.initialDelayMs,i=n?.maxDelayMs??ye.maxDelayMs,o=n?.jitterFactor??ye.jitterFactor,a=n?.rateLimitedDelayMs??ye.rateLimitedDelayMs,c=e?.random??Math.random,d=0;return {next:w=>{if(!t||Ge(w))return null;let M=d+1;if(M>r)return null;if(d=M,St(w))return {attempt:M,delayMs:a};let v=Math.pow(2,M-1),P=Math.min(i,s*v),y=1+(c()*2-1)*o,p=P*y,m=Math.min(i,Math.max(0,p));return {attempt:M,delayMs:Math.round(m)}},reset:()=>{d=0;},get attempts(){return d}}}var xo={idle:["connecting"],connecting:["qr-pending","pairing-pending","connected","reconnecting","disconnecting","disconnected"],"qr-pending":["connecting","connected","reconnecting","disconnecting","disconnected"],"pairing-pending":["connecting","connected","reconnecting","disconnecting","disconnected"],connected:["disconnecting","reconnecting","disconnected"],reconnecting:["connecting","disconnecting","disconnected"],disconnecting:["disconnected"],disconnected:["idle","connecting","reconnecting"]};function Fr(n="idle"){let e=n,t=new Set,r=s=>xo[e].includes(s);return {get state(){return e},canTransition:r,transition(s){if(!r(s))throw new Error(`invalid state transition: ${e} -> ${s}`);let i=e;e=s;for(let o of t)try{o(i,s);}catch{}},onChange(s){return t.add(s),()=>{t.delete(s);}}}}var At=n=>`${n.remoteJid??""}|${n.id??""}|${n.fromMe?1:0}`,Ct=class{messages=new Map;messagesByJid=new Map;chats=new Map;contacts=new Map;presence=new Map;boundSocket;listeners=new Map;closed=false;async saveMessage(e){this.assertOpen();let t=At(e.key);this.messages.set(t,structuredClone(e));let r=e.key.remoteJid??"",s=this.messagesByJid.get(r);s||(s=new Set,this.messagesByJid.set(r,s)),s.add(t);}async getMessage(e){this.assertOpen();let t=this.messages.get(At(e));return t?structuredClone(t):void 0}async listMessages(e,t){this.assertOpen();let r=this.messagesByJid.get(e);if(!r)return [];let s=[];for(let o of r){let a=this.messages.get(o);a&&s.push(a);}s.sort((o,a)=>Number(a.messageTimestamp)-Number(o.messageTimestamp));let i=s;if(typeof t?.before=="number"){let o=t.before;i=i.filter(a=>Number(a.messageTimestamp)<o);}return typeof t?.limit=="number"&&(i=i.slice(0,t.limit)),i.map(o=>structuredClone(o))}async saveChat(e){this.assertOpen();let t=e.id;t&&this.chats.set(t,structuredClone(e));}async getChat(e){this.assertOpen();let t=this.chats.get(e);return t?structuredClone(t):void 0}async listChats(e){this.assertOpen();let t=[];for(let r of this.chats.values())e?.archived===true&&r.archived!==true||t.push(structuredClone(r));return t}async saveContact(e){this.assertOpen(),this.contacts.set(e.id,structuredClone(e));}async getContact(e){this.assertOpen();let t=this.contacts.get(e);return t?structuredClone(t):void 0}async listContacts(){return this.assertOpen(),Array.from(this.contacts.values(),e=>structuredClone(e))}async savePresence(e,t){this.assertOpen(),this.presence.set(e,structuredClone(t));}async getPresence(e){this.assertOpen();let t=this.presence.get(e);return t?structuredClone(t):void 0}bind(e){this.assertOpen(),this.boundSocket=e;let t=(...c)=>{let l=c[0]?.messages;if(Array.isArray(l))for(let u of l)this.saveMessage(u).catch(()=>{});},r=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d){let u=this.messages.get(At(l.key));if(u){let w={...u,...l.update};this.saveMessage(w).catch(()=>{});}}},s=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveChat(l).catch(()=>{});},i=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d){let w={...this.chats.get(l.id)??{},...l};this.saveChat(w).catch(()=>{});}},o=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveContact(l).catch(()=>{});},a=(...c)=>{let d=c[0];if(d?.presences)for(let l of Object.keys(d.presences)){let u=d.presences[l];u&&this.savePresence(l,u).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("messages.update",r),this.listeners.set("chats.upsert",s),this.listeners.set("chats.update",i),this.listeners.set("contacts.upsert",o),this.listeners.set("presence.update",a);for(let[c,d]of this.listeners)e.ev.on(c,d);}async deleteMessage(e){this.assertOpen();let t=At(e);this.messages.delete(t);let r=e.remoteJid??"",s=this.messagesByJid.get(r);s&&(s.delete(t),s.size===0&&this.messagesByJid.delete(r));}async pruneMessages(e){this.assertOpen();let t=0;for(let[r,s]of [...this.messagesByJid.entries()]){if(e.chatFilter&&!e.chatFilter(r))continue;let i=[];for(let a of s){let c=this.messages.get(a);c&&i.push(c);}i.sort((a,c)=>Number(c.messageTimestamp??0)-Number(a.messageTimestamp??0));let o=i.filter((a,c)=>{let d=Number(a.messageTimestamp??0);return e.olderThan!==void 0&&d<e.olderThan||e.maxPerChat!==void 0&&c>=e.maxPerChat});for(let a of o)await this.deleteMessage(a.key),t+=1;}return t}async clear(){this.assertOpen(),this.messages.clear(),this.messagesByJid.clear(),this.chats.clear(),this.contacts.clear(),this.presence.clear();}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);return this.listeners.clear(),this.boundSocket=void 0,Promise.resolve()}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","MemoryMessageStore is closed")}};var _o=["silent","fatal","error","warn","info","debug","trace"];function Lo(n){if(n)return n;let e=process.env.ZAILEYS_DEBUG;return e===void 0?"silent":e==="1"?"info":_o.includes(e)?e:"silent"}function No(n={}){let e=Lo(n.level),t=Ro__default.default({level:e});return n.sessionId!==void 0?t.child({sessionId:n.sessionId}):t}var Ur=["debug","info","warn","error","fatal"];function Do(n){if(n===null||typeof n!="object")return false;for(let e of Ur)if(typeof n[e]!="function")return false;return true}function Ve(){}function Bo(n){let e={debug:Ve,info:Ve,warn:Ve,error:Ve,fatal:Ve};for(let t of Ur){let r=n[t];typeof r=="function"&&(e[t]=r.bind(n));}return e}function Mn(n,e){return n===void 0?e??No():Do(n)?n:Bo(n)}var am=Object.freeze(["HISTORY_SYNC_NOTIFICATION","APP_STATE_SYNC_KEY_SHARE","LID_MIGRATION_MAPPING_SYNC","PEER_DATA_OPERATION_REQUEST_RESPONSE_MESSAGE"]),jr=n=>{let e=n.requestId!=null,t=n.messages.filter(r=>{if(e)return false;let s=r.messageStubParameters;if(Array.isArray(s)){for(let i of s)if(typeof i=="string"&&i.startsWith("requestId:"))return false}return true});return {...n,messages:t}};var Wo=new Set(["offer","ringing"]),Fo=new Set(["timeout","reject","accept","terminate"]),qr=n=>{let e=n instanceof Date?n.getTime():Date.parse(String(n));return Number.isFinite(e)?e:0},Kr=n=>typeof n.id!="string"||n.id.length===0||!Wo.has(n.status)?null:{kind:"incoming",callId:n.id,from:n.from,isGroup:n.isGroup===true,isVideo:n.isVideo===true,timestamp:qr(n.date),status:n.status},$r=n=>typeof n.id!="string"||n.id.length===0||!Fo.has(n.status)?null:{kind:"ended",callId:n.id,from:n.from,isGroup:n.isGroup===true,isVideo:n.isVideo===true,timestamp:qr(n.date),status:n.status};var B=n=>typeof n=="string"&&n.length>0,Uo=n=>{let e={};return typeof n.subject=="string"&&(e.subject=n.subject),typeof n.desc=="string"&&(e.description=n.desc),typeof n.announce=="boolean"&&(e.announce=n.announce),typeof n.restrict=="boolean"&&(e.restrict=n.restrict),typeof n.ephemeralDuration=="number"&&(e.ephemeralDuration=n.ephemeralDuration),e},Jr=(n,e,t)=>n.filter(r=>B(r?.id)).map(r=>{let s={jid:r.id},i=r.lid??r.pn??r.phoneNumber;return B(i)&&(s.participantAlt=i),B(e)&&(s.authorPn=e),B(t)&&(s.authorUsername=t),s.isAdmin=r.admin==="admin"||r.admin==="superadmin",s}),Gr=n=>B(n?.id)?{groupId:n.id,update:Uo(n),timestamp:Date.now()}:null,Vr=n=>{if(!B(n?.groupId)||!B(n?.participant))return null;let e={groupId:n.groupId,participant:n.participant,label:typeof n.label=="string"?n.label:"",timestamp:typeof n.messageTimestamp=="number"?n.messageTimestamp:Date.now()};return B(n.participantAlt)&&(e.participantAlt=n.participantAlt),e},jo=new Set(["add","invite","invite-link"]),qo=new Set(["remove","leave"]),Hr=n=>{if(!B(n?.id)||!jo.has(n.action)||!Array.isArray(n.participants)||n.participants.length===0)return null;let e=Jr(n.participants,n.authorPn,n.authorUsername);if(e.length===0)return null;let t={groupId:n.id,participants:e,action:n.action,timestamp:Date.now()};return B(n.author)&&(t.by=n.author),t},zr=n=>{if(!B(n?.id)||!qo.has(n.action)||!Array.isArray(n.participants)||n.participants.length===0)return null;let e=Jr(n.participants,n.authorPn,n.authorUsername);if(e.length===0)return null;let t={groupId:n.id,participants:e,action:n.action,timestamp:Date.now()};return B(n.author)&&(t.by=n.author),t};var we=n=>typeof n!="string"||n.length===0?null:Ya.jidNormalizedUser(n),Y=n=>typeof n=="string"&&n.length>0?n:void 0,Jo=["@s.whatsapp.net","@c.us"],Pt=n=>n.endsWith("@lid"),Yr=n=>Jo.some(e=>n.endsWith(e)),K=(n,e)=>{if(!n)return null;let t=Y(n.participant)??n.remoteJid,r=we(t);if(r===null)return null;let s=Y(n.participantAlt)??Y(n.remoteJidAlt),i=s!=null?we(s):null,o=Y(n.participantUsername)??Y(n.remoteJidUsername),a={jid:r,isMe:n.fromMe===true};typeof t=="string"&&t.length>0&&(a.deviceJid=t);let c=i!==null?[r,i]:[r],d=c.find(Pt),l=c.find(Yr);d!==void 0&&(a.lid=d),l!==void 0&&(a.pn=l),o!==void 0&&(a.username=o);let u=Y(e);return u!==void 0&&(a.pushName=u),a},Zr=n=>{if(!n)return null;let e=n.stanzaId;if(typeof e!="string"||e.length===0)return null;let t=Y(n.participant),r=Y(n.remoteJid)??t,s={id:e};typeof r=="string"&&(s.remoteJid=r),typeof t=="string"&&(s.participant=t);let i={key:s},o=K(s);return o&&(i.sender=o),i},He=n=>{if(!n)return {mentionedJids:[],mentionAll:false};let e=n.mentionedJid,t=Array.isArray(e)?e.filter(i=>typeof i=="string"):[],r=n.groupMentions,s=Array.isArray(r)&&r.length>0;return {mentionedJids:t,mentionAll:s}};var ve=n=>Ya.isJidGroup(n)===true,Me=n=>{if(n==null)return null;if(typeof n=="number")return Number.isFinite(n)?n:null;if(typeof n.toNumber=="function"){let e=n.toNumber();return Number.isFinite(e)?e:null}return null};var Go=["quick_reply","cta_url","cta_call","button_click"],Vo=["list_select","single_select"],J=n=>typeof n=="string"&&n.length>0,Xr=n=>{let e=typeof n.pushName=="string"?n.pushName:void 0;return K(n.key,e)},es=n=>Me(n.messageTimestamp)??0,ts=(n,e)=>{if(!J(n))return null;try{let t=JSON.parse(n);return t!==null&&typeof t=="object"?t:null}catch{return e?.debug({paramsJson:n},"interactive: failed to parse nativeFlow paramsJson"),null}},Et=(n,e)=>{for(let t of e){let r=n[t];if(J(r))return r}},ns=(n,e)=>{let t=n.message;if(!t)return null;let r=t.buttonsResponseMessage;if(r&&J(r.selectedButtonId))return Sn(n,r.selectedButtonId,r.selectedDisplayText);let s=t.templateButtonReplyMessage;if(s&&J(s.selectedId))return Sn(n,s.selectedId,s.selectedDisplayText);let i=t.interactiveResponseMessage?.nativeFlowResponseMessage;if(i&&J(i.name)&&Go.includes(i.name)){let o=ts(i.paramsJson,e.logger);if(!o)return null;let a=Et(o,["id","button_id"]);return a===void 0?null:Sn(n,a,Et(o,["display_text"])??null)}return null},Sn=(n,e,t)=>{let r=Xr(n);if(!r||!n.key)return null;let s={key:n.key,buttonId:e,sender:r,timestamp:es(n)};return J(t)&&(s.buttonText=t),s},rs=(n,e)=>{let t=n.message;if(!t)return null;let r=t.listResponseMessage,s=r?.singleSelectReply?.selectedRowId;if(J(s))return Qr(n,s,r?.title);let i=t.interactiveResponseMessage?.nativeFlowResponseMessage;if(i&&J(i.name)&&Vo.includes(i.name)){let o=ts(i.paramsJson,e.logger);if(!o)return null;let a=Et(o,["row_id","id"]);return a===void 0?null:Qr(n,a,Et(o,["title"])??null)}return null},Qr=(n,e,t)=>{let r=Xr(n);if(!r||!n.key)return null;let s={key:n.key,rowId:e,sender:r,timestamp:es(n)};return J(t)&&(s.title=t),s};var Ho=new Set(["available","unavailable","composing","recording","paused"]),zo=n=>n instanceof Date?n.getTime():typeof n=="number"&&Number.isFinite(n)?n:0,ss=n=>n.status!=="complete"&&n.status!=="paused"?null:{syncType:String(n.syncType),status:n.status,explicit:n.explicit===true},bn=n=>{if(n.source==="connection-update"){let t=n.reachoutTimeLock;return t.isActive!==true?null:{reason:"reachout-timelock",retryAt:zo(t.timeEnforcementEnds)}}if(n.capInfo.capping_status!=="CAPPED")return null;let e={reason:"chat-limit-reached"};return typeof n.capInfo.used_quota=="number"&&(e.usedQuota=n.capInfo.used_quota),typeof n.capInfo.total_quota=="number"&&(e.totalQuota=n.capInfo.total_quota),e},is=n=>{if(typeof n.id!="string"||n.id.length===0)return [];let e=[];for(let[t,r]of Object.entries(n.presences??{})){let s=r?.lastKnownPresence;typeof s!="string"||!Ho.has(s)||e.push({jid:n.id,participant:t,status:s});}return e},ze=n=>{let e=n.payload.id;if(typeof e!="string"||e.length===0)return null;let t=Date.now();switch(n.source){case "reaction":{let r={action:"reaction",newsletterId:e,timestamp:t};return typeof n.payload.server_id=="string"&&(r.serverId=n.payload.server_id),typeof n.payload.reaction?.code=="string"&&(r.emoji=n.payload.reaction.code),r}case "view":{let r={action:"view",newsletterId:e,timestamp:t};return typeof n.payload.server_id=="string"&&(r.serverId=n.payload.server_id),typeof n.payload.count=="number"&&(r.count=n.payload.count),r}case "participants":return {action:"participants",newsletterId:e,timestamp:t};case "settings":{let r={action:"settings",newsletterId:e,timestamp:t};return n.payload.update&&(r.update=n.payload.update),r}}};var as=n=>{let e=n.match(/(https?:\/\/[^\s]+)/g);return e?e.map(t=>t.replace(/[.,;:!?]+$/,"")):[]},os=(n,e=2166136261)=>{let t=e>>>0;for(let r=0;r<n.length;r++)t^=n.charCodeAt(r),t=Math.imul(t,16777619)>>>0;return t>>>0},cs=n=>(os(n).toString(16).padStart(8,"0")+os(n,2646966556).toString(16).padStart(8,"0")).toUpperCase(),ds=n=>cs(`${n.remoteJid??""}|${n.id??""}|${n.fromMe===true?"1":"0"}`),ls=(n,e)=>cs(`${n??""}|${e}`),us=n=>{let e=null;if(typeof n=="number")e=n;else if(typeof n=="bigint")e=Number(n);else if(typeof n=="string"){let t=Number.parseInt(n,10);e=Number.isFinite(t)?t:null;}else if(n!=null&&typeof n=="object"){let t=n;typeof t.toNumber=="function"?e=t.toNumber():typeof t.low=="number"&&(e=(typeof t.high=="number"?t.high:0)*4294967296+(t.low>>>0));}return e!=null&&Number.isFinite(e)&&e>0?e*1e3:0},ps=n=>{let e=Ya.jidDecode(n);if(!e)return "unknown";let t=e.device;return t===void 0||t===0?"android":t===2?"ios":t===3?"web":t===4?"desktop":"unknown"},Zo=n=>n.trim().endsWith("?"),Qo=(n,e)=>e.length===0?false:e.some(t=>t.length>0&&n.startsWith(t)),Xo=(n,e)=>{if(e.length===0)return false;let t;try{t=Ya.jidNormalizedUser(n);}catch{t=n;}return e.some(r=>{try{return Ya.jidNormalizedUser(r)===t}catch{return r===n}})},ea=(n,e)=>{let t=async r=>r===void 0?false:Array.isArray(r)?r.includes(e):r(e);return {authors:()=>t(n?.authors),banned:()=>t(n?.banned)}},ta=0,na=14,ra=1,sa=2,kt=n=>n!=null&&typeof n=="object"?n:null,ia=n=>{let e=kt(n.message);if(e==null)return {isEdited:false,isDeleted:false,isPinned:false,isUnPinned:false,isBot:false,isStatusMention:false,isGroupStatusMention:false};let t=kt(e.protocolMessage),r=typeof t?.type=="number"?t.type:void 0,s=typeof kt(e.pinInChatMessage)?.type=="number"?e.pinInChatMessage.type:void 0;return {isEdited:e.editedMessage!=null||r===na,isDeleted:r===ta,isPinned:s===ra,isUnPinned:s===sa,isBot:kt(e.messageContextInfo)?.botMetadata!=null,isStatusMention:e.statusMentionMessage!=null,isGroupStatusMention:e.groupStatusMentionMessage!=null}},An=n=>{let e=typeof n.key.remoteJid=="string"?n.key.remoteJid:null,t=e!==null&&ve(e),r=ia(n.message),s=c=>n.lidMap!=null&&c.endsWith("@lid")?n.lidMap.get(c)??c:c,i=s(n.sender.pn??n.sender.jid),o=t?e?Ya.jidNormalizedUser(e):null:n.key.fromMe===true&&e?s(Ya.jidNormalizedUser(e)):i,a={uniqueId:ds(n.key),staticId:ls(o,i),channelId:n.channelId,chatId:n.key.id??"",chatType:n.chatType,receiverId:n.receiverId?s(Ya.jidNormalizedUser(n.receiverId)):n.receiverId,roomId:o,senderId:i,senderLid:n.sender.lid??null,senderName:n.sender.pushName??null,senderDevice:ps(n.sender.deviceJid??n.sender.jid),timestamp:us(n.message.messageTimestamp),text:n.text,mentions:n.mentions,links:as(n.text),isFromMe:n.key.fromMe===true,isGroup:t,isNewsletter:n.isNewsletter,isBroadcast:n.isBroadcast,isViewOnce:n.isViewOnce,isEphemeral:n.isEphemeral,isForwarded:n.isForwarded,isQuestion:Zo(n.text),isPrefix:Qo(n.text,n.prefixes),isTagMe:Xo(n.selfJid,n.mentions),isEdited:r.isEdited,isDeleted:r.isDeleted,isPinned:r.isPinned,isUnPinned:r.isUnPinned,isBot:r.isBot,isSpam:false,isHideTags:n.mentions.length>0&&!/@\d/.test(n.text),isStatusMention:r.isStatusMention,isGroupStatusMention:r.isGroupStatusMention,isStory:e==="status@broadcast",roomName:n.resolveRoomName,receiverName:n.resolveReceiverName,replied:n.resolveReplied,reply:n.reply,react:n.react,message:()=>n.message,citation:ea(n.citationConfig,n.sender.pn??n.sender.jid)};return n.media!==void 0&&(a.media=n.media),a};var It={image:"imageMessage",video:"videoMessage",audio:"audioMessage",document:"documentMessage",sticker:"stickerMessage"},gs=n=>{let e=n?.remoteJid;return typeof e=="string"&&e.length>0?e:""},h=n=>n!=null&&typeof n=="object"?n:null,S=n=>typeof n=="string"&&n.length>0?n:null,Z=(...n)=>{for(let e of n){let t=S(e);if(t!=null)return t}return null},oa=["ephemeralMessage","viewOnceMessage","viewOnceMessageV2","viewOnceMessageV2Extension","documentWithCaptionMessage","editedMessage","lottieStickerMessage"],Xe=n=>{let e=n;for(let t=0;t<5;t++){let r=null;for(let s of oa){let i=h(h(e[s])?.message);if(i!=null){r=i;break}}if(r==null)break;e=r;}return e},fs=n=>{let e=h(n.message);if(e==null)return n;let t=Xe(e);return t===e?n:{...n,message:t}},aa=n=>{let t=h(h(h(n.botForwardedMessage)?.message)?.richResponseMessage)??h(n.richResponseMessage);if(t==null)return null;let r=t.submessages;if(!Array.isArray(r))return null;let s=[];for(let o of r){let a=S(h(o)?.messageText);a!=null&&s.push(a);}let i=s.join(`
14
+ `).trim();return i.length>0?i:null},ca=n=>{let e=h(n.templateMessage),t=h(e?.hydratedTemplate)??h(e?.hydratedFourRowTemplate);return S(t?.hydratedContentText)},da=n=>Z(h(n.pollCreationMessage)?.name,h(n.pollCreationMessageV2)?.name,h(n.pollCreationMessageV3)?.name),la=n=>{let e=h(n.locationMessage)??h(n.liveLocationMessage);if(e==null)return null;let t=Z(e.name,e.address);if(t!=null){let i=S(e.name),o=S(e.address);return i!=null&&o!=null&&i!==o?`${i} \u2014 ${o}`:t}let r=e.degreesLatitude,s=e.degreesLongitude;return typeof r=="number"&&typeof s=="number"?`${r}, ${s}`:null},ua=n=>{let e=S(h(n.contactMessage)?.displayName);if(e!=null)return e;let t=h(n.contactsArrayMessage),r=S(t?.displayName);if(r!=null)return r;let s=t?.contacts;if(Array.isArray(s)){let i=s.map(o=>S(h(o)?.displayName)).filter(o=>o!=null);if(i.length>0)return i.join(", ")}return null},hs=n=>Z(n.conversation,h(n.extendedTextMessage)?.text,aa(n),S(h(h(n.interactiveMessage)?.body)?.text),h(n.buttonsMessage)?.contentText,h(n.listMessage)?.description,ca(n),da(n),la(n),ua(n)),pa=n=>Z(h(n.buttonsResponseMessage)?.selectedDisplayText,h(n.buttonsResponseMessage)?.selectedButtonId,h(n.templateButtonReplyMessage)?.selectedDisplayText,h(n.templateButtonReplyMessage)?.selectedId,h(n.listResponseMessage)?.title,h(h(n.listResponseMessage)?.singleSelectReply)?.selectedRowId,h(h(n.interactiveResponseMessage)?.body)?.text),ma=n=>Z(h(n.imageMessage)?.caption,h(n.videoMessage)?.caption,h(n.documentMessage)?.caption,h(n.documentMessage)?.fileName),I=n=>{if(typeof n=="number")return n;let e=Me(n);return typeof e=="number"?e:null},ga=[["pollCreationMessage","poll"],["pollCreationMessageV2","poll"],["pollCreationMessageV3","poll"],["contactMessage","contact"],["contactsArrayMessage","contact"],["locationMessage","location"],["liveLocationMessage","live-location"],["eventMessage","event"],["albumMessage","album"],["groupInviteMessage","group-invite"],["productMessage","product"],["orderMessage","order"],["requestPaymentMessage","payment"],["sendPaymentMessage","payment"],["paymentInviteMessage","payment"],["buttonsMessage","buttons"],["listMessage","list"],["interactiveMessage","interactive"],["templateMessage","template"]],ys=n=>{let e=h(n.pollCreationMessage)??h(n.pollCreationMessageV2)??h(n.pollCreationMessageV3);if(e!=null){let p=Array.isArray(e.options)?e.options:[];return {type:"poll",name:S(e.name),options:p.map(m=>S(h(m)?.optionName)).filter(m=>m!=null),selectableCount:I(e.selectableOptionsCount)??0}}let t=h(n.contactMessage);if(t!=null)return {type:"contact",displayName:S(t.displayName),vcard:S(t.vcard),contacts:[{displayName:S(t.displayName),vcard:S(t.vcard)}]};let r=h(n.contactsArrayMessage);if(r!=null){let p=Array.isArray(r.contacts)?r.contacts:[];return {type:"contact",displayName:S(r.displayName),vcard:null,contacts:p.map(m=>({displayName:S(h(m)?.displayName),vcard:S(h(m)?.vcard)}))}}let s=h(n.locationMessage);if(s!=null)return {type:"location",latitude:I(s.degreesLatitude),longitude:I(s.degreesLongitude),name:S(s.name),address:S(s.address),accuracy:I(s.accuracyInMeters),speed:I(s.speedInMps),caption:S(s.comment)};let i=h(n.liveLocationMessage);if(i!=null)return {type:"live-location",latitude:I(i.degreesLatitude),longitude:I(i.degreesLongitude),name:null,address:null,accuracy:I(i.accuracyInMeters),speed:I(i.speedInMps),caption:S(i.caption)};let o=h(n.albumMessage);if(o!=null)return {type:"album",expectedImageCount:I(o.expectedImageCount),expectedVideoCount:I(o.expectedVideoCount)};let a=h(n.groupInviteMessage);if(a!=null)return {type:"group-invite",groupId:S(a.groupJid),groupName:S(a.groupName),inviteCode:S(a.inviteCode),caption:S(a.caption),expiresAt:I(a.inviteExpiration)};let c=h(h(n.productMessage)?.product);if(h(n.productMessage)!=null){let p=S(h(n.productMessage)?.businessOwnerJid),m=I(c?.priceAmount1000);return {type:"product",productId:S(c?.productId),title:S(c?.title),description:S(c?.description),price:m!=null?m/1e3:null,currency:S(c?.currencyCode),retailerId:S(c?.retailerId),url:S(c?.url),businessOwnerId:p}}let d=h(n.orderMessage);if(d!=null){let p=I(d.totalAmount1000),m={1:"inquiry",2:"accepted",3:"declined"},b=d.status;return {type:"order",orderId:S(d.orderId),title:S(d.orderTitle),itemCount:I(d.itemCount),total:p!=null?p/1e3:null,currency:S(d.totalCurrencyCode),status:typeof b=="number"?m[b]??null:S(b),message:S(d.message)}}let l=h(n.requestPaymentMessage)!=null&&{node:n.requestPaymentMessage,kind:"request"}||h(n.sendPaymentMessage)!=null&&{node:n.sendPaymentMessage,kind:"send"}||h(n.paymentInviteMessage)!=null&&{node:n.paymentInviteMessage,kind:"invite"};if(l!==false){let p=h(l.node),m=I(p?.amount1000),b=h(p?.noteMessage);return {type:"payment",kind:l.kind,amount:m!=null?m/1e3:null,currency:S(p?.currencyCodeIso4217),note:Z(b?.conversation,h(b?.extendedTextMessage)?.text),expiresAt:I(p?.expiryTimestamp)}}let u=h(n.eventMessage);if(u!=null){let p=h(u.location);return {type:"event",name:S(u.name),description:S(u.description),location:p!=null?Z(p.name,p.address):null,startTime:I(u.startTime),endTime:I(u.endTime),isCanceled:u.isCanceled===true}}let w=h(n.buttonsMessage);if(w!=null){let p=Array.isArray(w.buttons)?w.buttons:[];return {type:"buttons",contentText:S(w.contentText),footerText:S(w.footerText),buttons:p.map(m=>({id:S(h(m)?.buttonId),text:S(h(h(m)?.buttonText)?.displayText)}))}}let M=h(n.listMessage);if(M!=null){let p=Array.isArray(M.sections)?M.sections:[];return {type:"list",title:S(M.title),description:S(M.description),buttonText:S(M.buttonText),sections:p.map(m=>{let b=Array.isArray(h(m)?.rows)?h(m).rows:[];return {title:S(h(m)?.title),rows:b.map(E=>({id:S(h(E)?.rowId),title:S(h(E)?.title),description:S(h(E)?.description)}))}})}}let v=h(n.interactiveMessage);if(v!=null){let p=h(v.nativeFlowMessage),m=Array.isArray(p?.buttons)?p.buttons:[];return {type:"interactive",title:S(h(v.header)?.title),body:S(h(v.body)?.text),footer:S(h(v.footer)?.text),buttons:m.map(b=>({name:S(h(b)?.name),params:S(h(b)?.buttonParamsJson)}))}}let P=h(n.templateMessage);if(P!=null){let p=h(P.hydratedTemplate)??h(P.hydratedFourRowTemplate),m=Array.isArray(p?.hydratedButtons)?p.hydratedButtons:[];return {type:"template",text:S(p?.hydratedContentText),buttons:m.map(b=>{let E=h(b),pe=h(E?.quickReplyButton)??h(E?.urlButton)??h(E?.callButton);return {id:S(pe?.id),text:S(pe?.displayText)}})}}let y=h(n.extendedTextMessage);if(y!=null){let p=Z(y.canonicalUrl,y.matchedText),m=S(y.title),b=S(y.description);if(p!=null&&(m!=null||b!=null))return {type:"link",url:p,title:m,description:b}}return null};var Ze=n=>{let e=h(n.message);if(e==null)return null;let t=Xe(e);return hs(t)??pa(t)??ma(t)},Ot=n=>{let e=h(fs(n).message);if(e==null)return null;let t=h(e.extendedTextMessage)?.contextInfo;if(t!=null)return t;for(let r of Object.values(It)){let s=e[r];if(s!=null&&typeof s=="object"){let i=s.contextInfo;if(i!=null)return i}}return null},fa=(n,e)=>{let t=n.message;if(t==null)return null;let r=t[It[e]];return r==null||typeof r!="object"?null:r},ha=n=>{let e=n.message;if(e==null)return false;if(e.viewOnceMessage!=null||e.viewOnceMessageV2!=null||e.viewOnceMessageV2Extension!=null)return true;for(let t of Object.values(It)){let r=e[t];if(r!=null&&typeof r=="object"&&r.viewOnce===true)return true}return false},ya=(n,e)=>n.message?.ephemeralMessage!=null?true:typeof e?.expiration=="number"&&e.expiration>0,ae=n=>{let e=h(n);if(e==null)return "text";let t=Xe(e);for(let r of Object.values(It))if(t[r]!=null)return r.replace("Message","");for(let[r,s]of ga)if(t[r]!=null)return s;return "text"},wa=(n,e)=>{if(n==null)return false;let t=[n.pn,n.lid,n.jid].filter(s=>typeof s=="string"&&s.length>0),r=[e.pn,e.lid,e.jid].filter(s=>typeof s=="string"&&s.length>0);return t.some(s=>r.includes(s))},va=async(n,e,t,r,s)=>{try{if(n==null||n.quotedMessage==null)return null;let i=n.stanzaId;if(typeof i!="string"||i.length===0)return null;if(e.resolveQuoted!=null&&t.length>0){let v=await e.resolveQuoted(i,t);if(v!=null&&v.message!=null){let P=Ze(v)??"",y=ce(v,e,ae(v.message),P,Qe(v,e),s);if(y!==null)return y}}let o=Zr(n);if(o===null||typeof o.key.id!="string"||o.key.id.length===0||(t.length>0&&(o.key.remoteJid=t),typeof o.key.remoteJid!="string"||o.key.remoteJid.length===0))return null;let a=o.key.participant,c=typeof a=="string"&&(e.selfJid.length>0&&Tt(a,e.selfJid)||e.selfLid!=null&&Tt(a,e.selfLid)),d=ve(t),l=o.sender?.pushName;c?(o.key.fromMe=!0,e.selfJid.length>0&&(o.key.participant=e.selfJid),e.selfLid!=null&&(o.key.participantAlt=e.selfLid),l==null&&(l=e.selfName)):r!=null&&(!d||wa(o.sender,r))&&(r.pn!=null&&(o.key.participant=r.pn),r.lid!=null&&(o.key.participantAlt=r.lid),l==null&&(l=r.pushName));let u=n.quotedMessage,w=Object.assign({key:o.key,message:u??null},l!=null?{pushName:l}:{}),M=Ze(w)??"";return ce(w,e,ae(u),M,Qe(w,e),s)}catch{return null}},ws=n=>He(Ot(n)).mentionedJids,Ma=n=>{try{return Ya.jidNormalizedUser(n)}catch{return n}},vs=(n,e)=>n.map(t=>{let r=Ma(t);return e.lidMap?.get(r)??r}),ms=n=>(n.split("@")[0]??"").split(":")[0]??"",Sa=(n,e)=>{if(e==null||e.size===0||n.length===0)return n;let t=[...e].map(([s,i])=>[ms(s),ms(i)]).filter(([s,i])=>s.length>0&&i.length>0&&s!==i).sort((s,i)=>i[0].length-s[0].length),r=n;for(let[s,i]of t)r=r.split(`@${s}`).join(`@${i}`);return r},ce=(n,e,t,r,s,i)=>{let o=n.key;if(o==null)return null;let a=K(o,n.pushName??void 0);if(a===null)return null;let c=gs(o);if(c.length===0)return null;let d=Ot(n),l=ve(c),u=c.endsWith("@broadcast"),w=c.endsWith("@newsletter"),M=d?.isForwarded===true||(d?.forwardingScore??0)>0,v=ha(n),P=ya(n,d),y=e.channelId??"",p=e.receiverId??"",m=e.prefixes??[],b=i??(()=>l?e.resolveRoomName!=null?e.resolveRoomName(c):Promise.resolve(null):Promise.resolve(a.pushName??null)),E=e.resolveReceiverName??(()=>Promise.resolve(null)),pe=()=>va(d,e,c,a,b),zt=c.length>0?c:a.pn??a.jid,Yt=(Qt,pi)=>e.reply==null?Promise.reject(new Error("zaileys: ctx.reply() requires a connected client")):e.reply(zt,Qt,pi,n),Zt=Qt=>e.react==null?Promise.reject(new Error("zaileys: ctx.react() requires a connected client")):e.react(o,Qt),li=vs(He(d).mentionedJids,e),ui=Sa(r,e.lidMap),Ln={message:n,key:o,channelId:y,receiverId:p,selfJid:e.selfJid,text:ui,chatType:t,sender:a,mentions:li,isViewOnce:v,isEphemeral:P,isForwarded:M,isBroadcast:u,isNewsletter:w,prefixes:m,...e.lidMap!=null?{lidMap:e.lidMap}:{},resolveRoomName:b,resolveReceiverName:E,resolveReplied:pe,reply:Yt,react:Zt},Nn=s!==void 0?{...Ln,media:s}:Ln;return An(e.citationConfig!==void 0?{...Nn,citationConfig:e.citationConfig}:Nn)},ba=["image","video","audio","document","sticker"],Ms=(n,e,t)=>{let r=fs(n),s=fa(r,e);if(s===null)return null;let i=wt(r,e,t.logger),o=kr(r,e,t.logger);return {type:e,mimetype:typeof s.mimetype=="string"?s.mimetype:null,caption:typeof s.caption=="string"?s.caption:null,fileName:typeof s.fileName=="string"?s.fileName:null,fileSize:I(s.fileLength),ptt:s.ptt===true,buffer:async()=>(await i()).buffer,stream:o}},Qe=(n,e)=>{let t=h(n.message);if(t==null)return;let r=ae(n.message);return ba.includes(r)?Ms(n,r,e)??void 0:ys(Xe(t))??void 0},Ss=(n,e)=>{if(h(n.message)==null)return null;let r=ae(n.message),s=Qe(n,e),i=Ze(n)??"";return i===""&&s===void 0?null:ce(n,e,r,i,s)},bs=(n,e)=>{let t=h(n.message);if(t==null)return null;let r=Xe(t),s=hs(r),i=ys(r)??void 0;return s===null&&i===void 0?null:ce(n,e,ae(n.message),s??"",i)},et=(n,e,t)=>{let r=Ms(e,n,t);return r===null?null:ce(e,t,n,r.caption??"",r)},As=(n,e)=>et("image",n,e),Cs=(n,e)=>et("video",n,e),Ps=(n,e)=>et("audio",n,e),Es=(n,e)=>et("document",n,e),ks=(n,e)=>et("sticker",n,e),Tt=(n,e)=>{try{return Ya.jidNormalizedUser(n)===Ya.jidNormalizedUser(e)}catch{return n===e}},Ts=(n,e)=>{if(n.key==null)return null;let r=Ot(n),s=He(r).mentionedJids;if(s.length===0)return null;let i=vs(s,e);if(!(i.some(u=>Tt(u,e.selfJid))||e.selfLid!=null&&s.some(u=>Tt(u,e.selfLid)))||h(n.message)==null)return null;let c=Ze(n)??"",d=Qe(n,e),l=ce(n,e,ae(n.message),c,d);return l===null?null:{...l,mentionedJids:i,selfJid:e.selfJid}},Is=(n,e)=>{let t=n.key;if(t==null)return null;let r=gs(t);if(r.length===0||!ve(r))return null;let{mentionAll:s}=He(Ot(n));if(!s||h(n.message)==null)return null;let o=Ze(n)??"",a=Qe(n,e),c=ce(n,e,ae(n.message),o,a);return c===null?null:{...c,isMentionAll:true,selfJid:e.selfJid}};var de=(n,e)=>{let t=Me(n);return t===null?e:t},Aa=n=>{if(!n)return "";if(typeof n.conversation=="string")return n.conversation;let e=n.extendedTextMessage?.text;if(typeof e=="string")return e;let t=n.imageMessage?.caption;if(typeof t=="string")return t;let r=n.videoMessage?.caption;if(typeof r=="string")return r;let s=n.documentMessage?.caption;if(typeof s=="string")return s;let o=(n.botForwardedMessage?.message?.richResponseMessage??n.richResponseMessage)?.submessages;if(Array.isArray(o)){let a=o.map(c=>c?.messageText).filter(c=>typeof c=="string"&&c.length>0);if(a.length>0)return a.join(`
15
+ `)}return ""},Ca=n=>Array.isArray(n)?n.map(e=>Buffer.from(e).toString("hex")):[],xs=(n,e)=>{let t=n?.reaction,r=t?.key;if(!r)return null;let s=K(n.key,e.pushName);if(s===null)return null;let i=t.text,o=typeof i=="string"&&i.length>0?i:null;return {key:r,emoji:o,sender:s,timestamp:de(t.senderTimestampMs,0)}},Rs=(n,e)=>{let t=n?.update?.message?.protocolMessage;if(!t||t.type!==Ya.proto.Message.ProtocolMessage.Type.MESSAGE_EDIT)return null;let r=t.key;if(!r)return null;let s=K(n.key,e.pushName);return s===null?null:{key:r,newContent:Aa(t.editedMessage),editedAt:de(n.update.messageTimestamp,0),sender:s}},_s=(n,e)=>{let t=n?.update?.message?.protocolMessage;if(!t||t.type!==Ya.proto.Message.ProtocolMessage.Type.REVOKE)return null;let r=t.key;if(!r)return null;let s=K(n.key,e.pushName);if(s===null)return null;let i=we(n.key.remoteJid),o=we(e.selfJid);return {key:r,deletedFor:i!==null&&o!==null&&i===o?"me":"everyone",sender:s,timestamp:de(n.update.messageTimestamp,0)}},Ls=(n,e)=>{let t=n?.update?.pollUpdates?.[0],r=n?.update?.message?.pollUpdateMessage,s=K(n?.key,e.pushName);if(s===null)return null;if(t){let i=t.pollUpdateMessageKey;return i?{pollKey:i,selectedOptions:Ca(t.vote?.selectedOptions),voter:s,timestamp:de(t.senderTimestampMs,de(n.update.messageTimestamp,0))}:null}if(r){let i=r.pollCreationMessageKey;return i?{pollKey:i,selectedOptions:[],voter:s,timestamp:de(r.senderTimestampMs,de(n.update.messageTimestamp,0))}:null}return null};var xt=n=>Array.isArray(n)?n:[],Pa=3e3,Ea=(n,e)=>new Promise(t=>{let r=setTimeout(()=>t(null),e);n.then(s=>{clearTimeout(r),t(s);},()=>{clearTimeout(r),t(null);});}),ka=n=>{if(n==null||typeof n!="object")return null;let e=n.reachoutTimeLock;return e==null||typeof e!="object"?null:e};function Pn(n,e,t){let r=[],s=new Map,i=t.groupMetadata!=null?y=>{let p=s.get(y);if(p!==void 0)return p;let m=t.groupMetadata;if(m==null)return Promise.resolve(null);let b=m(y).then(E=>E?.subject??null).catch(()=>null);return s.set(y,b),b}:void 0,o={selfJid:t.selfJid,...t.selfLid!=null?{selfLid:t.selfLid}:{},...t.selfName!=null?{selfName:t.selfName}:{},receiverId:t.receiverId??t.selfJid,...t.logger!=null?{logger:t.logger}:{},...t.channelId!=null?{channelId:t.channelId}:{},...t.prefixes!=null?{prefixes:t.prefixes}:{},...t.citationConfig!=null?{citationConfig:t.citationConfig}:{},...i!=null?{resolveRoomName:i}:{},...t.receiverName!=null?{resolveReceiverName:t.receiverName}:{},...t.resolveQuoted!=null?{resolveQuoted:t.resolveQuoted}:{},...t.sendReply!=null?{reply:t.sendReply}:{},...t.react!=null?{react:t.react}:{}},a=t.logger?{selfJid:t.selfJid,logger:t.logger}:{selfJid:t.selfJid},c={selfJid:t.selfJid},d=(y,p)=>{let m=(...b)=>{try{p(b[0]);}catch(E){t.logger?.warn(E,`inbound pipeline: handler for ${y} threw`);}};e.ev.on(y,m),r.push(()=>e.ev.off(y,m));},l=(y,p)=>{v(()=>Ss(y,p),m=>n.emit("message",m)),v(()=>bs(y,p),m=>n.emit("text",m)),v(()=>As(y,p),m=>n.emit("image",m)),v(()=>Cs(y,p),m=>n.emit("video",m)),v(()=>Ps(y,p),m=>n.emit("audio",m)),v(()=>Es(y,p),m=>n.emit("document",m)),v(()=>ks(y,p),m=>n.emit("sticker",m)),v(()=>Ts(y,p),m=>n.emit("mention",m)),v(()=>Is(y,p),m=>n.emit("mention-all",m)),v(()=>ns(y,a),m=>n.emit("button-click",m)),v(()=>rs(y,a),m=>n.emit("list-select",m));},u=y=>{if(typeof y!="string"||y.length===0)return null;let p;try{p=Ya.jidNormalizedUser(y);}catch{p=y;}return Pt(p)?p:null},w=y=>{let p=new Set;for(let m of [y.key?.participant,y.key?.remoteJid,t.selfJid,...ws(y)]){let b=u(m);b!=null&&p.add(b);}return [...p]},M=async y=>{let p=t.resolveLidToPn;if(p==null||y.length===0)return;let m=new Map;return await Promise.all(y.map(async b=>{try{let E=await Ea(Promise.resolve(p(b)),Pa);if(E!=null&&E.length>0)try{m.set(b,Ya.jidNormalizedUser(E));}catch{m.set(b,E);}}catch(E){t.logger?.warn(E,"inbound pipeline: lid->pn resolve threw");}})),m.size>0?m:void 0},v=(y,p)=>{let m;try{m=y();}catch(b){t.logger?.warn(b,"inbound pipeline: decoder threw");return}m!=null&&p(m);};d("messages.upsert",y=>{let p=jr(y);for(let m of p.messages){if(t.ignoreMe===!0&&m.key?.fromMe===!0)continue;let b=t.resolveLidToPn!=null?w(m):[];if(b.length===0){l(m,o);continue}M(b).then(E=>l(m,E!=null?{...o,lidMap:E}:o)).catch(E=>{t.logger?.warn(E,"inbound pipeline: deferred lid resolve emit failed"),l(m,o);});}}),d("messages.update",y=>{for(let p of xt(y))v(()=>Rs(p,c),m=>n.emit("edit",m)),v(()=>_s(p,c),m=>n.emit("delete",m)),v(()=>Ls(p,c),m=>n.emit("poll-vote",m));}),d("messages.reaction",y=>{for(let p of xt(y))v(()=>xs(p,c),m=>n.emit("reaction",m));}),d("groups.update",y=>{for(let p of xt(y))v(()=>Gr(p),m=>n.emit("group-update",m));}),d("group-participants.update",y=>{let p=y;v(()=>Hr(p),m=>n.emit("group-join",m)),v(()=>zr(p),m=>n.emit("group-leave",m));}),d("group.member-tag.update",y=>{v(()=>Vr(y),p=>n.emit("member-tag",p));}),d("call",y=>{for(let p of xt(y))v(()=>Kr(p),m=>n.emit("call-incoming",m)),v(()=>$r(p),m=>n.emit("call-ended",m));}),d("messaging-history.status",y=>{v(()=>ss(y),p=>n.emit("history-sync",p));}),d("presence.update",y=>{let p=(()=>{try{return is(y)}catch(m){return t.logger?.warn(m,"inbound pipeline: decodePresence threw"),[]}})();for(let m of p)n.emit("presence",m);}),d("connection.update",y=>{let p=ka(y);p!==null&&v(()=>bn({source:"connection-update",reachoutTimeLock:p}),m=>n.emit("limited",m));}),d("message-capping.update",y=>{v(()=>bn({source:"message-capping",capInfo:y}),p=>n.emit("limited",p));}),d("newsletter.reaction",y=>{v(()=>ze({source:"reaction",payload:y}),p=>n.emit("newsletter",p));}),d("newsletter.view",y=>{v(()=>ze({source:"view",payload:y}),p=>n.emit("newsletter",p));}),d("newsletter-participants.update",y=>{v(()=>ze({source:"participants",payload:y}),p=>n.emit("newsletter",p));}),d("newsletter-settings.update",y=>{v(()=>ze({source:"settings",payload:y}),p=>n.emit("newsletter",p));});let P=false;return {detach(){if(!P){P=true;for(let y of r)y();r.length=0;}}}}var Rt=class{inner=new events.EventEmitter;emitterLogger;constructor(e){this.emitterLogger=e?.logger,this.inner.setMaxListeners(0);}on(e,t){let r=this.wrap(e,t);this.tag(t,e,r),this.inner.on(e,r);let s=false;return ()=>{s||(s=true,this.inner.off(e,r),this.untag(t,e));}}off(e,t){let r=this.lookup(t,e);r&&(this.inner.off(e,r),this.untag(t,e));}emit(e,t){let r=this.inner.listeners(e).slice();for(let s of r)try{s(t);}catch(i){this.emitterLogger?.error(i,"listener threw");}}removeAllListeners(e){e===void 0?this.inner.removeAllListeners():this.inner.removeAllListeners(e);}listenerCount(e){return this.inner.listenerCount(e)}wrap(e,t){return r=>{try{t(r);}catch(s){this.emitterLogger?.error(s,"listener threw");}}}tag(e,t,r){this.tagMap(e).set(t,r);}untag(e,t){this.tagMap(e).delete(t);}lookup(e,t){return this.tagMap(e).get(t)}tagMap(e){let t=Ia,r=e,s=r[t];return s||(s=new Map,r[t]=s),s}},Ia=Symbol("zaileys.typed-ee.tag");var tt=class extends Error{code="UNSUPPORTED_ON_CLOUD";feature;constructor(e){super(`${e} is not supported by the official WhatsApp Cloud API \u2014 it only exists on the web (baileys) provider`),this.name="ZaileysProviderError",this.feature=e;}},A=class n extends Error{code;cause;constructor(e,t,r){super(t),this.name="ZaileysCloudError",this.code=e,r&&"cause"in r&&(this.cause=r.cause),typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,n);}};function En(n){if(!n||typeof n.accessToken!="string"||n.accessToken.length===0)throw new A("CONFIG","provider 'cloud' requires cloud.accessToken");if(typeof n.phoneNumberId!="string"||n.phoneNumberId.length===0)throw new A("CONFIG","provider 'cloud' requires cloud.phoneNumberId");return n}var _t="v23.0",kn="https://graph.facebook.com",Ds=3,Oa=500,xa=n=>new Promise(e=>setTimeout(e,n));function Lt(n,e){let t=n.baseUrl??kn,r=n.apiVersion??_t,s=xa,i=a=>`${t}/${r}/${a}`,o=async(a,c)=>{let d;for(let l=1;l<=Ds;l++){let u;try{u=await fetch(i(a),{...c,headers:{Authorization:`Bearer ${n.accessToken}`,...c.headers}});}catch(p){throw new A("REQUEST_FAILED","graph request failed (network)",{cause:p})}if(u.ok)return await u.json().catch(()=>({}));let w=await u.json().catch(()=>({})),M=w.error?.message??`http ${u.status}`,v=w.error?` (code ${w.error.code??"?"}${w.error.error_subcode?`/${w.error.error_subcode}`:""})`:"";if(u.status===401||u.status===403)throw new A("AUTH",`graph auth rejected: ${M}${v}`);let P=u.status===429||u.status>=500,y=u.status===429?"RATE_LIMITED":"REQUEST_FAILED";if(d=new A(y,`graph request failed: ${M}${v}`),!P)throw d;l<Ds&&await s(Oa*2**(l-1));}throw d??new A("REQUEST_FAILED","graph request failed")};return {url:i,get:a=>o(a,{method:"GET"}),post:(a,c)=>o(a,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(c)}),postForm:(a,c)=>o(a,{method:"POST",body:c}),delete:(a,c)=>o(a,{method:"DELETE",...c!==void 0?{headers:{"Content-Type":"application/json"},body:JSON.stringify(c)}:{}})}}var Bs=n=>n.split("@")[0]??n,Q=n=>n.includes("@")?n:`${n}@s.whatsapp.net`,G=(n,e,t)=>{let r={messaging_product:"whatsapp",recipient_type:"individual",to:Bs(n),type:e},s=t?.quoted?.key?.id;return s&&(r.context={message_id:s}),r};function Ws(n,e,t){let r=e;if(typeof r.text=="string")return {...G(n,"text",t),text:{body:r.text}};let s=r.react;if(s&&typeof s=="object"&&typeof s.key?.id=="string")return {...G(n,"reaction",t),reaction:{message_id:s.key.id,emoji:s.text??""}};let i=r.location;if(i&&typeof i.degreesLatitude=="number"&&typeof i.degreesLongitude=="number")return {...G(n,"location",t),location:{latitude:i.degreesLatitude,longitude:i.degreesLongitude,...i.name!==void 0?{name:i.name}:{},...i.address!==void 0?{address:i.address}:{}}};let o=r.contacts;if(o?.contacts&&Array.isArray(o.contacts)){let a=o.contacts.map(c=>typeof c.vcard=="string"?Ra(c.vcard):null).filter(c=>c!==null);if(a.length>0)return {...G(n,"contacts",t),contacts:a}}return null}function Ra(n){let e=n.split(/\r?\n/),t="",r="",s="",i=[];for(let a of e){if(a.startsWith("FN:")&&(t=a.slice(3).trim()),a.startsWith("N:")){let c=a.slice(2).split(";");s=(c[0]??"").trim(),r=(c[1]??"").trim();}if(a.startsWith("TEL")){let c=a.indexOf(":");if(c>0){let d=a.slice(c+1).trim(),l=/waid=([0-9]+)/.exec(a);d.length>0&&i.push({phone:d,...l?.[1]?{wa_id:l[1]}:{}});}}}if(t.length===0&&i.length===0)return null;let o=t||i[0]?.phone||"Contact";if(r.length===0&&s.length===0){let a=o.split(/\s+/);r=a[0]??o,a.length>1&&(s=a.slice(1).join(" "));}return {name:{formatted_name:o,first_name:r||o,...s?{last_name:s}:{}},...i.length>0?{phones:i}:{}}}function nt(n,e,t,r){let s=t,i=typeof s.text=="string"?{conversation:s.text}:{};return {key:{id:n,remoteJid:Q(Bs(e)),fromMe:true},message:i,messageTimestamp:Math.floor(r/1e3)}}var _a=["image","video","audio","document","sticker"];function Fs(n){let e=n;for(let t of _a){let r=e[t];if(Buffer.isBuffer(r))return {kind:t,buffer:r,...typeof e.caption=="string"?{caption:e.caption}:{},...typeof e.fileName=="string"?{fileName:e.fileName}:{},...typeof e.mimetype=="string"?{mimetype:e.mimetype}:{}}}return null}async function Us(n,e,t){let r=t.mimetype??await me(t.buffer),s=new FormData;s.set("messaging_product","whatsapp"),s.set("type",r),s.set("file",new Blob([new Uint8Array(t.buffer)],{type:r}),t.fileName??"file");let i=await n.postForm(`${e}/media`,s);if(!i.id)throw new A("REQUEST_FAILED","media upload returned no id");return i.id}function js(n,e){return {id:e,...n.caption!==void 0&&n.kind!=="audio"&&n.kind!=="sticker"?{caption:n.caption}:{},...n.kind==="document"&&n.fileName!==void 0?{filename:n.fileName}:{}}}var La=["image","video","audio","document","sticker"],Na=n=>{let e=n.event,t=n.message_template_name;return typeof e!="string"||typeof t!="string"?null:{event:e,id:String(n.message_template_id??""),name:t,...typeof n.message_template_language=="string"?{language:n.message_template_language}:{},...typeof n.reason=="string"?{reason:n.reason}:{}}},Nt=(n,e)=>n.contacts?.find(t=>t.wa_id===e)?.profile?.name??n.contacts?.[0]?.profile?.name,Da=n=>{for(let e of La){let t=n[e];if(n.type===e&&t&&typeof t=="object"){let r=t;return {[`${e}Message`]:{...r.mime_type?{mimetype:r.mime_type}:{},...r.caption?{caption:r.caption}:{},...r.filename?{fileName:r.filename}:{},...r.voice===true?{ptt:true}:{},...r.id?{cloudMediaId:r.id}:{}}}}}return null},Ba=n=>{let e=n.interactive;return n.type!=="interactive"||!e?null:e.type==="button_reply"&&e.button_reply?.id?{buttonsResponseMessage:{selectedButtonId:e.button_reply.id,selectedDisplayText:e.button_reply.title??""}}:e.type==="list_reply"&&e.list_reply?.id?{listResponseMessage:{singleSelectReply:{selectedRowId:e.list_reply.id},title:e.list_reply.title??""}}:null},Wa=n=>{let e=n.location;return n.type!=="location"||typeof e?.latitude!="number"||typeof e.longitude!="number"?null:{locationMessage:{degreesLatitude:e.latitude,degreesLongitude:e.longitude,...e.name?{name:e.name}:{},...e.address?{address:e.address}:{}}}},Fa=n=>{let e=n.contacts;if(n.type!=="contacts"||!Array.isArray(e)||e.length===0)return null;let t=e.map(s=>{let i=s.name?.formatted_name??"",o=(s.phones??[]).filter(a=>typeof a.phone=="string").map(a=>`TEL${a.wa_id?`;waid=${a.wa_id}`:""}:${a.phone}`).join(`
16
16
  `);return {displayName:i,vcard:`BEGIN:VCARD
17
17
  VERSION:3.0
18
18
  FN:${i}${o?`
19
19
  ${o}`:""}
20
- END:VCARD`}}),r=t.length===1?t[0]:void 0;return r?{contactMessage:r}:{contactsArrayMessage:{displayName:`${t.length} contacts`,contacts:t}}},Ua=(n,e)=>{if(!n.id||!n.from)return null;let t=n.type==="text"&&typeof n.text?.body=="string"?{conversation:n.text.body}:Da(n)??Ba(n)??Wa(n)??Fa(n);if(t===null)return null;let r=Nt(e,n.from);return {key:{id:n.id,remoteJid:de(n.from),fromMe:false},message:t,messageTimestamp:Number(n.timestamp??0)||0,...r?{pushName:r}:{}}},ja=n=>{let e=n.id,t=n.status;if(typeof e!="string"||typeof t!="string"||t!=="sent"&&t!=="delivered"&&t!=="read"&&t!=="failed")return null;let r=typeof n.recipient_id=="string"?de(n.recipient_id):"",s=n.conversation,i=n.errors;return {id:e,status:t,recipientId:r,timestamp:Number(n.timestamp??0)||0,...s?.id?{conversationId:s.id}:{},...i?.[0]?{error:i[0]}:{}}},qa=(n,e)=>{let t=n.interactive;if(n.type!=="interactive"||t?.type!=="nfm_reply"||!n.id||!n.from)return null;let r=t.nfm_reply,s={};try{s=JSON.parse(r?.response_json??"{}");}catch{s={};}let i=Nt(e,n.from);return {id:n.id,name:r?.name??"flow",...r?.body?{body:r.body}:{},response:s,senderId:de(n.from),...i?{senderName:i}:{},timestamp:Number(n.timestamp??0)||0}},Ka=(n,e)=>{let t=n.order;if(n.type!=="order"||!t||!n.id||!n.from)return null;let r=Nt(e,n.from);return {id:n.id,catalogId:t.catalog_id??"",...t.text?{text:t.text}:{},items:(t.product_items??[]).map(s=>({productRetailerId:s.product_retailer_id??"",quantity:s.quantity??0,price:s.item_price??0,currency:s.currency??""})),senderId:de(n.from),...r?{senderName:r}:{},timestamp:Number(n.timestamp??0)||0}},$a=(n,e)=>{let t=n.reaction;if(n.type!=="reaction"||!n.id||!n.from||typeof t?.message_id!="string")return null;let r=de(n.from),s=Nt(e,n.from);return {key:{id:n.id,remoteJid:r,fromMe:false},reaction:{key:{id:t.message_id,remoteJid:r,fromMe:false},text:t.emoji??"",senderTimestampMs:(Number(n.timestamp??0)||0)*1e3},...s?{pushName:s}:{}}};function qs(n){let e=[],t=[],r=[],s=[],i=[],o=[];for(let a of n.entry??[])for(let c of a.changes??[]){let d=c.value;if(d){if(c.field==="message_template_status_update"){let l=Na(d);l&&s.push(l);continue}for(let l of d.messages??[]){let u=$a(l,d);if(u){t.push(u);continue}let w=qa(l,d);if(w){i.push(w);continue}let M=Ka(l,d);if(M){o.push(M);continue}let v=Ua(l,d);v&&e.push(v);}for(let l of d.statuses??[]){let u=ja(l);u&&r.push(u);}}}return {messages:e,reactions:t,statuses:r,templateStatuses:s,flowResponses:i,orders:o}}var Ks=3,Tn=n=>{if(!n)return {};try{return JSON.parse(n)}catch{return {}}};function $s(n){let e=n.interactiveMessage;if(!e)return null;let t=e.nativeFlowMessage?.buttons??[],r=e.body?.text??" ",s=e.footer?.text,i=e.header?.title;if(e.header?.hasMediaAttachment===true)throw new A("NOT_IMPLEMENTED","interactive media headers are not supported on the cloud provider yet");let o={body:{text:r},...s?{footer:{text:s}}:{}},a=t.length===1?t[0]:void 0;if(a?.name==="single_select"){let l=Tn(a.buttonParamsJson);return {type:"list",...i?{header:{type:"text",text:i}}:{},...o,action:{button:l.title??"Select",sections:(l.sections??[]).map(u=>({...u.title?{title:u.title}:{},rows:(u.rows??[]).map(w=>({id:w.id??"",title:w.title??"",description:w.description??""}))}))}}}let c=t.filter(l=>l.name==="quick_reply");if(c.length>0&&c.length===t.length){if(c.length>Ks)throw new A("NOT_IMPLEMENTED",`cloud interactive buttons allow at most ${Ks} reply buttons (got ${c.length})`);return {type:"button",...i?{header:{type:"text",text:i}}:{},...o,action:{buttons:c.map(l=>{let u=Tn(l.buttonParamsJson);return {type:"reply",reply:{id:u.id??"",title:u.display_text??""}}})}}}let d=a&&a.name==="cta_url"?Tn(a.buttonParamsJson):null;if(d){let l=d;return {type:"cta_url",...i?{header:{type:"text",text:i}}:{},...o,action:{name:"cta_url",parameters:{display_text:l.display_text??"",url:l.url??""}}}}throw new A("NOT_IMPLEMENTED","this interactive layout is not supported on the cloud provider yet")}var Se=class{ev=new events.EventEmitter;user;options;graph;constructor(e){this.options=e,this.user={id:e.phoneNumberId},this.graph=Lt(e);}get apiVersion(){return this.options.apiVersion??_t}get baseUrl(){return this.options.baseUrl??kn}url(e){return `${this.baseUrl}/${this.apiVersion}/${e}`}async connect(){let e;try{e=await fetch(this.url(this.options.phoneNumberId),{method:"GET",headers:{Authorization:`Bearer ${this.options.accessToken}`}});}catch(r){throw new A("REQUEST_FAILED","cloud health-check request failed",{cause:r})}if(e.status===401||e.status===403)throw new A("AUTH",`cloud auth rejected (${e.status}) \u2014 check accessToken/phoneNumberId`);if(!e.ok)throw new A("REQUEST_FAILED",`cloud health-check failed (${e.status})`);let t=await e.json().catch(()=>({}));return {id:t.id??this.options.phoneNumberId,...t.verified_name?{name:t.verified_name}:{}}}async disconnect(){this.ev.removeAllListeners();}relayMessage=async(e,t,r)=>{let s=t;if(s.botForwardedMessage!=null||s.richResponseMessage!=null)throw new A("NOT_IMPLEMENTED","AIRich rich responses (rich: true) are a WhatsApp-Web-only feature and are not supported on the cloud provider. Send the markdown as plain text with send().text(md) \u2014 WhatsApp renders *bold*, _italic_, ~strike~ and ```mono``` natively.");let i=$s(s);if(i===null)throw new A("NOT_IMPLEMENTED","this relay content is not supported on the cloud provider");let o={...G(e,"interactive"),interactive:i},c=(await this.graph.post(`${this.options.phoneNumberId}/messages`,o)).messages?.[0]?.id;if(c){let d=nt(c,e,{text:""},Date.now());d.message=t,this.ev.emit("messages.upsert",{messages:[d],type:"append"});}return r.messageId};async sendInteractive(e,t){let r={...G(e,"interactive"),interactive:t},i=(await this.graph.post(`${this.options.phoneNumberId}/messages`,r)).messages?.[0]?.id;if(!i)throw new A("REQUEST_FAILED","graph interactive send returned no message id");let o=nt(i,e,{text:""},Date.now());return o.message={interactiveMessage:t},this.ev.emit("messages.upsert",{messages:[o],type:"append"}),o}async sendTemplate(e,t,r,s){let i={...G(e,"template"),template:{name:t,language:{code:r},...s!==void 0?{components:s}:{}}},a=(await this.graph.post(`${this.options.phoneNumberId}/messages`,i)).messages?.[0]?.id;if(!a)throw new A("REQUEST_FAILED","graph template send returned no message id");let c=nt(a,e,{text:`template:${t}`},Date.now());return this.ev.emit("messages.upsert",{messages:[c],type:"append"}),c}async markRead(e,t){await this.graph.post(`${this.options.phoneNumberId}/messages`,{messaging_product:"whatsapp",status:"read",message_id:e,...t?.typing===true?{typing_indicator:{type:"text"}}:{}});}async downloadMedia(e){let t=await this.graph.get(e);if(!t.url)return null;let r;try{r=await fetch(t.url,{headers:{Authorization:`Bearer ${this.options.accessToken}`}});}catch(o){throw new A("REQUEST_FAILED","media download failed",{cause:o})}if(!r.ok)throw new A("REQUEST_FAILED",`media download failed (${r.status})`);let s=Buffer.from(await r.arrayBuffer()),i=t.mime_type??await me(s);return {buffer:s,mime:i,size:s.byteLength}}ingest(e){let{messages:t,reactions:r,statuses:s,templateStatuses:i,flowResponses:o,orders:a}=qs(e);t.length>0&&this.ev.emit("messages.upsert",{messages:t,type:"notify"}),r.length>0&&this.ev.emit("messages.reaction",r);for(let c of s)this.ev.emit("cloud.status",c);for(let c of i)this.ev.emit("cloud.template-status",c);for(let c of o)this.ev.emit("cloud.flow-response",c);for(let c of a)this.ev.emit("cloud.order",c);}async sendMessage(e,t,r){let s=Ws(e,t,r);if(s===null){let c=Fs(t);if(c){let d=await Us(this.graph,this.options.phoneNumberId,c);s={...G(e,c.kind,r),[c.kind]:js(c,d)};}}if(s===null)throw new A("NOT_IMPLEMENTED","this content type is not supported on the cloud provider yet");let o=(await this.graph.post(`${this.options.phoneNumberId}/messages`,s)).messages?.[0]?.id;if(!o)throw new A("REQUEST_FAILED","graph send returned no message id");let a=nt(o,e,t,Date.now());return this.ev.emit("messages.upsert",{messages:[a],type:"append"}),a}};var rt=class{graph;options;getTransport;constructor(e,t){this.options=e,this.graph=Lt(e),this.getTransport=t;}requireWaba(){let e=this.options.wabaId;if(!e)throw new A("CONFIG","this operation needs cloud.wabaId (WhatsApp Business Account id)");return e}async info(){return this.graph.get(`${this.options.phoneNumberId}?fields=id,display_phone_number,verified_name,quality_rating,throughput,code_verification_status,platform_type`)}async phoneNumbers(){let e=this.requireWaba();return (await this.graph.get(`${e}/phone_numbers?fields=id,display_phone_number,verified_name,quality_rating`)).data??[]}async sendAddressRequest(e,t){return (await this.getTransport().sendInteractive(e,{type:"address_message",body:{text:t.bodyText},action:{name:"address_message",parameters:{country:t.countryIso,...t.values?{values:t.values}:{}}}})).key}commerce={catalogs:async()=>{let e=this.requireWaba();return (await this.graph.get(`${e}/product_catalogs?fields=id,name`)).data??[]},products:async(e,t=50)=>(await this.graph.get(`${e}/products?fields=id,retailer_id,name,price,availability&limit=${t}`)).data??[],sendProduct:async(e,t)=>(await this.getTransport().sendInteractive(e,{type:"product",...t.bodyText?{body:{text:t.bodyText}}:{},...t.footerText?{footer:{text:t.footerText}}:{},action:{catalog_id:t.catalogId,product_retailer_id:t.retailerId}})).key,sendProductList:async(e,t)=>(await this.getTransport().sendInteractive(e,{type:"product_list",header:{type:"text",text:t.headerText},body:{text:t.bodyText},...t.footerText?{footer:{text:t.footerText}}:{},action:{catalog_id:t.catalogId,sections:t.sections.map(s=>({title:s.title,product_items:s.productIds.map(i=>({product_retailer_id:i}))}))}})).key};templates={list:async e=>{let t=this.requireWaba(),r=new URLSearchParams;e?.status&&r.set("status",e.status),e?.limit&&r.set("limit",String(e.limit));let s=r.size>0?`?${r.toString()}`:"";return (await this.graph.get(`${t}/message_templates${s}`)).data??[]},get:async e=>{let t="id,name,status,category,language,components,quality_score";if(/^\d+$/.test(e)){let i=await this.graph.get(`${e}?fields=${t}`);return i.id?i:null}let r=this.requireWaba();return (await this.graph.get(`${r}/message_templates?name=${encodeURIComponent(e)}&fields=${t}`)).data?.[0]??null},create:async e=>{let t=this.requireWaba();return this.graph.post(`${t}/message_templates`,e)},delete:async(e,t)=>{let r=this.requireWaba(),s=new URLSearchParams({name:e});t&&s.set("hsm_id",t),await this.graph.delete(`${r}/message_templates?${s.toString()}`);}};profile={get:async()=>(await this.graph.get(`${this.options.phoneNumberId}/whatsapp_business_profile?fields=about,address,description,email,websites,vertical`)).data?.[0]??{},update:async e=>{await this.graph.post(`${this.options.phoneNumberId}/whatsapp_business_profile`,{messaging_product:"whatsapp",...e});}};flows={list:async()=>{let e=this.requireWaba();return (await this.graph.get(`${e}/flows`)).data??[]},send:async(e,t)=>{if(!t.flowId&&!t.flowName)throw new A("CONFIG","flows.send needs flowId or flowName");return (await this.getTransport().sendInteractive(e,{type:"flow",...t.headerText?{header:{type:"text",text:t.headerText}}:{},body:{text:t.bodyText},...t.footerText?{footer:{text:t.footerText}}:{},action:{name:"flow",parameters:{flow_message_version:"3",...t.flowId?{flow_id:t.flowId}:{},...t.flowName?{flow_name:t.flowName}:{},flow_cta:t.cta,...t.flowToken?{flow_token:t.flowToken}:{},...t.mode?{mode:t.mode}:{},flow_action:t.action??"navigate",flow_action_payload:{screen:t.screen,...t.data?{data:t.data}:{}}}}})).key}};blocklist={add:async e=>{await this.graph.post(`${this.options.phoneNumberId}/block_users`,{messaging_product:"whatsapp",block_users:e.map(t=>({user:t}))});},remove:async e=>{await this.graph.delete(`${this.options.phoneNumberId}/block_users`,{messaging_product:"whatsapp",block_users:e.map(t=>({user:t}))});},list:async()=>(await this.graph.get(`${this.options.phoneNumberId}/block_users`)).data?.[0]?.block_users??[]};qr={create:async(e,t="PNG")=>this.graph.post(`${this.options.phoneNumberId}/message_qrdls`,{prefilled_message:e,generate_qr_image:t}),list:async()=>(await this.graph.get(`${this.options.phoneNumberId}/message_qrdls`)).data??[],delete:async e=>{await this.graph.delete(`${this.options.phoneNumberId}/message_qrdls/${e}`);}};analytics={conversations:async e=>{let t=this.requireWaba(),r=`conversation_analytics.start(${e.start}).end(${e.end}).granularity(${e.granularity??"DAILY"})`,s=await this.graph.get(`${t}?fields=${encodeURIComponent(r)}`);return s.conversation_analytics??s},messages:async e=>{let t=this.requireWaba(),r=`analytics.start(${e.start}).end(${e.end}).granularity(${e.granularity??"DAY"})`,s=await this.graph.get(`${t}?fields=${encodeURIComponent(r)}`);return s.analytics??s}};phone={register:async e=>{await this.graph.post(`${this.options.phoneNumberId}/register`,{messaging_product:"whatsapp",pin:e});},deregister:async()=>{await this.graph.post(`${this.options.phoneNumberId}/deregister`,{});},requestCode:async(e,t="en_US")=>{await this.graph.post(`${this.options.phoneNumberId}/request_code`,{code_method:e,language:t});},verifyCode:async e=>{await this.graph.post(`${this.options.phoneNumberId}/verify_code`,{code:e});}}};var Ha=(n,e,t)=>{if(!t||!t.startsWith("sha256="))return false;let r=crypto.createHmac("sha256",n).update(e).digest("hex"),s=t.slice(7);return s.length!==r.length?false:crypto.timingSafeEqual(Buffer.from(s,"utf8"),Buffer.from(r,"utf8"))};function In(n){return async e=>{if(e.method==="GET"){let s=new URL(e.url),i=s.searchParams.get("hub.mode"),o=s.searchParams.get("hub.verify_token"),a=s.searchParams.get("hub.challenge")??"";return i==="subscribe"&&n.verifyToken!==void 0&&o===n.verifyToken?new Response(a,{status:200}):new Response("forbidden",{status:403})}if(e.method!=="POST")return new Response("method not allowed",{status:405});let t=await e.text();if(n.appSecret!==void 0&&!Ha(n.appSecret,t,e.headers.get("x-hub-signature-256")))return new Response("invalid signature",{status:401});let r;try{r=JSON.parse(t);}catch{return new Response("malformed body",{status:400})}try{n.onPayload(r);}catch{}return new Response("OK",{status:200})}}var Za="default",Qa="qr",Gs=6e4,Xa=2,ec=3e3,Vs=class extends Rt{sessionId;auth;store;logger;authType;phoneNumber;cacheSignal;qrTerminal;statusLog;reconnectOptions;baileysExtra;machine=Fr();reconnectStrategy;authGuard;operationGuard;presenceThrottle;scheduleLimiter;authExhausted=false;_socket;reconnectTimer;listenerCleanup=[];inboundHandle;connectResolve;connectReject;pairingRequested=false;cachedSignalWrap=false;creds;credsLoadedAtConnect=false;openedThisRun=false;credsHintShown=false;postOpenLogoutRetries=0;disconnectEmittedFor=0;connectAttemptSeq=0;pendingDisconnectReason;usernameCache=new Map;_group;_privacy;_newsletter;_community;_profile;_chat;_contact;_business;commandRegistry;commandMiddleware=[];commandPrefixes;citationConfig;ignoreMe;commandDispatcher;_presence;_scheduler;autoDeleteOptions;autoDeleteSweeper;pluginsOptions;pluginRegistry;pluginLoader;waVersion;versionWarming;_provider;cloudOptions;cloudTransport;cloudRuntimeReady=false;_cloudModule;constructor(e={}){super({logger:Mn(e.logger)}),this._provider=e.provider??"baileys",this.cloudOptions=this._provider==="cloud"?En(e.cloud):void 0,this.sessionId=e.sessionId??Za,this.logger=Mn(e.logger),this.authType=e.authType??Qa,this.phoneNumber=e.phoneNumber,this.cacheSignal=e.cacheSignal??true,this.qrTerminal=e.qrTerminal??true,this.statusLog=e.statusLog??true,this.statusLog&&Or(),this.reconnectOptions=e.reconnect??{},this.baileysExtra=e.baileys??{},this.auth=e.auth??new Mt({basePath:`./.zaileys/auth/${this.sessionId}`}),this.store=e.store??new Pt,this.reconnectStrategy=Wr(this.reconnectOptions),this.authGuard=Nr(e.authGuard),this.operationGuard=wn(e.operationGuard),this.presenceThrottle=e.presence;let t=e.scheduleRateLimitPerSec??1;this.scheduleLimiter=t>0?new se({perSec:t}):void 0,this.commandPrefixes=tc(e.commandPrefix),this.citationConfig=e.citation,this.ignoreMe=e.ignoreMe??true,this.autoDeleteOptions=e.autoDelete===false?void 0:{maxAgeMs:720*60*60*1e3,...e.autoDelete},this.pluginsOptions=e.plugins,this.attachEmitterLogger(),(e.autoConnect??true)&&queueMicrotask(()=>{this.machine.state==="idle"&&this.warmVersion().finally(()=>{if(this.machine.state==="idle")try{this.connect().catch(r=>this.emitAutoConnectError(r));}catch(r){this.emitAutoConnectError(r);}});});}warmVersion(){if(this._provider==="cloud"||this.waVersion)return Promise.resolve();if(this.versionWarming)return this.versionWarming;try{return typeof za.fetchLatestBaileysVersion!="function"?Promise.resolve():(this.versionWarming=za.fetchLatestBaileysVersion().then(({version:e})=>{this.waVersion=e;}).catch(e=>{this.logger.warn(e,"fetchLatestBaileysVersion failed; using bundled version");}),this.versionWarming)}catch{return Promise.resolve()}}emitAutoConnectError(e){let t=e instanceof Error?e:new Error(String(e));this.logger.error(t,"auto-connect failed"),this.listenerCount("error")>0&&this.emit("error",{sessionId:this.sessionId,error:t});}logStatus(e){if(!this.statusLog)return;let t=Ir(e);t&&process.stderr.write(`${t}
21
- `);}resolveMe(){let e=this._socket?.user;if(e&&typeof e.id=="string"&&e.id.length>0)return e;let t=this.creds?.me;return t&&typeof t.id=="string"&&t.id.length>0?t:{id:""}}get provider(){return this._provider}get state(){return this.machine.state}get socket(){return this._socket}assertWebProvider(e){if(this._provider==="cloud")throw new tt(e)}get group(){return this.assertWebProvider("group"),this._group??=new Ie(()=>this._socket,this.operationGuard)}get privacy(){return this.assertWebProvider("privacy"),this._privacy??=new Oe(()=>this._socket)}get newsletter(){return this.assertWebProvider("newsletter"),this._newsletter??=new xe(()=>this._socket,this.operationGuard)}get community(){return this.assertWebProvider("community"),this._community??=new Re(()=>this._socket,this.operationGuard)}get profile(){return this.assertWebProvider("profile"),this._profile??=new _e(()=>this._socket)}get chat(){return this.assertWebProvider("chat"),this._chat??=new Le(()=>this._socket,async e=>{try{let t=await this.store.listMessages(e,{limit:1}),r=s=>{if(typeof s=="number")return s;if(s!=null&&typeof s.toNumber=="function")return s.toNumber();let i=Number(s??0);return Number.isFinite(i)?i:0};return t.filter(s=>s.key!=null).map(s=>({key:s.key,messageTimestamp:r(s.messageTimestamp)})).filter(s=>s.messageTimestamp>0)}catch{return []}})}get contact(){return this.assertWebProvider("contact"),this._contact??=new Ne(()=>this._socket,e=>Te(e)?e:`${e.replace(/\D/g,"")}@s.whatsapp.net`)}get business(){return this.assertWebProvider("business"),this._business??=new De(()=>this._socket)}get presence(){return this.assertWebProvider("presence"),this._presence??=new je(()=>this._socket,this.presenceThrottle)}async broadcast(e,t,r){return this.requireSocket(),vn(e,t,{sendTo:s=>this.send(s)},r)}async scheduleAt(e,t){return this.ensureScheduler().scheduleAt(e,t)}ensureScheduler(){return this._scheduler??=new qe({store:this.store,sendSnapshot:e=>this.dispatchSnapshot(e),logger:this.logger,...this.scheduleLimiter?{acquire:()=>this.scheduleLimiter.acquire()}:{}})}async dispatchSnapshot(e){await this.requireSocket().sendMessage(e.recipient,e.content,e.options);}connect(){if(this._provider==="cloud")return this.connectCloud();if(this.authType==="pairing"&&!this.phoneNumber)return Promise.reject(new Error('phoneNumber is required when authType is "pairing"'));if(this.machine.state==="connecting"||this.machine.state==="connected"||this.machine.state!=="idle"&&this.machine.state!=="disconnected"&&this.machine.state!=="reconnecting")return Promise.resolve();if(this._socket){for(let a of this.listenerCleanup)a.off();this.listenerCleanup=[],this._socket=void 0;}let e=this.machine.state==="reconnecting";e||(this.authGuard.reset(),this.authExhausted=false),this.machine.transition("connecting"),this.connectAttemptSeq+=1,this.pairingRequested=false,this.openedThisRun=false,e||this.logStatus({kind:"connecting",sessionId:this.sessionId}),this.cacheSignal&&!this.cachedSignalWrap&&(this.auth=xr(this.auth,{logger:this.logger}),this.cachedSignalWrap=true),this.warmVersion();let t={};this.creds=t;let r=Rr(this.auth.signal,this.logger),s={markOnlineOnConnect:false,syncFullHistory:false,qrTimeout:Gs,...this.waVersion?{version:this.waVersion}:{},...this.baileysExtra,auth:{creds:t,keys:r},logger:this.logger,getMessage:a=>this.resolveMessageForResend(a)},i=za__default.default(s);this._socket=i,this.store.bind(i),this.wireSocket(i);let o=new Promise((a,c)=>{let d=this.connectResolve,l=this.connectReject;this.connectResolve=()=>{d?.(),a();},this.connectReject=u=>{l?.(u),c(u);};});return this.auth.creds.readCreds().then(a=>{this.credsLoadedAtConnect=!!a,Object.assign(t,a??za.initAuthCreds());}).catch(a=>{this.rejectPendingConnect(a instanceof Error?a:new Error(String(a)));}),o}ensureCloudRuntime(){let e=this.cloudTransport??=new Se(this.cloudOptions);return this.cloudRuntimeReady||(this.cloudRuntimeReady=true,this.store.bind(e),this.attachCloudPipeline(e,this.cloudOptions.phoneNumberId)),e}async connectCloud(){if(this.machine.state==="connecting"||this.machine.state==="connected")return;this.machine.transition("connecting"),this.logStatus({kind:"connecting",sessionId:this.sessionId});let e=this.ensureCloudRuntime();try{let t=await e.connect();this.machine.transition("connected"),this.logStatus({kind:"connected",id:t.id}),this.emit("connect",{sessionId:this.sessionId,me:t});}catch(t){throw this.machine.transition("disconnected"),t}}attachCloudPipeline(e,t){let r=t.includes("@")?t:`${t}@s.whatsapp.net`;this.inboundHandle?.detach(),this.inboundHandle=Cn(this,e,{selfJid:r,channelId:this.sessionId,receiverId:r,prefixes:this.commandPrefixes,logger:this.logger,...this.citationConfig!=null?{citationConfig:this.citationConfig}:{},receiverName:()=>Promise.resolve(null),resolveQuoted:(s,i)=>this.lookupQuoted(s,i),resolveLidToPn:()=>Promise.resolve(null),sendReply:async(s,i,o,a)=>await this.send(s).text(i,o).reply(a),react:(s,i)=>this.react(s,i),ignoreMe:this.ignoreMe}),e.ev.on("cloud.status",s=>{this.emit("message-status",s);}),e.ev.on("cloud.template-status",s=>{this.emit("template-status",s);}),e.ev.on("cloud.flow-response",s=>{this.emit("flow-response",s);}),e.ev.on("cloud.order",s=>{this.emit("order",s);}),this.attachCommandsIfReady();}webhook(){if(this._provider!=="cloud")throw new A("CONFIG","webhook() is only available on the cloud provider");let e=this.cloudOptions;return In({...e.verifyToken!==void 0?{verifyToken:e.verifyToken}:{},...e.appSecret!==void 0?{appSecret:e.appSecret}:{},onPayload:t=>{this.ensureCloudRuntime().ingest(t);}})}async disconnectCloud(){this.machine.state==="idle"||this.machine.state==="disconnected"||(this.machine.canTransition("disconnecting")&&this.machine.transition("disconnecting"),await this.cloudTransport?.disconnect(),this.machine.transition("disconnected"),this.emit("disconnect",{sessionId:this.sessionId,reason:"unknown",willReconnect:false}));}async disconnect(){if(this._provider==="cloud")return this.disconnectCloud();if(!(this.machine.state==="idle"||this.machine.state==="disconnected")){this.machine.transition("disconnecting"),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=void 0),this.inboundHandle?.detach(),this.inboundHandle=void 0,this.detachCommands(),this.autoDeleteSweeper?.stop(),this.autoDeleteSweeper=void 0,await this.pluginLoader?.stop().catch(()=>{}),this.pluginLoader=void 0,this.pluginRegistry=void 0,this._scheduler?.dispose();for(let e of this.listenerCleanup)e.off();if(this.listenerCleanup=[],this._socket){try{this._socket.end(void 0);}catch(e){this.logger.warn(e,"socket.end threw");}this._socket=void 0;}try{await this.auth.signal.close();}catch(e){this.logger.warn(e,"auth.signal.close failed");}try{await this.store.close();}catch(e){this.logger.warn(e,"store.close failed");}if(this.machine.transition("disconnected"),this.disconnectEmittedFor!==this.connectAttemptSeq){let e=this.pendingDisconnectReason??"unknown";this.pendingDisconnectReason=void 0,this.disconnectEmittedFor=this.connectAttemptSeq,this.emit("disconnect",{sessionId:this.sessionId,reason:e,willReconnect:false});}this.rejectPendingConnect(new Error("disconnected before connect resolved"));}}async logout(){if(this.pendingDisconnectReason="logged-out",this._socket)try{await this._socket.logout();}catch(e){this.logger.warn(e,"socket.logout failed");}try{await this.auth.signal.clear();}catch(e){this.logger.warn(e,"auth.signal.clear failed");}try{await this.auth.creds.deleteCreds();}catch(e){this.logger.warn(e,"auth.creds.deleteCreds failed");}if(this.machine.state==="idle"||this.machine.state==="disconnected"){this.disconnectEmittedFor!==this.connectAttemptSeq&&(this.disconnectEmittedFor=this.connectAttemptSeq,this.emit("disconnect",{sessionId:this.sessionId,reason:"logged-out",willReconnect:false})),this.pendingDisconnectReason=void 0;return}await this.disconnect();}command(e,t){return (this.commandRegistry??=new Be).register(e,t),this.attachCommandsIfReady(),this}unregisterCommand(e){return this.commandRegistry?.unregister(e),this}use(e){return this.commandMiddleware.push(e),this}unuse(e){let t=this.commandMiddleware.indexOf(e);return t>=0&&this.commandMiddleware.splice(t,1),this}attachCommandsIfReady(){if(this.commandDispatcher||this.commandPrefixes.length===0||this.commandRegistry===void 0||this.commandRegistry.list().length===0||!this._socket)return;let e=this.commandRegistry;this.commandDispatcher=fn({registry:e,middleware:this.commandMiddleware,prefixes:this.commandPrefixes,logger:this.logger,onText:t=>{let r=s=>t(s);return this.on("text",r),()=>this.off("text",r)},buildContext:(t,r)=>this.buildCommandContext(t,r)});}buildCommandContext(e,t){let r;return {...t,raw:e.raw,command:e.command,args:e.args,flags:e.flags,json:e.json,reply:async(s,i)=>{let o=t.message().key.remoteJid??t.roomId??t.senderId,a=await this.send(o).text(s,i).reply(t.message());return r=a,a},react:s=>this.react(t.message().key,s),edit:async s=>{if(r===void 0)throw new R("NO_SENT_MESSAGE","ctx.edit requires a prior ctx.reply");await this.edit(r).text(s);}}}detachCommands(){this.commandDispatcher?.detach(),this.commandDispatcher=void 0;}send(e){let t=this.requireBuilderSocket(),r=s=>{this.store.saveMessage(s).catch(i=>this.logger.warn(i,"recordSent failed"));};return this._provider==="cloud"||Te(e)?z.create(t,e,void 0,r):z.create(t,e,s=>this.resolveRecipient(s),r)}edit(e){return this.assertWebProvider("edit"),new ke(this.requireSocket(),e)}async delete(e,t){this.assertWebProvider("delete"),await dn(this.requireSocket(),e,t);}async react(e,t){return ln(this.requireBuilderSocket(),e,t)}get cloud(){if(this._provider!=="cloud")throw new A("CONFIG","wa.cloud requires provider: 'cloud'");return this._cloudModule??=new rt(this.cloudOptions,()=>this.cloudTransport??=new Se(this.cloudOptions))}async sendTemplate(e,t,r,s){if(this._provider!=="cloud"||!this.cloudTransport)throw new A("CONFIG","sendTemplate() is only available on the cloud provider");return (await this.cloudTransport.sendTemplate(e,t,r,s)).key}async markRead(e,t){if(this._provider!=="cloud"||!this.cloudTransport)throw new A("CONFIG","markRead(messageId) is only available on the cloud provider");await this.cloudTransport.markRead(e,t);}async forward(e,t){let r=this.requireSocket(),s=await this.resolveRecipient(t);return un(r,this.store,e,s)}async pin(e,t){return this.assertWebProvider("pin"),yt(this.requireSocket(),e,true,t)}async unpin(e){return this.assertWebProvider("unpin"),yt(this.requireSocket(),e,false)}async setDisappearing(e,t){this.assertWebProvider("setDisappearing");let r=await this.resolveRecipient(e);await this.requireSocket().sendMessage(r,{disappearingMessagesInChat:t});}resolveRecipient(e){return pn(this.requireSocket(),e,this.usernameCache)}requireSocket(){if(!this._socket)throw new g("INVALID_OPTIONS","client not connected");return this._socket}requireBuilderSocket(){if(this._provider==="cloud"){if(!this.cloudTransport||this.machine.state!=="connected")throw new g("INVALID_OPTIONS","client not connected");return this.cloudTransport}return this.requireSocket()}attachEmitterLogger(){this.logger;}wireSocket(e){let t=s=>{this.handleConnectionUpdate(s);},r=s=>{let i=this.creds?Object.assign(this.creds,s):s;this.creds=i,this.auth.creds.writeCreds(i).catch(o=>{this.logger.warn(o,"auth.creds.writeCreds failed");});};e.ev.on("connection.update",t),e.ev.on("creds.update",r),this.listenerCleanup.push({off:()=>e.ev.off("connection.update",t)}),this.listenerCleanup.push({off:()=>e.ev.off("creds.update",r)});}async handleConnectionUpdate(e){if(e.qr&&await this.handleQrUpdate(e.qr),e.connection==="open"){this.handleOpen();return}e.connection==="close"&&await this.handleClose(e.lastDisconnect);}async handleQrUpdate(e){if(this.authExhausted)return;if(this.authType==="pairing"&&this.phoneNumber){if(this.pairingRequested)return;let s=Date.now(),i=this.authGuard.evaluate("pairing",s);if(!i.allowed){i.reason==="budget-exhausted"&&this.handleAuthExhausted("pairing",i.attempts,i.max);return}this.pairingRequested=true,this.authGuard.record("pairing",s),this.machine.canTransition("pairing-pending")&&this.machine.transition("pairing-pending");try{let o=Dr({phoneNumber:this.phoneNumber}),a=this._socket;if(!a)return;let c=await o.requestCode(a);this.logStatus({kind:"pairing-code",code:c.code}),this.emit("pairing-code",{sessionId:this.sessionId,code:c.code,expiresAt:c.expiresAt});}catch(o){this.logger.warn(o,"pairing-code request failed");}return}let t=Date.now(),r=this.authGuard.evaluate("qr",t);if(!r.allowed){this.handleAuthExhausted("qr",r.attempts,r.max);return}if(this.authGuard.record("qr",t),this.machine.canTransition("qr-pending")&&this.machine.transition("qr-pending"),this.qrTerminal)try{await Br(e);}catch(s){this.logger.warn(s,"printQrToTerminal failed");}this.logStatus({kind:"qr"}),this.emit("qr",{sessionId:this.sessionId,qrString:e,expiresAt:t+Gs});}handleAuthExhausted(e,t,r){this.authExhausted||(this.authExhausted=true,this.logger.warn({sessionId:this.sessionId,kind:e,attempts:t,max:r},`auth attempts exhausted (${t}/${r} ${e}); stopping to avoid WhatsApp spam restriction \u2014 call connect() to retry`),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=void 0),this.emit("auth-exhausted",{sessionId:this.sessionId,kind:e,attempts:t,max:r}),this.disconnect());}handleOpen(){this.machine.canTransition("connected")&&this.machine.transition("connected"),this.openedThisRun=true,this.credsHintShown=false,this.postOpenLogoutRetries=0,this.authExhausted=false,this.authGuard.reset(),this.reconnectStrategy.reset();let e=this.resolveMe();this.logStatus({kind:"connected",id:typeof e.id=="string"?e.id:""}),this.emit("connect",{sessionId:this.sessionId,me:e});let t=this._socket;t&&(this.inboundHandle?.detach(),this.inboundHandle=Cn(this,t,{selfJid:typeof e.id=="string"?e.id:"",...typeof e.lid=="string"&&e.lid.length>0?{selfLid:e.lid}:{},...typeof e.name=="string"&&e.name.length>0?{selfName:e.name}:{},channelId:this.sessionId,receiverId:typeof e.id=="string"?e.id:"",prefixes:this.commandPrefixes,logger:this.logger,...this.citationConfig!=null?{citationConfig:this.citationConfig}:{},groupMetadata:s=>this.group.metadata(s).catch(()=>null),receiverName:()=>Promise.resolve(this.resolveMe().name??null),resolveQuoted:(s,i)=>this.lookupQuoted(s,i),resolveLidToPn:s=>this.lidToPn(s),sendReply:async(s,i,o,a)=>await this.send(s).text(i,o).reply(a),react:(s,i)=>this.react(s,i),ignoreMe:this.ignoreMe})),this.attachCommandsIfReady(),this.ensureScheduler().loadPending().catch(s=>this.logger.warn(s,"scheduler loadPending failed")),this.autoDeleteOptions&&(this.autoDeleteSweeper?.stop(),this.autoDeleteSweeper=new Ke({store:this.store,options:this.autoDeleteOptions,logger:this.logger}),this.autoDeleteSweeper.start()),this.pluginsOptions&&!this.pluginLoader&&(this.pluginRegistry=new We({client:this,logger:this.logger}),this.pluginLoader=new Fe({registry:this.pluginRegistry,options:this.pluginsOptions,logger:this.logger}),this.pluginLoader.start().catch(s=>this.logger.error(s,"plugin loader start failed")));let r=this.connectResolve;this.connectResolve=void 0,this.connectReject=void 0,r&&r();}async resolveMessageForResend(e){try{return (await this.store.getMessage(e))?.message??void 0}catch(t){this.logger.warn(t,"getMessage resend lookup failed");return}}lidMapping(){return this._socket?.signalRepository?.lidMapping}async lidToPn(e){try{let t=this.lidMapping()?.getPNForLID;return typeof t=="function"?await t(e):null}catch{return null}}async pnToLid(e){try{let t=this.lidMapping()?.getLIDForPN;return typeof t=="function"?await t(e):null}catch{return null}}async downloadMedia(e){let t=["image","video","audio","document","sticker"],r={image:"imageMessage",video:"videoMessage",audio:"audioMessage",document:"documentMessage",sticker:"stickerMessage"};for(let s of [e.fromMe===true,e.fromMe!==true]){let i=await this.store.getMessage({...e,fromMe:s}).catch(()=>{}),o=i?.message;if(i==null||o==null)continue;let a=t.find(c=>o[r[c]]!=null);if(a===void 0)return null;if(this._provider==="cloud"){let d=o[r[a]]?.cloudMediaId;return typeof d!="string"||!this.cloudTransport?null:this.cloudTransport.downloadMedia(d)}return wt(i,a,this.logger)()}return null}async lookupQuoted(e,t){for(let r of [false,true])try{let s=await this.store.getMessage({id:e,remoteJid:t,fromMe:r});if(s!=null)return s}catch{continue}return null}async handleClose(e){this.inboundHandle?.detach(),this.inboundHandle=void 0,this.detachCommands();let t=nc(e?.error),r=_r(t),s=false,i=r==="logged-out"&&this.openedThisRun&&!this.authExhausted&&this.postOpenLogoutRetries<Xa;if(i&&(this.postOpenLogoutRetries+=1,this.logger.warn({sessionId:this.sessionId,attempt:this.postOpenLogoutRetries},"logged-out right after connect; treating as spurious and reconnecting instead of clearing session")),Lr(r)&&!i){try{await this.auth.signal.clear();}catch(o){this.logger.warn(o,"auth.signal.clear failed (post-close)");}try{await this.auth.creds.deleteCreds();}catch(o){this.logger.warn(o,"auth.creds.deleteCreds failed (post-close)");}}if((i||!Ge(r))&&!this.authExhausted){St(r)&&this.logger.warn({sessionId:this.sessionId},"WhatsApp returned rate-limited (429); backing off before reconnect to avoid restriction");let o=i?{attempt:this.postOpenLogoutRetries,delayMs:ec}:this.reconnectStrategy.next(r);if(o!==null){s=true,this.machine.canTransition("reconnecting")&&this.machine.transition("reconnecting");let a=this.credsLoadedAtConnect&&!this.openedThisRun&&o.attempt>=2&&!this.credsHintShown;a&&(this.credsHintShown=true),this.logStatus({kind:"reconnecting",attempt:o.attempt,delayMs:o.delayMs,reason:r,invalidCredsSuspected:a}),this.emit("reconnecting",{sessionId:this.sessionId,attempt:o.attempt,delayMs:o.delayMs,reason:r}),this.reconnectTimer=setTimeout(()=>{this.reconnectTimer=void 0,this.connect().catch(c=>{this.logger.warn(c,"reconnect attempt failed");});},o.delayMs);}}if(this.disconnectEmittedFor=this.connectAttemptSeq,this.logStatus({kind:"disconnect",reason:r,willReconnect:s}),this.emit("disconnect",{sessionId:this.sessionId,reason:r,willReconnect:s}),!s){if(this._socket){for(let o of this.listenerCleanup)o.off();this.listenerCleanup=[],this._socket=void 0;}this.machine.canTransition("disconnected")&&this.machine.transition("disconnected"),this.rejectPendingConnect(new Error(`connection closed (${r})`));}}rejectPendingConnect(e){let t=this.connectReject;this.connectResolve=void 0,this.connectReject=void 0,t&&t(e);}};function tc(n){return n===void 0?[]:(Array.isArray(n)?n:[n]).filter(t=>t.length>0)}function nc(n){if(!n||typeof n!="object")return;let e=n.output;if(!e)return;let t=e.statusCode;return typeof t=="number"?t:void 0}var Hs=class{credsBlob;signalMap=new Map;closed=false;signal={read:async(e,t)=>{this.assertOpen();let r=this.signalMap.get(e),s={};if(!r)return s;for(let i of t){let o=r.get(i);o!==void 0&&(s[i]=o);}return s},write:async e=>{this.assertOpen();for(let t of Object.keys(e)){let r=e[t];if(!r)continue;let s=this.signalMap.get(t);s||(s=new Map,this.signalMap.set(t,s));for(let i of Object.keys(r)){let o=r[i];o===null?s.delete(i):o!==void 0&&s.set(i,o);}}},delete:async(e,t)=>{this.assertOpen();let r=this.signalMap.get(e);if(r)for(let s of t)r.delete(s);},clear:async()=>{this.assertOpen(),this.signalMap.clear(),this.credsBlob=void 0;},close:async()=>{this.closed=true;}};creds={readCreds:async()=>(this.assertOpen(),this.credsBlob),writeCreds:async e=>{this.assertOpen(),this.credsBlob=structuredClone(e);},deleteCreds:async()=>{this.assertOpen(),this.credsBlob=void 0;}};assertOpen(){if(this.closed)throw new f("STORE_CLOSED","MemoryAuthStore is closed")}};var Dt=null,rc=async()=>{if(Dt)return Dt;try{return Dt=(await import('better-sqlite3')).default,Dt}catch(n){throw new f("STORE_NOT_AVAILABLE","better-sqlite3 belum terpasang. Run: pnpm add better-sqlite3",{cause:n})}},On="default",Ys=500,Zs=n=>Array.from({length:n},()=>"?").join(","),Qs=(n,e)=>{let t=[];for(let r=0;r<n.length;r+=e)t.push(n.slice(r,r+e));return t},Xs=class{options;db=null;prepared=null;readyPromise=null;closed=false;constructor(e){this.options=e;}creds={readCreds:async()=>{let t=(await this.ensureReady()).readCreds.get(On);if(t)return this.parseBlob(t.data)},writeCreds:async e=>{let t=await this.ensureReady(),r=this.encodeBlob(e);t.writeCreds.run(On,r);},deleteCreds:async()=>{(await this.ensureReady()).deleteCreds.run(On);}};signal={read:async(e,t)=>{await this.ensureReady();let r={};if(t.length===0)return r;let s=this.db;for(let i of Qs(t,Ys)){let o=Zs(i.length),c=s.prepare(`SELECT id, data FROM auth_signal WHERE type = ? AND id IN (${o})`).all(e,...i);for(let d of c)r[d.id]=this.parseBlob(d.data);}return r},write:async e=>{let t=await this.ensureReady(),r=this.db,s=[],i=[];for(let a of Object.keys(e)){let c=e[a];if(c)for(let d of Object.keys(c)){let l=c[d];l===null?i.push({type:a,id:d}):l!==void 0&&s.push({type:a,id:d,blob:this.encodeBlob(l)});}}r.transaction(()=>{for(let a of s)t.writeSignal.run(a.type,a.id,a.blob);for(let a of i)t.deleteSignal.run(a.type,a.id);})();},delete:async(e,t)=>{if(await this.ensureReady(),t.length===0)return;let r=this.db,s=r.transaction(i=>{let o=Zs(i.length);r.prepare(`DELETE FROM auth_signal WHERE type = ? AND id IN (${o})`).run(e,...i);});for(let i of Qs(t,Ys))s(i);},clear:async()=>{let e=await this.ensureReady();this.db.transaction(()=>{e.clearSignal.run(),e.clearCreds.run();})();},close:async()=>{if(!this.closed){this.closed=true;try{this.db?.close();}catch(e){throw new f("STORE_WRITE_FAILED","failed to close sqlite database",{cause:e})}finally{this.db=null,this.prepared=null;}}}};async ensureReady(){if(this.closed)throw new f("STORE_CLOSED","SqliteAuthStore is closed");return this.prepared?this.prepared:(this.readyPromise||(this.readyPromise=this.openAndMigrate().catch(e=>{throw this.readyPromise=null,e})),await this.readyPromise,this.prepared)}async openAndMigrate(){let e=await rc(),t;try{t=new e(this.options.database,{readonly:this.options.readonly??!1});}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to open sqlite database at ${String(this.options.database)}`,{cause:r})}try{t.pragma("journal_mode = WAL"),t.pragma("synchronous = NORMAL"),t.pragma("foreign_keys = ON"),t.exec(`CREATE TABLE IF NOT EXISTS auth_creds (id TEXT PRIMARY KEY, data BLOB NOT NULL) WITHOUT ROWID;
22
- CREATE TABLE IF NOT EXISTS auth_signal (type TEXT NOT NULL, id TEXT NOT NULL, data BLOB NOT NULL, PRIMARY KEY(type, id)) WITHOUT ROWID;`);}catch(r){throw t.close(),new f("STORE_CONNECTION_FAILED","failed to migrate sqlite schema",{cause:r})}this.db=t,this.prepared={readCreds:t.prepare("SELECT data FROM auth_creds WHERE id = ?"),writeCreds:t.prepare("INSERT INTO auth_creds(id, data) VALUES(?, ?) ON CONFLICT(id) DO UPDATE SET data = excluded.data"),deleteCreds:t.prepare("DELETE FROM auth_creds WHERE id = ?"),writeSignal:t.prepare("INSERT INTO auth_signal(type, id, data) VALUES(?, ?, ?) ON CONFLICT(type, id) DO UPDATE SET data = excluded.data"),deleteSignal:t.prepare("DELETE FROM auth_signal WHERE type = ? AND id = ?"),clearSignal:t.prepare("DELETE FROM auth_signal"),clearCreds:t.prepare("DELETE FROM auth_creds")};}encodeBlob(e){try{return Buffer.from(JSON.stringify(e,za.BufferJSON.replacer),"utf8")}catch(t){throw new f("STORE_WRITE_FAILED","failed to serialize sqlite blob",{cause:t})}}parseBlob(e){try{let t=Buffer.isBuffer(e)?e.toString("utf8"):Buffer.from(e).toString("utf8");return JSON.parse(t,za.BufferJSON.reviver)}catch(t){throw new f("STORE_CORRUPTED","failed to parse sqlite blob",{cause:t})}}};var Wt,sc=async()=>(Wt||(Wt=import('pg').then(n=>n).catch(n=>{throw Wt=void 0,new f("STORE_NOT_AVAILABLE","pg is not installed. Run: pnpm add pg",{cause:n})})),Wt),ic="CREATE TABLE IF NOT EXISTS zaileys_auth_creds (id text PRIMARY KEY, data jsonb NOT NULL)",oc="CREATE TABLE IF NOT EXISTS zaileys_auth_signal (type text NOT NULL, id text NOT NULL, data bytea NOT NULL, PRIMARY KEY(type, id))",ei=class{externalPool;connectionString;poolMax;ownedPool;resolvedPool;readyPromise;closed=false;constructor(e){let t=e.pool!==void 0,r=e.connectionString!==void 0;if(t&&r)throw new f("STORE_CONNECTION_FAILED","PostgresAuthStore: provide either pool or connectionString, not both");if(!t&&!r)throw new f("STORE_CONNECTION_FAILED","PostgresAuthStore: pool or connectionString is required");this.externalPool=e.pool,this.connectionString=e.connectionString,this.poolMax=e.max;}async ensureReady(){if(this.closed)throw new f("STORE_CLOSED","PostgresAuthStore is closed");if(this.resolvedPool)return this.resolvedPool;this.readyPromise||(this.readyPromise=(async()=>{let e;if(this.externalPool)e=this.externalPool;else {let t=await sc(),r=t.Pool??t.default?.Pool;if(!r)throw new f("STORE_NOT_AVAILABLE","pg.Pool constructor not found");e=new r({connectionString:this.connectionString,max:this.poolMax}),this.ownedPool=e;}try{await e.query(ic),await e.query(oc);}catch(t){throw new f("STORE_CONNECTION_FAILED","failed to migrate auth schema",{cause:t})}return this.resolvedPool=e,e})());try{return await this.readyPromise}catch(e){throw this.readyPromise=void 0,e}}signal={read:async(e,t)=>{let r=await this.ensureReady(),s={};if(t.length===0)return s;try{let i=t.map((a,c)=>`$${c+2}`).join(", "),o=await r.query(`SELECT id, data FROM zaileys_auth_signal WHERE type = $1 AND id IN (${i})`,[String(e),...Array.from(t)]);for(let a of o.rows){let c=Buffer.isBuffer(a.data)?a.data:Buffer.from(a.data);s[a.id]=JSON.parse(c.toString("utf8"),za.BufferJSON.reviver);}return s}catch(i){throw i instanceof f?i:new f("STORE_READ_FAILED","failed to read signal rows",{cause:i})}},write:async e=>{let t=await this.ensureReady(),r=[];for(let i of Object.keys(e)){let o=e[i];if(o)for(let a of Object.keys(o)){let c=o[a];if(c===null)r.push({kind:"delete",type:String(i),id:a});else if(c!==void 0){let d=Buffer.from(JSON.stringify(c,za.BufferJSON.replacer),"utf8");r.push({kind:"upsert",type:String(i),id:a,value:d});}}}if(r.length===0)return;let s;try{s=await t.connect(),await s.query("BEGIN");for(let i of r)i.kind==="delete"?await s.query("DELETE FROM zaileys_auth_signal WHERE type = $1 AND id = $2",[i.type,i.id]):await s.query("INSERT INTO zaileys_auth_signal(type, id, data) VALUES ($1, $2, $3) ON CONFLICT (type, id) DO UPDATE SET data = EXCLUDED.data",[i.type,i.id,i.value]);await s.query("COMMIT");}catch(i){if(s)try{await s.query("ROLLBACK");}catch{}throw new f("STORE_WRITE_FAILED","failed to write signal rows",{cause:i})}finally{s?.release();}},delete:async(e,t)=>{let r=await this.ensureReady();if(t.length!==0)try{let s=t.map((i,o)=>`$${o+2}`).join(", ");await r.query(`DELETE FROM zaileys_auth_signal WHERE type = $1 AND id IN (${s})`,[String(e),...Array.from(t)]);}catch(s){throw new f("STORE_WRITE_FAILED","failed to delete signal rows",{cause:s})}},clear:async()=>{let e=await this.ensureReady(),t;try{t=await e.connect(),await t.query("BEGIN"),await t.query("DELETE FROM zaileys_auth_signal"),await t.query("DELETE FROM zaileys_auth_creds"),await t.query("COMMIT");}catch(r){if(t)try{await t.query("ROLLBACK");}catch{}throw new f("STORE_WRITE_FAILED","failed to clear auth tables",{cause:r})}finally{t?.release();}},close:async()=>{if(this.closed)return;this.closed=true;let e=this.ownedPool;if(this.ownedPool=void 0,this.resolvedPool=void 0,this.readyPromise=void 0,e)try{await e.end();}catch{}}};creds={readCreds:async()=>{let e=await this.ensureReady();try{let r=(await e.query("SELECT data FROM zaileys_auth_creds WHERE id = 'default'")).rows[0];if(!r)return;let s=typeof r.data=="string"?r.data:JSON.stringify(r.data);return JSON.parse(s,za.BufferJSON.reviver)}catch(t){throw t instanceof f?t:new f("STORE_READ_FAILED","failed to read creds",{cause:t})}},writeCreds:async e=>{let t=await this.ensureReady();try{let r=JSON.stringify(e,za.BufferJSON.replacer);await t.query("INSERT INTO zaileys_auth_creds(id, data) VALUES ('default', $1::jsonb) ON CONFLICT (id) DO UPDATE SET data = EXCLUDED.data",[r]);}catch(r){throw new f("STORE_WRITE_FAILED","failed to write creds",{cause:r})}},deleteCreds:async()=>{let e=await this.ensureReady();try{await e.query("DELETE FROM zaileys_auth_creds WHERE id = 'default'");}catch(t){throw new f("STORE_WRITE_FAILED","failed to delete creds",{cause:t})}}}};var ac="zaileys",cc=["pre-key","session","sender-key","sender-key-memory","app-state-sync-key","app-state-sync-version","lid-mapping","device-list","tctoken","identity-key"],dc=n=>{if(typeof n!="object"||n===null)return false;let e=n.code;return e==="ERR_MODULE_NOT_FOUND"||e==="MODULE_NOT_FOUND"},ti=class{namespace;externalClient;url;ownedClient;ready;closed=false;constructor(e){if(e.client&&e.url)throw new f("STORE_CONNECTION_FAILED","pass either client OR url, not both");if(!e.client&&!e.url)throw new f("STORE_CONNECTION_FAILED","RedisAuthStore requires either client or url");this.namespace=e.namespace??ac,this.externalClient=e.client,this.url=e.url;}signal={read:async(e,t)=>{if(this.assertOpen(),t.length===0)return {};let r=await this.ensureReady(),s=t.map(a=>this.signalKey(e,a)),i=await this.runRead(()=>r.mGet(s)),o={};for(let a=0;a<t.length;a+=1){let c=i[a];c!=null&&(o[t[a]]=JSON.parse(c,za.BufferJSON.reviver));}return o},write:async e=>{this.assertOpen();let r=(await this.ensureReady()).multi(),s=0;for(let i of Object.keys(e)){let o=e[i];if(o)for(let a of Object.keys(o)){let c=o[a],d=this.signalKey(i,a),l=this.indexKey(i);c===null?(r.del(d),r.sRem(l,a)):c!==void 0&&(r.set(d,JSON.stringify(c,za.BufferJSON.replacer)),r.sAdd(l,a)),s+=1;}}s!==0&&await this.runWrite(()=>r.exec());},delete:async(e,t)=>{if(this.assertOpen(),t.length===0)return;let s=(await this.ensureReady()).multi();for(let i of t)s.del(this.signalKey(e,i)),s.sRem(this.indexKey(e),i);await this.runWrite(()=>s.exec());},clear:async()=>{this.assertOpen();let e=await this.ensureReady(),t=e.multi();for(let r of cc){let s=this.indexKey(r),i=await this.runRead(()=>e.sMembers(s));for(let o of i)t.del(this.signalKey(r,o));t.del(s);}t.del(this.credsKey()),await this.runWrite(()=>t.exec());},close:async()=>{await this.shutdown();}};creds={readCreds:async()=>{this.assertOpen();let e=await this.ensureReady(),t=await this.runRead(()=>e.get(this.credsKey()));if(t!=null)return JSON.parse(t,za.BufferJSON.reviver)},writeCreds:async e=>{this.assertOpen();let t=await this.ensureReady();await this.runWrite(()=>t.set(this.credsKey(),JSON.stringify(e,za.BufferJSON.replacer)));},deleteCreds:async()=>{this.assertOpen();let e=await this.ensureReady();await this.runWrite(()=>e.del(this.credsKey()));}};credsKey(){return `${this.namespace}:auth:creds`}signalKey(e,t){return `${this.namespace}:auth:signal:${String(e)}:${t}`}indexKey(e){return `${this.namespace}:auth:signal-index:${String(e)}`}async ensureReady(){return this.ready||(this.ready=this.connect()),this.ready}async connect(){if(this.externalClient){if(!this.externalClient.isOpen)throw new f("STORE_CONNECTION_FAILED","provided redis client is not open (call await client.connect() first)");return this.externalClient}let e;try{e=await import('redis');}catch(r){throw dc(r)?new f("STORE_NOT_AVAILABLE","redis peer dependency missing. Run: pnpm add redis",{cause:r}):new f("STORE_CONNECTION_FAILED","failed to load redis module",{cause:r})}let t=e.createClient({url:this.url});try{await t.connect();}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to connect to redis at ${this.url}`,{cause:r})}return this.ownedClient=t,t}async runRead(e){try{return await e()}catch(t){throw new f("STORE_READ_FAILED","redis read failed",{cause:t})}}async runWrite(e){try{return await e()}catch(t){throw new f("STORE_WRITE_FAILED","redis write failed",{cause:t})}}async shutdown(){if(!this.closed){if(this.closed=true,this.ownedClient){try{await this.ownedClient.quit();}catch{}this.ownedClient=void 0;}this.ready=void 0;}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","RedisAuthStore is closed")}};var lc="zaileys",st={get:"zaileys:get",set:"zaileys:set",del:"zaileys:del",clear:"zaileys:clear",list:"zaileys:list"},uc=n=>{if(typeof n!="object"||n===null)return false;let e=n.code;return e==="ERR_MODULE_NOT_FOUND"||e==="MODULE_NOT_FOUND"},be=class{namespace;externalClient;url;client;closed=false;constructor(e){if(e.client&&e.url)throw new f("STORE_CONNECTION_FAILED","pass either client OR url, not both");if(!e.client&&!e.url)throw new f("STORE_CONNECTION_FAILED","ConvexKv requires either client or url");this.namespace=e.namespace??lc,this.externalClient=e.client,this.url=e.url;}async get(e){if(this.assertOpen(),e.length===0)return new Map;let t=await this.ensureClient(),r=await this.runRead(()=>t.query(st.get,{namespace:this.namespace,keys:[...e]})),s=new Map;for(let i of r??[])s.set(i.key,i.value);return s}async set(e){if(this.assertOpen(),e.length===0)return;let t=await this.ensureClient();await this.runWrite(()=>t.mutation(st.set,{namespace:this.namespace,items:[...e]}));}async del(e){if(this.assertOpen(),e.length===0)return;let t=await this.ensureClient();await this.runWrite(()=>t.mutation(st.del,{namespace:this.namespace,keys:[...e]}));}async clear(e){this.assertOpen();let t=await this.ensureClient();await this.runWrite(()=>t.mutation(st.clear,e===void 0?{namespace:this.namespace}:{namespace:this.namespace,prefix:e}));}async list(e,t){this.assertOpen();let r=await this.ensureClient(),s={namespace:this.namespace,prefix:e};return typeof t?.before=="number"&&(s.before=t.before),typeof t?.limit=="number"&&(s.limit=t.limit),await this.runRead(()=>r.query(st.list,s))??[]}close(){this.closed=true,this.client=void 0;}async ensureClient(){if(this.externalClient)return this.externalClient;if(this.client)return this.client;let e="convex/browser",t;try{t=await import(e);}catch(r){throw uc(r)?new f("STORE_NOT_AVAILABLE","convex peer dependency missing. Run: pnpm add convex",{cause:r}):new f("STORE_CONNECTION_FAILED","failed to load convex module",{cause:r})}return this.client=new t.ConvexHttpClient(this.url),this.client}async runRead(e){try{return await e()}catch(t){throw new f("STORE_READ_FAILED","convex read failed",{cause:t})}}async runWrite(e){try{return await e()}catch(t){throw new f("STORE_WRITE_FAILED","convex write failed",{cause:t})}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","Convex store is closed")}};var jt="creds",pc="signal:",it=(n,e)=>`${pc}${n}:${e}`,ni=class{creds;signal;kv;constructor(e){this.kv=new be(e);let t=this.kv;this.creds={async readCreds(){let s=(await t.get([jt])).get(jt);return s===void 0?void 0:JSON.parse(s,za.BufferJSON.reviver)},async writeCreds(r){await t.set([{key:jt,value:JSON.stringify(r,za.BufferJSON.replacer)}]);},async deleteCreds(){await t.del([jt]);}},this.signal={async read(r,s){let i=s.map(c=>it(r,c)),o=await t.get(i),a={};for(let c of s){let d=o.get(it(r,c));a[c]=d===void 0?void 0:JSON.parse(d,za.BufferJSON.reviver);}return a},async write(r){let s=[],i=[];for(let o of Object.keys(r)){let a=r[o];if(a)for(let c of Object.keys(a)){let d=a[c];d==null?i.push(it(o,c)):s.push({key:it(o,c),value:JSON.stringify(d,za.BufferJSON.replacer)});}}s.length>0&&await t.set(s),i.length>0&&await t.del(i);},async delete(r,s){await t.del(s.map(i=>it(r,i)));},async clear(){await t.clear();},async close(){t.close();}};}};var qt=null,mc=async()=>{if(qt)return qt;try{return qt=(await import('better-sqlite3')).default,qt}catch(n){throw new f("STORE_NOT_AVAILABLE","better-sqlite3 belum terpasang. Run: pnpm add better-sqlite3",{cause:n})}},Kt=n=>{try{return Buffer.from(JSON.stringify(n,za.BufferJSON.replacer),"utf8")}catch(e){throw new f("STORE_WRITE_FAILED","failed to serialize sqlite blob",{cause:e})}},le=n=>{try{let e=Buffer.isBuffer(n)?n.toString("utf8"):Buffer.from(n).toString("utf8");return JSON.parse(e,za.BufferJSON.reviver)}catch(e){throw new f("STORE_CORRUPTED","failed to parse sqlite blob",{cause:e})}},ri=class{options;db=null;prepared=null;readyPromise=null;closed=false;boundSocket;listeners=new Map;constructor(e){this.options=e;}async saveMessage(e){let t=await this.ensureReady(),r=e.key.remoteJid??"",s=e.key.id??"",i=e.key.fromMe?1:0,o=Number(e.messageTimestamp??0);t.upsertMessage.run(r,s,i,o,Kt(e));}async getMessage(e){let r=(await this.ensureReady()).getMessage.get(e.remoteJid??"",e.id??"",e.fromMe?1:0);return r?le(r.data):void 0}async listMessages(e,t){let r=await this.ensureReady(),s=t?.limit??100,i=t?.before;return (typeof i=="number"?r.listMessages.all(e,i,s):r.listMessages.all(e,Number.MAX_SAFE_INTEGER,s)).map(a=>le(a.data))}async saveChat(e){let t=await this.ensureReady(),r=e.id;if(!r)return;let s=e.archived?1:0;t.upsertChat.run(r,s,Kt(e));}async getChat(e){let r=(await this.ensureReady()).getChat.get(e);return r?le(r.data):void 0}async listChats(e){let t=await this.ensureReady();return (e?.archived===true?t.listChatsArchived.all():t.listChats.all()).map(s=>le(s.data))}async saveContact(e){(await this.ensureReady()).upsertContact.run(e.id,Kt(e));}async getContact(e){let r=(await this.ensureReady()).getContact.get(e);return r?le(r.data):void 0}async listContacts(){return (await this.ensureReady()).listContacts.all().map(r=>le(r.data))}async savePresence(e,t){(await this.ensureReady()).upsertPresence.run(e,Kt(t));}async getPresence(e){let r=(await this.ensureReady()).getPresence.get(e);return r?le(r.data):void 0}async deleteMessage(e){(await this.ensureReady()).deleteMessage.run(e.remoteJid??"",e.id??"",e.fromMe===true?1:0);}async pruneMessages(e){let t=await this.ensureReady(),r=this.db,s=0,i=e.chatFilter?r.prepare("SELECT DISTINCT remote_jid FROM messages").all().map(o=>o.remote_jid).filter(o=>e.chatFilter(o)):void 0;if(e.olderThan!==void 0)if(i)for(let o of i)s+=t.pruneByAgeChat.run(e.olderThan,o).changes;else s+=t.pruneByAge.run(e.olderThan).changes;if(e.maxPerChat!==void 0){let o=i?"WHERE remote_jid IN ("+i.map(()=>"?").join(",")+")":"",a=r.prepare(`DELETE FROM messages WHERE rowid IN (
20
+ END:VCARD`}}),r=t.length===1?t[0]:void 0;return r?{contactMessage:r}:{contactsArrayMessage:{displayName:`${t.length} contacts`,contacts:t}}},Ua=(n,e)=>{let t=e.context;if(!t?.id)return n;let r={stanzaId:t.id,...t.from?{participant:Q(t.from)}:{},quotedMessage:{}};if(typeof n.conversation=="string")return {extendedTextMessage:{text:n.conversation,contextInfo:r}};let s=Object.keys(n)[0];return s&&(n[s].contextInfo=r),n},ja=(n,e)=>{if(!n.id||!n.from)return null;let t=n.type==="text"&&typeof n.text?.body=="string"?{conversation:n.text.body}:Da(n)??Ba(n)??Wa(n)??Fa(n);if(t===null)return null;let r=Ua(t,n),s=Nt(e,n.from);return {key:{id:n.id,remoteJid:Q(n.from),fromMe:false},message:r,messageTimestamp:Number(n.timestamp??0)||0,...s?{pushName:s}:{}}},qa=n=>{let e=n.id,t=n.status;if(typeof e!="string"||typeof t!="string"||t!=="sent"&&t!=="delivered"&&t!=="read"&&t!=="failed")return null;let r=typeof n.recipient_id=="string"?Q(n.recipient_id):"",s=n.conversation,i=n.errors;return {id:e,status:t,recipientId:r,timestamp:Number(n.timestamp??0)||0,...s?.id?{conversationId:s.id}:{},...i?.[0]?{error:i[0]}:{}}},Ka=(n,e)=>{let t=n.interactive;if(n.type!=="interactive"||t?.type!=="nfm_reply"||!n.id||!n.from)return null;let r=t.nfm_reply,s={};try{s=JSON.parse(r?.response_json??"{}");}catch{s={};}let i=Nt(e,n.from);return {id:n.id,name:r?.name??"flow",...r?.body?{body:r.body}:{},response:s,senderId:Q(n.from),...i?{senderName:i}:{},timestamp:Number(n.timestamp??0)||0}},$a=(n,e)=>{let t=n.order;if(n.type!=="order"||!t||!n.id||!n.from)return null;let r=Nt(e,n.from);return {id:n.id,catalogId:t.catalog_id??"",...t.text?{text:t.text}:{},items:(t.product_items??[]).map(s=>({productRetailerId:s.product_retailer_id??"",quantity:s.quantity??0,price:s.item_price??0,currency:s.currency??""})),senderId:Q(n.from),...r?{senderName:r}:{},timestamp:Number(n.timestamp??0)||0}},Ja=(n,e)=>{let t=n.reaction;if(n.type!=="reaction"||!n.id||!n.from||typeof t?.message_id!="string")return null;let r=Q(n.from),s=Nt(e,n.from);return {key:{id:n.id,remoteJid:r,fromMe:false},reaction:{key:{id:t.message_id,remoteJid:r,fromMe:false},text:t.emoji??"",senderTimestampMs:(Number(n.timestamp??0)||0)*1e3},...s?{pushName:s}:{}}};function qs(n){let e=[],t=[],r=[],s=[],i=[],o=[];for(let a of n.entry??[])for(let c of a.changes??[]){let d=c.value;if(d){if(c.field==="message_template_status_update"){let l=Na(d);l&&s.push(l);continue}for(let l of d.messages??[]){let u=Ja(l,d);if(u){t.push(u);continue}let w=Ka(l,d);if(w){i.push(w);continue}let M=$a(l,d);if(M){o.push(M);continue}let v=ja(l,d);v&&e.push(v);}for(let l of d.statuses??[]){let u=qa(l);u&&r.push(u);}}}return {messages:e,reactions:t,statuses:r,templateStatuses:s,flowResponses:i,orders:o}}var Ks=3,Tn=n=>{if(!n)return {};try{return JSON.parse(n)}catch{return {}}};function $s(n){let e=n.interactiveMessage;if(!e)return null;let t=e.nativeFlowMessage?.buttons??[],r=e.body?.text??" ",s=e.footer?.text,i=e.header?.title;if(e.header?.hasMediaAttachment===true)throw new A("NOT_IMPLEMENTED","interactive media headers are not supported on the cloud provider yet");let o={body:{text:r},...s?{footer:{text:s}}:{}},a=t.length===1?t[0]:void 0;if(a?.name==="single_select"){let l=Tn(a.buttonParamsJson);return {type:"list",...i?{header:{type:"text",text:i}}:{},...o,action:{button:l.title??"Select",sections:(l.sections??[]).map(u=>({...u.title?{title:u.title}:{},rows:(u.rows??[]).map(w=>({id:w.id??"",title:w.title??"",description:w.description??""}))}))}}}let c=t.filter(l=>l.name==="quick_reply");if(c.length>0&&c.length===t.length){if(c.length>Ks)throw new A("NOT_IMPLEMENTED",`cloud interactive buttons allow at most ${Ks} reply buttons (got ${c.length})`);return {type:"button",...i?{header:{type:"text",text:i}}:{},...o,action:{buttons:c.map(l=>{let u=Tn(l.buttonParamsJson);return {type:"reply",reply:{id:u.id??"",title:u.display_text??""}}})}}}let d=a&&a.name==="cta_url"?Tn(a.buttonParamsJson):null;if(d){let l=d;return {type:"cta_url",...i?{header:{type:"text",text:i}}:{},...o,action:{name:"cta_url",parameters:{display_text:l.display_text??"",url:l.url??""}}}}throw new A("NOT_IMPLEMENTED","this interactive layout is not supported on the cloud provider yet")}var Se=class{ev=new events.EventEmitter;user;options;graph;constructor(e){this.options=e,this.user={id:e.phoneNumberId},this.graph=Lt(e);}get apiVersion(){return this.options.apiVersion??_t}get baseUrl(){return this.options.baseUrl??kn}url(e){return `${this.baseUrl}/${this.apiVersion}/${e}`}async connect(){let e;try{e=await fetch(this.url(this.options.phoneNumberId),{method:"GET",headers:{Authorization:`Bearer ${this.options.accessToken}`}});}catch(r){throw new A("REQUEST_FAILED","cloud health-check request failed",{cause:r})}if(e.status===401||e.status===403)throw new A("AUTH",`cloud auth rejected (${e.status}) \u2014 check accessToken/phoneNumberId`);if(!e.ok)throw new A("REQUEST_FAILED",`cloud health-check failed (${e.status})`);let t=await e.json().catch(()=>({}));return {id:t.id??this.options.phoneNumberId,...t.verified_name?{name:t.verified_name}:{}}}async disconnect(){this.ev.removeAllListeners();}relayMessage=async(e,t,r)=>{let s=t;if(s.botForwardedMessage!=null||s.richResponseMessage!=null)throw new A("NOT_IMPLEMENTED","AIRich rich responses (rich: true) are a WhatsApp-Web-only feature and are not supported on the cloud provider. Send the markdown as plain text with send().text(md) \u2014 WhatsApp renders *bold*, _italic_, ~strike~ and ```mono``` natively.");let i=$s(s);if(i===null)throw new A("NOT_IMPLEMENTED","this relay content is not supported on the cloud provider");let o={...G(e,"interactive"),interactive:i},c=(await this.graph.post(`${this.options.phoneNumberId}/messages`,o)).messages?.[0]?.id;if(c){let d=nt(c,e,{text:""},Date.now());d.message=t,this.ev.emit("messages.upsert",{messages:[d],type:"append"});}return r.messageId};async sendInteractive(e,t){let r={...G(e,"interactive"),interactive:t},i=(await this.graph.post(`${this.options.phoneNumberId}/messages`,r)).messages?.[0]?.id;if(!i)throw new A("REQUEST_FAILED","graph interactive send returned no message id");let o=nt(i,e,{text:""},Date.now());return o.message={interactiveMessage:t},this.ev.emit("messages.upsert",{messages:[o],type:"append"}),o}async sendTemplate(e,t,r,s){let i={...G(e,"template"),template:{name:t,language:{code:r},...s!==void 0?{components:s}:{}}},a=(await this.graph.post(`${this.options.phoneNumberId}/messages`,i)).messages?.[0]?.id;if(!a)throw new A("REQUEST_FAILED","graph template send returned no message id");let c=nt(a,e,{text:`template:${t}`},Date.now());return this.ev.emit("messages.upsert",{messages:[c],type:"append"}),c}async markRead(e,t){await this.graph.post(`${this.options.phoneNumberId}/messages`,{messaging_product:"whatsapp",status:"read",message_id:e,...t?.typing===true?{typing_indicator:{type:"text"}}:{}});}async downloadMedia(e){let t=await this.graph.get(e);if(!t.url)return null;let r;try{r=await fetch(t.url,{headers:{Authorization:`Bearer ${this.options.accessToken}`}});}catch(o){throw new A("REQUEST_FAILED","media download failed",{cause:o})}if(!r.ok)throw new A("REQUEST_FAILED",`media download failed (${r.status})`);let s=Buffer.from(await r.arrayBuffer()),i=t.mime_type??await me(s);return {buffer:s,mime:i,size:s.byteLength}}ingest(e){let{messages:t,reactions:r,statuses:s,templateStatuses:i,flowResponses:o,orders:a}=qs(e);t.length>0&&this.ev.emit("messages.upsert",{messages:t,type:"notify"}),r.length>0&&this.ev.emit("messages.reaction",r);for(let c of s)this.ev.emit("cloud.status",c);for(let c of i)this.ev.emit("cloud.template-status",c);for(let c of o)this.ev.emit("cloud.flow-response",c);for(let c of a)this.ev.emit("cloud.order",c);}async sendMessage(e,t,r){let s=Ws(e,t,r);if(s===null){let c=Fs(t);if(c){let d=await Us(this.graph,this.options.phoneNumberId,c);s={...G(e,c.kind,r),[c.kind]:js(c,d)};}}if(s===null)throw new A("NOT_IMPLEMENTED","this content type is not supported on the cloud provider yet");let o=(await this.graph.post(`${this.options.phoneNumberId}/messages`,s)).messages?.[0]?.id;if(!o)throw new A("REQUEST_FAILED","graph send returned no message id");let a=nt(o,e,t,Date.now());return this.ev.emit("messages.upsert",{messages:[a],type:"append"}),a}};var rt=class{graph;options;getTransport;constructor(e,t){this.options=e,this.graph=Lt(e),this.getTransport=t;}requireWaba(){let e=this.options.wabaId;if(!e)throw new A("CONFIG","this operation needs cloud.wabaId (WhatsApp Business Account id)");return e}async info(){return this.graph.get(`${this.options.phoneNumberId}?fields=id,display_phone_number,verified_name,quality_rating,throughput,code_verification_status,platform_type`)}async phoneNumbers(){let e=this.requireWaba();return (await this.graph.get(`${e}/phone_numbers?fields=id,display_phone_number,verified_name,quality_rating`)).data??[]}async sendAddressRequest(e,t){return (await this.getTransport().sendInteractive(e,{type:"address_message",body:{text:t.bodyText},action:{name:"address_message",parameters:{country:t.countryIso,...t.values?{values:t.values}:{}}}})).key}commerce={catalogs:async()=>{let e=this.requireWaba();return (await this.graph.get(`${e}/product_catalogs?fields=id,name`)).data??[]},products:async(e,t=50)=>(await this.graph.get(`${e}/products?fields=id,retailer_id,name,price,availability&limit=${t}`)).data??[],sendProduct:async(e,t)=>(await this.getTransport().sendInteractive(e,{type:"product",...t.bodyText?{body:{text:t.bodyText}}:{},...t.footerText?{footer:{text:t.footerText}}:{},action:{catalog_id:t.catalogId,product_retailer_id:t.retailerId}})).key,sendProductList:async(e,t)=>(await this.getTransport().sendInteractive(e,{type:"product_list",header:{type:"text",text:t.headerText},body:{text:t.bodyText},...t.footerText?{footer:{text:t.footerText}}:{},action:{catalog_id:t.catalogId,sections:t.sections.map(s=>({title:s.title,product_items:s.productIds.map(i=>({product_retailer_id:i}))}))}})).key};templates={list:async e=>{let t=this.requireWaba(),r=new URLSearchParams;e?.status&&r.set("status",e.status),e?.limit&&r.set("limit",String(e.limit));let s=r.size>0?`?${r.toString()}`:"";return (await this.graph.get(`${t}/message_templates${s}`)).data??[]},get:async e=>{let t="id,name,status,category,language,components,quality_score";if(/^\d+$/.test(e)){let i=await this.graph.get(`${e}?fields=${t}`);return i.id?i:null}let r=this.requireWaba();return (await this.graph.get(`${r}/message_templates?name=${encodeURIComponent(e)}&fields=${t}`)).data?.[0]??null},create:async e=>{let t=this.requireWaba();return this.graph.post(`${t}/message_templates`,e)},delete:async(e,t)=>{let r=this.requireWaba(),s=new URLSearchParams({name:e});t&&s.set("hsm_id",t),await this.graph.delete(`${r}/message_templates?${s.toString()}`);}};profile={get:async()=>(await this.graph.get(`${this.options.phoneNumberId}/whatsapp_business_profile?fields=about,address,description,email,websites,vertical`)).data?.[0]??{},update:async e=>{await this.graph.post(`${this.options.phoneNumberId}/whatsapp_business_profile`,{messaging_product:"whatsapp",...e});}};flows={list:async()=>{let e=this.requireWaba();return (await this.graph.get(`${e}/flows`)).data??[]},send:async(e,t)=>{if(!t.flowId&&!t.flowName)throw new A("CONFIG","flows.send needs flowId or flowName");return (await this.getTransport().sendInteractive(e,{type:"flow",...t.headerText?{header:{type:"text",text:t.headerText}}:{},body:{text:t.bodyText},...t.footerText?{footer:{text:t.footerText}}:{},action:{name:"flow",parameters:{flow_message_version:"3",...t.flowId?{flow_id:t.flowId}:{},...t.flowName?{flow_name:t.flowName}:{},flow_cta:t.cta,...t.flowToken?{flow_token:t.flowToken}:{},...t.mode?{mode:t.mode}:{},flow_action:t.action??"navigate",flow_action_payload:{screen:t.screen,...t.data?{data:t.data}:{}}}}})).key}};blocklist={add:async e=>{await this.graph.post(`${this.options.phoneNumberId}/block_users`,{messaging_product:"whatsapp",block_users:e.map(t=>({user:t}))});},remove:async e=>{await this.graph.delete(`${this.options.phoneNumberId}/block_users`,{messaging_product:"whatsapp",block_users:e.map(t=>({user:t}))});},list:async()=>(await this.graph.get(`${this.options.phoneNumberId}/block_users`)).data?.[0]?.block_users??[]};qr={create:async(e,t="PNG")=>this.graph.post(`${this.options.phoneNumberId}/message_qrdls`,{prefilled_message:e,generate_qr_image:t}),list:async()=>(await this.graph.get(`${this.options.phoneNumberId}/message_qrdls`)).data??[],delete:async e=>{await this.graph.delete(`${this.options.phoneNumberId}/message_qrdls/${e}`);}};analytics={conversations:async e=>{let t=this.requireWaba(),r=`conversation_analytics.start(${e.start}).end(${e.end}).granularity(${e.granularity??"DAILY"})`,s=await this.graph.get(`${t}?fields=${encodeURIComponent(r)}`);return s.conversation_analytics??s},messages:async e=>{let t=this.requireWaba(),r=`analytics.start(${e.start}).end(${e.end}).granularity(${e.granularity??"DAY"})`,s=await this.graph.get(`${t}?fields=${encodeURIComponent(r)}`);return s.analytics??s}};phone={register:async e=>{await this.graph.post(`${this.options.phoneNumberId}/register`,{messaging_product:"whatsapp",pin:e});},deregister:async()=>{await this.graph.post(`${this.options.phoneNumberId}/deregister`,{});},requestCode:async(e,t="en_US")=>{await this.graph.post(`${this.options.phoneNumberId}/request_code`,{code_method:e,language:t});},verifyCode:async e=>{await this.graph.post(`${this.options.phoneNumberId}/verify_code`,{code:e});}}};var za=(n,e,t)=>{if(!t||!t.startsWith("sha256="))return false;let r=crypto.createHmac("sha256",n).update(e).digest("hex"),s=t.slice(7);return s.length!==r.length?false:crypto.timingSafeEqual(Buffer.from(s,"utf8"),Buffer.from(r,"utf8"))};function In(n){return async e=>{if(e.method==="GET"){let s=new URL(e.url),i=s.searchParams.get("hub.mode"),o=s.searchParams.get("hub.verify_token"),a=s.searchParams.get("hub.challenge")??"";return i==="subscribe"&&n.verifyToken!==void 0&&o===n.verifyToken?new Response(a,{status:200}):new Response("forbidden",{status:403})}if(e.method!=="POST")return new Response("method not allowed",{status:405});let t=await e.text();if(n.appSecret!==void 0&&!za(n.appSecret,t,e.headers.get("x-hub-signature-256")))return new Response("invalid signature",{status:401});let r;try{r=JSON.parse(t);}catch{return new Response("malformed body",{status:400})}try{n.onPayload(r);}catch{}return new Response("OK",{status:200})}}var Qa="default",Xa="qr",Gs=6e4,ec=2,tc=3e3,Vs=class extends Rt{sessionId;auth;store;logger;authType;phoneNumber;cacheSignal;qrTerminal;statusLog;reconnectOptions;baileysExtra;machine=Fr();reconnectStrategy;authGuard;operationGuard;presenceThrottle;scheduleLimiter;authExhausted=false;_socket;reconnectTimer;listenerCleanup=[];inboundHandle;connectResolve;connectReject;pairingRequested=false;cachedSignalWrap=false;creds;credsLoadedAtConnect=false;openedThisRun=false;credsHintShown=false;postOpenLogoutRetries=0;disconnectEmittedFor=0;connectAttemptSeq=0;pendingDisconnectReason;usernameCache=new Map;_group;_privacy;_newsletter;_community;_profile;_chat;_contact;_business;commandRegistry;commandMiddleware=[];commandPrefixes;citationConfig;ignoreMe;commandDispatcher;_presence;_scheduler;autoDeleteOptions;autoDeleteSweeper;pluginsOptions;pluginRegistry;pluginLoader;waVersion;versionWarming;_provider;cloudOptions;cloudTransport;cloudRuntimeReady=false;_cloudModule;constructor(e={}){super({logger:Mn(e.logger)}),this._provider=e.provider??"baileys",this.cloudOptions=this._provider==="cloud"?En(e.cloud):void 0,this.sessionId=e.sessionId??Qa,this.logger=Mn(e.logger),this.authType=e.authType??Xa,this.phoneNumber=e.phoneNumber,this.cacheSignal=e.cacheSignal??true,this.qrTerminal=e.qrTerminal??true,this.statusLog=e.statusLog??true,this.statusLog&&Or(),this.reconnectOptions=e.reconnect??{},this.baileysExtra=e.baileys??{},this.auth=e.auth??new Mt({basePath:`./.zaileys/auth/${this.sessionId}`}),this.store=e.store??new Ct,this.reconnectStrategy=Wr(this.reconnectOptions),this.authGuard=Nr(e.authGuard),this.operationGuard=wn(e.operationGuard),this.presenceThrottle=e.presence;let t=e.scheduleRateLimitPerSec??1;this.scheduleLimiter=t>0?new ie({perSec:t}):void 0,this.commandPrefixes=nc(e.commandPrefix),this.citationConfig=e.citation,this.ignoreMe=e.ignoreMe??true,this.autoDeleteOptions=e.autoDelete===false?void 0:{maxAgeMs:720*60*60*1e3,...e.autoDelete},this.pluginsOptions=e.plugins,this.attachEmitterLogger(),(e.autoConnect??true)&&queueMicrotask(()=>{this.machine.state==="idle"&&this.warmVersion().finally(()=>{if(this.machine.state==="idle")try{this.connect().catch(r=>this.emitAutoConnectError(r));}catch(r){this.emitAutoConnectError(r);}});});}warmVersion(){if(this._provider==="cloud"||this.waVersion)return Promise.resolve();if(this.versionWarming)return this.versionWarming;try{return typeof Ya.fetchLatestBaileysVersion!="function"?Promise.resolve():(this.versionWarming=Ya.fetchLatestBaileysVersion().then(({version:e})=>{this.waVersion=e;}).catch(e=>{this.logger.warn(e,"fetchLatestBaileysVersion failed; using bundled version");}),this.versionWarming)}catch{return Promise.resolve()}}emitAutoConnectError(e){let t=e instanceof Error?e:new Error(String(e));this.logger.error(t,"auto-connect failed"),this.listenerCount("error")>0&&this.emit("error",{sessionId:this.sessionId,error:t});}logStatus(e){if(!this.statusLog)return;let t=Ir(e);t&&process.stderr.write(`${t}
21
+ `);}resolveMe(){let e=this._socket?.user;if(e&&typeof e.id=="string"&&e.id.length>0)return e;let t=this.creds?.me;return t&&typeof t.id=="string"&&t.id.length>0?t:{id:""}}get provider(){return this._provider}get state(){return this.machine.state}get socket(){return this._socket}assertWebProvider(e){if(this._provider==="cloud")throw new tt(e)}get group(){return this.assertWebProvider("group"),this._group??=new Ie(()=>this._socket,this.operationGuard)}get privacy(){return this.assertWebProvider("privacy"),this._privacy??=new Oe(()=>this._socket)}get newsletter(){return this.assertWebProvider("newsletter"),this._newsletter??=new xe(()=>this._socket,this.operationGuard)}get community(){return this.assertWebProvider("community"),this._community??=new Re(()=>this._socket,this.operationGuard)}get profile(){return this.assertWebProvider("profile"),this._profile??=new _e(()=>this._socket)}get chat(){return this.assertWebProvider("chat"),this._chat??=new Le(()=>this._socket,async e=>{try{let t=await this.store.listMessages(e,{limit:1}),r=s=>{if(typeof s=="number")return s;if(s!=null&&typeof s.toNumber=="function")return s.toNumber();let i=Number(s??0);return Number.isFinite(i)?i:0};return t.filter(s=>s.key!=null).map(s=>({key:s.key,messageTimestamp:r(s.messageTimestamp)})).filter(s=>s.messageTimestamp>0)}catch{return []}})}get contact(){return this.assertWebProvider("contact"),this._contact??=new Ne(()=>this._socket,e=>Te(e)?e:`${e.replace(/\D/g,"")}@s.whatsapp.net`)}get business(){return this.assertWebProvider("business"),this._business??=new De(()=>this._socket)}get presence(){return this.assertWebProvider("presence"),this._presence??=new je(()=>this._socket,this.presenceThrottle)}async broadcast(e,t,r){return this.requireSocket(),vn(e,t,{sendTo:s=>this.send(s)},r)}async scheduleAt(e,t){return this.ensureScheduler().scheduleAt(e,t)}ensureScheduler(){return this._scheduler??=new qe({store:this.store,sendSnapshot:e=>this.dispatchSnapshot(e),logger:this.logger,...this.scheduleLimiter?{acquire:()=>this.scheduleLimiter.acquire()}:{}})}async dispatchSnapshot(e){await this.requireSocket().sendMessage(e.recipient,e.content,e.options);}connect(){if(this._provider==="cloud")return this.connectCloud();if(this.authType==="pairing"&&!this.phoneNumber)return Promise.reject(new Error('phoneNumber is required when authType is "pairing"'));if(this.machine.state==="connecting"||this.machine.state==="connected"||this.machine.state!=="idle"&&this.machine.state!=="disconnected"&&this.machine.state!=="reconnecting")return Promise.resolve();if(this._socket){for(let a of this.listenerCleanup)a.off();this.listenerCleanup=[],this._socket=void 0;}let e=this.machine.state==="reconnecting";e||(this.authGuard.reset(),this.authExhausted=false),this.machine.transition("connecting"),this.connectAttemptSeq+=1,this.pairingRequested=false,this.openedThisRun=false,e||this.logStatus({kind:"connecting",sessionId:this.sessionId}),this.cacheSignal&&!this.cachedSignalWrap&&(this.auth=xr(this.auth,{logger:this.logger}),this.cachedSignalWrap=true),this.warmVersion();let t={};this.creds=t;let r=Rr(this.auth.signal,this.logger),s={markOnlineOnConnect:false,syncFullHistory:false,qrTimeout:Gs,...this.waVersion?{version:this.waVersion}:{},...this.baileysExtra,auth:{creds:t,keys:r},logger:this.logger,getMessage:a=>this.resolveMessageForResend(a)},i=Ya__default.default(s);this._socket=i,this.store.bind(i),this.wireSocket(i);let o=new Promise((a,c)=>{let d=this.connectResolve,l=this.connectReject;this.connectResolve=()=>{d?.(),a();},this.connectReject=u=>{l?.(u),c(u);};});return this.auth.creds.readCreds().then(a=>{this.credsLoadedAtConnect=!!a,Object.assign(t,a??Ya.initAuthCreds());}).catch(a=>{this.rejectPendingConnect(a instanceof Error?a:new Error(String(a)));}),o}ensureCloudRuntime(){let e=this.cloudTransport??=new Se(this.cloudOptions);return this.cloudRuntimeReady||(this.cloudRuntimeReady=true,this.store.bind(e),this.attachCloudPipeline(e,this.cloudOptions.phoneNumberId)),e}async connectCloud(){if(this.machine.state==="connecting"||this.machine.state==="connected")return;this.machine.transition("connecting"),this.logStatus({kind:"connecting",sessionId:this.sessionId});let e=this.ensureCloudRuntime();try{let t=await e.connect();this.machine.transition("connected"),this.logStatus({kind:"connected",id:t.id}),this.emit("connect",{sessionId:this.sessionId,me:t});}catch(t){throw this.machine.transition("disconnected"),t}}attachCloudPipeline(e,t){let r=t.includes("@")?t:`${t}@s.whatsapp.net`;this.inboundHandle?.detach(),this.inboundHandle=Pn(this,e,{selfJid:r,channelId:this.sessionId,receiverId:r,prefixes:this.commandPrefixes,logger:this.logger,...this.citationConfig!=null?{citationConfig:this.citationConfig}:{},receiverName:()=>Promise.resolve(null),resolveQuoted:(s,i)=>this.lookupQuoted(s,i),resolveLidToPn:()=>Promise.resolve(null),sendReply:async(s,i,o,a)=>await this.send(s).text(i,o).reply(a),react:(s,i)=>this.react(s,i),ignoreMe:this.ignoreMe}),e.ev.on("cloud.status",s=>{this.emit("message-status",s);}),e.ev.on("cloud.template-status",s=>{this.emit("template-status",s);}),e.ev.on("cloud.flow-response",s=>{this.emit("flow-response",s);}),e.ev.on("cloud.order",s=>{this.emit("order",s);}),this.attachCommandsIfReady();}webhook(){if(this._provider!=="cloud")throw new A("CONFIG","webhook() is only available on the cloud provider");let e=this.cloudOptions;return In({...e.verifyToken!==void 0?{verifyToken:e.verifyToken}:{},...e.appSecret!==void 0?{appSecret:e.appSecret}:{},onPayload:t=>{this.ensureCloudRuntime().ingest(t);}})}async disconnectCloud(){this.machine.state==="idle"||this.machine.state==="disconnected"||(this.machine.canTransition("disconnecting")&&this.machine.transition("disconnecting"),await this.cloudTransport?.disconnect(),this.machine.transition("disconnected"),this.emit("disconnect",{sessionId:this.sessionId,reason:"unknown",willReconnect:false}));}async disconnect(){if(this._provider==="cloud")return this.disconnectCloud();if(!(this.machine.state==="idle"||this.machine.state==="disconnected")){this.machine.transition("disconnecting"),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=void 0),this.inboundHandle?.detach(),this.inboundHandle=void 0,this.detachCommands(),this.autoDeleteSweeper?.stop(),this.autoDeleteSweeper=void 0,await this.pluginLoader?.stop().catch(()=>{}),this.pluginLoader=void 0,this.pluginRegistry=void 0,this._scheduler?.dispose();for(let e of this.listenerCleanup)e.off();if(this.listenerCleanup=[],this._socket){try{this._socket.end(void 0);}catch(e){this.logger.warn(e,"socket.end threw");}this._socket=void 0;}try{await this.auth.signal.close();}catch(e){this.logger.warn(e,"auth.signal.close failed");}try{await this.store.close();}catch(e){this.logger.warn(e,"store.close failed");}if(this.machine.transition("disconnected"),this.disconnectEmittedFor!==this.connectAttemptSeq){let e=this.pendingDisconnectReason??"unknown";this.pendingDisconnectReason=void 0,this.disconnectEmittedFor=this.connectAttemptSeq,this.emit("disconnect",{sessionId:this.sessionId,reason:e,willReconnect:false});}this.rejectPendingConnect(new Error("disconnected before connect resolved"));}}async logout(){if(this.pendingDisconnectReason="logged-out",this._socket)try{await this._socket.logout();}catch(e){this.logger.warn(e,"socket.logout failed");}try{await this.auth.signal.clear();}catch(e){this.logger.warn(e,"auth.signal.clear failed");}try{await this.auth.creds.deleteCreds();}catch(e){this.logger.warn(e,"auth.creds.deleteCreds failed");}if(this.machine.state==="idle"||this.machine.state==="disconnected"){this.disconnectEmittedFor!==this.connectAttemptSeq&&(this.disconnectEmittedFor=this.connectAttemptSeq,this.emit("disconnect",{sessionId:this.sessionId,reason:"logged-out",willReconnect:false})),this.pendingDisconnectReason=void 0;return}await this.disconnect();}command(e,t){return (this.commandRegistry??=new Be).register(e,t),this.attachCommandsIfReady(),this}unregisterCommand(e){return this.commandRegistry?.unregister(e),this}use(e){return this.commandMiddleware.push(e),this}unuse(e){let t=this.commandMiddleware.indexOf(e);return t>=0&&this.commandMiddleware.splice(t,1),this}attachCommandsIfReady(){if(this.commandDispatcher||this.commandPrefixes.length===0||this.commandRegistry===void 0||this.commandRegistry.list().length===0||!this._socket)return;let e=this.commandRegistry;this.commandDispatcher=fn({registry:e,middleware:this.commandMiddleware,prefixes:this.commandPrefixes,logger:this.logger,onText:t=>{let r=s=>t(s);return this.on("text",r),()=>this.off("text",r)},buildContext:(t,r)=>this.buildCommandContext(t,r)});}buildCommandContext(e,t){let r;return {...t,raw:e.raw,command:e.command,args:e.args,flags:e.flags,json:e.json,reply:async(s,i)=>{let o=t.message().key.remoteJid??t.roomId??t.senderId,a=await this.send(o).text(s,i).reply(t.message());return r=a,a},react:s=>this.react(t.message().key,s),edit:async s=>{if(r===void 0)throw new R("NO_SENT_MESSAGE","ctx.edit requires a prior ctx.reply");await this.edit(r).text(s);}}}detachCommands(){this.commandDispatcher?.detach(),this.commandDispatcher=void 0;}send(e){let t=this.requireBuilderSocket(),r=s=>{this.store.saveMessage(s).catch(i=>this.logger.warn(i,"recordSent failed"));};return this._provider==="cloud"||Te(e)?z.create(t,e,void 0,r):z.create(t,e,s=>this.resolveRecipient(s),r)}edit(e){return this.assertWebProvider("edit"),new ke(this.requireSocket(),e)}async delete(e,t){this.assertWebProvider("delete"),await dn(this.requireSocket(),e,t);}async react(e,t){return ln(this.requireBuilderSocket(),e,t)}get cloud(){if(this._provider!=="cloud")throw new A("CONFIG","wa.cloud requires provider: 'cloud'");return this._cloudModule??=new rt(this.cloudOptions,()=>this.cloudTransport??=new Se(this.cloudOptions))}async sendTemplate(e,t,r,s){if(this._provider!=="cloud"||!this.cloudTransport)throw new A("CONFIG","sendTemplate() is only available on the cloud provider");return (await this.cloudTransport.sendTemplate(e,t,r,s)).key}async markRead(e,t){if(this._provider!=="cloud"||!this.cloudTransport)throw new A("CONFIG","markRead(messageId) is only available on the cloud provider");await this.cloudTransport.markRead(e,t);}async forward(e,t){let r=this.requireSocket(),s=await this.resolveRecipient(t);return un(r,this.store,e,s)}async pin(e,t){return this.assertWebProvider("pin"),yt(this.requireSocket(),e,true,t)}async unpin(e){return this.assertWebProvider("unpin"),yt(this.requireSocket(),e,false)}async setDisappearing(e,t){this.assertWebProvider("setDisappearing");let r=await this.resolveRecipient(e);await this.requireSocket().sendMessage(r,{disappearingMessagesInChat:t});}resolveRecipient(e){return pn(this.requireSocket(),e,this.usernameCache)}requireSocket(){if(!this._socket)throw new g("INVALID_OPTIONS","client not connected");return this._socket}requireBuilderSocket(){if(this._provider==="cloud"){if(!this.cloudTransport||this.machine.state!=="connected")throw new g("INVALID_OPTIONS","client not connected");return this.cloudTransport}return this.requireSocket()}attachEmitterLogger(){this.logger;}wireSocket(e){let t=s=>{this.handleConnectionUpdate(s);},r=s=>{let i=this.creds?Object.assign(this.creds,s):s;this.creds=i,this.auth.creds.writeCreds(i).catch(o=>{this.logger.warn(o,"auth.creds.writeCreds failed");});};e.ev.on("connection.update",t),e.ev.on("creds.update",r),this.listenerCleanup.push({off:()=>e.ev.off("connection.update",t)}),this.listenerCleanup.push({off:()=>e.ev.off("creds.update",r)});}async handleConnectionUpdate(e){if(e.qr&&await this.handleQrUpdate(e.qr),e.connection==="open"){this.handleOpen();return}e.connection==="close"&&await this.handleClose(e.lastDisconnect);}async handleQrUpdate(e){if(this.authExhausted)return;if(this.authType==="pairing"&&this.phoneNumber){if(this.pairingRequested)return;let s=Date.now(),i=this.authGuard.evaluate("pairing",s);if(!i.allowed){i.reason==="budget-exhausted"&&this.handleAuthExhausted("pairing",i.attempts,i.max);return}this.pairingRequested=true,this.authGuard.record("pairing",s),this.machine.canTransition("pairing-pending")&&this.machine.transition("pairing-pending");try{let o=Dr({phoneNumber:this.phoneNumber}),a=this._socket;if(!a)return;let c=await o.requestCode(a);this.logStatus({kind:"pairing-code",code:c.code}),this.emit("pairing-code",{sessionId:this.sessionId,code:c.code,expiresAt:c.expiresAt});}catch(o){this.logger.warn(o,"pairing-code request failed");}return}let t=Date.now(),r=this.authGuard.evaluate("qr",t);if(!r.allowed){this.handleAuthExhausted("qr",r.attempts,r.max);return}if(this.authGuard.record("qr",t),this.machine.canTransition("qr-pending")&&this.machine.transition("qr-pending"),this.qrTerminal)try{await Br(e);}catch(s){this.logger.warn(s,"printQrToTerminal failed");}this.logStatus({kind:"qr"}),this.emit("qr",{sessionId:this.sessionId,qrString:e,expiresAt:t+Gs});}handleAuthExhausted(e,t,r){this.authExhausted||(this.authExhausted=true,this.logger.warn({sessionId:this.sessionId,kind:e,attempts:t,max:r},`auth attempts exhausted (${t}/${r} ${e}); stopping to avoid WhatsApp spam restriction \u2014 call connect() to retry`),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=void 0),this.emit("auth-exhausted",{sessionId:this.sessionId,kind:e,attempts:t,max:r}),this.disconnect());}handleOpen(){this.machine.canTransition("connected")&&this.machine.transition("connected"),this.openedThisRun=true,this.credsHintShown=false,this.postOpenLogoutRetries=0,this.authExhausted=false,this.authGuard.reset(),this.reconnectStrategy.reset();let e=this.resolveMe();this.logStatus({kind:"connected",id:typeof e.id=="string"?e.id:""}),this.emit("connect",{sessionId:this.sessionId,me:e});let t=this._socket;t&&(this.inboundHandle?.detach(),this.inboundHandle=Pn(this,t,{selfJid:typeof e.id=="string"?e.id:"",...typeof e.lid=="string"&&e.lid.length>0?{selfLid:e.lid}:{},...typeof e.name=="string"&&e.name.length>0?{selfName:e.name}:{},channelId:this.sessionId,receiverId:typeof e.id=="string"?e.id:"",prefixes:this.commandPrefixes,logger:this.logger,...this.citationConfig!=null?{citationConfig:this.citationConfig}:{},groupMetadata:s=>this.group.metadata(s).catch(()=>null),receiverName:()=>Promise.resolve(this.resolveMe().name??null),resolveQuoted:(s,i)=>this.lookupQuoted(s,i),resolveLidToPn:s=>this.lidToPn(s),sendReply:async(s,i,o,a)=>await this.send(s).text(i,o).reply(a),react:(s,i)=>this.react(s,i),ignoreMe:this.ignoreMe})),this.attachCommandsIfReady(),this.ensureScheduler().loadPending().catch(s=>this.logger.warn(s,"scheduler loadPending failed")),this.autoDeleteOptions&&(this.autoDeleteSweeper?.stop(),this.autoDeleteSweeper=new Ke({store:this.store,options:this.autoDeleteOptions,logger:this.logger}),this.autoDeleteSweeper.start()),this.pluginsOptions&&!this.pluginLoader&&(this.pluginRegistry=new We({client:this,logger:this.logger}),this.pluginLoader=new Fe({registry:this.pluginRegistry,options:this.pluginsOptions,logger:this.logger}),this.pluginLoader.start().catch(s=>this.logger.error(s,"plugin loader start failed")));let r=this.connectResolve;this.connectResolve=void 0,this.connectReject=void 0,r&&r();}async resolveMessageForResend(e){try{return (await this.store.getMessage(e))?.message??void 0}catch(t){this.logger.warn(t,"getMessage resend lookup failed");return}}lidMapping(){return this._socket?.signalRepository?.lidMapping}async lidToPn(e){try{let t=this.lidMapping()?.getPNForLID;return typeof t=="function"?await t(e):null}catch{return null}}async pnToLid(e){try{let t=this.lidMapping()?.getLIDForPN;return typeof t=="function"?await t(e):null}catch{return null}}async downloadMedia(e){let t=["image","video","audio","document","sticker"],r={image:"imageMessage",video:"videoMessage",audio:"audioMessage",document:"documentMessage",sticker:"stickerMessage"};for(let s of [e.fromMe===true,e.fromMe!==true]){let i=await this.store.getMessage({...e,fromMe:s}).catch(()=>{}),o=i?.message;if(i==null||o==null)continue;let a=t.find(c=>o[r[c]]!=null);if(a===void 0)return null;if(this._provider==="cloud"){let d=o[r[a]]?.cloudMediaId;return typeof d!="string"||!this.cloudTransport?null:this.cloudTransport.downloadMedia(d)}return wt(i,a,this.logger)()}return null}async lookupQuoted(e,t){for(let r of [false,true])try{let s=await this.store.getMessage({id:e,remoteJid:t,fromMe:r});if(s!=null)return s}catch{continue}return null}async handleClose(e){this.inboundHandle?.detach(),this.inboundHandle=void 0,this.detachCommands();let t=rc(e?.error),r=_r(t),s=false,i=r==="logged-out"&&this.openedThisRun&&!this.authExhausted&&this.postOpenLogoutRetries<ec;if(i&&(this.postOpenLogoutRetries+=1,this.logger.warn({sessionId:this.sessionId,attempt:this.postOpenLogoutRetries},"logged-out right after connect; treating as spurious and reconnecting instead of clearing session")),Lr(r)&&!i){try{await this.auth.signal.clear();}catch(o){this.logger.warn(o,"auth.signal.clear failed (post-close)");}try{await this.auth.creds.deleteCreds();}catch(o){this.logger.warn(o,"auth.creds.deleteCreds failed (post-close)");}}if((i||!Ge(r))&&!this.authExhausted){St(r)&&this.logger.warn({sessionId:this.sessionId},"WhatsApp returned rate-limited (429); backing off before reconnect to avoid restriction");let o=i?{attempt:this.postOpenLogoutRetries,delayMs:tc}:this.reconnectStrategy.next(r);if(o!==null){s=true,this.machine.canTransition("reconnecting")&&this.machine.transition("reconnecting");let a=this.credsLoadedAtConnect&&!this.openedThisRun&&o.attempt>=2&&!this.credsHintShown;a&&(this.credsHintShown=true),this.logStatus({kind:"reconnecting",attempt:o.attempt,delayMs:o.delayMs,reason:r,invalidCredsSuspected:a}),this.emit("reconnecting",{sessionId:this.sessionId,attempt:o.attempt,delayMs:o.delayMs,reason:r}),this.reconnectTimer=setTimeout(()=>{this.reconnectTimer=void 0,this.connect().catch(c=>{this.logger.warn(c,"reconnect attempt failed");});},o.delayMs);}}if(this.disconnectEmittedFor=this.connectAttemptSeq,this.logStatus({kind:"disconnect",reason:r,willReconnect:s}),this.emit("disconnect",{sessionId:this.sessionId,reason:r,willReconnect:s}),!s){if(this._socket){for(let o of this.listenerCleanup)o.off();this.listenerCleanup=[],this._socket=void 0;}this.machine.canTransition("disconnected")&&this.machine.transition("disconnected"),this.rejectPendingConnect(new Error(`connection closed (${r})`));}}rejectPendingConnect(e){let t=this.connectReject;this.connectResolve=void 0,this.connectReject=void 0,t&&t(e);}};function nc(n){return n===void 0?[]:(Array.isArray(n)?n:[n]).filter(t=>t.length>0)}function rc(n){if(!n||typeof n!="object")return;let e=n.output;if(!e)return;let t=e.statusCode;return typeof t=="number"?t:void 0}var Hs=class{credsBlob;signalMap=new Map;closed=false;signal={read:async(e,t)=>{this.assertOpen();let r=this.signalMap.get(e),s={};if(!r)return s;for(let i of t){let o=r.get(i);o!==void 0&&(s[i]=o);}return s},write:async e=>{this.assertOpen();for(let t of Object.keys(e)){let r=e[t];if(!r)continue;let s=this.signalMap.get(t);s||(s=new Map,this.signalMap.set(t,s));for(let i of Object.keys(r)){let o=r[i];o===null?s.delete(i):o!==void 0&&s.set(i,o);}}},delete:async(e,t)=>{this.assertOpen();let r=this.signalMap.get(e);if(r)for(let s of t)r.delete(s);},clear:async()=>{this.assertOpen(),this.signalMap.clear(),this.credsBlob=void 0;},close:async()=>{this.closed=true;}};creds={readCreds:async()=>(this.assertOpen(),this.credsBlob),writeCreds:async e=>{this.assertOpen(),this.credsBlob=structuredClone(e);},deleteCreds:async()=>{this.assertOpen(),this.credsBlob=void 0;}};assertOpen(){if(this.closed)throw new f("STORE_CLOSED","MemoryAuthStore is closed")}};var Dt=null,sc=async()=>{if(Dt)return Dt;try{return Dt=(await import('better-sqlite3')).default,Dt}catch(n){throw new f("STORE_NOT_AVAILABLE","better-sqlite3 belum terpasang. Run: pnpm add better-sqlite3",{cause:n})}},On="default",Ys=500,Zs=n=>Array.from({length:n},()=>"?").join(","),Qs=(n,e)=>{let t=[];for(let r=0;r<n.length;r+=e)t.push(n.slice(r,r+e));return t},Xs=class{options;db=null;prepared=null;readyPromise=null;closed=false;constructor(e){this.options=e;}creds={readCreds:async()=>{let t=(await this.ensureReady()).readCreds.get(On);if(t)return this.parseBlob(t.data)},writeCreds:async e=>{let t=await this.ensureReady(),r=this.encodeBlob(e);t.writeCreds.run(On,r);},deleteCreds:async()=>{(await this.ensureReady()).deleteCreds.run(On);}};signal={read:async(e,t)=>{await this.ensureReady();let r={};if(t.length===0)return r;let s=this.db;for(let i of Qs(t,Ys)){let o=Zs(i.length),c=s.prepare(`SELECT id, data FROM auth_signal WHERE type = ? AND id IN (${o})`).all(e,...i);for(let d of c)r[d.id]=this.parseBlob(d.data);}return r},write:async e=>{let t=await this.ensureReady(),r=this.db,s=[],i=[];for(let a of Object.keys(e)){let c=e[a];if(c)for(let d of Object.keys(c)){let l=c[d];l===null?i.push({type:a,id:d}):l!==void 0&&s.push({type:a,id:d,blob:this.encodeBlob(l)});}}r.transaction(()=>{for(let a of s)t.writeSignal.run(a.type,a.id,a.blob);for(let a of i)t.deleteSignal.run(a.type,a.id);})();},delete:async(e,t)=>{if(await this.ensureReady(),t.length===0)return;let r=this.db,s=r.transaction(i=>{let o=Zs(i.length);r.prepare(`DELETE FROM auth_signal WHERE type = ? AND id IN (${o})`).run(e,...i);});for(let i of Qs(t,Ys))s(i);},clear:async()=>{let e=await this.ensureReady();this.db.transaction(()=>{e.clearSignal.run(),e.clearCreds.run();})();},close:async()=>{if(!this.closed){this.closed=true;try{this.db?.close();}catch(e){throw new f("STORE_WRITE_FAILED","failed to close sqlite database",{cause:e})}finally{this.db=null,this.prepared=null;}}}};async ensureReady(){if(this.closed)throw new f("STORE_CLOSED","SqliteAuthStore is closed");return this.prepared?this.prepared:(this.readyPromise||(this.readyPromise=this.openAndMigrate().catch(e=>{throw this.readyPromise=null,e})),await this.readyPromise,this.prepared)}async openAndMigrate(){let e=await sc(),t;try{t=new e(this.options.database,{readonly:this.options.readonly??!1});}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to open sqlite database at ${String(this.options.database)}`,{cause:r})}try{t.pragma("journal_mode = WAL"),t.pragma("synchronous = NORMAL"),t.pragma("foreign_keys = ON"),t.exec(`CREATE TABLE IF NOT EXISTS auth_creds (id TEXT PRIMARY KEY, data BLOB NOT NULL) WITHOUT ROWID;
22
+ CREATE TABLE IF NOT EXISTS auth_signal (type TEXT NOT NULL, id TEXT NOT NULL, data BLOB NOT NULL, PRIMARY KEY(type, id)) WITHOUT ROWID;`);}catch(r){throw t.close(),new f("STORE_CONNECTION_FAILED","failed to migrate sqlite schema",{cause:r})}this.db=t,this.prepared={readCreds:t.prepare("SELECT data FROM auth_creds WHERE id = ?"),writeCreds:t.prepare("INSERT INTO auth_creds(id, data) VALUES(?, ?) ON CONFLICT(id) DO UPDATE SET data = excluded.data"),deleteCreds:t.prepare("DELETE FROM auth_creds WHERE id = ?"),writeSignal:t.prepare("INSERT INTO auth_signal(type, id, data) VALUES(?, ?, ?) ON CONFLICT(type, id) DO UPDATE SET data = excluded.data"),deleteSignal:t.prepare("DELETE FROM auth_signal WHERE type = ? AND id = ?"),clearSignal:t.prepare("DELETE FROM auth_signal"),clearCreds:t.prepare("DELETE FROM auth_creds")};}encodeBlob(e){try{return Buffer.from(JSON.stringify(e,Ya.BufferJSON.replacer),"utf8")}catch(t){throw new f("STORE_WRITE_FAILED","failed to serialize sqlite blob",{cause:t})}}parseBlob(e){try{let t=Buffer.isBuffer(e)?e.toString("utf8"):Buffer.from(e).toString("utf8");return JSON.parse(t,Ya.BufferJSON.reviver)}catch(t){throw new f("STORE_CORRUPTED","failed to parse sqlite blob",{cause:t})}}};var Wt,ic=async()=>(Wt||(Wt=import('pg').then(n=>n).catch(n=>{throw Wt=void 0,new f("STORE_NOT_AVAILABLE","pg is not installed. Run: pnpm add pg",{cause:n})})),Wt),oc="CREATE TABLE IF NOT EXISTS zaileys_auth_creds (id text PRIMARY KEY, data jsonb NOT NULL)",ac="CREATE TABLE IF NOT EXISTS zaileys_auth_signal (type text NOT NULL, id text NOT NULL, data bytea NOT NULL, PRIMARY KEY(type, id))",ei=class{externalPool;connectionString;poolMax;ownedPool;resolvedPool;readyPromise;closed=false;constructor(e){let t=e.pool!==void 0,r=e.connectionString!==void 0;if(t&&r)throw new f("STORE_CONNECTION_FAILED","PostgresAuthStore: provide either pool or connectionString, not both");if(!t&&!r)throw new f("STORE_CONNECTION_FAILED","PostgresAuthStore: pool or connectionString is required");this.externalPool=e.pool,this.connectionString=e.connectionString,this.poolMax=e.max;}async ensureReady(){if(this.closed)throw new f("STORE_CLOSED","PostgresAuthStore is closed");if(this.resolvedPool)return this.resolvedPool;this.readyPromise||(this.readyPromise=(async()=>{let e;if(this.externalPool)e=this.externalPool;else {let t=await ic(),r=t.Pool??t.default?.Pool;if(!r)throw new f("STORE_NOT_AVAILABLE","pg.Pool constructor not found");e=new r({connectionString:this.connectionString,max:this.poolMax}),this.ownedPool=e;}try{await e.query(oc),await e.query(ac);}catch(t){throw new f("STORE_CONNECTION_FAILED","failed to migrate auth schema",{cause:t})}return this.resolvedPool=e,e})());try{return await this.readyPromise}catch(e){throw this.readyPromise=void 0,e}}signal={read:async(e,t)=>{let r=await this.ensureReady(),s={};if(t.length===0)return s;try{let i=t.map((a,c)=>`$${c+2}`).join(", "),o=await r.query(`SELECT id, data FROM zaileys_auth_signal WHERE type = $1 AND id IN (${i})`,[String(e),...Array.from(t)]);for(let a of o.rows){let c=Buffer.isBuffer(a.data)?a.data:Buffer.from(a.data);s[a.id]=JSON.parse(c.toString("utf8"),Ya.BufferJSON.reviver);}return s}catch(i){throw i instanceof f?i:new f("STORE_READ_FAILED","failed to read signal rows",{cause:i})}},write:async e=>{let t=await this.ensureReady(),r=[];for(let i of Object.keys(e)){let o=e[i];if(o)for(let a of Object.keys(o)){let c=o[a];if(c===null)r.push({kind:"delete",type:String(i),id:a});else if(c!==void 0){let d=Buffer.from(JSON.stringify(c,Ya.BufferJSON.replacer),"utf8");r.push({kind:"upsert",type:String(i),id:a,value:d});}}}if(r.length===0)return;let s;try{s=await t.connect(),await s.query("BEGIN");for(let i of r)i.kind==="delete"?await s.query("DELETE FROM zaileys_auth_signal WHERE type = $1 AND id = $2",[i.type,i.id]):await s.query("INSERT INTO zaileys_auth_signal(type, id, data) VALUES ($1, $2, $3) ON CONFLICT (type, id) DO UPDATE SET data = EXCLUDED.data",[i.type,i.id,i.value]);await s.query("COMMIT");}catch(i){if(s)try{await s.query("ROLLBACK");}catch{}throw new f("STORE_WRITE_FAILED","failed to write signal rows",{cause:i})}finally{s?.release();}},delete:async(e,t)=>{let r=await this.ensureReady();if(t.length!==0)try{let s=t.map((i,o)=>`$${o+2}`).join(", ");await r.query(`DELETE FROM zaileys_auth_signal WHERE type = $1 AND id IN (${s})`,[String(e),...Array.from(t)]);}catch(s){throw new f("STORE_WRITE_FAILED","failed to delete signal rows",{cause:s})}},clear:async()=>{let e=await this.ensureReady(),t;try{t=await e.connect(),await t.query("BEGIN"),await t.query("DELETE FROM zaileys_auth_signal"),await t.query("DELETE FROM zaileys_auth_creds"),await t.query("COMMIT");}catch(r){if(t)try{await t.query("ROLLBACK");}catch{}throw new f("STORE_WRITE_FAILED","failed to clear auth tables",{cause:r})}finally{t?.release();}},close:async()=>{if(this.closed)return;this.closed=true;let e=this.ownedPool;if(this.ownedPool=void 0,this.resolvedPool=void 0,this.readyPromise=void 0,e)try{await e.end();}catch{}}};creds={readCreds:async()=>{let e=await this.ensureReady();try{let r=(await e.query("SELECT data FROM zaileys_auth_creds WHERE id = 'default'")).rows[0];if(!r)return;let s=typeof r.data=="string"?r.data:JSON.stringify(r.data);return JSON.parse(s,Ya.BufferJSON.reviver)}catch(t){throw t instanceof f?t:new f("STORE_READ_FAILED","failed to read creds",{cause:t})}},writeCreds:async e=>{let t=await this.ensureReady();try{let r=JSON.stringify(e,Ya.BufferJSON.replacer);await t.query("INSERT INTO zaileys_auth_creds(id, data) VALUES ('default', $1::jsonb) ON CONFLICT (id) DO UPDATE SET data = EXCLUDED.data",[r]);}catch(r){throw new f("STORE_WRITE_FAILED","failed to write creds",{cause:r})}},deleteCreds:async()=>{let e=await this.ensureReady();try{await e.query("DELETE FROM zaileys_auth_creds WHERE id = 'default'");}catch(t){throw new f("STORE_WRITE_FAILED","failed to delete creds",{cause:t})}}}};var cc="zaileys",dc=["pre-key","session","sender-key","sender-key-memory","app-state-sync-key","app-state-sync-version","lid-mapping","device-list","tctoken","identity-key"],lc=n=>{if(typeof n!="object"||n===null)return false;let e=n.code;return e==="ERR_MODULE_NOT_FOUND"||e==="MODULE_NOT_FOUND"},ti=class{namespace;externalClient;url;ownedClient;ready;closed=false;constructor(e){if(e.client&&e.url)throw new f("STORE_CONNECTION_FAILED","pass either client OR url, not both");if(!e.client&&!e.url)throw new f("STORE_CONNECTION_FAILED","RedisAuthStore requires either client or url");this.namespace=e.namespace??cc,this.externalClient=e.client,this.url=e.url;}signal={read:async(e,t)=>{if(this.assertOpen(),t.length===0)return {};let r=await this.ensureReady(),s=t.map(a=>this.signalKey(e,a)),i=await this.runRead(()=>r.mGet(s)),o={};for(let a=0;a<t.length;a+=1){let c=i[a];c!=null&&(o[t[a]]=JSON.parse(c,Ya.BufferJSON.reviver));}return o},write:async e=>{this.assertOpen();let r=(await this.ensureReady()).multi(),s=0;for(let i of Object.keys(e)){let o=e[i];if(o)for(let a of Object.keys(o)){let c=o[a],d=this.signalKey(i,a),l=this.indexKey(i);c===null?(r.del(d),r.sRem(l,a)):c!==void 0&&(r.set(d,JSON.stringify(c,Ya.BufferJSON.replacer)),r.sAdd(l,a)),s+=1;}}s!==0&&await this.runWrite(()=>r.exec());},delete:async(e,t)=>{if(this.assertOpen(),t.length===0)return;let s=(await this.ensureReady()).multi();for(let i of t)s.del(this.signalKey(e,i)),s.sRem(this.indexKey(e),i);await this.runWrite(()=>s.exec());},clear:async()=>{this.assertOpen();let e=await this.ensureReady(),t=e.multi();for(let r of dc){let s=this.indexKey(r),i=await this.runRead(()=>e.sMembers(s));for(let o of i)t.del(this.signalKey(r,o));t.del(s);}t.del(this.credsKey()),await this.runWrite(()=>t.exec());},close:async()=>{await this.shutdown();}};creds={readCreds:async()=>{this.assertOpen();let e=await this.ensureReady(),t=await this.runRead(()=>e.get(this.credsKey()));if(t!=null)return JSON.parse(t,Ya.BufferJSON.reviver)},writeCreds:async e=>{this.assertOpen();let t=await this.ensureReady();await this.runWrite(()=>t.set(this.credsKey(),JSON.stringify(e,Ya.BufferJSON.replacer)));},deleteCreds:async()=>{this.assertOpen();let e=await this.ensureReady();await this.runWrite(()=>e.del(this.credsKey()));}};credsKey(){return `${this.namespace}:auth:creds`}signalKey(e,t){return `${this.namespace}:auth:signal:${String(e)}:${t}`}indexKey(e){return `${this.namespace}:auth:signal-index:${String(e)}`}async ensureReady(){return this.ready||(this.ready=this.connect()),this.ready}async connect(){if(this.externalClient){if(!this.externalClient.isOpen)throw new f("STORE_CONNECTION_FAILED","provided redis client is not open (call await client.connect() first)");return this.externalClient}let e;try{e=await import('redis');}catch(r){throw lc(r)?new f("STORE_NOT_AVAILABLE","redis peer dependency missing. Run: pnpm add redis",{cause:r}):new f("STORE_CONNECTION_FAILED","failed to load redis module",{cause:r})}let t=e.createClient({url:this.url});try{await t.connect();}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to connect to redis at ${this.url}`,{cause:r})}return this.ownedClient=t,t}async runRead(e){try{return await e()}catch(t){throw new f("STORE_READ_FAILED","redis read failed",{cause:t})}}async runWrite(e){try{return await e()}catch(t){throw new f("STORE_WRITE_FAILED","redis write failed",{cause:t})}}async shutdown(){if(!this.closed){if(this.closed=true,this.ownedClient){try{await this.ownedClient.quit();}catch{}this.ownedClient=void 0;}this.ready=void 0;}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","RedisAuthStore is closed")}};var uc="zaileys",st={get:"zaileys:get",set:"zaileys:set",del:"zaileys:del",clear:"zaileys:clear",list:"zaileys:list"},pc=n=>{if(typeof n!="object"||n===null)return false;let e=n.code;return e==="ERR_MODULE_NOT_FOUND"||e==="MODULE_NOT_FOUND"},be=class{namespace;externalClient;url;client;closed=false;constructor(e){if(e.client&&e.url)throw new f("STORE_CONNECTION_FAILED","pass either client OR url, not both");if(!e.client&&!e.url)throw new f("STORE_CONNECTION_FAILED","ConvexKv requires either client or url");this.namespace=e.namespace??uc,this.externalClient=e.client,this.url=e.url;}async get(e){if(this.assertOpen(),e.length===0)return new Map;let t=await this.ensureClient(),r=await this.runRead(()=>t.query(st.get,{namespace:this.namespace,keys:[...e]})),s=new Map;for(let i of r??[])s.set(i.key,i.value);return s}async set(e){if(this.assertOpen(),e.length===0)return;let t=await this.ensureClient();await this.runWrite(()=>t.mutation(st.set,{namespace:this.namespace,items:[...e]}));}async del(e){if(this.assertOpen(),e.length===0)return;let t=await this.ensureClient();await this.runWrite(()=>t.mutation(st.del,{namespace:this.namespace,keys:[...e]}));}async clear(e){this.assertOpen();let t=await this.ensureClient();await this.runWrite(()=>t.mutation(st.clear,e===void 0?{namespace:this.namespace}:{namespace:this.namespace,prefix:e}));}async list(e,t){this.assertOpen();let r=await this.ensureClient(),s={namespace:this.namespace,prefix:e};return typeof t?.before=="number"&&(s.before=t.before),typeof t?.limit=="number"&&(s.limit=t.limit),await this.runRead(()=>r.query(st.list,s))??[]}close(){this.closed=true,this.client=void 0;}async ensureClient(){if(this.externalClient)return this.externalClient;if(this.client)return this.client;let e="convex/browser",t;try{t=await import(e);}catch(r){throw pc(r)?new f("STORE_NOT_AVAILABLE","convex peer dependency missing. Run: pnpm add convex",{cause:r}):new f("STORE_CONNECTION_FAILED","failed to load convex module",{cause:r})}return this.client=new t.ConvexHttpClient(this.url),this.client}async runRead(e){try{return await e()}catch(t){throw new f("STORE_READ_FAILED","convex read failed",{cause:t})}}async runWrite(e){try{return await e()}catch(t){throw new f("STORE_WRITE_FAILED","convex write failed",{cause:t})}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","Convex store is closed")}};var jt="creds",mc="signal:",it=(n,e)=>`${mc}${n}:${e}`,ni=class{creds;signal;kv;constructor(e){this.kv=new be(e);let t=this.kv;this.creds={async readCreds(){let s=(await t.get([jt])).get(jt);return s===void 0?void 0:JSON.parse(s,Ya.BufferJSON.reviver)},async writeCreds(r){await t.set([{key:jt,value:JSON.stringify(r,Ya.BufferJSON.replacer)}]);},async deleteCreds(){await t.del([jt]);}},this.signal={async read(r,s){let i=s.map(c=>it(r,c)),o=await t.get(i),a={};for(let c of s){let d=o.get(it(r,c));a[c]=d===void 0?void 0:JSON.parse(d,Ya.BufferJSON.reviver);}return a},async write(r){let s=[],i=[];for(let o of Object.keys(r)){let a=r[o];if(a)for(let c of Object.keys(a)){let d=a[c];d==null?i.push(it(o,c)):s.push({key:it(o,c),value:JSON.stringify(d,Ya.BufferJSON.replacer)});}}s.length>0&&await t.set(s),i.length>0&&await t.del(i);},async delete(r,s){await t.del(s.map(i=>it(r,i)));},async clear(){await t.clear();},async close(){t.close();}};}};var qt=null,gc=async()=>{if(qt)return qt;try{return qt=(await import('better-sqlite3')).default,qt}catch(n){throw new f("STORE_NOT_AVAILABLE","better-sqlite3 belum terpasang. Run: pnpm add better-sqlite3",{cause:n})}},Kt=n=>{try{return Buffer.from(JSON.stringify(n,Ya.BufferJSON.replacer),"utf8")}catch(e){throw new f("STORE_WRITE_FAILED","failed to serialize sqlite blob",{cause:e})}},le=n=>{try{let e=Buffer.isBuffer(n)?n.toString("utf8"):Buffer.from(n).toString("utf8");return JSON.parse(e,Ya.BufferJSON.reviver)}catch(e){throw new f("STORE_CORRUPTED","failed to parse sqlite blob",{cause:e})}},ri=class{options;db=null;prepared=null;readyPromise=null;closed=false;boundSocket;listeners=new Map;constructor(e){this.options=e;}async saveMessage(e){let t=await this.ensureReady(),r=e.key.remoteJid??"",s=e.key.id??"",i=e.key.fromMe?1:0,o=Number(e.messageTimestamp??0);t.upsertMessage.run(r,s,i,o,Kt(e));}async getMessage(e){let r=(await this.ensureReady()).getMessage.get(e.remoteJid??"",e.id??"",e.fromMe?1:0);return r?le(r.data):void 0}async listMessages(e,t){let r=await this.ensureReady(),s=t?.limit??100,i=t?.before;return (typeof i=="number"?r.listMessages.all(e,i,s):r.listMessages.all(e,Number.MAX_SAFE_INTEGER,s)).map(a=>le(a.data))}async saveChat(e){let t=await this.ensureReady(),r=e.id;if(!r)return;let s=e.archived?1:0;t.upsertChat.run(r,s,Kt(e));}async getChat(e){let r=(await this.ensureReady()).getChat.get(e);return r?le(r.data):void 0}async listChats(e){let t=await this.ensureReady();return (e?.archived===true?t.listChatsArchived.all():t.listChats.all()).map(s=>le(s.data))}async saveContact(e){(await this.ensureReady()).upsertContact.run(e.id,Kt(e));}async getContact(e){let r=(await this.ensureReady()).getContact.get(e);return r?le(r.data):void 0}async listContacts(){return (await this.ensureReady()).listContacts.all().map(r=>le(r.data))}async savePresence(e,t){(await this.ensureReady()).upsertPresence.run(e,Kt(t));}async getPresence(e){let r=(await this.ensureReady()).getPresence.get(e);return r?le(r.data):void 0}async deleteMessage(e){(await this.ensureReady()).deleteMessage.run(e.remoteJid??"",e.id??"",e.fromMe===true?1:0);}async pruneMessages(e){let t=await this.ensureReady(),r=this.db,s=0,i=e.chatFilter?r.prepare("SELECT DISTINCT remote_jid FROM messages").all().map(o=>o.remote_jid).filter(o=>e.chatFilter(o)):void 0;if(e.olderThan!==void 0)if(i)for(let o of i)s+=t.pruneByAgeChat.run(e.olderThan,o).changes;else s+=t.pruneByAge.run(e.olderThan).changes;if(e.maxPerChat!==void 0){let o=i?"WHERE remote_jid IN ("+i.map(()=>"?").join(",")+")":"",a=r.prepare(`DELETE FROM messages WHERE rowid IN (
23
23
  SELECT rowid FROM (
24
24
  SELECT rowid, ROW_NUMBER() OVER (PARTITION BY remote_jid ORDER BY timestamp DESC) AS rn
25
25
  FROM messages ${o}
26
26
  ) WHERE rn > ?
27
- )`);s+=a.run(...i??[],e.maxPerChat).changes;}return s}bind(e){if(this.closed)throw new f("STORE_CLOSED","SqliteMessageStore is closed");this.boundSocket=e;let t=(...o)=>{let c=o[0]?.messages;if(Array.isArray(c))for(let d of c)this.saveMessage(d).catch(()=>{});},r=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveChat(c).catch(()=>{});},s=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveContact(c).catch(()=>{});},i=(...o)=>{let a=o[0];if(a?.presences)for(let c of Object.keys(a.presences)){let d=a.presences[c];d&&this.savePresence(c,d).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("chats.upsert",r),this.listeners.set("contacts.upsert",s),this.listeners.set("presence.update",i);for(let[o,a]of this.listeners)e.ev.on(o,a);}async clear(){let e=await this.ensureReady();this.db.transaction(()=>{e.clearMessages.run(),e.clearChats.run(),e.clearContacts.run(),e.clearPresence.run();})();}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);this.listeners.clear(),this.boundSocket=void 0;try{this.db?.close();}catch(e){throw new f("STORE_WRITE_FAILED","failed to close sqlite database",{cause:e})}finally{this.db=null,this.prepared=null;}}}async ensureReady(){if(this.closed)throw new f("STORE_CLOSED","SqliteMessageStore is closed");return this.prepared?this.prepared:(this.readyPromise||(this.readyPromise=this.openAndMigrate().catch(e=>{throw this.readyPromise=null,e})),await this.readyPromise,this.prepared)}async openAndMigrate(){let e=await mc(),t;try{t=new e(this.options.database,{readonly:this.options.readonly??!1});}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to open sqlite database at ${String(this.options.database)}`,{cause:r})}try{t.pragma("journal_mode = WAL"),t.pragma("synchronous = NORMAL"),t.pragma("foreign_keys = ON"),t.exec(`CREATE TABLE IF NOT EXISTS messages (
27
+ )`);s+=a.run(...i??[],e.maxPerChat).changes;}return s}bind(e){if(this.closed)throw new f("STORE_CLOSED","SqliteMessageStore is closed");this.boundSocket=e;let t=(...o)=>{let c=o[0]?.messages;if(Array.isArray(c))for(let d of c)this.saveMessage(d).catch(()=>{});},r=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveChat(c).catch(()=>{});},s=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveContact(c).catch(()=>{});},i=(...o)=>{let a=o[0];if(a?.presences)for(let c of Object.keys(a.presences)){let d=a.presences[c];d&&this.savePresence(c,d).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("chats.upsert",r),this.listeners.set("contacts.upsert",s),this.listeners.set("presence.update",i);for(let[o,a]of this.listeners)e.ev.on(o,a);}async clear(){let e=await this.ensureReady();this.db.transaction(()=>{e.clearMessages.run(),e.clearChats.run(),e.clearContacts.run(),e.clearPresence.run();})();}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);this.listeners.clear(),this.boundSocket=void 0;try{this.db?.close();}catch(e){throw new f("STORE_WRITE_FAILED","failed to close sqlite database",{cause:e})}finally{this.db=null,this.prepared=null;}}}async ensureReady(){if(this.closed)throw new f("STORE_CLOSED","SqliteMessageStore is closed");return this.prepared?this.prepared:(this.readyPromise||(this.readyPromise=this.openAndMigrate().catch(e=>{throw this.readyPromise=null,e})),await this.readyPromise,this.prepared)}async openAndMigrate(){let e=await gc(),t;try{t=new e(this.options.database,{readonly:this.options.readonly??!1});}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to open sqlite database at ${String(this.options.database)}`,{cause:r})}try{t.pragma("journal_mode = WAL"),t.pragma("synchronous = NORMAL"),t.pragma("foreign_keys = ON"),t.exec(`CREATE TABLE IF NOT EXISTS messages (
28
28
  remote_jid TEXT NOT NULL,
29
29
  id TEXT NOT NULL,
30
30
  from_me INTEGER NOT NULL,
@@ -39,4 +39,4 @@ END:VCARD`}}),r=t.length===1?t[0]:void 0;return r?{contactMessage:r}:{contactsAr
39
39
  ON CONFLICT(remote_jid, id, from_me) DO UPDATE SET timestamp = excluded.timestamp, data = excluded.data`),getMessage:t.prepare("SELECT data FROM messages WHERE remote_jid = ? AND id = ? AND from_me = ?"),listMessages:t.prepare("SELECT data FROM messages WHERE remote_jid = ? AND timestamp < ? ORDER BY timestamp DESC LIMIT ?"),upsertChat:t.prepare(`INSERT INTO chats(jid, archived, data) VALUES(?, ?, ?)
40
40
  ON CONFLICT(jid) DO UPDATE SET archived = excluded.archived, data = excluded.data`),getChat:t.prepare("SELECT data FROM chats WHERE jid = ?"),listChats:t.prepare("SELECT data FROM chats"),listChatsArchived:t.prepare("SELECT data FROM chats WHERE archived = 1"),upsertContact:t.prepare(`INSERT INTO contacts(jid, data) VALUES(?, ?)
41
41
  ON CONFLICT(jid) DO UPDATE SET data = excluded.data`),getContact:t.prepare("SELECT data FROM contacts WHERE jid = ?"),listContacts:t.prepare("SELECT data FROM contacts"),upsertPresence:t.prepare(`INSERT INTO presence(jid, data) VALUES(?, ?)
42
- ON CONFLICT(jid) DO UPDATE SET data = excluded.data`),getPresence:t.prepare("SELECT data FROM presence WHERE jid = ?"),clearMessages:t.prepare("DELETE FROM messages"),clearChats:t.prepare("DELETE FROM chats"),clearContacts:t.prepare("DELETE FROM contacts"),clearPresence:t.prepare("DELETE FROM presence"),deleteMessage:t.prepare("DELETE FROM messages WHERE remote_jid = ? AND id = ? AND from_me = ?"),pruneByAge:t.prepare("DELETE FROM messages WHERE timestamp < ?"),pruneByAgeChat:t.prepare("DELETE FROM messages WHERE timestamp < ? AND remote_jid = ?")};}};var $t,gc=async()=>($t||($t=import('pg').then(n=>n).catch(n=>{throw $t=void 0,new f("STORE_NOT_AVAILABLE","pg is not installed. Run: pnpm add pg",{cause:n})})),$t),fc=["CREATE TABLE IF NOT EXISTS zaileys_messages (remote_jid text NOT NULL, id text NOT NULL, from_me boolean NOT NULL, timestamp bigint NOT NULL, data jsonb NOT NULL, PRIMARY KEY(remote_jid, id, from_me))","CREATE INDEX IF NOT EXISTS zaileys_messages_jid_ts_idx ON zaileys_messages(remote_jid, timestamp DESC)","CREATE TABLE IF NOT EXISTS zaileys_chats (jid text PRIMARY KEY, archived boolean NOT NULL DEFAULT false, data jsonb NOT NULL)","CREATE INDEX IF NOT EXISTS zaileys_chats_archived_idx ON zaileys_chats(archived) WHERE archived = true","CREATE TABLE IF NOT EXISTS zaileys_contacts (jid text PRIMARY KEY, data jsonb NOT NULL)","CREATE TABLE IF NOT EXISTS zaileys_presence (jid text PRIMARY KEY, data jsonb NOT NULL, updated_at timestamptz NOT NULL DEFAULT now())"],ue=n=>{if(n==null)return n;let e=typeof n=="string"?n:JSON.stringify(n);return JSON.parse(e,za.BufferJSON.reviver)},ii=class{externalPool;connectionString;poolMax;ownedPool;resolvedPool;readyPromise;boundSocket;listeners=new Map;closed=false;constructor(e){let t=e.pool!==void 0,r=e.connectionString!==void 0;if(t&&r)throw new f("STORE_CONNECTION_FAILED","PostgresMessageStore: provide either pool or connectionString, not both");if(!t&&!r)throw new f("STORE_CONNECTION_FAILED","PostgresMessageStore: pool or connectionString is required");this.externalPool=e.pool,this.connectionString=e.connectionString,this.poolMax=e.max;}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","PostgresMessageStore is closed")}async ensureReady(){if(this.assertOpen(),this.resolvedPool)return this.resolvedPool;this.readyPromise||(this.readyPromise=(async()=>{let e;if(this.externalPool)e=this.externalPool;else {let t=await gc(),r=t.Pool??t.default?.Pool;if(!r)throw new f("STORE_NOT_AVAILABLE","pg.Pool constructor not found");e=new r({connectionString:this.connectionString,max:this.poolMax}),this.ownedPool=e;}try{for(let t of fc)await e.query(t);}catch(t){throw new f("STORE_CONNECTION_FAILED","failed to migrate message schema",{cause:t})}return this.resolvedPool=e,e})());try{return await this.readyPromise}catch(e){throw this.readyPromise=void 0,e}}async saveMessage(e){let t=await this.ensureReady(),r=e.key.remoteJid??"",s=e.key.id??"",i=e.key.fromMe===true,o=Number(e.messageTimestamp??0);try{await t.query("INSERT INTO zaileys_messages(remote_jid, id, from_me, timestamp, data) VALUES ($1, $2, $3, $4, $5::jsonb) ON CONFLICT (remote_jid, id, from_me) DO UPDATE SET data = EXCLUDED.data, timestamp = EXCLUDED.timestamp",[r,s,i,o,JSON.stringify(e,za.BufferJSON.replacer)]);}catch(a){throw new f("STORE_WRITE_FAILED","failed to save message",{cause:a})}}async getMessage(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_messages WHERE remote_jid = $1 AND id = $2 AND from_me = $3",[e.remoteJid??"",e.id??"",e.fromMe===!0])).rows[0];return s?ue(s.data):void 0}catch(r){throw r instanceof f?r:new f("STORE_READ_FAILED","failed to read message",{cause:r})}}async listMessages(e,t){let r=await this.ensureReady(),s=t?.limit??100,i=typeof t?.before=="number"?t.before:null;try{return (await r.query("SELECT data FROM zaileys_messages WHERE remote_jid = $1 AND ($2::bigint IS NULL OR timestamp < $2::bigint) ORDER BY timestamp DESC LIMIT $3",[e,i,s])).rows.map(a=>ue(a.data))}catch(o){throw new f("STORE_READ_FAILED","failed to list messages",{cause:o})}}async saveChat(e){let t=await this.ensureReady(),r=e.id;if(!r)return;let s=e.archived===true;try{await t.query("INSERT INTO zaileys_chats(jid, archived, data) VALUES ($1, $2, $3::jsonb) ON CONFLICT (jid) DO UPDATE SET archived = EXCLUDED.archived, data = EXCLUDED.data",[r,s,JSON.stringify(e,za.BufferJSON.replacer)]);}catch(i){throw new f("STORE_WRITE_FAILED","failed to save chat",{cause:i})}}async getChat(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_chats WHERE jid = $1",[e])).rows[0];return s?ue(s.data):void 0}catch(r){throw new f("STORE_READ_FAILED","failed to read chat",{cause:r})}}async listChats(e){let t=await this.ensureReady(),r=typeof e?.archived=="boolean"?e.archived:null;try{return (await t.query("SELECT data FROM zaileys_chats WHERE ($1::boolean IS NULL OR archived = $1::boolean)",[r])).rows.map(i=>ue(i.data))}catch(s){throw new f("STORE_READ_FAILED","failed to list chats",{cause:s})}}async saveContact(e){let t=await this.ensureReady();try{await t.query("INSERT INTO zaileys_contacts(jid, data) VALUES ($1, $2::jsonb) ON CONFLICT (jid) DO UPDATE SET data = EXCLUDED.data",[e.id,JSON.stringify(e,za.BufferJSON.replacer)]);}catch(r){throw new f("STORE_WRITE_FAILED","failed to save contact",{cause:r})}}async getContact(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_contacts WHERE jid = $1",[e])).rows[0];return s?ue(s.data):void 0}catch(r){throw new f("STORE_READ_FAILED","failed to read contact",{cause:r})}}async listContacts(){let e=await this.ensureReady();try{return (await e.query("SELECT data FROM zaileys_contacts")).rows.map(r=>ue(r.data))}catch(t){throw new f("STORE_READ_FAILED","failed to list contacts",{cause:t})}}async savePresence(e,t){let r=await this.ensureReady();try{await r.query("INSERT INTO zaileys_presence(jid, data, updated_at) VALUES ($1, $2::jsonb, now()) ON CONFLICT (jid) DO UPDATE SET data = EXCLUDED.data, updated_at = now()",[e,JSON.stringify(t,za.BufferJSON.replacer)]);}catch(s){throw new f("STORE_WRITE_FAILED","failed to save presence",{cause:s})}}async getPresence(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_presence WHERE jid = $1",[e])).rows[0];return s?ue(s.data):void 0}catch(r){throw new f("STORE_READ_FAILED","failed to read presence",{cause:r})}}async deleteMessage(e){let t=await this.ensureReady();try{await t.query("DELETE FROM zaileys_messages WHERE remote_jid = $1 AND id = $2 AND from_me = $3",[e.remoteJid??"",e.id??"",e.fromMe===!0]);}catch(r){throw new f("STORE_WRITE_FAILED","failed to delete message",{cause:r})}}async pruneMessages(e){let t=await this.ensureReady();try{let r=0,s;if(e.chatFilter&&(s=(await t.query("SELECT DISTINCT remote_jid FROM zaileys_messages",[])).rows.map(o=>o.remote_jid).filter(o=>e.chatFilter(o))),e.olderThan!==void 0){let i=s?await t.query("DELETE FROM zaileys_messages WHERE timestamp < $1 AND remote_jid = ANY($2::text[])",[e.olderThan,s]):await t.query("DELETE FROM zaileys_messages WHERE timestamp < $1",[e.olderThan]);r+=i.rowCount??0;}if(e.maxPerChat!==void 0){let i=s??await t.query("SELECT DISTINCT remote_jid FROM zaileys_messages",[]).then(o=>o.rows.map(a=>a.remote_jid));for(let o of i){let c=(await t.query("SELECT id, from_me FROM zaileys_messages WHERE remote_jid = $1 ORDER BY timestamp DESC",[o])).rows.slice(e.maxPerChat);if(c.length!==0)for(let d of c){let l=await t.query("DELETE FROM zaileys_messages WHERE remote_jid = $1 AND id = $2 AND from_me = $3",[o,d.id,d.from_me]);r+=l.rowCount??0;}}}return r}catch(r){throw new f("STORE_WRITE_FAILED","failed to prune messages",{cause:r})}}bind(e){this.assertOpen(),this.boundSocket=e;let t=(...c)=>{let l=c[0]?.messages;if(Array.isArray(l))for(let u of l)this.saveMessage(u).catch(()=>{});},r=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.getMessage(l.key).then(u=>{if(!u)return;let w={...u,...l.update};return this.saveMessage(w)}).catch(()=>{});},s=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveChat(l).catch(()=>{});},i=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.getChat(l.id).then(u=>{let w={...u??{},...l};return this.saveChat(w)}).catch(()=>{});},o=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveContact(l).catch(()=>{});},a=(...c)=>{let d=c[0];if(d?.presences)for(let l of Object.keys(d.presences)){let u=d.presences[l];u&&this.savePresence(l,u).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("messages.update",r),this.listeners.set("chats.upsert",s),this.listeners.set("chats.update",i),this.listeners.set("contacts.upsert",o),this.listeners.set("presence.update",a);for(let[c,d]of this.listeners)e.ev.on(c,d);}async clear(){let e=await this.ensureReady(),t;try{t=await e.connect(),await t.query("BEGIN"),await t.query("DELETE FROM zaileys_messages"),await t.query("DELETE FROM zaileys_chats"),await t.query("DELETE FROM zaileys_contacts"),await t.query("DELETE FROM zaileys_presence"),await t.query("COMMIT");}catch(r){if(t)try{await t.query("ROLLBACK");}catch{}throw new f("STORE_WRITE_FAILED","failed to clear message tables",{cause:r})}finally{t?.release();}}async close(){if(this.closed)return;if(this.closed=true,this.boundSocket?.ev.off)for(let[t,r]of this.listeners)this.boundSocket.ev.off(t,r);this.listeners.clear(),this.boundSocket=void 0;let e=this.ownedPool;if(this.ownedPool=void 0,this.resolvedPool=void 0,this.readyPromise=void 0,e)try{await e.end();}catch{}}};var hc="zaileys",yc=300,oi=1e3,xn=n=>`${n.id??""}|${n.fromMe?1:0}`,wc=n=>{if(typeof n!="object"||n===null)return false;let e=n.code;return e==="ERR_MODULE_NOT_FOUND"||e==="MODULE_NOT_FOUND"},ai=class{namespace;externalClient;url;ownedClient;ready;closed=false;boundSocket;listeners=new Map;constructor(e){if(e.client&&e.url)throw new f("STORE_CONNECTION_FAILED","pass either client OR url, not both");if(!e.client&&!e.url)throw new f("STORE_CONNECTION_FAILED","RedisMessageStore requires either client or url");this.namespace=e.namespace??hc,this.externalClient=e.client,this.url=e.url;}async saveMessage(e){this.assertOpen();let t=await this.ensureReady(),r=e.key.remoteJid??"",s=xn(e.key),i=Number(e.messageTimestamp??0),o=JSON.stringify(e,za.BufferJSON.replacer),a=t.multi();a.zAdd(this.msgIndexKey(r),{score:i,value:s}),a.hSet(this.msgDataKey(r),s,o),await this.runWrite(()=>a.exec());}async getMessage(e){this.assertOpen();let t=await this.ensureReady(),r=e.remoteJid??"",s=await this.runRead(()=>t.hGet(this.msgDataKey(r),xn(e)));if(s!=null)return JSON.parse(s,za.BufferJSON.reviver)}async listMessages(e,t){this.assertOpen();let r=await this.ensureReady(),s=t?.limit??100,i=typeof t?.before=="number"?`(${t.before}`:"+inf",o=await this.runRead(()=>r.zRangeByScore(this.msgIndexKey(e),"-inf",i,{LIMIT:{offset:0,count:s+1024}}));if(o.length===0)return [];let c=[...o].reverse().slice(0,s),d=await this.runRead(()=>r.hmGet(this.msgDataKey(e),c)),l=[];for(let u of d)u!=null&&l.push(JSON.parse(u,za.BufferJSON.reviver));return l}async saveChat(e){this.assertOpen();let t=e.id;if(!t)return;let s=(await this.ensureReady()).multi();s.hSet(this.chatsKey(),t,JSON.stringify(e,za.BufferJSON.replacer)),e.archived===true?s.sAdd(this.chatsArchiveKey(),t):s.sRem(this.chatsArchiveKey(),t),await this.runWrite(()=>s.exec());}async getChat(e){this.assertOpen();let t=await this.ensureReady(),r=await this.runRead(()=>t.hGet(this.chatsKey(),e));if(r!=null)return JSON.parse(r,za.BufferJSON.reviver)}async listChats(e){this.assertOpen();let t=await this.ensureReady();if(e?.archived===true){let i=await this.runRead(()=>t.sMembers(this.chatsArchiveKey()));if(i.length===0)return [];let o=await this.runRead(()=>t.hmGet(this.chatsKey(),i)),a=[];for(let c of o)c!=null&&a.push(JSON.parse(c,za.BufferJSON.reviver));return a}let r=await this.runRead(()=>t.hGetAll(this.chatsKey())),s=[];for(let i of Object.keys(r)){let o=r[i];if(o==null)continue;let a=JSON.parse(o,za.BufferJSON.reviver);e?.archived===false&&await this.runRead(()=>t.sIsMember(this.chatsArchiveKey(),i))||s.push(a);}return s}async saveContact(e){this.assertOpen();let t=await this.ensureReady();await this.runWrite(()=>t.hSet(this.contactsKey(),e.id,JSON.stringify(e,za.BufferJSON.replacer)));}async getContact(e){this.assertOpen();let t=await this.ensureReady(),r=await this.runRead(()=>t.hGet(this.contactsKey(),e));if(r!=null)return JSON.parse(r,za.BufferJSON.reviver)}async listContacts(){this.assertOpen();let e=await this.ensureReady(),t=await this.runRead(()=>e.hGetAll(this.contactsKey())),r=[];for(let s of Object.keys(t)){let i=t[s];i!=null&&r.push(JSON.parse(i,za.BufferJSON.reviver));}return r}async savePresence(e,t){this.assertOpen();let r=await this.ensureReady();await this.runWrite(()=>r.set(this.presenceKey(e),JSON.stringify(t,za.BufferJSON.replacer),{EX:yc}));}async getPresence(e){this.assertOpen();let t=await this.ensureReady(),r=await this.runRead(()=>t.get(this.presenceKey(e)));if(r!=null)return JSON.parse(r,za.BufferJSON.reviver)}bind(e){if(this.assertOpen(),this.boundSocket&&this.boundSocket.ev.off)for(let[o,a]of this.listeners)this.boundSocket.ev.off(o,a);this.listeners.clear(),this.boundSocket=e;let t=(...o)=>{let c=o[0]?.messages;if(Array.isArray(c))for(let d of c)this.saveMessage(d).catch(()=>{});},r=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveChat(c).catch(()=>{});},s=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveContact(c).catch(()=>{});},i=(...o)=>{let a=o[0];if(a?.presences)for(let c of Object.keys(a.presences)){let d=a.presences[c];d&&this.savePresence(c,d).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("chats.upsert",r),this.listeners.set("contacts.upsert",s),this.listeners.set("presence.update",i);for(let[o,a]of this.listeners)e.ev.on(o,a);}async clear(){this.assertOpen();let e=await this.ensureReady(),t=`${this.namespace}:*`,r=0;do{let s=await this.runRead(()=>e.scan(r,{MATCH:t,COUNT:oi}));r=Number(s.cursor),s.keys.length>0&&await this.runWrite(()=>e.del(s.keys));}while(r!==0)}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);if(this.listeners.clear(),this.boundSocket=void 0,this.ownedClient){try{await this.ownedClient.quit();}catch{}this.ownedClient=void 0;}this.ready=void 0;}}async deleteMessage(e){this.assertOpen();let t=await this.ensureReady(),r=e.remoteJid??"",s=xn(e),i=t.multi();i.zRem(this.msgIndexKey(r),s),i.hDel(this.msgDataKey(r),s),await this.runWrite(()=>i.exec());}async pruneMessages(e){this.assertOpen();let t=await this.ensureReady(),r=0,s=[],i=this.msgIndexKey("*"),o=0,a=this.msgDataKey("");do{let c=await this.runRead(()=>t.scan(o,{MATCH:i,COUNT:oi}));o=Number(c.cursor);for(let d of c.keys)d.startsWith(a)||s.push(d);}while(o!==0);for(let c of s){let d=this.jidFromIndexKey(c);if(e.chatFilter&&!e.chatFilter(d))continue;let l=this.msgDataKey(d),u=new Set;if(e.olderThan!==void 0){let v=await this.runRead(()=>t.zRangeByScore(c,"-inf",`(${e.olderThan}`));for(let C of v)u.add(C);}if(e.maxPerChat!==void 0){let v=e.maxPerChat,C=await this.runRead(()=>t.zRange(c,0,-(v+1)));for(let y of C)u.add(y);}if(u.size===0)continue;let w=[...u],M=t.multi();M.zRem(c,w),M.hDel(l,w),await this.runWrite(()=>M.exec()),r+=w.length;}return r}jidFromIndexKey(e){let t=this.msgIndexKey("");return e.startsWith(t)?e.slice(t.length):e}msgIndexKey(e){return `${this.namespace}:msg:${e}`}msgDataKey(e){return `${this.namespace}:msg-data:${e}`}chatsKey(){return `${this.namespace}:chats`}chatsArchiveKey(){return `${this.namespace}:chats-archived`}contactsKey(){return `${this.namespace}:contacts`}presenceKey(e){return `${this.namespace}:presence:${e}`}async ensureReady(){return this.ready||(this.ready=this.connect()),this.ready}async connect(){if(this.externalClient){if(!this.externalClient.isOpen)throw new f("STORE_CONNECTION_FAILED","provided redis client is not open (call await client.connect() first)");return this.externalClient}let e;try{e=await import('redis');}catch(r){throw wc(r)?new f("STORE_NOT_AVAILABLE","redis peer dependency missing. Run: pnpm add redis",{cause:r}):new f("STORE_CONNECTION_FAILED","failed to load redis module",{cause:r})}let t=e.createClient({url:this.url});try{await t.connect();}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to connect to redis at ${this.url}`,{cause:r})}return this.ownedClient=t,t}async runRead(e){try{return await e()}catch(t){throw new f("STORE_READ_FAILED","redis read failed",{cause:t})}}async runWrite(e){try{return await e()}catch(t){throw new f("STORE_WRITE_FAILED","redis write failed",{cause:t})}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","RedisMessageStore is closed")}};var Ht="msg:",Jt="chat:",Gt="contact:",Rn="presence:",_n="job:",vc=n=>`${n.id??""}|${n.fromMe?1:0}`,Vt=n=>`${Ht}${n.remoteJid??""}:${vc(n)}`,at=n=>JSON.stringify(n,za.BufferJSON.replacer),Q=n=>JSON.parse(n,za.BufferJSON.reviver),ci=class{kv;closed=false;boundSocket;listeners=new Map;constructor(e){this.kv=new be(e);}async saveMessage(e){this.assertOpen(),await this.kv.set([{key:Vt(e.key),value:at(e),sortKey:Number(e.messageTimestamp??0)}]);}async getMessage(e){this.assertOpen();let r=(await this.kv.get([Vt(e)])).get(Vt(e));return r===void 0?void 0:Q(r)}async listMessages(e,t){this.assertOpen();let r={};return typeof t?.before=="number"&&(r.before=t.before),typeof t?.limit=="number"&&(r.limit=t.limit),(await this.kv.list(`${Ht}${e}:`,r)).map(i=>Q(i.value))}async saveChat(e){this.assertOpen();let t=e.id;t&&await this.kv.set([{key:`${Jt}${t}`,value:at(e)}]);}async getChat(e){this.assertOpen();let r=(await this.kv.get([`${Jt}${e}`])).get(`${Jt}${e}`);return r===void 0?void 0:Q(r)}async listChats(e){this.assertOpen();let t=await this.kv.list(Jt),r=[];for(let s of t){let i=Q(s.value),o=i.archived===true;e?.archived===true&&!o||e?.archived===false&&o||r.push(i);}return r}async saveContact(e){this.assertOpen(),await this.kv.set([{key:`${Gt}${e.id}`,value:at(e)}]);}async getContact(e){this.assertOpen();let r=(await this.kv.get([`${Gt}${e}`])).get(`${Gt}${e}`);return r===void 0?void 0:Q(r)}async listContacts(){return this.assertOpen(),(await this.kv.list(Gt)).map(t=>Q(t.value))}async savePresence(e,t){this.assertOpen(),await this.kv.set([{key:`${Rn}${e}`,value:at(t)}]);}async getPresence(e){this.assertOpen();let r=(await this.kv.get([`${Rn}${e}`])).get(`${Rn}${e}`);return r===void 0?void 0:Q(r)}async saveScheduledJob(e){this.assertOpen(),await this.kv.set([{key:`${_n}${e.id}`,value:at(e),sortKey:e.fireAt}]);}async listScheduledJobs(){return this.assertOpen(),(await this.kv.list(_n)).map(t=>Q(t.value))}async deleteScheduledJob(e){this.assertOpen(),await this.kv.del([`${_n}${e}`]);}async deleteMessage(e){this.assertOpen(),await this.kv.del([Vt(e)]);}async pruneMessages(e){this.assertOpen();let t=await this.kv.list(Ht,{}),r=new Map;for(let i of t){let o=i.key.slice(Ht.length),a=o.slice(0,o.indexOf(":"));if(e.chatFilter&&!e.chatFilter(a))continue;let c=r.get(a)??[];c.push({key:i.key,ts:i.sortKey??0}),r.set(a,c);}let s=[];for(let i of r.values()){i.sort((o,a)=>a.ts-o.ts);for(let o=0;o<i.length;o++){let a=i[o];(e.olderThan!==void 0&&a.ts<e.olderThan||e.maxPerChat!==void 0&&o>=e.maxPerChat)&&s.push(a.key);}}return s.length>0&&await this.kv.del(s),s.length}bind(e){if(this.assertOpen(),this.boundSocket?.ev.off)for(let[o,a]of this.listeners)this.boundSocket.ev.off(o,a);this.listeners.clear(),this.boundSocket=e;let t=(...o)=>{let a=o[0]?.messages;if(Array.isArray(a))for(let c of a)this.saveMessage(c).catch(()=>{});},r=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveChat(c).catch(()=>{});},s=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveContact(c).catch(()=>{});},i=(...o)=>{let a=o[0];if(a?.presences)for(let c of Object.keys(a.presences)){let d=a.presences[c];d&&this.savePresence(c,d).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("chats.upsert",r),this.listeners.set("contacts.upsert",s),this.listeners.set("presence.update",i);for(let[o,a]of this.listeners)e.ev.on(o,a);}async clear(){this.assertOpen(),await this.kv.clear();}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);this.listeners.clear(),this.boundSocket=void 0,this.kv.close();}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","ConvexMessageStore is closed")}};var Mc=(n,e)=>{if(e<=0)throw new RangeError("chunk size must be positive");let t=[];for(let r=0;r<n.length;r+=e)t.push(n.slice(r,r+e));return t};var Qf=n=>{let t=(n.split("@")[0]??"").split(":")[0]?.replace(/\D/g,"")??"";return n.endsWith("@s.whatsapp.net")||n.endsWith("@c.us")?t:""},Xf=n=>`${n.replace(/\D/g,"")}@s.whatsapp.net`;Object.defineProperty(exports,"areJidsSameUser",{enumerable:true,get:function(){return za.areJidsSameUser}});Object.defineProperty(exports,"getDevice",{enumerable:true,get:function(){return za.getDevice}});Object.defineProperty(exports,"isJidBroadcast",{enumerable:true,get:function(){return za.isJidBroadcast}});Object.defineProperty(exports,"isJidGroup",{enumerable:true,get:function(){return za.isJidGroup}});Object.defineProperty(exports,"isJidNewsletter",{enumerable:true,get:function(){return za.isJidNewsletter}});Object.defineProperty(exports,"isLidUser",{enumerable:true,get:function(){return za.isLidUser}});Object.defineProperty(exports,"isPnUser",{enumerable:true,get:function(){return za.isPnUser}});Object.defineProperty(exports,"jidDecode",{enumerable:true,get:function(){return za.jidDecode}});Object.defineProperty(exports,"jidEncode",{enumerable:true,get:function(){return za.jidEncode}});Object.defineProperty(exports,"jidNormalizedUser",{enumerable:true,get:function(){return za.jidNormalizedUser}});exports.AudioProcessor=te;exports.AutoDeleteSweeper=Ke;exports.BufferConverter=k;exports.BusinessModule=De;exports.ChatModule=Le;exports.Client=Vs;exports.CloudModule=rt;exports.CloudTransport=Se;exports.CommandRegistry=Be;exports.CommunityModule=Re;exports.ContactModule=Ne;exports.ConvexAuthStore=ni;exports.ConvexMessageStore=ci;exports.DEFAULT_GRAPH_VERSION=_t;exports.DocumentProcessor=pt;exports.EditBuilder=ke;exports.FFMPEG_CONSTANTS=P;exports.FFmpegProcessor=X;exports.FileAuthStore=Mt;exports.FileManager=V;exports.GroupModule=Ie;exports.ImageProcessor=F;exports.Media=ne;exports.MemoryAuthStore=Hs;exports.MemoryMessageStore=Pt;exports.MessageBuilder=z;exports.MimeValidator=_;exports.NewsletterModule=xe;exports.PostgresAuthStore=ei;exports.PostgresMessageStore=ii;exports.PresenceModule=je;exports.PrivacyModule=Oe;exports.ProfileModule=_e;exports.RateLimiter=se;exports.RedisAuthStore=ti;exports.RedisMessageStore=ai;exports.SELF_ONLY_PROTOCOL_TYPES=om;exports.Scheduler=qe;exports.SqliteAuthStore=Xs;exports.SqliteMessageStore=ri;exports.StickerProcessor=ut;exports.TaskQueue=Ue;exports.TypedEventEmitter=Rt;exports.VideoProcessor=q;exports.ZaileysAutomationError=O;exports.ZaileysBuilderError=g;exports.ZaileysCloudError=A;exports.ZaileysCommandError=R;exports.ZaileysDomainError=T;exports.ZaileysProviderError=tt;exports.ZaileysStoreError=f;exports.adoptLogger=Mn;exports.attachCommandDispatcher=fn;exports.buildMessageContext=An;exports.chunk=Mc;exports.computeStaticId=ls;exports.computeUniqueId=ds;exports.createAuthGuard=Nr;exports.createConnectionStateMachine=Fr;exports.createLogger=No;exports.createOperationGuard=wn;exports.createPairingFlow=Dr;exports.createReconnectStrategy=Wr;exports.createWebhookHandler=In;exports.definePlugin=Ar;exports.deleteMessage=dn;exports.detectFileType=L;exports.detectMimeFromBuffer=me;exports.dropSpoofedSelfOnly=jr;exports.epochSecondsToMs=us;exports.extractLinks=as;exports.ffmpegTransform=j;exports.forwardMessage=un;exports.generateId=ct;exports.genericPrune=Er;exports.initializeFFmpeg=Xt;exports.isFatalDisconnect=Ge;exports.isJid=Te;exports.isLidJid=Ct;exports.isPnJid=Yr;exports.isRateLimited=St;exports.jidToPhone=Qf;exports.loadMedia=x;exports.makeCacheableAuthStore=xr;exports.mapDisconnectReason=_r;exports.normalizeJid=we;exports.normalizePhoneNumber=ko;exports.parseCommand=mn;exports.phoneToJid=Xf;exports.pinMessage=yt;exports.printQrToTerminal=Br;exports.reactToMessage=ln;exports.renderQrInTerminal=Oo;exports.resolveUsername=pn;exports.runBroadcast=vn;exports.runMiddleware=gn;exports.senderDeviceOf=ps;exports.shouldClearAuth=Lr;exports.shouldReconnect=Vp;exports.signalKeyStoreFromAuthStore=Rr;exports.validateCloudOptions=En;exports.validateE164=To;
42
+ ON CONFLICT(jid) DO UPDATE SET data = excluded.data`),getPresence:t.prepare("SELECT data FROM presence WHERE jid = ?"),clearMessages:t.prepare("DELETE FROM messages"),clearChats:t.prepare("DELETE FROM chats"),clearContacts:t.prepare("DELETE FROM contacts"),clearPresence:t.prepare("DELETE FROM presence"),deleteMessage:t.prepare("DELETE FROM messages WHERE remote_jid = ? AND id = ? AND from_me = ?"),pruneByAge:t.prepare("DELETE FROM messages WHERE timestamp < ?"),pruneByAgeChat:t.prepare("DELETE FROM messages WHERE timestamp < ? AND remote_jid = ?")};}};var $t,fc=async()=>($t||($t=import('pg').then(n=>n).catch(n=>{throw $t=void 0,new f("STORE_NOT_AVAILABLE","pg is not installed. Run: pnpm add pg",{cause:n})})),$t),hc=["CREATE TABLE IF NOT EXISTS zaileys_messages (remote_jid text NOT NULL, id text NOT NULL, from_me boolean NOT NULL, timestamp bigint NOT NULL, data jsonb NOT NULL, PRIMARY KEY(remote_jid, id, from_me))","CREATE INDEX IF NOT EXISTS zaileys_messages_jid_ts_idx ON zaileys_messages(remote_jid, timestamp DESC)","CREATE TABLE IF NOT EXISTS zaileys_chats (jid text PRIMARY KEY, archived boolean NOT NULL DEFAULT false, data jsonb NOT NULL)","CREATE INDEX IF NOT EXISTS zaileys_chats_archived_idx ON zaileys_chats(archived) WHERE archived = true","CREATE TABLE IF NOT EXISTS zaileys_contacts (jid text PRIMARY KEY, data jsonb NOT NULL)","CREATE TABLE IF NOT EXISTS zaileys_presence (jid text PRIMARY KEY, data jsonb NOT NULL, updated_at timestamptz NOT NULL DEFAULT now())"],ue=n=>{if(n==null)return n;let e=typeof n=="string"?n:JSON.stringify(n);return JSON.parse(e,Ya.BufferJSON.reviver)},ii=class{externalPool;connectionString;poolMax;ownedPool;resolvedPool;readyPromise;boundSocket;listeners=new Map;closed=false;constructor(e){let t=e.pool!==void 0,r=e.connectionString!==void 0;if(t&&r)throw new f("STORE_CONNECTION_FAILED","PostgresMessageStore: provide either pool or connectionString, not both");if(!t&&!r)throw new f("STORE_CONNECTION_FAILED","PostgresMessageStore: pool or connectionString is required");this.externalPool=e.pool,this.connectionString=e.connectionString,this.poolMax=e.max;}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","PostgresMessageStore is closed")}async ensureReady(){if(this.assertOpen(),this.resolvedPool)return this.resolvedPool;this.readyPromise||(this.readyPromise=(async()=>{let e;if(this.externalPool)e=this.externalPool;else {let t=await fc(),r=t.Pool??t.default?.Pool;if(!r)throw new f("STORE_NOT_AVAILABLE","pg.Pool constructor not found");e=new r({connectionString:this.connectionString,max:this.poolMax}),this.ownedPool=e;}try{for(let t of hc)await e.query(t);}catch(t){throw new f("STORE_CONNECTION_FAILED","failed to migrate message schema",{cause:t})}return this.resolvedPool=e,e})());try{return await this.readyPromise}catch(e){throw this.readyPromise=void 0,e}}async saveMessage(e){let t=await this.ensureReady(),r=e.key.remoteJid??"",s=e.key.id??"",i=e.key.fromMe===true,o=Number(e.messageTimestamp??0);try{await t.query("INSERT INTO zaileys_messages(remote_jid, id, from_me, timestamp, data) VALUES ($1, $2, $3, $4, $5::jsonb) ON CONFLICT (remote_jid, id, from_me) DO UPDATE SET data = EXCLUDED.data, timestamp = EXCLUDED.timestamp",[r,s,i,o,JSON.stringify(e,Ya.BufferJSON.replacer)]);}catch(a){throw new f("STORE_WRITE_FAILED","failed to save message",{cause:a})}}async getMessage(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_messages WHERE remote_jid = $1 AND id = $2 AND from_me = $3",[e.remoteJid??"",e.id??"",e.fromMe===!0])).rows[0];return s?ue(s.data):void 0}catch(r){throw r instanceof f?r:new f("STORE_READ_FAILED","failed to read message",{cause:r})}}async listMessages(e,t){let r=await this.ensureReady(),s=t?.limit??100,i=typeof t?.before=="number"?t.before:null;try{return (await r.query("SELECT data FROM zaileys_messages WHERE remote_jid = $1 AND ($2::bigint IS NULL OR timestamp < $2::bigint) ORDER BY timestamp DESC LIMIT $3",[e,i,s])).rows.map(a=>ue(a.data))}catch(o){throw new f("STORE_READ_FAILED","failed to list messages",{cause:o})}}async saveChat(e){let t=await this.ensureReady(),r=e.id;if(!r)return;let s=e.archived===true;try{await t.query("INSERT INTO zaileys_chats(jid, archived, data) VALUES ($1, $2, $3::jsonb) ON CONFLICT (jid) DO UPDATE SET archived = EXCLUDED.archived, data = EXCLUDED.data",[r,s,JSON.stringify(e,Ya.BufferJSON.replacer)]);}catch(i){throw new f("STORE_WRITE_FAILED","failed to save chat",{cause:i})}}async getChat(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_chats WHERE jid = $1",[e])).rows[0];return s?ue(s.data):void 0}catch(r){throw new f("STORE_READ_FAILED","failed to read chat",{cause:r})}}async listChats(e){let t=await this.ensureReady(),r=typeof e?.archived=="boolean"?e.archived:null;try{return (await t.query("SELECT data FROM zaileys_chats WHERE ($1::boolean IS NULL OR archived = $1::boolean)",[r])).rows.map(i=>ue(i.data))}catch(s){throw new f("STORE_READ_FAILED","failed to list chats",{cause:s})}}async saveContact(e){let t=await this.ensureReady();try{await t.query("INSERT INTO zaileys_contacts(jid, data) VALUES ($1, $2::jsonb) ON CONFLICT (jid) DO UPDATE SET data = EXCLUDED.data",[e.id,JSON.stringify(e,Ya.BufferJSON.replacer)]);}catch(r){throw new f("STORE_WRITE_FAILED","failed to save contact",{cause:r})}}async getContact(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_contacts WHERE jid = $1",[e])).rows[0];return s?ue(s.data):void 0}catch(r){throw new f("STORE_READ_FAILED","failed to read contact",{cause:r})}}async listContacts(){let e=await this.ensureReady();try{return (await e.query("SELECT data FROM zaileys_contacts")).rows.map(r=>ue(r.data))}catch(t){throw new f("STORE_READ_FAILED","failed to list contacts",{cause:t})}}async savePresence(e,t){let r=await this.ensureReady();try{await r.query("INSERT INTO zaileys_presence(jid, data, updated_at) VALUES ($1, $2::jsonb, now()) ON CONFLICT (jid) DO UPDATE SET data = EXCLUDED.data, updated_at = now()",[e,JSON.stringify(t,Ya.BufferJSON.replacer)]);}catch(s){throw new f("STORE_WRITE_FAILED","failed to save presence",{cause:s})}}async getPresence(e){let t=await this.ensureReady();try{let s=(await t.query("SELECT data FROM zaileys_presence WHERE jid = $1",[e])).rows[0];return s?ue(s.data):void 0}catch(r){throw new f("STORE_READ_FAILED","failed to read presence",{cause:r})}}async deleteMessage(e){let t=await this.ensureReady();try{await t.query("DELETE FROM zaileys_messages WHERE remote_jid = $1 AND id = $2 AND from_me = $3",[e.remoteJid??"",e.id??"",e.fromMe===!0]);}catch(r){throw new f("STORE_WRITE_FAILED","failed to delete message",{cause:r})}}async pruneMessages(e){let t=await this.ensureReady();try{let r=0,s;if(e.chatFilter&&(s=(await t.query("SELECT DISTINCT remote_jid FROM zaileys_messages",[])).rows.map(o=>o.remote_jid).filter(o=>e.chatFilter(o))),e.olderThan!==void 0){let i=s?await t.query("DELETE FROM zaileys_messages WHERE timestamp < $1 AND remote_jid = ANY($2::text[])",[e.olderThan,s]):await t.query("DELETE FROM zaileys_messages WHERE timestamp < $1",[e.olderThan]);r+=i.rowCount??0;}if(e.maxPerChat!==void 0){let i=s??await t.query("SELECT DISTINCT remote_jid FROM zaileys_messages",[]).then(o=>o.rows.map(a=>a.remote_jid));for(let o of i){let c=(await t.query("SELECT id, from_me FROM zaileys_messages WHERE remote_jid = $1 ORDER BY timestamp DESC",[o])).rows.slice(e.maxPerChat);if(c.length!==0)for(let d of c){let l=await t.query("DELETE FROM zaileys_messages WHERE remote_jid = $1 AND id = $2 AND from_me = $3",[o,d.id,d.from_me]);r+=l.rowCount??0;}}}return r}catch(r){throw new f("STORE_WRITE_FAILED","failed to prune messages",{cause:r})}}bind(e){this.assertOpen(),this.boundSocket=e;let t=(...c)=>{let l=c[0]?.messages;if(Array.isArray(l))for(let u of l)this.saveMessage(u).catch(()=>{});},r=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.getMessage(l.key).then(u=>{if(!u)return;let w={...u,...l.update};return this.saveMessage(w)}).catch(()=>{});},s=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveChat(l).catch(()=>{});},i=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.getChat(l.id).then(u=>{let w={...u??{},...l};return this.saveChat(w)}).catch(()=>{});},o=(...c)=>{let d=c[0];if(Array.isArray(d))for(let l of d)this.saveContact(l).catch(()=>{});},a=(...c)=>{let d=c[0];if(d?.presences)for(let l of Object.keys(d.presences)){let u=d.presences[l];u&&this.savePresence(l,u).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("messages.update",r),this.listeners.set("chats.upsert",s),this.listeners.set("chats.update",i),this.listeners.set("contacts.upsert",o),this.listeners.set("presence.update",a);for(let[c,d]of this.listeners)e.ev.on(c,d);}async clear(){let e=await this.ensureReady(),t;try{t=await e.connect(),await t.query("BEGIN"),await t.query("DELETE FROM zaileys_messages"),await t.query("DELETE FROM zaileys_chats"),await t.query("DELETE FROM zaileys_contacts"),await t.query("DELETE FROM zaileys_presence"),await t.query("COMMIT");}catch(r){if(t)try{await t.query("ROLLBACK");}catch{}throw new f("STORE_WRITE_FAILED","failed to clear message tables",{cause:r})}finally{t?.release();}}async close(){if(this.closed)return;if(this.closed=true,this.boundSocket?.ev.off)for(let[t,r]of this.listeners)this.boundSocket.ev.off(t,r);this.listeners.clear(),this.boundSocket=void 0;let e=this.ownedPool;if(this.ownedPool=void 0,this.resolvedPool=void 0,this.readyPromise=void 0,e)try{await e.end();}catch{}}};var yc="zaileys",wc=300,oi=1e3,xn=n=>`${n.id??""}|${n.fromMe?1:0}`,vc=n=>{if(typeof n!="object"||n===null)return false;let e=n.code;return e==="ERR_MODULE_NOT_FOUND"||e==="MODULE_NOT_FOUND"},ai=class{namespace;externalClient;url;ownedClient;ready;closed=false;boundSocket;listeners=new Map;constructor(e){if(e.client&&e.url)throw new f("STORE_CONNECTION_FAILED","pass either client OR url, not both");if(!e.client&&!e.url)throw new f("STORE_CONNECTION_FAILED","RedisMessageStore requires either client or url");this.namespace=e.namespace??yc,this.externalClient=e.client,this.url=e.url;}async saveMessage(e){this.assertOpen();let t=await this.ensureReady(),r=e.key.remoteJid??"",s=xn(e.key),i=Number(e.messageTimestamp??0),o=JSON.stringify(e,Ya.BufferJSON.replacer),a=t.multi();a.zAdd(this.msgIndexKey(r),{score:i,value:s}),a.hSet(this.msgDataKey(r),s,o),await this.runWrite(()=>a.exec());}async getMessage(e){this.assertOpen();let t=await this.ensureReady(),r=e.remoteJid??"",s=await this.runRead(()=>t.hGet(this.msgDataKey(r),xn(e)));if(s!=null)return JSON.parse(s,Ya.BufferJSON.reviver)}async listMessages(e,t){this.assertOpen();let r=await this.ensureReady(),s=t?.limit??100,i=typeof t?.before=="number"?`(${t.before}`:"+inf",o=await this.runRead(()=>r.zRangeByScore(this.msgIndexKey(e),"-inf",i,{LIMIT:{offset:0,count:s+1024}}));if(o.length===0)return [];let c=[...o].reverse().slice(0,s),d=await this.runRead(()=>r.hmGet(this.msgDataKey(e),c)),l=[];for(let u of d)u!=null&&l.push(JSON.parse(u,Ya.BufferJSON.reviver));return l}async saveChat(e){this.assertOpen();let t=e.id;if(!t)return;let s=(await this.ensureReady()).multi();s.hSet(this.chatsKey(),t,JSON.stringify(e,Ya.BufferJSON.replacer)),e.archived===true?s.sAdd(this.chatsArchiveKey(),t):s.sRem(this.chatsArchiveKey(),t),await this.runWrite(()=>s.exec());}async getChat(e){this.assertOpen();let t=await this.ensureReady(),r=await this.runRead(()=>t.hGet(this.chatsKey(),e));if(r!=null)return JSON.parse(r,Ya.BufferJSON.reviver)}async listChats(e){this.assertOpen();let t=await this.ensureReady();if(e?.archived===true){let i=await this.runRead(()=>t.sMembers(this.chatsArchiveKey()));if(i.length===0)return [];let o=await this.runRead(()=>t.hmGet(this.chatsKey(),i)),a=[];for(let c of o)c!=null&&a.push(JSON.parse(c,Ya.BufferJSON.reviver));return a}let r=await this.runRead(()=>t.hGetAll(this.chatsKey())),s=[];for(let i of Object.keys(r)){let o=r[i];if(o==null)continue;let a=JSON.parse(o,Ya.BufferJSON.reviver);e?.archived===false&&await this.runRead(()=>t.sIsMember(this.chatsArchiveKey(),i))||s.push(a);}return s}async saveContact(e){this.assertOpen();let t=await this.ensureReady();await this.runWrite(()=>t.hSet(this.contactsKey(),e.id,JSON.stringify(e,Ya.BufferJSON.replacer)));}async getContact(e){this.assertOpen();let t=await this.ensureReady(),r=await this.runRead(()=>t.hGet(this.contactsKey(),e));if(r!=null)return JSON.parse(r,Ya.BufferJSON.reviver)}async listContacts(){this.assertOpen();let e=await this.ensureReady(),t=await this.runRead(()=>e.hGetAll(this.contactsKey())),r=[];for(let s of Object.keys(t)){let i=t[s];i!=null&&r.push(JSON.parse(i,Ya.BufferJSON.reviver));}return r}async savePresence(e,t){this.assertOpen();let r=await this.ensureReady();await this.runWrite(()=>r.set(this.presenceKey(e),JSON.stringify(t,Ya.BufferJSON.replacer),{EX:wc}));}async getPresence(e){this.assertOpen();let t=await this.ensureReady(),r=await this.runRead(()=>t.get(this.presenceKey(e)));if(r!=null)return JSON.parse(r,Ya.BufferJSON.reviver)}bind(e){if(this.assertOpen(),this.boundSocket&&this.boundSocket.ev.off)for(let[o,a]of this.listeners)this.boundSocket.ev.off(o,a);this.listeners.clear(),this.boundSocket=e;let t=(...o)=>{let c=o[0]?.messages;if(Array.isArray(c))for(let d of c)this.saveMessage(d).catch(()=>{});},r=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveChat(c).catch(()=>{});},s=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveContact(c).catch(()=>{});},i=(...o)=>{let a=o[0];if(a?.presences)for(let c of Object.keys(a.presences)){let d=a.presences[c];d&&this.savePresence(c,d).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("chats.upsert",r),this.listeners.set("contacts.upsert",s),this.listeners.set("presence.update",i);for(let[o,a]of this.listeners)e.ev.on(o,a);}async clear(){this.assertOpen();let e=await this.ensureReady(),t=`${this.namespace}:*`,r=0;do{let s=await this.runRead(()=>e.scan(r,{MATCH:t,COUNT:oi}));r=Number(s.cursor),s.keys.length>0&&await this.runWrite(()=>e.del(s.keys));}while(r!==0)}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);if(this.listeners.clear(),this.boundSocket=void 0,this.ownedClient){try{await this.ownedClient.quit();}catch{}this.ownedClient=void 0;}this.ready=void 0;}}async deleteMessage(e){this.assertOpen();let t=await this.ensureReady(),r=e.remoteJid??"",s=xn(e),i=t.multi();i.zRem(this.msgIndexKey(r),s),i.hDel(this.msgDataKey(r),s),await this.runWrite(()=>i.exec());}async pruneMessages(e){this.assertOpen();let t=await this.ensureReady(),r=0,s=[],i=this.msgIndexKey("*"),o=0,a=this.msgDataKey("");do{let c=await this.runRead(()=>t.scan(o,{MATCH:i,COUNT:oi}));o=Number(c.cursor);for(let d of c.keys)d.startsWith(a)||s.push(d);}while(o!==0);for(let c of s){let d=this.jidFromIndexKey(c);if(e.chatFilter&&!e.chatFilter(d))continue;let l=this.msgDataKey(d),u=new Set;if(e.olderThan!==void 0){let v=await this.runRead(()=>t.zRangeByScore(c,"-inf",`(${e.olderThan}`));for(let P of v)u.add(P);}if(e.maxPerChat!==void 0){let v=e.maxPerChat,P=await this.runRead(()=>t.zRange(c,0,-(v+1)));for(let y of P)u.add(y);}if(u.size===0)continue;let w=[...u],M=t.multi();M.zRem(c,w),M.hDel(l,w),await this.runWrite(()=>M.exec()),r+=w.length;}return r}jidFromIndexKey(e){let t=this.msgIndexKey("");return e.startsWith(t)?e.slice(t.length):e}msgIndexKey(e){return `${this.namespace}:msg:${e}`}msgDataKey(e){return `${this.namespace}:msg-data:${e}`}chatsKey(){return `${this.namespace}:chats`}chatsArchiveKey(){return `${this.namespace}:chats-archived`}contactsKey(){return `${this.namespace}:contacts`}presenceKey(e){return `${this.namespace}:presence:${e}`}async ensureReady(){return this.ready||(this.ready=this.connect()),this.ready}async connect(){if(this.externalClient){if(!this.externalClient.isOpen)throw new f("STORE_CONNECTION_FAILED","provided redis client is not open (call await client.connect() first)");return this.externalClient}let e;try{e=await import('redis');}catch(r){throw vc(r)?new f("STORE_NOT_AVAILABLE","redis peer dependency missing. Run: pnpm add redis",{cause:r}):new f("STORE_CONNECTION_FAILED","failed to load redis module",{cause:r})}let t=e.createClient({url:this.url});try{await t.connect();}catch(r){throw new f("STORE_CONNECTION_FAILED",`failed to connect to redis at ${this.url}`,{cause:r})}return this.ownedClient=t,t}async runRead(e){try{return await e()}catch(t){throw new f("STORE_READ_FAILED","redis read failed",{cause:t})}}async runWrite(e){try{return await e()}catch(t){throw new f("STORE_WRITE_FAILED","redis write failed",{cause:t})}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","RedisMessageStore is closed")}};var Ht="msg:",Jt="chat:",Gt="contact:",Rn="presence:",_n="job:",Mc=n=>`${n.id??""}|${n.fromMe?1:0}`,Vt=n=>`${Ht}${n.remoteJid??""}:${Mc(n)}`,at=n=>JSON.stringify(n,Ya.BufferJSON.replacer),X=n=>JSON.parse(n,Ya.BufferJSON.reviver),ci=class{kv;closed=false;boundSocket;listeners=new Map;constructor(e){this.kv=new be(e);}async saveMessage(e){this.assertOpen(),await this.kv.set([{key:Vt(e.key),value:at(e),sortKey:Number(e.messageTimestamp??0)}]);}async getMessage(e){this.assertOpen();let r=(await this.kv.get([Vt(e)])).get(Vt(e));return r===void 0?void 0:X(r)}async listMessages(e,t){this.assertOpen();let r={};return typeof t?.before=="number"&&(r.before=t.before),typeof t?.limit=="number"&&(r.limit=t.limit),(await this.kv.list(`${Ht}${e}:`,r)).map(i=>X(i.value))}async saveChat(e){this.assertOpen();let t=e.id;t&&await this.kv.set([{key:`${Jt}${t}`,value:at(e)}]);}async getChat(e){this.assertOpen();let r=(await this.kv.get([`${Jt}${e}`])).get(`${Jt}${e}`);return r===void 0?void 0:X(r)}async listChats(e){this.assertOpen();let t=await this.kv.list(Jt),r=[];for(let s of t){let i=X(s.value),o=i.archived===true;e?.archived===true&&!o||e?.archived===false&&o||r.push(i);}return r}async saveContact(e){this.assertOpen(),await this.kv.set([{key:`${Gt}${e.id}`,value:at(e)}]);}async getContact(e){this.assertOpen();let r=(await this.kv.get([`${Gt}${e}`])).get(`${Gt}${e}`);return r===void 0?void 0:X(r)}async listContacts(){return this.assertOpen(),(await this.kv.list(Gt)).map(t=>X(t.value))}async savePresence(e,t){this.assertOpen(),await this.kv.set([{key:`${Rn}${e}`,value:at(t)}]);}async getPresence(e){this.assertOpen();let r=(await this.kv.get([`${Rn}${e}`])).get(`${Rn}${e}`);return r===void 0?void 0:X(r)}async saveScheduledJob(e){this.assertOpen(),await this.kv.set([{key:`${_n}${e.id}`,value:at(e),sortKey:e.fireAt}]);}async listScheduledJobs(){return this.assertOpen(),(await this.kv.list(_n)).map(t=>X(t.value))}async deleteScheduledJob(e){this.assertOpen(),await this.kv.del([`${_n}${e}`]);}async deleteMessage(e){this.assertOpen(),await this.kv.del([Vt(e)]);}async pruneMessages(e){this.assertOpen();let t=await this.kv.list(Ht,{}),r=new Map;for(let i of t){let o=i.key.slice(Ht.length),a=o.slice(0,o.indexOf(":"));if(e.chatFilter&&!e.chatFilter(a))continue;let c=r.get(a)??[];c.push({key:i.key,ts:i.sortKey??0}),r.set(a,c);}let s=[];for(let i of r.values()){i.sort((o,a)=>a.ts-o.ts);for(let o=0;o<i.length;o++){let a=i[o];(e.olderThan!==void 0&&a.ts<e.olderThan||e.maxPerChat!==void 0&&o>=e.maxPerChat)&&s.push(a.key);}}return s.length>0&&await this.kv.del(s),s.length}bind(e){if(this.assertOpen(),this.boundSocket?.ev.off)for(let[o,a]of this.listeners)this.boundSocket.ev.off(o,a);this.listeners.clear(),this.boundSocket=e;let t=(...o)=>{let a=o[0]?.messages;if(Array.isArray(a))for(let c of a)this.saveMessage(c).catch(()=>{});},r=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveChat(c).catch(()=>{});},s=(...o)=>{let a=o[0];if(Array.isArray(a))for(let c of a)this.saveContact(c).catch(()=>{});},i=(...o)=>{let a=o[0];if(a?.presences)for(let c of Object.keys(a.presences)){let d=a.presences[c];d&&this.savePresence(c,d).catch(()=>{});}};this.listeners.set("messages.upsert",t),this.listeners.set("chats.upsert",r),this.listeners.set("contacts.upsert",s),this.listeners.set("presence.update",i);for(let[o,a]of this.listeners)e.ev.on(o,a);}async clear(){this.assertOpen(),await this.kv.clear();}async close(){if(!this.closed){if(this.closed=true,this.boundSocket?.ev.off)for(let[e,t]of this.listeners)this.boundSocket.ev.off(e,t);this.listeners.clear(),this.boundSocket=void 0,this.kv.close();}}assertOpen(){if(this.closed)throw new f("STORE_CLOSED","ConvexMessageStore is closed")}};var Sc=(n,e)=>{if(e<=0)throw new RangeError("chunk size must be positive");let t=[];for(let r=0;r<n.length;r+=e)t.push(n.slice(r,r+e));return t};var Xf=n=>{let t=(n.split("@")[0]??"").split(":")[0]?.replace(/\D/g,"")??"";return n.endsWith("@s.whatsapp.net")||n.endsWith("@c.us")?t:""},eh=n=>`${n.replace(/\D/g,"")}@s.whatsapp.net`;Object.defineProperty(exports,"areJidsSameUser",{enumerable:true,get:function(){return Ya.areJidsSameUser}});Object.defineProperty(exports,"getDevice",{enumerable:true,get:function(){return Ya.getDevice}});Object.defineProperty(exports,"isJidBroadcast",{enumerable:true,get:function(){return Ya.isJidBroadcast}});Object.defineProperty(exports,"isJidGroup",{enumerable:true,get:function(){return Ya.isJidGroup}});Object.defineProperty(exports,"isJidNewsletter",{enumerable:true,get:function(){return Ya.isJidNewsletter}});Object.defineProperty(exports,"isLidUser",{enumerable:true,get:function(){return Ya.isLidUser}});Object.defineProperty(exports,"isPnUser",{enumerable:true,get:function(){return Ya.isPnUser}});Object.defineProperty(exports,"jidDecode",{enumerable:true,get:function(){return Ya.jidDecode}});Object.defineProperty(exports,"jidEncode",{enumerable:true,get:function(){return Ya.jidEncode}});Object.defineProperty(exports,"jidNormalizedUser",{enumerable:true,get:function(){return Ya.jidNormalizedUser}});exports.AudioProcessor=ne;exports.AutoDeleteSweeper=Ke;exports.BufferConverter=k;exports.BusinessModule=De;exports.ChatModule=Le;exports.Client=Vs;exports.CloudModule=rt;exports.CloudTransport=Se;exports.CommandRegistry=Be;exports.CommunityModule=Re;exports.ContactModule=Ne;exports.ConvexAuthStore=ni;exports.ConvexMessageStore=ci;exports.DEFAULT_GRAPH_VERSION=_t;exports.DocumentProcessor=pt;exports.EditBuilder=ke;exports.FFMPEG_CONSTANTS=C;exports.FFmpegProcessor=ee;exports.FileAuthStore=Mt;exports.FileManager=V;exports.GroupModule=Ie;exports.ImageProcessor=F;exports.Media=re;exports.MemoryAuthStore=Hs;exports.MemoryMessageStore=Ct;exports.MessageBuilder=z;exports.MimeValidator=_;exports.NewsletterModule=xe;exports.PostgresAuthStore=ei;exports.PostgresMessageStore=ii;exports.PresenceModule=je;exports.PrivacyModule=Oe;exports.ProfileModule=_e;exports.RateLimiter=ie;exports.RedisAuthStore=ti;exports.RedisMessageStore=ai;exports.SELF_ONLY_PROTOCOL_TYPES=am;exports.Scheduler=qe;exports.SqliteAuthStore=Xs;exports.SqliteMessageStore=ri;exports.StickerProcessor=ut;exports.TaskQueue=Ue;exports.TypedEventEmitter=Rt;exports.VideoProcessor=q;exports.ZaileysAutomationError=O;exports.ZaileysBuilderError=g;exports.ZaileysCloudError=A;exports.ZaileysCommandError=R;exports.ZaileysDomainError=T;exports.ZaileysProviderError=tt;exports.ZaileysStoreError=f;exports.adoptLogger=Mn;exports.attachCommandDispatcher=fn;exports.buildMessageContext=An;exports.chunk=Sc;exports.computeStaticId=ls;exports.computeUniqueId=ds;exports.createAuthGuard=Nr;exports.createConnectionStateMachine=Fr;exports.createLogger=No;exports.createOperationGuard=wn;exports.createPairingFlow=Dr;exports.createReconnectStrategy=Wr;exports.createWebhookHandler=In;exports.definePlugin=Ar;exports.deleteMessage=dn;exports.detectFileType=L;exports.detectMimeFromBuffer=me;exports.dropSpoofedSelfOnly=jr;exports.epochSecondsToMs=us;exports.extractLinks=as;exports.ffmpegTransform=j;exports.forwardMessage=un;exports.generateId=ct;exports.genericPrune=Er;exports.initializeFFmpeg=Xt;exports.isFatalDisconnect=Ge;exports.isJid=Te;exports.isLidJid=Pt;exports.isPnJid=Yr;exports.isRateLimited=St;exports.jidToPhone=Xf;exports.loadMedia=x;exports.makeCacheableAuthStore=xr;exports.mapDisconnectReason=_r;exports.normalizeJid=we;exports.normalizePhoneNumber=ko;exports.parseCommand=mn;exports.phoneToJid=eh;exports.pinMessage=yt;exports.printQrToTerminal=Br;exports.reactToMessage=ln;exports.renderQrInTerminal=Oo;exports.resolveUsername=pn;exports.runBroadcast=vn;exports.runMiddleware=gn;exports.senderDeviceOf=ps;exports.shouldClearAuth=Lr;exports.shouldReconnect=Hp;exports.signalKeyStoreFromAuthStore=Rr;exports.validateCloudOptions=En;exports.validateE164=To;