Page Not Found
We could not find what you were looking for.
Please contact the owner of the site that linked you to the original URL and let them know their link is broken.
diff --git a/404.html b/404.html index d9f08acdda..634c9c4973 100644 --- a/404.html +++ b/404.html @@ -2,22 +2,24 @@
- +We could not find what you were looking for.
Please contact the owner of the site that linked you to the original URL and let them know their link is broken.
We could not find what you were looking for.
Please contact the owner of the site that linked you to the original URL and let them know their link is broken.
This is a React page
\nThis is a React page
\ncreate
",id:"error-handling-on-create",level:2},{value:"Manage page errors",id:"manage-page-errors",level:2},{value:"Kill the session",id:"kill-the-session",level:2}];function h(e){const n={a:"a",code:"code",h1:"h1",h2:"h2",p:"p",pre:"pre",...(0,t.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(n.h1,{id:"error-handling",children:"Error Handling"}),"\n",(0,s.jsx)(n.h2,{id:"keep-your-promises",children:"Keep your promises!"}),"\n",(0,s.jsxs)(n.p,{children:["Treat all ",(0,s.jsx)(n.code,{children:"client"})," methods as promises. Therefore make sure to await them and wrap them in ",(0,s.jsx)(n.code,{children:"try/catch"})," blocks"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-javascript",children:" client.onMessage(async message => {\n try{\n //respond with 'Hi!'\n await client.sendText(message.from, 'Hi!');\n } catch(error){\n console.log(error);\n }\n })\n\n"})}),"\n",(0,s.jsxs)(n.h2,{id:"error-handling-on-create",children:["Error handling on ",(0,s.jsx)(n.code,{children:"create"})]}),"\n",(0,s.jsx)(n.p,{children:"The [[create]] method itself is a promise so you can handle errors using a try catch block here also from which you can choose to try again or exit the process."}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-javascript",children:"async function start(client){\n ...\n}\n\nasync function launch(){\n try{\n const client = await create();\n await start(client);\n } catch(error){\n console.log(errror)\n }\n}\n\nlaunch();\n\n"})}),"\n",(0,s.jsx)(n.p,{children:'Alternatively, you can set the client "start" function (the function that consumes the client after it has been created) as a config variable [[restartOnCrash]], allowing the process itself to restart/retry if there are any issues. Be careful with this as it may lead to an endless loop.'}),"\n",(0,s.jsx)(n.p,{children:"You can also use [[logConsole]] (logs all browser console output) or just [[logConsoleErrors]] (only logs browser errors) to better debug issues."}),"\n",(0,s.jsx)(n.p,{children:"Setting [[killProcessOnBrowserClose]] to true will kill the whole node process upon any critical browser issue (maybe the browser runs out of memory and crashes, this option will kill the process)."}),"\n",(0,s.jsxs)(n.p,{children:["This is useful if you have a n orchestrator process that restarts processes. (e.g ",(0,s.jsx)(n.a,{href:"https://pm2.keymetrics.io/",children:"pm2"})," or a ",(0,s.jsx)(n.a,{href:"https://docs.docker.com/config/containers/start-containers-automatically/#:~:text=Restart%20policy%20details,-Keep%20the%20following&text=A%20restart%20policy%20only%20takes,going%20into%20a%20restart%20loop.",children:"docker restart policy"}),")"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-javascript",children:"async function start(client){\n ...\n}\n\nasync function launch(){\n try{\n const client = await create({\n //sets restartOnCrash to the above `start` function\n restartOnCrash: start,\n\n //log all browser console output\n logConsole: true,\n\n //or just browser errors\n logConsoleErrors: true,\n\n //kill the process if the browser crashes/is closed manually\n killProcessOnBrowserClose: true\n });\n await start(client);\n } catch(error){\n console.log(error)\n }\n}\n\nlaunch();\n"})}),"\n",(0,s.jsx)(n.h2,{id:"manage-page-errors",children:"Manage page errors"}),"\n",(0,s.jsxs)(n.p,{children:["Since this project is built upon puppeteer, you can access the ",(0,s.jsx)(n.a,{href:"https://pptr.dev/#?product=Puppeteer&version=v2.0.0&show=api-class-page",children:"Puppeteer Page"})," instance by referencing ",(0,s.jsx)(n.code,{children:"client.getPage()"}),", and then therefore you can listen to any errors on the page like so:"]}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-javascript",children:"client.getPage().on('error', _=>{\n...\n}\n"})}),"\n",(0,s.jsx)(n.h2,{id:"kill-the-session",children:"Kill the session"}),"\n",(0,s.jsx)(n.p,{children:"As of v1.6.6^ you can now kill the session when required. Best practice is to manage trycatch-es yourself and kill the client on catch."}),"\n",(0,s.jsx)(n.pre,{children:(0,s.jsx)(n.code,{className:"language-javascript",children:"try{\n...\nawait client.sendMessage(...\n...\n} catch(error){\nclient.kill();\n//maybe restart the session then\n}\n"})})]})}function d(e={}){const{wrapper:n}={...(0,t.R)(),...e.components};return n?(0,s.jsx)(n,{...e,children:(0,s.jsx)(h,{...e})}):h(e)}},8453:(e,n,r)=>{r.d(n,{R:()=>a,x:()=>c});var s=r(6540);const t={},o=s.createContext(t);function a(e){const n=s.useContext(o);return s.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function c(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:a(e.components),s.createElement(o.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6844db42.fd2f680d.js b/assets/js/6844db42.fd2f680d.js
new file mode 100644
index 0000000000..bc25e3518e
--- /dev/null
+++ b/assets/js/6844db42.fd2f680d.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7657],{2060:(e,r,n)=>{n.r(r),n.d(r,{assets:()=>i,contentTitle:()=>a,default:()=>d,frontMatter:()=>o,metadata:()=>c,toc:()=>l});var s=n(4848),t=n(8453);const o={},a="Error Handling",c={id:"how-to/handle-errors",title:"Error Handling",description:"Keep your promises!",source:"@site/docs/how-to/handle-errors.md",sourceDirName:"how-to",slug:"/how-to/handle-errors",permalink:"/docs/how-to/handle-errors",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/handle-errors.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Group",permalink:"/docs/how-to/groups"},next:{title:"Handle Incoming Call",permalink:"/docs/how-to/incoming-calls"}},i={},l=[{value:"Keep your promises!",id:"keep-your-promises",level:2},{value:"Error handling on create
",id:"error-handling-on-create",level:2},{value:"Manage page errors",id:"manage-page-errors",level:2},{value:"Kill the session",id:"kill-the-session",level:2}];function h(e){const r={a:"a",code:"code",h1:"h1",h2:"h2",header:"header",p:"p",pre:"pre",...(0,t.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(r.header,{children:(0,s.jsx)(r.h1,{id:"error-handling",children:"Error Handling"})}),"\n",(0,s.jsx)(r.h2,{id:"keep-your-promises",children:"Keep your promises!"}),"\n",(0,s.jsxs)(r.p,{children:["Treat all ",(0,s.jsx)(r.code,{children:"client"})," methods as promises. Therefore make sure to await them and wrap them in ",(0,s.jsx)(r.code,{children:"try/catch"})," blocks"]}),"\n",(0,s.jsx)(r.pre,{children:(0,s.jsx)(r.code,{className:"language-javascript",children:" client.onMessage(async message => {\n try{\n //respond with 'Hi!'\n await client.sendText(message.from, 'Hi!');\n } catch(error){\n console.log(error);\n }\n })\n\n"})}),"\n",(0,s.jsxs)(r.h2,{id:"error-handling-on-create",children:["Error handling on ",(0,s.jsx)(r.code,{children:"create"})]}),"\n",(0,s.jsx)(r.p,{children:"The [[create]] method itself is a promise so you can handle errors using a try catch block here also from which you can choose to try again or exit the process."}),"\n",(0,s.jsx)(r.pre,{children:(0,s.jsx)(r.code,{className:"language-javascript",children:"async function start(client){\n ...\n}\n\nasync function launch(){\n try{\n const client = await create();\n await start(client);\n } catch(error){\n console.log(errror)\n }\n}\n\nlaunch();\n\n"})}),"\n",(0,s.jsx)(r.p,{children:'Alternatively, you can set the client "start" function (the function that consumes the client after it has been created) as a config variable [[restartOnCrash]], allowing the process itself to restart/retry if there are any issues. Be careful with this as it may lead to an endless loop.'}),"\n",(0,s.jsx)(r.p,{children:"You can also use [[logConsole]] (logs all browser console output) or just [[logConsoleErrors]] (only logs browser errors) to better debug issues."}),"\n",(0,s.jsx)(r.p,{children:"Setting [[killProcessOnBrowserClose]] to true will kill the whole node process upon any critical browser issue (maybe the browser runs out of memory and crashes, this option will kill the process)."}),"\n",(0,s.jsxs)(r.p,{children:["This is useful if you have a n orchestrator process that restarts processes. (e.g ",(0,s.jsx)(r.a,{href:"https://pm2.keymetrics.io/",children:"pm2"})," or a ",(0,s.jsx)(r.a,{href:"https://docs.docker.com/config/containers/start-containers-automatically/#:~:text=Restart%20policy%20details,-Keep%20the%20following&text=A%20restart%20policy%20only%20takes,going%20into%20a%20restart%20loop.",children:"docker restart policy"}),")"]}),"\n",(0,s.jsx)(r.pre,{children:(0,s.jsx)(r.code,{className:"language-javascript",children:"async function start(client){\n ...\n}\n\nasync function launch(){\n try{\n const client = await create({\n //sets restartOnCrash to the above `start` function\n restartOnCrash: start,\n\n //log all browser console output\n logConsole: true,\n\n //or just browser errors\n logConsoleErrors: true,\n\n //kill the process if the browser crashes/is closed manually\n killProcessOnBrowserClose: true\n });\n await start(client);\n } catch(error){\n console.log(error)\n }\n}\n\nlaunch();\n"})}),"\n",(0,s.jsx)(r.h2,{id:"manage-page-errors",children:"Manage page errors"}),"\n",(0,s.jsxs)(r.p,{children:["Since this project is built upon puppeteer, you can access the ",(0,s.jsx)(r.a,{href:"https://pptr.dev/#?product=Puppeteer&version=v2.0.0&show=api-class-page",children:"Puppeteer Page"})," instance by referencing ",(0,s.jsx)(r.code,{children:"client.getPage()"}),", and then therefore you can listen to any errors on the page like so:"]}),"\n",(0,s.jsx)(r.pre,{children:(0,s.jsx)(r.code,{className:"language-javascript",children:"client.getPage().on('error', _=>{\n...\n}\n"})}),"\n",(0,s.jsx)(r.h2,{id:"kill-the-session",children:"Kill the session"}),"\n",(0,s.jsx)(r.p,{children:"As of v1.6.6^ you can now kill the session when required. Best practice is to manage trycatch-es yourself and kill the client on catch."}),"\n",(0,s.jsx)(r.pre,{children:(0,s.jsx)(r.code,{className:"language-javascript",children:"try{\n...\nawait client.sendMessage(...\n...\n} catch(error){\nclient.kill();\n//maybe restart the session then\n}\n"})})]})}function d(e={}){const{wrapper:r}={...(0,t.R)(),...e.components};return r?(0,s.jsx)(r,{...e,children:(0,s.jsx)(h,{...e})}):h(e)}},8453:(e,r,n)=>{n.d(r,{R:()=>a,x:()=>c});var s=n(6540);const t={},o=s.createContext(t);function a(e){const r=s.useContext(o);return s.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function c(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:a(e.components),s.createElement(o.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6875c492.a128b6b9.js b/assets/js/6875c492.a128b6b9.js
new file mode 100644
index 0000000000..9c987803db
--- /dev/null
+++ b/assets/js/6875c492.a128b6b9.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[4813],{7713:(e,t,n)=>{n.d(t,{A:()=>r});n(6540);var a=n(1312),s=n(9022),i=n(4848);function r(e){const{metadata:t}=e,{previousPage:n,nextPage:r}=t;return(0,i.jsxs)("nav",{className:"pagination-nav","aria-label":(0,a.T)({id:"theme.blog.paginator.navAriaLabel",message:"Blog list page navigation",description:"The ARIA label for the blog pagination"}),children:[n&&(0,i.jsx)(s.A,{permalink:n,title:(0,i.jsx)(a.A,{id:"theme.blog.paginator.newerEntries",description:"The label used to navigate to the newer blog posts page (previous page)",children:"Newer entries"})}),r&&(0,i.jsx)(s.A,{permalink:r,title:(0,i.jsx)(a.A,{id:"theme.blog.paginator.olderEntries",description:"The label used to navigate to the older blog posts page (next page)",children:"Older entries"}),isNext:!0})]})}},2907:(e,t,n)=>{n.d(t,{A:()=>B});n(6540);var a=n(4164),s=n(4096),i=n(4848);function r(e){let{children:t,className:n}=e;return(0,i.jsx)("article",{className:n,children:t})}var l=n(8774);const o={title:"title_f1Hy"};function c(e){let{className:t}=e;const{metadata:n,isBlogPostPage:r}=(0,s.e7)(),{permalink:c,title:d}=n,g=r?"h1":"h2";return(0,i.jsx)(g,{className:(0,a.A)(o.title,t),children:r?d:(0,i.jsx)(l.A,{to:c,children:d})})}var d=n(1312),g=n(5846),u=n(6266);const m={container:"container_mt6G"};function h(e){let{readingTime:t}=e;const n=function(){const{selectMessage:e}=(0,g.W)();return t=>{const n=Math.ceil(t);return e(n,(0,d.T)({id:"theme.blog.post.readingTime.plurals",description:'Pluralized label for "{readingTime} min read". Use as much plural forms (separated by "|") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)',message:"One min read|{readingTime} min read"},{readingTime:n}))}}();return(0,i.jsx)(i.Fragment,{children:n(t)})}function p(e){let{date:t,formattedDate:n}=e;return(0,i.jsx)("time",{dateTime:t,children:n})}function x(){return(0,i.jsx)(i.Fragment,{children:" \xb7 "})}function j(e){let{className:t}=e;const{metadata:n}=(0,s.e7)(),{date:r,readingTime:l}=n,o=(0,u.i)({day:"numeric",month:"long",year:"numeric",timeZone:"UTC"});return(0,i.jsxs)("div",{className:(0,a.A)(m.container,"margin-vert--md",t),children:[(0,i.jsx)(p,{date:r,formattedDate:(c=r,o.format(new Date(c)))}),void 0!==l&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(x,{}),(0,i.jsx)(h,{readingTime:l})]})]});var c}var A=n(6913);const b={authorCol:"authorCol_Hf19",imageOnlyAuthorRow:"imageOnlyAuthorRow_pa_O",imageOnlyAuthorCol:"imageOnlyAuthorCol_G86a"};function f(e){let{className:t}=e;const{metadata:{authors:n},assets:r}=(0,s.e7)();if(0===n.length)return null;const l=n.every((e=>{let{name:t}=e;return!t})),o=1===n.length;return(0,i.jsx)("div",{className:(0,a.A)("margin-top--md margin-bottom--sm",l?b.imageOnlyAuthorRow:"row",t),children:n.map(((e,t)=>(0,i.jsx)("div",{className:(0,a.A)(!l&&(o?"col col--12":"col col--6"),l?b.imageOnlyAuthorCol:b.authorCol),children:(0,i.jsx)(A.A,{author:{...e,imageURL:r.authorsImageUrls[t]??e.imageURL}})},t)))})}function v(){return(0,i.jsxs)("header",{children:[(0,i.jsx)(c,{}),(0,i.jsx)(j,{}),(0,i.jsx)(f,{})]})}var T=n(440),N=n(8509);function w(e){let{children:t,className:n}=e;const{isBlogPostPage:r}=(0,s.e7)();return(0,i.jsx)("div",{id:r?T.LU:void 0,className:(0,a.A)("markdown",n),children:(0,i.jsx)(N.A,{children:t})})}var _=n(7559),y=n(4336),k=n(2053);function P(){return(0,i.jsx)("b",{children:(0,i.jsx)(d.A,{id:"theme.blog.post.readMore",description:"The label used in blog post item excerpts to link to full blog posts",children:"Read more"})})}function R(e){const{blogPostTitle:t,...n}=e;return(0,i.jsx)(l.A,{"aria-label":(0,d.T)({message:"Read more about {title}",id:"theme.blog.post.readMoreLabel",description:"The ARIA label for the link to full blog posts from excerpts"},{title:t}),...n,children:(0,i.jsx)(P,{})})}function U(){const{metadata:e,isBlogPostPage:t}=(0,s.e7)(),{tags:n,title:r,editUrl:l,hasTruncateMarker:o,lastUpdatedBy:c,lastUpdatedAt:d}=e,g=!t&&o,u=n.length>0;if(!(u||g||l))return null;if(t){const e=!!(l||d||c);return(0,i.jsxs)("footer",{className:"docusaurus-mt-lg",children:[u&&(0,i.jsx)("div",{className:(0,a.A)("row","margin-top--sm",_.G.blog.blogFooterEditMetaRow),children:(0,i.jsx)("div",{className:"col",children:(0,i.jsx)(k.A,{tags:n})})}),e&&(0,i.jsx)(y.A,{className:(0,a.A)("margin-top--sm",_.G.blog.blogFooterEditMetaRow),editUrl:l,lastUpdatedAt:d,lastUpdatedBy:c})]})}return(0,i.jsxs)("footer",{className:"row docusaurus-mt-lg",children:[u&&(0,i.jsx)("div",{className:(0,a.A)("col",{"col--9":g}),children:(0,i.jsx)(k.A,{tags:n})}),g&&(0,i.jsx)("div",{className:(0,a.A)("col text--right",{"col--3":u}),children:(0,i.jsx)(R,{blogPostTitle:r,to:e.permalink})})]})}function B(e){let{children:t,className:n}=e;const l=function(){const{isBlogPostPage:e}=(0,s.e7)();return e?void 0:"margin-bottom--xl"}();return(0,i.jsxs)(r,{className:(0,a.A)(l,n),children:[(0,i.jsx)(v,{}),(0,i.jsx)(w,{children:t}),(0,i.jsx)(U,{})]})}},3892:(e,t,n)=>{n.d(t,{A:()=>r});n(6540);var a=n(4096),s=n(2907),i=n(4848);function r(e){let{items:t,component:n=s.A}=e;return(0,i.jsx)(i.Fragment,{children:t.map((e=>{let{content:t}=e;return(0,i.jsx)(a.in,{content:t,children:(0,i.jsx)(n,{children:(0,i.jsx)(t,{})})},t.metadata.permalink)}))})}},3069:(e,t,n)=>{n.r(t),n.d(t,{default:()=>A});n(6540);var a=n(4164),s=n(1312),i=n(5500),r=n(7559),l=n(6461),o=n(8774),c=n(8027),d=n(7713),g=n(1463),u=n(3892),m=n(2234),h=n(1107),p=n(4848);function x(e){let{tag:t}=e;const n=(0,l.ZD)(t);return(0,p.jsxs)(p.Fragment,{children:[(0,p.jsx)(i.be,{title:n,description:t.description}),(0,p.jsx)(g.A,{tag:"blog_tags_posts"})]})}function j(e){let{tag:t,items:n,sidebar:a,listMetadata:i}=e;const r=(0,l.ZD)(t);return(0,p.jsxs)(c.A,{sidebar:a,children:[t.unlisted&&(0,p.jsx)(m.A,{}),(0,p.jsxs)("header",{className:"margin-bottom--xl",children:[(0,p.jsx)(h.A,{as:"h1",children:r}),t.description&&(0,p.jsx)("p",{children:t.description}),(0,p.jsx)(o.A,{href:t.allTagsPath,children:(0,p.jsx)(s.A,{id:"theme.tags.tagsPageLink",description:"The label of the link targeting the tag list page",children:"View All Tags"})})]}),(0,p.jsx)(u.A,{items:n}),(0,p.jsx)(d.A,{metadata:i})]})}function A(e){return(0,p.jsxs)(i.e3,{className:(0,a.A)(r.G.wrapper.blogPages,r.G.page.blogTagPostListPage),children:[(0,p.jsx)(x,{...e}),(0,p.jsx)(j,{...e})]})}},2234:(e,t,n)=>{n.d(t,{A:()=>c});n(6540);var a=n(4164),s=n(4084),i=n(7559),r=n(890),l=n(4848);function o(e){let{className:t}=e;return(0,l.jsx)(r.A,{type:"caution",title:(0,l.jsx)(s.Rc,{}),className:(0,a.A)(t,i.G.common.unlistedBanner),children:(0,l.jsx)(s.Uh,{})})}function c(e){return(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)(s.AE,{}),(0,l.jsx)(o,{...e})]})}},9022:(e,t,n)=>{n.d(t,{A:()=>r});n(6540);var a=n(4164),s=n(8774),i=n(4848);function r(e){const{permalink:t,title:n,subLabel:r,isNext:l}=e;return(0,i.jsxs)(s.A,{className:(0,a.A)("pagination-nav__link",l?"pagination-nav__link--next":"pagination-nav__link--prev"),to:t,children:[r&&(0,i.jsx)("div",{className:"pagination-nav__sublabel",children:r}),(0,i.jsx)("div",{className:"pagination-nav__label",children:n})]})}},6133:(e,t,n)=>{n.d(t,{A:()=>l});n(6540);var a=n(4164),s=n(8774);const i={tag:"tag_zVej",tagRegular:"tagRegular_sFm0",tagWithCount:"tagWithCount_h2kH"};var r=n(4848);function l(e){let{permalink:t,label:n,count:l,description:o}=e;return(0,r.jsxs)(s.A,{href:t,title:o,className:(0,a.A)(i.tag,l?i.tagWithCount:i.tagRegular),children:[n,l&&(0,r.jsx)("span",{children:l})]})}},2053:(e,t,n)=>{n.d(t,{A:()=>o});n(6540);var a=n(4164),s=n(1312),i=n(6133);const r={tags:"tags_jXut",tag:"tag_QGVx"};var l=n(4848);function o(e){let{tags:t}=e;return(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)("b",{children:(0,l.jsx)(s.A,{id:"theme.tags.tagsListLabel",description:"The label alongside a tag list",children:"Tags:"})}),(0,l.jsx)("ul",{className:(0,a.A)(r.tags,"padding--none","margin-left--sm"),children:t.map((e=>(0,l.jsx)("li",{className:r.tag,children:(0,l.jsx)(i.A,{...e})},e.permalink)))})]})}},6461:(e,t,n)=>{n.d(t,{ZD:()=>r,uz:()=>l});n(6540);var a=n(1312),s=n(5846);n(4848);function i(){const{selectMessage:e}=(0,s.W)();return t=>e(t,(0,a.T)({id:"theme.blog.post.plurals",description:'Pluralized label for "{count} posts". Use as much plural forms (separated by "|") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)',message:"One post|{count} posts"},{count:t}))}function r(e){const t=i();return(0,a.T)({id:"theme.blog.tagTitle",description:"The title of the page for a blog tag",message:'{nPosts} tagged with "{tagName}"'},{nPosts:t(e.count),tagName:e.label})}const l=()=>(0,a.T)({id:"theme.blog.authorsList.pageTitle",message:"Authors",description:"The title of the authors page"})},4084:(e,t,n)=>{n.d(t,{AE:()=>o,Rc:()=>r,TT:()=>d,Uh:()=>l,Yh:()=>c});n(6540);var a=n(1312),s=n(5260),i=n(4848);function r(){return(0,i.jsx)(a.A,{id:"theme.contentVisibility.unlistedBanner.title",description:"The unlisted content banner title",children:"Unlisted page"})}function l(){return(0,i.jsx)(a.A,{id:"theme.contentVisibility.unlistedBanner.message",description:"The unlisted content banner message",children:"This page is unlisted. Search engines will not index it, and only users having a direct link can access it."})}function o(){return(0,i.jsx)(s.A,{children:(0,i.jsx)("meta",{name:"robots",content:"noindex, nofollow"})})}function c(){return(0,i.jsx)(a.A,{id:"theme.contentVisibility.draftBanner.title",description:"The draft content banner title",children:"Draft page"})}function d(){return(0,i.jsx)(a.A,{id:"theme.contentVisibility.draftBanner.message",description:"The draft content banner message",children:"This page is a draft. It will only be visible in dev and be excluded from the production build."})}},4037:(e,t,n)=>{n.d(t,{A:()=>s});n(6540);var a=n(3028);n(4848);const s={...a.A,license:a.A.note}},890:(e,t,n)=>{n.d(t,{A:()=>i});n(6540);var a=n(4741),s=n(4848);function i(e){return console.log("\ud83d\ude80 ~ AdmonitionWrapper ~ props:",e.type),"license"==e.type?(0,s.jsx)(a.A,{icon:"\ud83c\udfc5",...e}):(0,s.jsx)(s.Fragment,{children:(0,s.jsx)(a.A,{...e})})}}}]);
\ No newline at end of file
diff --git a/assets/js/6875c492.cd36c0c2.js b/assets/js/6875c492.cd36c0c2.js
deleted file mode 100644
index d7a6eaa9f9..0000000000
--- a/assets/js/6875c492.cd36c0c2.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[4813],{7713:(e,t,n)=>{n.d(t,{A:()=>r});n(6540);var s=n(1312),a=n(9022),i=n(4848);function r(e){const{metadata:t}=e,{previousPage:n,nextPage:r}=t;return(0,i.jsxs)("nav",{className:"pagination-nav","aria-label":(0,s.T)({id:"theme.blog.paginator.navAriaLabel",message:"Blog list page navigation",description:"The ARIA label for the blog pagination"}),children:[n&&(0,i.jsx)(a.A,{permalink:n,title:(0,i.jsx)(s.A,{id:"theme.blog.paginator.newerEntries",description:"The label used to navigate to the newer blog posts page (previous page)",children:"Newer Entries"})}),r&&(0,i.jsx)(a.A,{permalink:r,title:(0,i.jsx)(s.A,{id:"theme.blog.paginator.olderEntries",description:"The label used to navigate to the older blog posts page (next page)",children:"Older Entries"}),isNext:!0})]})}},3892:(e,t,n)=>{n.d(t,{A:()=>r});n(6540);var s=n(7131),a=n(4651),i=n(4848);function r(e){let{items:t,component:n=a.A}=e;return(0,i.jsx)(i.Fragment,{children:t.map((e=>{let{content:t}=e;return(0,i.jsx)(s.i,{content:t,children:(0,i.jsx)(n,{children:(0,i.jsx)(t,{})})},t.metadata.permalink)}))})}},3069:(e,t,n)=>{n.r(t),n.d(t,{default:()=>b});n(6540);var s=n(4164),a=n(1312),i=n(5846),r=n(5500),l=n(7559),o=n(8774),c=n(6535),d=n(7713),g=n(1463),p=n(3892),u=n(996),h=n(1107),m=n(4848);function x(e){const t=function(){const{selectMessage:e}=(0,i.W)();return t=>e(t,(0,a.T)({id:"theme.blog.post.plurals",description:'Pluralized label for "{count} posts". Use as much plural forms (separated by "|") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)',message:"One post|{count} posts"},{count:t}))}();return(0,a.T)({id:"theme.blog.tagTitle",description:"The title of the page for a blog tag",message:'{nPosts} tagged with "{tagName}"'},{nPosts:t(e.count),tagName:e.label})}function j(e){let{tag:t}=e;const n=x(t);return(0,m.jsxs)(m.Fragment,{children:[(0,m.jsx)(r.be,{title:n,description:t.description}),(0,m.jsx)(g.A,{tag:"blog_tags_posts"})]})}function A(e){let{tag:t,items:n,sidebar:s,listMetadata:i}=e;const r=x(t);return(0,m.jsxs)(c.A,{sidebar:s,children:[t.unlisted&&(0,m.jsx)(u.A,{}),(0,m.jsxs)("header",{className:"margin-bottom--xl",children:[(0,m.jsx)(h.A,{as:"h1",children:r}),t.description&&(0,m.jsx)("p",{children:t.description}),(0,m.jsx)(o.A,{href:t.allTagsPath,children:(0,m.jsx)(a.A,{id:"theme.tags.tagsPageLink",description:"The label of the link targeting the tag list page",children:"View All Tags"})})]}),(0,m.jsx)(p.A,{items:n}),(0,m.jsx)(d.A,{metadata:i})]})}function b(e){return(0,m.jsxs)(r.e3,{className:(0,s.A)(l.G.wrapper.blogPages,l.G.page.blogTagPostListPage),children:[(0,m.jsx)(j,{...e}),(0,m.jsx)(A,{...e})]})}},996:(e,t,n)=>{n.d(t,{A:()=>u});n(6540);var s=n(4164),a=n(1312),i=n(5260),r=n(4848);function l(){return(0,r.jsx)(a.A,{id:"theme.unlistedContent.title",description:"The unlisted content banner title",children:"Unlisted page"})}function o(){return(0,r.jsx)(a.A,{id:"theme.unlistedContent.message",description:"The unlisted content banner message",children:"This page is unlisted. Search engines will not index it, and only users having a direct link can access it."})}function c(){return(0,r.jsx)(i.A,{children:(0,r.jsx)("meta",{name:"robots",content:"noindex, nofollow"})})}var d=n(7559),g=n(890);function p(e){let{className:t}=e;return(0,r.jsx)(g.A,{type:"caution",title:(0,r.jsx)(l,{}),className:(0,s.A)(t,d.G.common.unlistedBanner),children:(0,r.jsx)(o,{})})}function u(e){return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(c,{}),(0,r.jsx)(p,{...e})]})}},4037:(e,t,n)=>{n.d(t,{A:()=>a});n(6540);var s=n(3028);n(4848);const a={...s.A,license:s.A.note}},890:(e,t,n)=>{n.d(t,{A:()=>i});n(6540);var s=n(4741),a=n(4848);function i(e){return console.log("\ud83d\ude80 ~ AdmonitionWrapper ~ props:",e.type),"license"==e.type?(0,a.jsx)(s.A,{icon:"\ud83c\udfc5",...e}):(0,a.jsx)(a.Fragment,{children:(0,a.jsx)(s.A,{...e})})}}}]);
\ No newline at end of file
diff --git a/assets/js/6922041d.200c1246.js b/assets/js/6922041d.200c1246.js
deleted file mode 100644
index ace22dfb9a..0000000000
--- a/assets/js/6922041d.200c1246.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7807],{6453:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>i,contentTitle:()=>r,default:()=>d,frontMatter:()=>c,metadata:()=>o,toc:()=>u});var s=n(4848),a=n(8453);const c={},r="Type Alias: AccountNumber",o={id:"reference/api/model/aliases/type-aliases/AccountNumber",title:"Type Alias: AccountNumber",description:"AccountNumber: \\$\\{number\\}\\",source:"@site/docs/reference/api/model/aliases/type-aliases/AccountNumber.md",sourceDirName:"reference/api/model/aliases/type-aliases",slug:"/reference/api/model/aliases/type-aliases/AccountNumber",permalink:"/docs/reference/api/model/aliases/type-aliases/AccountNumber",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/aliases/type-aliases/AccountNumber.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/aliases",permalink:"/docs/reference/api/model/aliases/"},next:{title:"Type Alias: AdvancedFile",permalink:"/docs/reference/api/model/aliases/type-aliases/AdvancedFile"}},i={},u=[];function l(e){const t={blockquote:"blockquote",h1:"h1",p:"p",strong:"strong",...(0,a.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(t.h1,{id:"type-alias-accountnumber",children:"Type Alias: AccountNumber"}),"\n",(0,s.jsxs)(t.blockquote,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"AccountNumber"}),": `${number}`"]}),"\n"]}),"\n",(0,s.jsx)(t.p,{children:"The account number. It is made up of a country code and then the local number without the preceeding 0. For example, if a UK (+44) wa account is linked to the number 07123456789 then the account number will be 447123456789."})]})}function d(e={}){const{wrapper:t}={...(0,a.R)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(l,{...e})}):l(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>r,x:()=>o});var s=n(6540);const a={},c=s.createContext(a);function r(e){const t=s.useContext(c);return s.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function o(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:r(e.components),s.createElement(c.Provider,{value:t},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6922041d.56e82e81.js b/assets/js/6922041d.56e82e81.js
new file mode 100644
index 0000000000..e13b0def8b
--- /dev/null
+++ b/assets/js/6922041d.56e82e81.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7807],{6453:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>i,contentTitle:()=>c,default:()=>d,frontMatter:()=>r,metadata:()=>o,toc:()=>u});var s=n(4848),a=n(8453);const r={},c="Type Alias: AccountNumber",o={id:"reference/api/model/aliases/type-aliases/AccountNumber",title:"Type Alias: AccountNumber",description:"AccountNumber: \\$\\{number\\}\\",source:"@site/docs/reference/api/model/aliases/type-aliases/AccountNumber.md",sourceDirName:"reference/api/model/aliases/type-aliases",slug:"/reference/api/model/aliases/type-aliases/AccountNumber",permalink:"/docs/reference/api/model/aliases/type-aliases/AccountNumber",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/aliases/type-aliases/AccountNumber.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/aliases",permalink:"/docs/reference/api/model/aliases/"},next:{title:"Type Alias: AdvancedFile",permalink:"/docs/reference/api/model/aliases/type-aliases/AdvancedFile"}},i={},u=[];function l(e){const t={blockquote:"blockquote",h1:"h1",header:"header",p:"p",strong:"strong",...(0,a.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(t.header,{children:(0,s.jsx)(t.h1,{id:"type-alias-accountnumber",children:"Type Alias: AccountNumber"})}),"\n",(0,s.jsxs)(t.blockquote,{children:["\n",(0,s.jsxs)(t.p,{children:[(0,s.jsx)(t.strong,{children:"AccountNumber"}),": `${number}`"]}),"\n"]}),"\n",(0,s.jsx)(t.p,{children:"The account number. It is made up of a country code and then the local number without the preceeding 0. For example, if a UK (+44) wa account is linked to the number 07123456789 then the account number will be 447123456789."})]})}function d(e={}){const{wrapper:t}={...(0,a.R)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(l,{...e})}):l(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>c,x:()=>o});var s=n(6540);const a={},r=s.createContext(a);function c(e){const t=s.useContext(r);return s.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function o(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:c(e.components),s.createElement(r.Provider,{value:t},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6afe94c3.8f2cd245.js b/assets/js/6afe94c3.8f2cd245.js
new file mode 100644
index 0000000000..dbb9026641
--- /dev/null
+++ b/assets/js/6afe94c3.8f2cd245.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6290],{492:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>i,contentTitle:()=>s,default:()=>u,frontMatter:()=>c,metadata:()=>d,toc:()=>l});var r=t(4848),o=t(8453);const c={},s="Interface: AdvancedButton",d={id:"reference/api/model/button/interfaces/AdvancedButton",title:"Interface: AdvancedButton",description:"Properties",source:"@site/docs/reference/api/model/button/interfaces/AdvancedButton.md",sourceDirName:"reference/api/model/button/interfaces",slug:"/reference/api/model/button/interfaces/AdvancedButton",permalink:"/docs/reference/api/model/button/interfaces/AdvancedButton",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/button/interfaces/AdvancedButton.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/button",permalink:"/docs/reference/api/model/button/"},next:{title:"Interface: Button",permalink:"/docs/reference/api/model/button/interfaces/Button"}},i={},l=[{value:"Properties",id:"properties",level:2},{value:"id?",id:"id",level:3},{value:"number?",id:"number",level:3},{value:"text",id:"text",level:3},{value:"url?",id:"url",level:3}];function a(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",p:"p",strong:"strong",...(0,o.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.header,{children:(0,r.jsx)(n.h1,{id:"interface-advancedbutton",children:"Interface: AdvancedButton"})}),"\n",(0,r.jsx)(n.h2,{id:"properties",children:"Properties"}),"\n",(0,r.jsx)(n.h3,{id:"id",children:"id?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"id"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"number",children:"number?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"number"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"text",children:"text"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"text"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"url",children:"url?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"url"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,o.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(a,{...e})}):a(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>s,x:()=>d});var r=t(6540);const o={},c=r.createContext(o);function s(e){const n=r.useContext(c);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function d(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:s(e.components),r.createElement(c.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6afe94c3.905af7c5.js b/assets/js/6afe94c3.905af7c5.js
deleted file mode 100644
index 6446752ec0..0000000000
--- a/assets/js/6afe94c3.905af7c5.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6290],{492:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>i,contentTitle:()=>s,default:()=>u,frontMatter:()=>c,metadata:()=>d,toc:()=>l});var r=t(4848),o=t(8453);const c={},s="Interface: AdvancedButton",d={id:"reference/api/model/button/interfaces/AdvancedButton",title:"Interface: AdvancedButton",description:"Properties",source:"@site/docs/reference/api/model/button/interfaces/AdvancedButton.md",sourceDirName:"reference/api/model/button/interfaces",slug:"/reference/api/model/button/interfaces/AdvancedButton",permalink:"/docs/reference/api/model/button/interfaces/AdvancedButton",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/button/interfaces/AdvancedButton.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/button",permalink:"/docs/reference/api/model/button/"},next:{title:"Interface: Button",permalink:"/docs/reference/api/model/button/interfaces/Button"}},i={},l=[{value:"Properties",id:"properties",level:2},{value:"id?",id:"id",level:3},{value:"number?",id:"number",level:3},{value:"text",id:"text",level:3},{value:"url?",id:"url",level:3}];function a(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",hr:"hr",p:"p",strong:"strong",...(0,o.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.h1,{id:"interface-advancedbutton",children:"Interface: AdvancedButton"}),"\n",(0,r.jsx)(n.h2,{id:"properties",children:"Properties"}),"\n",(0,r.jsx)(n.h3,{id:"id",children:"id?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"id"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"number",children:"number?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"number"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"text",children:"text"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"text"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"url",children:"url?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"url"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,o.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(a,{...e})}):a(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>s,x:()=>d});var r=t(6540);const o={},c=r.createContext(o);function s(e){const n=r.useContext(c);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function d(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:s(e.components),r.createElement(c.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6b55e007.5b51ac19.js b/assets/js/6b55e007.5b51ac19.js
deleted file mode 100644
index 6fbf62650e..0000000000
--- a/assets/js/6b55e007.5b51ac19.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[8773],{6722:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>c,contentTitle:()=>a,default:()=>h,frontMatter:()=>s,metadata:()=>r,toc:()=>d});var o=t(4848),i=t(8453);const s={sidebar_label:"The Config Object",description:"Guide showing how to edit the settings.",sidebar_position:0},a="Configuration",r={id:"configuration/config-object",title:"Configuration",description:"Guide showing how to edit the settings.",source:"@site/docs/configuration/config-object.md",sourceDirName:"configuration",slug:"/configuration/config-object",permalink:"/docs/configuration/config-object",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/config-object.md",tags:[],version:"current",sidebarPosition:0,frontMatter:{sidebar_label:"The Config Object",description:"Guide showing how to edit the settings.",sidebar_position:0},sidebar:"tutorialSidebar",previous:{title:"Socket mode",permalink:"/docs/get-started/socketmode"},next:{title:"EASY API CLI options",permalink:"/docs/configuration/command-line-options"}},c={},d=[{value:"Timing out an unpaired session",id:"timing-out-an-unpaired-session",level:2},{value:"Emitting a limited amount of qr codes",id:"emitting-a-limited-amount-of-qr-codes",level:2},{value:"Open with browser",id:"open-with-browser",level:2}];function l(e){const n={a:"a",code:"code",em:"em",h1:"h1",h2:"h2",li:"li",ol:"ol",p:"p",pre:"pre",strong:"strong",...(0,i.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(n.h1,{id:"configuration",children:"Configuration"}),"\n",(0,o.jsx)(n.p,{children:"There are quite a few ways you can customize your session."}),"\n",(0,o.jsxs)(n.p,{children:["Find out about all possible options here: ",(0,o.jsx)(n.a,{href:"/docs/api/interfaces/api_model_config.ConfigObject",children:"api.ConfigObject"})]}),"\n",(0,o.jsx)(n.p,{children:"Set the desired config options as parameter on [create]."}),"\n",(0,o.jsx)(n.p,{children:"In the following example:"}),"\n",(0,o.jsxs)(n.ol,{children:["\n",(0,o.jsx)(n.li,{children:"The process tries to find and run a chrome installation instead of using the default chromium (chrome is required to send videos & GIFS) [ConfigObject.useChrome]"}),"\n",(0,o.jsx)(n.li,{children:"Automatically refreshes the QR code at regular intervals [ConfigObject.autoRefresh]"}),"\n",(0,o.jsx)(n.li,{children:"Disables the cache (may be useful to optimize memory consumption) [ConfigObject.cacheEnabled]"}),"\n",(0,o.jsxs)(n.li,{children:["Sets the session Id to ",(0,o.jsx)(n.code,{children:"hr"})," (this will result in a file called ",(0,o.jsx)(n.code,{children:"hr.data.json"})," being saved to the process working directory) [ConfigObject.sessionId]"]}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"const { create, Client } = require('@open-wa/wa-automate');\n// or\n// import { create, Client } from '@open-wa/wa-automate';\n\nconst launchConfig = {\n useChrome: true,\n autoRefresh:true,\n cacheEnabled:false,\n sessionId: 'hr'\n};\n\nfunction start(client) {\n client.onMessage(async message => {\n if (message.body === 'Hi') {\n await client.sendText(message.from, '\ud83d\udc4b Hello!');\n }\n });\n}\n\ncreate(launchConfig).then(start);\n\n"})}),"\n",(0,o.jsx)(n.h2,{id:"timing-out-an-unpaired-session",children:"Timing out an unpaired session"}),"\n",(0,o.jsx)(n.p,{children:"If you want to kill the process after a certain amount of seconds due to an unscanned code, you can now set the qrTimeout parameter in the configuration object. You can also use authTimeout if you want to wait only a certain period of time to wait for the session to connect to the phone."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"create({\n qrTimeout: 30, //kills the session if the QR code is not scanned within 30 seconds.\n authTimeout: 30 //kills the session if the session hasn't authentication 30 seconds (e.g If the session has the right credentials but the phone is off).\n})\n.then(client => start(client));\n"})}),"\n",(0,o.jsx)(n.h2,{id:"emitting-a-limited-amount-of-qr-codes",children:"Emitting a limited amount of qr codes"}),"\n",(0,o.jsx)(n.p,{children:"Set [ConfigObject.maxQr] to limit the amount of QR codes to show before closing the process."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"create({\n maxQr:10,\n}).then(async client => await start(client));\n"})}),"\n",(0,o.jsx)(n.h2,{id:"open-with-browser",children:"Open with browser"}),"\n",(0,o.jsxs)(n.p,{children:["The actual browser window you use is called a ",(0,o.jsx)(n.code,{children:"head"}),", by default the library runs a chrome session ",(0,o.jsx)(n.em,{children:(0,o.jsx)(n.strong,{children:"headless"})})," (i.e in the background - you don't see it). If you want the browser to open up to see what's going on you can set ",(0,o.jsx)(n.code,{children:"ConfigObject.headless"})," to ",(0,o.jsx)(n.code,{children:"false"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"create({\n headless: false\n}).then(async client => await start(client));\n"})})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,o.jsx)(n,{...e,children:(0,o.jsx)(l,{...e})}):l(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>a,x:()=>r});var o=t(6540);const i={},s=o.createContext(i);function a(e){const n=o.useContext(s);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function r(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:a(e.components),o.createElement(s.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6b55e007.d0dcbeeb.js b/assets/js/6b55e007.d0dcbeeb.js
new file mode 100644
index 0000000000..6993b72e48
--- /dev/null
+++ b/assets/js/6b55e007.d0dcbeeb.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[8773],{6722:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>c,contentTitle:()=>a,default:()=>h,frontMatter:()=>s,metadata:()=>r,toc:()=>d});var o=t(4848),i=t(8453);const s={sidebar_label:"The Config Object",description:"Guide showing how to edit the settings.",sidebar_position:0},a="Configuration",r={id:"configuration/config-object",title:"Configuration",description:"Guide showing how to edit the settings.",source:"@site/docs/configuration/config-object.md",sourceDirName:"configuration",slug:"/configuration/config-object",permalink:"/docs/configuration/config-object",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/configuration/config-object.md",tags:[],version:"current",sidebarPosition:0,frontMatter:{sidebar_label:"The Config Object",description:"Guide showing how to edit the settings.",sidebar_position:0},sidebar:"tutorialSidebar",previous:{title:"Socket mode",permalink:"/docs/get-started/socketmode"},next:{title:"EASY API CLI options",permalink:"/docs/configuration/command-line-options"}},c={},d=[{value:"Timing out an unpaired session",id:"timing-out-an-unpaired-session",level:2},{value:"Emitting a limited amount of qr codes",id:"emitting-a-limited-amount-of-qr-codes",level:2},{value:"Open with browser",id:"open-with-browser",level:2}];function l(e){const n={a:"a",code:"code",em:"em",h1:"h1",h2:"h2",header:"header",li:"li",ol:"ol",p:"p",pre:"pre",strong:"strong",...(0,i.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(n.header,{children:(0,o.jsx)(n.h1,{id:"configuration",children:"Configuration"})}),"\n",(0,o.jsx)(n.p,{children:"There are quite a few ways you can customize your session."}),"\n",(0,o.jsxs)(n.p,{children:["Find out about all possible options here: ",(0,o.jsx)(n.a,{href:"/docs/api/interfaces/api_model_config.ConfigObject",children:"api.ConfigObject"})]}),"\n",(0,o.jsx)(n.p,{children:"Set the desired config options as parameter on [create]."}),"\n",(0,o.jsx)(n.p,{children:"In the following example:"}),"\n",(0,o.jsxs)(n.ol,{children:["\n",(0,o.jsx)(n.li,{children:"The process tries to find and run a chrome installation instead of using the default chromium (chrome is required to send videos & GIFS) [ConfigObject.useChrome]"}),"\n",(0,o.jsx)(n.li,{children:"Automatically refreshes the QR code at regular intervals [ConfigObject.autoRefresh]"}),"\n",(0,o.jsx)(n.li,{children:"Disables the cache (may be useful to optimize memory consumption) [ConfigObject.cacheEnabled]"}),"\n",(0,o.jsxs)(n.li,{children:["Sets the session Id to ",(0,o.jsx)(n.code,{children:"hr"})," (this will result in a file called ",(0,o.jsx)(n.code,{children:"hr.data.json"})," being saved to the process working directory) [ConfigObject.sessionId]"]}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"const { create, Client } = require('@open-wa/wa-automate');\n// or\n// import { create, Client } from '@open-wa/wa-automate';\n\nconst launchConfig = {\n useChrome: true,\n autoRefresh:true,\n cacheEnabled:false,\n sessionId: 'hr'\n};\n\nfunction start(client) {\n client.onMessage(async message => {\n if (message.body === 'Hi') {\n await client.sendText(message.from, '\ud83d\udc4b Hello!');\n }\n });\n}\n\ncreate(launchConfig).then(start);\n\n"})}),"\n",(0,o.jsx)(n.h2,{id:"timing-out-an-unpaired-session",children:"Timing out an unpaired session"}),"\n",(0,o.jsx)(n.p,{children:"If you want to kill the process after a certain amount of seconds due to an unscanned code, you can now set the qrTimeout parameter in the configuration object. You can also use authTimeout if you want to wait only a certain period of time to wait for the session to connect to the phone."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"create({\n qrTimeout: 30, //kills the session if the QR code is not scanned within 30 seconds.\n authTimeout: 30 //kills the session if the session hasn't authentication 30 seconds (e.g If the session has the right credentials but the phone is off).\n})\n.then(client => start(client));\n"})}),"\n",(0,o.jsx)(n.h2,{id:"emitting-a-limited-amount-of-qr-codes",children:"Emitting a limited amount of qr codes"}),"\n",(0,o.jsx)(n.p,{children:"Set [ConfigObject.maxQr] to limit the amount of QR codes to show before closing the process."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"create({\n maxQr:10,\n}).then(async client => await start(client));\n"})}),"\n",(0,o.jsx)(n.h2,{id:"open-with-browser",children:"Open with browser"}),"\n",(0,o.jsxs)(n.p,{children:["The actual browser window you use is called a ",(0,o.jsx)(n.code,{children:"head"}),", by default the library runs a chrome session ",(0,o.jsx)(n.em,{children:(0,o.jsx)(n.strong,{children:"headless"})})," (i.e in the background - you don't see it). If you want the browser to open up to see what's going on you can set ",(0,o.jsx)(n.code,{children:"ConfigObject.headless"})," to ",(0,o.jsx)(n.code,{children:"false"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:"create({\n headless: false\n}).then(async client => await start(client));\n"})})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,o.jsx)(n,{...e,children:(0,o.jsx)(l,{...e})}):l(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>a,x:()=>r});var o=t(6540);const i={},s=o.createContext(i);function a(e){const n=o.useContext(s);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function r(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:a(e.components),o.createElement(s.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6b7169bc.50340939.js b/assets/js/6b7169bc.50340939.js
deleted file mode 100644
index 01f7018200..0000000000
--- a/assets/js/6b7169bc.50340939.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[3809],{9522:(e,s,r)=>{r.r(s),r.d(s,{assets:()=>i,contentTitle:()=>n,default:()=>l,frontMatter:()=>t,metadata:()=>a,toc:()=>u});var o=r(4848),c=r(8453);const t={},n="Variable: MessagePreprocessors",a={id:"reference/structures/preProcessors/variables/MessagePreprocessors",title:"Variable: MessagePreprocessors",description:"const MessagePreprocessors: object",source:"@site/docs/reference/structures/preProcessors/variables/MessagePreprocessors.md",sourceDirName:"reference/structures/preProcessors/variables",slug:"/reference/structures/preProcessors/variables/MessagePreprocessors",permalink:"/docs/reference/structures/preProcessors/variables/MessagePreprocessors",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/preProcessors/variables/MessagePreprocessors.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Type Alias: MessagePreProcessor()",permalink:"/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor"}},i={},u=[{value:"Index Signature",id:"index-signature",level:2}];function d(e){const s={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",p:"p",strong:"strong",...(0,c.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(s.h1,{id:"variable-messagepreprocessors",children:"Variable: MessagePreprocessors"}),"\n",(0,o.jsxs)(s.blockquote,{children:["\n",(0,o.jsxs)(s.p,{children:[(0,o.jsx)(s.code,{children:"const"})," ",(0,o.jsx)(s.strong,{children:"MessagePreprocessors"}),": ",(0,o.jsx)(s.code,{children:"object"})]}),"\n"]}),"\n",(0,o.jsx)(s.p,{children:"An object that contains all available [[PREPROCESSORS]]."}),"\n",(0,o.jsx)(s.p,{children:(0,o.jsx)(s.a,{href:"https://github.com/open-wa/wa-automate-nodejs/blob/master/src/structures/preProcessors.ts",children:"Check out the processor code here"})}),"\n",(0,o.jsx)(s.h2,{id:"index-signature",children:"Index Signature"}),"\n",(0,o.jsxs)(s.p,{children:["[",(0,o.jsx)(s.code,{children:"processorName"}),": ",(0,o.jsx)(s.code,{children:"string"}),"]: ",(0,o.jsx)(s.a,{href:"/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor",children:(0,o.jsx)(s.code,{children:"MessagePreProcessor"})})]})]})}function l(e={}){const{wrapper:s}={...(0,c.R)(),...e.components};return s?(0,o.jsx)(s,{...e,children:(0,o.jsx)(d,{...e})}):d(e)}},8453:(e,s,r)=>{r.d(s,{R:()=>n,x:()=>a});var o=r(6540);const c={},t=o.createContext(c);function n(e){const s=o.useContext(t);return o.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function a(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(c):e.components||c:n(e.components),o.createElement(t.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6b7169bc.8db70c62.js b/assets/js/6b7169bc.8db70c62.js
new file mode 100644
index 0000000000..f5b7ddc915
--- /dev/null
+++ b/assets/js/6b7169bc.8db70c62.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[3809],{9522:(e,s,r)=>{r.r(s),r.d(s,{assets:()=>i,contentTitle:()=>n,default:()=>l,frontMatter:()=>t,metadata:()=>a,toc:()=>d});var o=r(4848),c=r(8453);const t={},n="Variable: MessagePreprocessors",a={id:"reference/structures/preProcessors/variables/MessagePreprocessors",title:"Variable: MessagePreprocessors",description:"const MessagePreprocessors: object",source:"@site/docs/reference/structures/preProcessors/variables/MessagePreprocessors.md",sourceDirName:"reference/structures/preProcessors/variables",slug:"/reference/structures/preProcessors/variables/MessagePreprocessors",permalink:"/docs/reference/structures/preProcessors/variables/MessagePreprocessors",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/preProcessors/variables/MessagePreprocessors.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Type Alias: MessagePreProcessor()",permalink:"/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor"}},i={},d=[{value:"Index Signature",id:"index-signature",level:2}];function u(e){const s={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",header:"header",p:"p",strong:"strong",...(0,c.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(s.header,{children:(0,o.jsx)(s.h1,{id:"variable-messagepreprocessors",children:"Variable: MessagePreprocessors"})}),"\n",(0,o.jsxs)(s.blockquote,{children:["\n",(0,o.jsxs)(s.p,{children:[(0,o.jsx)(s.code,{children:"const"})," ",(0,o.jsx)(s.strong,{children:"MessagePreprocessors"}),": ",(0,o.jsx)(s.code,{children:"object"})]}),"\n"]}),"\n",(0,o.jsx)(s.p,{children:"An object that contains all available [[PREPROCESSORS]]."}),"\n",(0,o.jsx)(s.p,{children:(0,o.jsx)(s.a,{href:"https://github.com/open-wa/wa-automate-nodejs/blob/master/src/structures/preProcessors.ts",children:"Check out the processor code here"})}),"\n",(0,o.jsx)(s.h2,{id:"index-signature",children:"Index Signature"}),"\n",(0,o.jsxs)(s.p,{children:["[",(0,o.jsx)(s.code,{children:"processorName"}),": ",(0,o.jsx)(s.code,{children:"string"}),"]: ",(0,o.jsx)(s.a,{href:"/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor",children:(0,o.jsx)(s.code,{children:"MessagePreProcessor"})})]})]})}function l(e={}){const{wrapper:s}={...(0,c.R)(),...e.components};return s?(0,o.jsx)(s,{...e,children:(0,o.jsx)(u,{...e})}):u(e)}},8453:(e,s,r)=>{r.d(s,{R:()=>n,x:()=>a});var o=r(6540);const c={},t=o.createContext(c);function n(e){const s=o.useContext(t);return o.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function a(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(c):e.components||c:n(e.components),o.createElement(t.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6bd61230.51b90e94.js b/assets/js/6bd61230.51b90e94.js
deleted file mode 100644
index a183939889..0000000000
--- a/assets/js/6bd61230.51b90e94.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[5293],{2483:(e,s,r)=>{r.r(s),r.d(s,{assets:()=>i,contentTitle:()=>t,default:()=>h,frontMatter:()=>c,metadata:()=>a,toc:()=>l});var n=r(4848),o=r(8453);const c={},t="Type Alias: MessagePreProcessor()",a={id:"reference/structures/preProcessors/type-aliases/MessagePreProcessor",title:"Type Alias: MessagePreProcessor()",description:"MessagePreProcessor: (message, client?, alreadyProcessed?, source?) => Promise\\",source:"@site/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor.md",sourceDirName:"reference/structures/preProcessors/type-aliases",slug:"/reference/structures/preProcessors/type-aliases/MessagePreProcessor",permalink:"/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Type Alias: MPConfigType",permalink:"/docs/reference/structures/preProcessors/type-aliases/MPConfigType"},next:{title:"Variable: MessagePreprocessors",permalink:"/docs/reference/structures/preProcessors/variables/MessagePreprocessors"}},i={},l=[{value:"Parameters",id:"parameters",level:2},{value:"Returns",id:"returns",level:2}];function d(e){const s={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",p:"p",strong:"strong",...(0,o.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.h1,{id:"type-alias-messagepreprocessor",children:"Type Alias: MessagePreProcessor()"}),"\n",(0,n.jsxs)(s.blockquote,{children:["\n",(0,n.jsxs)(s.p,{children:[(0,n.jsx)(s.strong,{children:"MessagePreProcessor"}),": (",(0,n.jsx)(s.code,{children:"message"}),", ",(0,n.jsx)(s.code,{children:"client"}),"?, ",(0,n.jsx)(s.code,{children:"alreadyProcessed"}),"?, ",(0,n.jsx)(s.code,{children:"source"}),"?) => ",(0,n.jsx)(s.code,{children:"Promise"}),"<",(0,n.jsx)(s.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:(0,n.jsx)(s.code,{children:"Message"})}),">"]}),"\n"]}),"\n",(0,n.jsx)(s.p,{children:"A function that takes a message and returns a message."}),"\n",(0,n.jsx)(s.h2,{id:"parameters",children:"Parameters"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"message"}),": ",(0,n.jsx)(s.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:(0,n.jsx)(s.code,{children:"Message"})})]}),"\n",(0,n.jsx)(s.p,{children:"The message to be processed"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"client?"}),": ",(0,n.jsx)(s.a,{href:"/docs/reference/api/Client/classes/Client",children:(0,n.jsx)(s.code,{children:"Client"})})]}),"\n",(0,n.jsx)(s.p,{children:"The client that received the message"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"alreadyProcessed?"}),": ",(0,n.jsx)(s.code,{children:"boolean"})]}),"\n",(0,n.jsx)(s.p,{children:"Whether the message has already been processed by another preprocessor. (This is useful in cases where you want to mutate the message for both onMessage and onAnyMessage events but only want to do the actual process, like uploading to s3, once.)"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"source?"}),": ",(0,n.jsx)(s.code,{children:'"onMessage"'})," | ",(0,n.jsx)(s.code,{children:'"onAnyMessage"'})]}),"\n",(0,n.jsx)(s.p,{children:"The source of the message. This is useful for knowing if the message is from onMessage or onAnyMessage. Only processing one source will prevent duplicate processing."}),"\n",(0,n.jsx)(s.h2,{id:"returns",children:"Returns"}),"\n",(0,n.jsxs)(s.p,{children:[(0,n.jsx)(s.code,{children:"Promise"}),"<",(0,n.jsx)(s.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:(0,n.jsx)(s.code,{children:"Message"})}),">"]})]})}function h(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,n.jsx)(s,{...e,children:(0,n.jsx)(d,{...e})}):d(e)}},8453:(e,s,r)=>{r.d(s,{R:()=>t,x:()=>a});var n=r(6540);const o={},c=n.createContext(o);function t(e){const s=n.useContext(c);return n.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function a(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:t(e.components),n.createElement(c.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6bd61230.d3c0ee7b.js b/assets/js/6bd61230.d3c0ee7b.js
new file mode 100644
index 0000000000..f7aa0e8deb
--- /dev/null
+++ b/assets/js/6bd61230.d3c0ee7b.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[5293],{2483:(e,s,r)=>{r.r(s),r.d(s,{assets:()=>i,contentTitle:()=>t,default:()=>h,frontMatter:()=>c,metadata:()=>a,toc:()=>d});var n=r(4848),o=r(8453);const c={},t="Type Alias: MessagePreProcessor()",a={id:"reference/structures/preProcessors/type-aliases/MessagePreProcessor",title:"Type Alias: MessagePreProcessor()",description:"MessagePreProcessor: (message, client?, alreadyProcessed?, source?) => Promise\\",source:"@site/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor.md",sourceDirName:"reference/structures/preProcessors/type-aliases",slug:"/reference/structures/preProcessors/type-aliases/MessagePreProcessor",permalink:"/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Type Alias: MPConfigType",permalink:"/docs/reference/structures/preProcessors/type-aliases/MPConfigType"},next:{title:"Variable: MessagePreprocessors",permalink:"/docs/reference/structures/preProcessors/variables/MessagePreprocessors"}},i={},d=[{value:"Parameters",id:"parameters",level:2},{value:"Returns",id:"returns",level:2}];function l(e){const s={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",header:"header",p:"p",strong:"strong",...(0,o.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.header,{children:(0,n.jsx)(s.h1,{id:"type-alias-messagepreprocessor",children:"Type Alias: MessagePreProcessor()"})}),"\n",(0,n.jsxs)(s.blockquote,{children:["\n",(0,n.jsxs)(s.p,{children:[(0,n.jsx)(s.strong,{children:"MessagePreProcessor"}),": (",(0,n.jsx)(s.code,{children:"message"}),", ",(0,n.jsx)(s.code,{children:"client"}),"?, ",(0,n.jsx)(s.code,{children:"alreadyProcessed"}),"?, ",(0,n.jsx)(s.code,{children:"source"}),"?) => ",(0,n.jsx)(s.code,{children:"Promise"}),"<",(0,n.jsx)(s.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:(0,n.jsx)(s.code,{children:"Message"})}),">"]}),"\n"]}),"\n",(0,n.jsx)(s.p,{children:"A function that takes a message and returns a message."}),"\n",(0,n.jsx)(s.h2,{id:"parameters",children:"Parameters"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"message"}),": ",(0,n.jsx)(s.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:(0,n.jsx)(s.code,{children:"Message"})})]}),"\n",(0,n.jsx)(s.p,{children:"The message to be processed"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"client?"}),": ",(0,n.jsx)(s.a,{href:"/docs/reference/api/Client/classes/Client",children:(0,n.jsx)(s.code,{children:"Client"})})]}),"\n",(0,n.jsx)(s.p,{children:"The client that received the message"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"alreadyProcessed?"}),": ",(0,n.jsx)(s.code,{children:"boolean"})]}),"\n",(0,n.jsx)(s.p,{children:"Whether the message has already been processed by another preprocessor. (This is useful in cases where you want to mutate the message for both onMessage and onAnyMessage events but only want to do the actual process, like uploading to s3, once.)"}),"\n",(0,n.jsxs)(s.p,{children:["\u2022 ",(0,n.jsx)(s.strong,{children:"source?"}),": ",(0,n.jsx)(s.code,{children:'"onMessage"'})," | ",(0,n.jsx)(s.code,{children:'"onAnyMessage"'})]}),"\n",(0,n.jsx)(s.p,{children:"The source of the message. This is useful for knowing if the message is from onMessage or onAnyMessage. Only processing one source will prevent duplicate processing."}),"\n",(0,n.jsx)(s.h2,{id:"returns",children:"Returns"}),"\n",(0,n.jsxs)(s.p,{children:[(0,n.jsx)(s.code,{children:"Promise"}),"<",(0,n.jsx)(s.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:(0,n.jsx)(s.code,{children:"Message"})}),">"]})]})}function h(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,n.jsx)(s,{...e,children:(0,n.jsx)(l,{...e})}):l(e)}},8453:(e,s,r)=>{r.d(s,{R:()=>t,x:()=>a});var n=r(6540);const o={},c=n.createContext(o);function t(e){const s=n.useContext(c);return n.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function a(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:t(e.components),n.createElement(c.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6cdb92a9.371b59c4.js b/assets/js/6cdb92a9.371b59c4.js
deleted file mode 100644
index b14f7df027..0000000000
--- a/assets/js/6cdb92a9.371b59c4.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[2987],{6050:(e,t,o)=>{o.r(t),o.d(t,{assets:()=>c,contentTitle:()=>r,default:()=>l,frontMatter:()=>i,metadata:()=>d,toc:()=>a});var s=o(4848),n=o(8453);const i={title:"Socket mode",sidebar_position:4,description:"Guide showing how to develop your own solutions without needing to wait for session restarts."},r="Socket mode",d={id:"get-started/socketmode",title:"Socket mode",description:"Guide showing how to develop your own solutions without needing to wait for session restarts.",source:"@site/docs/get-started/socketmode.md",sourceDirName:"get-started",slug:"/get-started/socketmode",permalink:"/docs/get-started/socketmode",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/get-started/socketmode.md",tags:[],version:"current",sidebarPosition:4,frontMatter:{title:"Socket mode",sidebar_position:4,description:"Guide showing how to develop your own solutions without needing to wait for session restarts."},sidebar:"tutorialSidebar",previous:{title:"Link Code Login",permalink:"/docs/get-started/link-code"},next:{title:"The Config Object",permalink:"/docs/configuration/config-object"}},c={},a=[{value:"Step 1 - Start the EASY API in socket mode",id:"step-1---start-the-easy-api-in-socket-mode",level:2}];function u(e){const t={h1:"h1",h2:"h2",li:"li",p:"p",ul:"ul",...(0,n.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(t.h1,{id:"socket-mode",children:"Socket mode"}),"\n",(0,s.jsx)(t.p,{children:"Now that you've checked out the EASY API and how to implement wa-automate with your own custom code I'm sure you're wondering if there was a best of both worlds? Yes there is! \"Socket mode\" allows you to seperate your session from your code and unlocks a number of benefits:"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"Your session and your code can be running on different servers"}),"\n",(0,s.jsx)(t.li,{children:"Rapid development - you no longer have to wait for a session to restart when restarting your custom code"}),"\n",(0,s.jsx)(t.li,{children:"1-many - connect multiple socket clients to one session."}),"\n"]}),"\n",(0,s.jsx)(t.p,{children:"How to:"}),"\n",(0,s.jsx)(t.h2,{id:"step-1---start-the-easy-api-in-socket-mode",children:"Step 1 - Start the EASY API in socket mode"})]})}function l(e={}){const{wrapper:t}={...(0,n.R)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(u,{...e})}):u(e)}},8453:(e,t,o)=>{o.d(t,{R:()=>r,x:()=>d});var s=o(6540);const n={},i=s.createContext(n);function r(e){const t=s.useContext(i);return s.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function d(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(n):e.components||n:r(e.components),s.createElement(i.Provider,{value:t},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6cdb92a9.b36632c4.js b/assets/js/6cdb92a9.b36632c4.js
new file mode 100644
index 0000000000..4779fcd7a1
--- /dev/null
+++ b/assets/js/6cdb92a9.b36632c4.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[2987],{6050:(e,t,o)=>{o.r(t),o.d(t,{assets:()=>c,contentTitle:()=>r,default:()=>l,frontMatter:()=>i,metadata:()=>d,toc:()=>a});var s=o(4848),n=o(8453);const i={title:"Socket mode",sidebar_position:4,description:"Guide showing how to develop your own solutions without needing to wait for session restarts."},r="Socket mode",d={id:"get-started/socketmode",title:"Socket mode",description:"Guide showing how to develop your own solutions without needing to wait for session restarts.",source:"@site/docs/get-started/socketmode.md",sourceDirName:"get-started",slug:"/get-started/socketmode",permalink:"/docs/get-started/socketmode",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/get-started/socketmode.md",tags:[],version:"current",sidebarPosition:4,frontMatter:{title:"Socket mode",sidebar_position:4,description:"Guide showing how to develop your own solutions without needing to wait for session restarts."},sidebar:"tutorialSidebar",previous:{title:"Link Code Login",permalink:"/docs/get-started/link-code"},next:{title:"The Config Object",permalink:"/docs/configuration/config-object"}},c={},a=[{value:"Step 1 - Start the EASY API in socket mode",id:"step-1---start-the-easy-api-in-socket-mode",level:2}];function u(e){const t={h1:"h1",h2:"h2",header:"header",li:"li",p:"p",ul:"ul",...(0,n.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(t.header,{children:(0,s.jsx)(t.h1,{id:"socket-mode",children:"Socket mode"})}),"\n",(0,s.jsx)(t.p,{children:"Now that you've checked out the EASY API and how to implement wa-automate with your own custom code I'm sure you're wondering if there was a best of both worlds? Yes there is! \"Socket mode\" allows you to seperate your session from your code and unlocks a number of benefits:"}),"\n",(0,s.jsxs)(t.ul,{children:["\n",(0,s.jsx)(t.li,{children:"Your session and your code can be running on different servers"}),"\n",(0,s.jsx)(t.li,{children:"Rapid development - you no longer have to wait for a session to restart when restarting your custom code"}),"\n",(0,s.jsx)(t.li,{children:"1-many - connect multiple socket clients to one session."}),"\n"]}),"\n",(0,s.jsx)(t.p,{children:"How to:"}),"\n",(0,s.jsx)(t.h2,{id:"step-1---start-the-easy-api-in-socket-mode",children:"Step 1 - Start the EASY API in socket mode"})]})}function l(e={}){const{wrapper:t}={...(0,n.R)(),...e.components};return t?(0,s.jsx)(t,{...e,children:(0,s.jsx)(u,{...e})}):u(e)}},8453:(e,t,o)=>{o.d(t,{R:()=>r,x:()=>d});var s=o(6540);const n={},i=s.createContext(n);function r(e){const t=s.useContext(i);return s.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function d(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(n):e.components||n:r(e.components),s.createElement(i.Provider,{value:t},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6dda1eb8.ab42b8ef.js b/assets/js/6dda1eb8.ab42b8ef.js
new file mode 100644
index 0000000000..0988e6aff5
--- /dev/null
+++ b/assets/js/6dda1eb8.ab42b8ef.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7856],{4551:(e,n,r)=>{r.r(n),r.d(n,{assets:()=>c,contentTitle:()=>o,default:()=>u,frontMatter:()=>i,metadata:()=>d,toc:()=>s});var a=r(4848),t=r(8453);const i={},o="api/model/group-metadata",d={id:"reference/api/model/group-metadata/index",title:"api/model/group-metadata",description:"Index",source:"@site/docs/reference/api/model/group-metadata/index.md",sourceDirName:"reference/api/model/group-metadata",slug:"/reference/api/model/group-metadata/",permalink:"/docs/reference/api/model/group-metadata/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/group-metadata/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Enumeration: SimpleListener",permalink:"/docs/reference/api/model/events/enumerations/SimpleListener"},next:{title:"Enumeration: GroupNotificationTypes",permalink:"/docs/reference/api/model/group-metadata/enumerations/GroupNotificationTypes"}},c={},s=[{value:"Index",id:"index",level:2},{value:"Enumerations",id:"enumerations",level:3},{value:"Interfaces",id:"interfaces",level:3}];function l(e){const n={a:"a",h1:"h1",h2:"h2",h3:"h3",header:"header",li:"li",ul:"ul",...(0,t.R)(),...e.components};return(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(n.header,{children:(0,a.jsx)(n.h1,{id:"apimodelgroup-metadata",children:"api/model/group-metadata"})}),"\n",(0,a.jsx)(n.h2,{id:"index",children:"Index"}),"\n",(0,a.jsx)(n.h3,{id:"enumerations",children:"Enumerations"}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/enumerations/GroupNotificationTypes",children:"GroupNotificationTypes"})}),"\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/enumerations/groupChangeEvent",children:"groupChangeEvent"})}),"\n"]}),"\n",(0,a.jsx)(n.h3,{id:"interfaces",children:"Interfaces"}),"\n",(0,a.jsxs)(n.ul,{children:["\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/GenericGroupChangeEvent",children:"GenericGroupChangeEvent"})}),"\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/GroupMetadata",children:"GroupMetadata"})}),"\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/NewCommunityGroup",children:"NewCommunityGroup"})}),"\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/Participant",children:"Participant"})}),"\n",(0,a.jsx)(n.li,{children:(0,a.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/ParticipantChangedEventModel",children:"ParticipantChangedEventModel"})}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,t.R)(),...e.components};return n?(0,a.jsx)(n,{...e,children:(0,a.jsx)(l,{...e})}):l(e)}},8453:(e,n,r)=>{r.d(n,{R:()=>o,x:()=>d});var a=r(6540);const t={},i=a.createContext(t);function o(e){const n=a.useContext(i);return a.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function d(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:o(e.components),a.createElement(i.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6dda1eb8.d2f4de1f.js b/assets/js/6dda1eb8.d2f4de1f.js
deleted file mode 100644
index 51bb45a81c..0000000000
--- a/assets/js/6dda1eb8.d2f4de1f.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7856],{4551:(e,n,a)=>{a.r(n),a.d(n,{assets:()=>c,contentTitle:()=>o,default:()=>u,frontMatter:()=>i,metadata:()=>d,toc:()=>s});var r=a(4848),t=a(8453);const i={},o="api/model/group-metadata",d={id:"reference/api/model/group-metadata/index",title:"api/model/group-metadata",description:"Index",source:"@site/docs/reference/api/model/group-metadata/index.md",sourceDirName:"reference/api/model/group-metadata",slug:"/reference/api/model/group-metadata/",permalink:"/docs/reference/api/model/group-metadata/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/group-metadata/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Enumeration: SimpleListener",permalink:"/docs/reference/api/model/events/enumerations/SimpleListener"},next:{title:"Enumeration: GroupNotificationTypes",permalink:"/docs/reference/api/model/group-metadata/enumerations/GroupNotificationTypes"}},c={},s=[{value:"Index",id:"index",level:2},{value:"Enumerations",id:"enumerations",level:3},{value:"Interfaces",id:"interfaces",level:3}];function l(e){const n={a:"a",h1:"h1",h2:"h2",h3:"h3",li:"li",ul:"ul",...(0,t.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.h1,{id:"apimodelgroup-metadata",children:"api/model/group-metadata"}),"\n",(0,r.jsx)(n.h2,{id:"index",children:"Index"}),"\n",(0,r.jsx)(n.h3,{id:"enumerations",children:"Enumerations"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/enumerations/GroupNotificationTypes",children:"GroupNotificationTypes"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/enumerations/groupChangeEvent",children:"groupChangeEvent"})}),"\n"]}),"\n",(0,r.jsx)(n.h3,{id:"interfaces",children:"Interfaces"}),"\n",(0,r.jsxs)(n.ul,{children:["\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/GenericGroupChangeEvent",children:"GenericGroupChangeEvent"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/GroupMetadata",children:"GroupMetadata"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/NewCommunityGroup",children:"NewCommunityGroup"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/Participant",children:"Participant"})}),"\n",(0,r.jsx)(n.li,{children:(0,r.jsx)(n.a,{href:"/docs/reference/api/model/group-metadata/interfaces/ParticipantChangedEventModel",children:"ParticipantChangedEventModel"})}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,t.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(l,{...e})}):l(e)}},8453:(e,n,a)=>{a.d(n,{R:()=>o,x:()=>d});var r=a(6540);const t={},i=r.createContext(t);function o(e){const n=r.useContext(i);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function d(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:o(e.components),r.createElement(i.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6de276b4.77777957.js b/assets/js/6de276b4.77777957.js
new file mode 100644
index 0000000000..47d91c012b
--- /dev/null
+++ b/assets/js/6de276b4.77777957.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6521],{6363:(e,n,l)=>{l.r(n),l.d(n,{assets:()=>o,contentTitle:()=>c,default:()=>u,frontMatter:()=>a,metadata:()=>i,toc:()=>s});var t=l(4848),r=l(8453);const a={},c="api/model/call",i={id:"reference/api/model/call/index",title:"api/model/call",description:"Index",source:"@site/docs/reference/api/model/call/index.md",sourceDirName:"reference/api/model/call",slug:"/reference/api/model/call/",permalink:"/docs/reference/api/model/call/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/call/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: Section",permalink:"/docs/reference/api/model/button/interfaces/Section"},next:{title:"Enumeration: CallState",permalink:"/docs/reference/api/model/call/enumerations/CallState"}},o={},s=[{value:"Index",id:"index",level:2},{value:"Enumerations",id:"enumerations",level:3},{value:"Interfaces",id:"interfaces",level:3}];function d(e){const n={a:"a",h1:"h1",h2:"h2",h3:"h3",header:"header",li:"li",ul:"ul",...(0,r.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.header,{children:(0,t.jsx)(n.h1,{id:"apimodelcall",children:"api/model/call"})}),"\n",(0,t.jsx)(n.h2,{id:"index",children:"Index"}),"\n",(0,t.jsx)(n.h3,{id:"enumerations",children:"Enumerations"}),"\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsx)(n.li,{children:(0,t.jsx)(n.a,{href:"/docs/reference/api/model/call/enumerations/CallState",children:"CallState"})}),"\n"]}),"\n",(0,t.jsx)(n.h3,{id:"interfaces",children:"Interfaces"}),"\n",(0,t.jsxs)(n.ul,{children:["\n",(0,t.jsx)(n.li,{children:(0,t.jsx)(n.a,{href:"/docs/reference/api/model/call/interfaces/Call",children:"Call"})}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,r.R)(),...e.components};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,n,l)=>{l.d(n,{R:()=>c,x:()=>i});var t=l(6540);const r={},a=t.createContext(r);function c(e){const n=t.useContext(a);return t.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function i(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:c(e.components),t.createElement(a.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6de276b4.f2f5023f.js b/assets/js/6de276b4.f2f5023f.js
deleted file mode 100644
index a854147084..0000000000
--- a/assets/js/6de276b4.f2f5023f.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6521],{6363:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>o,contentTitle:()=>c,default:()=>u,frontMatter:()=>a,metadata:()=>i,toc:()=>s});var l=t(4848),r=t(8453);const a={},c="api/model/call",i={id:"reference/api/model/call/index",title:"api/model/call",description:"Index",source:"@site/docs/reference/api/model/call/index.md",sourceDirName:"reference/api/model/call",slug:"/reference/api/model/call/",permalink:"/docs/reference/api/model/call/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/call/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: Section",permalink:"/docs/reference/api/model/button/interfaces/Section"},next:{title:"Enumeration: CallState",permalink:"/docs/reference/api/model/call/enumerations/CallState"}},o={},s=[{value:"Index",id:"index",level:2},{value:"Enumerations",id:"enumerations",level:3},{value:"Interfaces",id:"interfaces",level:3}];function d(e){const n={a:"a",h1:"h1",h2:"h2",h3:"h3",li:"li",ul:"ul",...(0,r.R)(),...e.components};return(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)(n.h1,{id:"apimodelcall",children:"api/model/call"}),"\n",(0,l.jsx)(n.h2,{id:"index",children:"Index"}),"\n",(0,l.jsx)(n.h3,{id:"enumerations",children:"Enumerations"}),"\n",(0,l.jsxs)(n.ul,{children:["\n",(0,l.jsx)(n.li,{children:(0,l.jsx)(n.a,{href:"/docs/reference/api/model/call/enumerations/CallState",children:"CallState"})}),"\n"]}),"\n",(0,l.jsx)(n.h3,{id:"interfaces",children:"Interfaces"}),"\n",(0,l.jsxs)(n.ul,{children:["\n",(0,l.jsx)(n.li,{children:(0,l.jsx)(n.a,{href:"/docs/reference/api/model/call/interfaces/Call",children:"Call"})}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,r.R)(),...e.components};return n?(0,l.jsx)(n,{...e,children:(0,l.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>c,x:()=>i});var l=t(6540);const r={},a=l.createContext(r);function c(e){const n=l.useContext(a);return l.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function i(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:c(e.components),l.createElement(a.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6f5ae7fe.a07a81f6.js b/assets/js/6f5ae7fe.a07a81f6.js
new file mode 100644
index 0000000000..e2cb388a4b
--- /dev/null
+++ b/assets/js/6f5ae7fe.a07a81f6.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[998],{8642:(e,o,r)=>{r.r(o),r.d(o,{assets:()=>d,contentTitle:()=>a,default:()=>u,frontMatter:()=>s,metadata:()=>i,toc:()=>c});var t=r(4848),n=r(8453);const s={},a="Proxying your session",i={id:"how-to/use-a-proxy",title:"Proxying your session",description:"It is extremely simple to use a proxy with @open-wa. Once you have your proxy protocol, address, port, username and password you just need to set the [[proxyServerCredentials]] and @open-wa will connect your session via the proxy. For example, if your proxy details are:",source:"@site/docs/how-to/use-a-proxy.md",sourceDirName:"how-to",slug:"/how-to/use-a-proxy",permalink:"/docs/how-to/use-a-proxy",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/use-a-proxy.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"SendFile",permalink:"/docs/how-to/sendfile"},next:{title:"@open-wa/wa-automate v4.72.4",permalink:"/docs/reference/"}},d={},c=[];function p(e){const o={code:"code",h1:"h1",header:"header",p:"p",pre:"pre",...(0,n.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(o.header,{children:(0,t.jsx)(o.h1,{id:"proxying-your-session",children:"Proxying your session"})}),"\n",(0,t.jsx)(o.p,{children:"It is extremely simple to use a proxy with @open-wa. Once you have your proxy protocol, address, port, username and password you just need to set the [[proxyServerCredentials]] and @open-wa will connect your session via the proxy. For example, if your proxy details are:"}),"\n",(0,t.jsx)(o.pre,{children:(0,t.jsx)(o.code,{className:"language-text",children:"//this is dummy data\n\nprotocol: http\naddress: proxyaddress.abc\nport: 1234\nusername: open-wa\npassword: antidote\n"})}),"\n",(0,t.jsx)(o.p,{children:"then your config will look something like this:"}),"\n",(0,t.jsx)(o.pre,{children:(0,t.jsx)(o.code,{className:"language-javascript",children:"create({\n proxyServerCredentials: {\n address: 'http://proxyaddress.abc:1234',\n username: 'open-wa',\n password: 'antidote'\n }\n}).then(client => start(client));\n"})})]})}function u(e={}){const{wrapper:o}={...(0,n.R)(),...e.components};return o?(0,t.jsx)(o,{...e,children:(0,t.jsx)(p,{...e})}):p(e)}},8453:(e,o,r)=>{r.d(o,{R:()=>a,x:()=>i});var t=r(6540);const n={},s=t.createContext(n);function a(e){const o=t.useContext(s);return t.useMemo((function(){return"function"==typeof e?e(o):{...o,...e}}),[o,e])}function i(e){let o;return o=e.disableParentContext?"function"==typeof e.components?e.components(n):e.components||n:a(e.components),t.createElement(s.Provider,{value:o},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6f5ae7fe.d9e924b3.js b/assets/js/6f5ae7fe.d9e924b3.js
deleted file mode 100644
index 8a4e5743a7..0000000000
--- a/assets/js/6f5ae7fe.d9e924b3.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[998],{8642:(e,o,t)=>{t.r(o),t.d(o,{assets:()=>c,contentTitle:()=>a,default:()=>u,frontMatter:()=>s,metadata:()=>i,toc:()=>d});var n=t(4848),r=t(8453);const s={},a="Proxying your session",i={id:"how-to/use-a-proxy",title:"Proxying your session",description:"It is extremely simple to use a proxy with @open-wa. Once you have your proxy protocol, address, port, username and password you just need to set the [[proxyServerCredentials]] and @open-wa will connect your session via the proxy. For example, if your proxy details are:",source:"@site/docs/how-to/use-a-proxy.md",sourceDirName:"how-to",slug:"/how-to/use-a-proxy",permalink:"/docs/how-to/use-a-proxy",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/use-a-proxy.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"SendFile",permalink:"/docs/how-to/sendfile"},next:{title:"@open-wa/wa-automate v4.72.3",permalink:"/docs/reference/"}},c={},d=[];function p(e){const o={code:"code",h1:"h1",p:"p",pre:"pre",...(0,r.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(o.h1,{id:"proxying-your-session",children:"Proxying your session"}),"\n",(0,n.jsx)(o.p,{children:"It is extremely simple to use a proxy with @open-wa. Once you have your proxy protocol, address, port, username and password you just need to set the [[proxyServerCredentials]] and @open-wa will connect your session via the proxy. For example, if your proxy details are:"}),"\n",(0,n.jsx)(o.pre,{children:(0,n.jsx)(o.code,{className:"language-text",children:"//this is dummy data\n\nprotocol: http\naddress: proxyaddress.abc\nport: 1234\nusername: open-wa\npassword: antidote\n"})}),"\n",(0,n.jsx)(o.p,{children:"then your config will look something like this:"}),"\n",(0,n.jsx)(o.pre,{children:(0,n.jsx)(o.code,{className:"language-javascript",children:"create({\n proxyServerCredentials: {\n address: 'http://proxyaddress.abc:1234',\n username: 'open-wa',\n password: 'antidote'\n }\n}).then(client => start(client));\n"})})]})}function u(e={}){const{wrapper:o}={...(0,r.R)(),...e.components};return o?(0,n.jsx)(o,{...e,children:(0,n.jsx)(p,{...e})}):p(e)}},8453:(e,o,t)=>{t.d(o,{R:()=>a,x:()=>i});var n=t(6540);const r={},s=n.createContext(r);function a(e){const o=n.useContext(s);return n.useMemo((function(){return"function"==typeof e?e(o):{...o,...e}}),[o,e])}function i(e){let o;return o=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:a(e.components),n.createElement(s.Provider,{value:o},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6f941ca8.1395f5c1.js b/assets/js/6f941ca8.1395f5c1.js
new file mode 100644
index 0000000000..856c754c2c
--- /dev/null
+++ b/assets/js/6f941ca8.1395f5c1.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6155],{3135:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>l,contentTitle:()=>c,default:()=>h,frontMatter:()=>a,metadata:()=>s,toc:()=>r});var o=t(4848),i=t(8453);const a={},c="Location",s={id:"how-to/location",title:"Location",description:"Sending Location",source:"@site/docs/how-to/location.md",sourceDirName:"how-to",slug:"/how-to/location",permalink:"/docs/how-to/location",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/location.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Handle Incoming Call",permalink:"/docs/how-to/incoming-calls"},next:{title:"Manage Participants",permalink:"/docs/how-to/manage-participants"}},l={},r=[{value:"Sending Location",id:"sending-location",level:2},{value:"Receiving Location",id:"receiving-location",level:2},{value:"Listening to Live Locations",id:"listening-to-live-locations",level:2},{value:"Forcing Live Locations to Update",id:"forcing-live-locations-to-update",level:3}];function d(e){const n={code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",p:"p",pre:"pre",...(0,i.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(n.header,{children:(0,o.jsx)(n.h1,{id:"location",children:"Location"})}),"\n",(0,o.jsx)(n.h2,{id:"sending-location",children:"Sending Location"}),"\n",(0,o.jsx)(n.p,{children:"[[sendLocation]]"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:" client.sendLocation(chatId, latitude, longitude, 'London!')\n"})}),"\n",(0,o.jsx)(n.h2,{id:"receiving-location",children:"Receiving Location"}),"\n",(0,o.jsx)(n.p,{children:"Check the [[Message]] reference to learn how to extract the coordinates from a location message"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:' client.onMessage(message=> {\n if(message.type==="location") {\n //Using destructuring\n const {\n // The text associated with the location\n loc,\n //Latitude\n lat,\n //Longitude\n lng\n } = message\n }\n })\n'})}),"\n",(0,o.jsx)(n.h2,{id:"listening-to-live-locations",children:"Listening to Live Locations"}),"\n",(0,o.jsx)(n.p,{children:"[[onLiveLocation]] fires a [[LiveLocationChangedEvent]] event. [[onLiveLocation]] requires a chat id to listen to so you need to detect exactly when a chat starts sharing a live location with your host account. This example detects when a live location is started and then registers a new callback to listen to updates in that live location session."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:" const liveLocationCallback = currentLiveLocation => {\n console.log('Live location update', currentLiveLocation.id, currentLiveLocation.lat, currentLiveLocation.lng);\n }\n client.onMessage(message=> {\n //This is how to detect when someone has started a live location with you\n if(message.shareDuration){\n client.onLiveLocation(message.from, liveLocationCallback)\n }\n })\n\n"})}),"\n",(0,o.jsx)(n.h3,{id:"forcing-live-locations-to-update",children:"Forcing Live Locations to Update"}),"\n",(0,o.jsx)(n.p,{children:"The updates of live locations are very passive. If you require updates at regular intervals then you can force it using [[forceUpdateLiveLocation]]. It is recomended to keep an array of chat ids that have live location sessions and map through them at regular intervals"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:" await client.forceUpdateLiveLocation(chatId);\n\n //or force update live locations of multiple chats\n await Promise.all([\n 'chatId1',\n 'chatId2'\n ].map(client.forceUpdateLiveLocation));\n"})})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,o.jsx)(n,{...e,children:(0,o.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>c,x:()=>s});var o=t(6540);const i={},a=o.createContext(i);function c(e){const n=o.useContext(a);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function s(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:c(e.components),o.createElement(a.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/6f941ca8.df1e365a.js b/assets/js/6f941ca8.df1e365a.js
deleted file mode 100644
index c8338a4842..0000000000
--- a/assets/js/6f941ca8.df1e365a.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6155],{3135:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>l,contentTitle:()=>c,default:()=>h,frontMatter:()=>a,metadata:()=>s,toc:()=>r});var o=t(4848),i=t(8453);const a={},c="Location",s={id:"how-to/location",title:"Location",description:"Sending Location",source:"@site/docs/how-to/location.md",sourceDirName:"how-to",slug:"/how-to/location",permalink:"/docs/how-to/location",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/location.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Handle Incoming Call",permalink:"/docs/how-to/incoming-calls"},next:{title:"Manage Participants",permalink:"/docs/how-to/manage-participants"}},l={},r=[{value:"Sending Location",id:"sending-location",level:2},{value:"Receiving Location",id:"receiving-location",level:2},{value:"Listening to Live Locations",id:"listening-to-live-locations",level:2},{value:"Forcing Live Locations to Update",id:"forcing-live-locations-to-update",level:3}];function d(e){const n={code:"code",h1:"h1",h2:"h2",h3:"h3",p:"p",pre:"pre",...(0,i.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(n.h1,{id:"location",children:"Location"}),"\n",(0,o.jsx)(n.h2,{id:"sending-location",children:"Sending Location"}),"\n",(0,o.jsx)(n.p,{children:"[[sendLocation]]"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:" client.sendLocation(chatId, latitude, longitude, 'London!')\n"})}),"\n",(0,o.jsx)(n.h2,{id:"receiving-location",children:"Receiving Location"}),"\n",(0,o.jsx)(n.p,{children:"Check the [[Message]] reference to learn how to extract the coordinates from a location message"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:' client.onMessage(message=> {\n if(message.type==="location") {\n //Using destructuring\n const {\n // The text associated with the location\n loc,\n //Latitude\n lat,\n //Longitude\n lng\n } = message\n }\n })\n'})}),"\n",(0,o.jsx)(n.h2,{id:"listening-to-live-locations",children:"Listening to Live Locations"}),"\n",(0,o.jsx)(n.p,{children:"[[onLiveLocation]] fires a [[LiveLocationChangedEvent]] event. [[onLiveLocation]] requires a chat id to listen to so you need to detect exactly when a chat starts sharing a live location with your host account. This example detects when a live location is started and then registers a new callback to listen to updates in that live location session."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:" const liveLocationCallback = currentLiveLocation => {\n console.log('Live location update', currentLiveLocation.id, currentLiveLocation.lat, currentLiveLocation.lng);\n }\n client.onMessage(message=> {\n //This is how to detect when someone has started a live location with you\n if(message.shareDuration){\n client.onLiveLocation(message.from, liveLocationCallback)\n }\n })\n\n"})}),"\n",(0,o.jsx)(n.h3,{id:"forcing-live-locations-to-update",children:"Forcing Live Locations to Update"}),"\n",(0,o.jsx)(n.p,{children:"The updates of live locations are very passive. If you require updates at regular intervals then you can force it using [[forceUpdateLiveLocation]]. It is recomended to keep an array of chat ids that have live location sessions and map through them at regular intervals"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-javascript",children:" await client.forceUpdateLiveLocation(chatId);\n\n //or force update live locations of multiple chats\n await Promise.all([\n 'chatId1',\n 'chatId2'\n ].map(client.forceUpdateLiveLocation));\n"})})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,o.jsx)(n,{...e,children:(0,o.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>c,x:()=>s});var o=t(6540);const i={},a=o.createContext(i);function c(e){const n=o.useContext(a);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function s(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:c(e.components),o.createElement(a.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/70bd31a0.0e22edf3.js b/assets/js/70bd31a0.0e22edf3.js
deleted file mode 100644
index 73492bb58c..0000000000
--- a/assets/js/70bd31a0.0e22edf3.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[727],{5705:(e,s,n)=>{n.r(s),n.d(s,{assets:()=>t,contentTitle:()=>c,default:()=>a,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=n(4848),r=n(8453);const o={},c="Interface: BusinessProfile",l={id:"reference/api/model/contact/interfaces/BusinessProfile",title:"Interface: BusinessProfile",description:"Properties",source:"@site/docs/reference/api/model/contact/interfaces/BusinessProfile.md",sourceDirName:"reference/api/model/contact/interfaces",slug:"/reference/api/model/contact/interfaces/BusinessProfile",permalink:"/docs/reference/api/model/contact/interfaces/BusinessProfile",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/contact/interfaces/BusinessProfile.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: BusinessHours",permalink:"/docs/reference/api/model/contact/interfaces/BusinessHours"},next:{title:"Interface: Contact",permalink:"/docs/reference/api/model/contact/interfaces/Contact"}},t={},d=[{value:"Properties",id:"properties",level:2},{value:"address",id:"address",level:3},{value:"businessHours",id:"businesshours",level:3},{value:"catalogStatus",id:"catalogstatus",level:3},{value:"categories",id:"categories",level:3},{value:"coverPhoto",id:"coverphoto",level:3},{value:"id",id:"id",level:4},{value:"url",id:"url",level:4},{value:"description",id:"description",level:3},{value:"email",id:"email",level:3},{value:"fbPage",id:"fbpage",level:3},{value:"id",id:"id-1",level:3},{value:"igProfessional",id:"igprofessional",level:3},{value:"isProfileLinked",id:"isprofilelinked",level:3},{value:"latitude",id:"latitude",level:3},{value:"longitude",id:"longitude",level:3},{value:"profileOptions",id:"profileoptions",level:3},{value:"tag",id:"tag",level:3},{value:"website",id:"website",level:3}];function h(e){const s={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",h4:"h4",hr:"hr",p:"p",strong:"strong",...(0,r.R)(),...e.components};return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(s.h1,{id:"interface-businessprofile",children:"Interface: BusinessProfile"}),"\n",(0,i.jsx)(s.h2,{id:"properties",children:"Properties"}),"\n",(0,i.jsx)(s.h3,{id:"address",children:"address"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"address"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The address of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"businesshours",children:"businessHours"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"businessHours"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/contact/interfaces/BusinessHours",children:(0,i.jsx)(s.code,{children:"BusinessHours"})})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The operating hours of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"catalogstatus",children:"catalogStatus"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"catalogStatus"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The status of the business' catalog"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"categories",children:"categories"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"categories"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/contact/interfaces/BizCategory",children:(0,i.jsx)(s.code,{children:"BizCategory"})}),"[]"]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business' categories"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"coverphoto",children:"coverPhoto"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"coverPhoto"}),": ",(0,i.jsx)(s.code,{children:"object"})]}),"\n"]}),"\n",(0,i.jsx)(s.h4,{id:"id",children:"id"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"id"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The id of the cover photo"}),"\n",(0,i.jsx)(s.h4,{id:"url",children:"url"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"url"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The URL of the cover photo. It might download as an .enc but just change the extension to .jpg"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"description",children:"description"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"description"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business description"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"email",children:"email"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"email"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business' email address"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"fbpage",children:"fbPage"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"fbPage"}),": ",(0,i.jsx)(s.code,{children:"any"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The facebook page of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"id-1",children:"id"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"id"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/aliases/type-aliases/ContactId",children:(0,i.jsx)(s.code,{children:"ContactId"})})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The Contact ID of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"igprofessional",children:"igProfessional"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"igProfessional"}),": ",(0,i.jsx)(s.code,{children:"any"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The instagram profile of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"isprofilelinked",children:"isProfileLinked"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"isProfileLinked"}),": ",(0,i.jsx)(s.code,{children:"boolean"})]}),"\n"]}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"latitude",children:"latitude"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"latitude"}),": ",(0,i.jsx)(s.code,{children:"number"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The latitude of the business location if set"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"longitude",children:"longitude"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"longitude"}),": ",(0,i.jsx)(s.code,{children:"number"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The longitude of the business location if set"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"profileoptions",children:"profileOptions"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"profileOptions"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/contact/interfaces/BizProfileOptions",children:(0,i.jsx)(s.code,{children:"BizProfileOptions"})})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business' profile options"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"tag",children:"tag"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"tag"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"Some special string that identifies the business (?)"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"website",children:"website"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"website"}),": ",(0,i.jsx)(s.code,{children:"string"}),"[]"]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"Array of strings that represent the business' websites"})]})}function a(e={}){const{wrapper:s}={...(0,r.R)(),...e.components};return s?(0,i.jsx)(s,{...e,children:(0,i.jsx)(h,{...e})}):h(e)}},8453:(e,s,n)=>{n.d(s,{R:()=>c,x:()=>l});var i=n(6540);const r={},o=i.createContext(r);function c(e){const s=i.useContext(o);return i.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function l(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:c(e.components),i.createElement(o.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/70bd31a0.f04fd0d6.js b/assets/js/70bd31a0.f04fd0d6.js
new file mode 100644
index 0000000000..f560e2b157
--- /dev/null
+++ b/assets/js/70bd31a0.f04fd0d6.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[727],{5705:(e,s,n)=>{n.r(s),n.d(s,{assets:()=>t,contentTitle:()=>c,default:()=>a,frontMatter:()=>o,metadata:()=>l,toc:()=>d});var i=n(4848),r=n(8453);const o={},c="Interface: BusinessProfile",l={id:"reference/api/model/contact/interfaces/BusinessProfile",title:"Interface: BusinessProfile",description:"Properties",source:"@site/docs/reference/api/model/contact/interfaces/BusinessProfile.md",sourceDirName:"reference/api/model/contact/interfaces",slug:"/reference/api/model/contact/interfaces/BusinessProfile",permalink:"/docs/reference/api/model/contact/interfaces/BusinessProfile",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/contact/interfaces/BusinessProfile.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: BusinessHours",permalink:"/docs/reference/api/model/contact/interfaces/BusinessHours"},next:{title:"Interface: Contact",permalink:"/docs/reference/api/model/contact/interfaces/Contact"}},t={},d=[{value:"Properties",id:"properties",level:2},{value:"address",id:"address",level:3},{value:"businessHours",id:"businesshours",level:3},{value:"catalogStatus",id:"catalogstatus",level:3},{value:"categories",id:"categories",level:3},{value:"coverPhoto",id:"coverphoto",level:3},{value:"id",id:"id",level:4},{value:"url",id:"url",level:4},{value:"description",id:"description",level:3},{value:"email",id:"email",level:3},{value:"fbPage",id:"fbpage",level:3},{value:"id",id:"id-1",level:3},{value:"igProfessional",id:"igprofessional",level:3},{value:"isProfileLinked",id:"isprofilelinked",level:3},{value:"latitude",id:"latitude",level:3},{value:"longitude",id:"longitude",level:3},{value:"profileOptions",id:"profileoptions",level:3},{value:"tag",id:"tag",level:3},{value:"website",id:"website",level:3}];function h(e){const s={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",h4:"h4",header:"header",hr:"hr",p:"p",strong:"strong",...(0,r.R)(),...e.components};return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(s.header,{children:(0,i.jsx)(s.h1,{id:"interface-businessprofile",children:"Interface: BusinessProfile"})}),"\n",(0,i.jsx)(s.h2,{id:"properties",children:"Properties"}),"\n",(0,i.jsx)(s.h3,{id:"address",children:"address"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"address"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The address of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"businesshours",children:"businessHours"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"businessHours"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/contact/interfaces/BusinessHours",children:(0,i.jsx)(s.code,{children:"BusinessHours"})})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The operating hours of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"catalogstatus",children:"catalogStatus"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"catalogStatus"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The status of the business' catalog"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"categories",children:"categories"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"categories"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/contact/interfaces/BizCategory",children:(0,i.jsx)(s.code,{children:"BizCategory"})}),"[]"]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business' categories"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"coverphoto",children:"coverPhoto"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"coverPhoto"}),": ",(0,i.jsx)(s.code,{children:"object"})]}),"\n"]}),"\n",(0,i.jsx)(s.h4,{id:"id",children:"id"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"id"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The id of the cover photo"}),"\n",(0,i.jsx)(s.h4,{id:"url",children:"url"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"url"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The URL of the cover photo. It might download as an .enc but just change the extension to .jpg"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"description",children:"description"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"description"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business description"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"email",children:"email"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"email"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business' email address"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"fbpage",children:"fbPage"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"fbPage"}),": ",(0,i.jsx)(s.code,{children:"any"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The facebook page of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"id-1",children:"id"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"id"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/aliases/type-aliases/ContactId",children:(0,i.jsx)(s.code,{children:"ContactId"})})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The Contact ID of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"igprofessional",children:"igProfessional"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"igProfessional"}),": ",(0,i.jsx)(s.code,{children:"any"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The instagram profile of the business"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"isprofilelinked",children:"isProfileLinked"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"isProfileLinked"}),": ",(0,i.jsx)(s.code,{children:"boolean"})]}),"\n"]}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"latitude",children:"latitude"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"latitude"}),": ",(0,i.jsx)(s.code,{children:"number"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The latitude of the business location if set"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"longitude",children:"longitude"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"longitude"}),": ",(0,i.jsx)(s.code,{children:"number"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The longitude of the business location if set"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"profileoptions",children:"profileOptions"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"profileOptions"}),": ",(0,i.jsx)(s.a,{href:"/docs/reference/api/model/contact/interfaces/BizProfileOptions",children:(0,i.jsx)(s.code,{children:"BizProfileOptions"})})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"The business' profile options"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"tag",children:"tag"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"tag"}),": ",(0,i.jsx)(s.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"Some special string that identifies the business (?)"}),"\n",(0,i.jsx)(s.hr,{}),"\n",(0,i.jsx)(s.h3,{id:"website",children:"website"}),"\n",(0,i.jsxs)(s.blockquote,{children:["\n",(0,i.jsxs)(s.p,{children:[(0,i.jsx)(s.strong,{children:"website"}),": ",(0,i.jsx)(s.code,{children:"string"}),"[]"]}),"\n"]}),"\n",(0,i.jsx)(s.p,{children:"Array of strings that represent the business' websites"})]})}function a(e={}){const{wrapper:s}={...(0,r.R)(),...e.components};return s?(0,i.jsx)(s,{...e,children:(0,i.jsx)(h,{...e})}):h(e)}},8453:(e,s,n)=>{n.d(s,{R:()=>c,x:()=>l});var i=n(6540);const r={},o=i.createContext(r);function c(e){const s=i.useContext(o);return i.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function l(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:c(e.components),i.createElement(o.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/71e949d7.446769d4.js b/assets/js/71e949d7.446769d4.js
deleted file mode 100644
index 5e9bd00591..0000000000
--- a/assets/js/71e949d7.446769d4.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1623],{830:(e,n,s)=>{s.r(n),s.d(n,{assets:()=>l,contentTitle:()=>c,default:()=>v,frontMatter:()=>o,metadata:()=>a,toc:()=>i});var t=s(4848),r=s(8453);const o={},c="Variable: ev",a={id:"reference/controllers/events/variables/ev",title:"Variable: ev",description:"const ev: EventEmitter2",source:"@site/docs/reference/controllers/events/variables/ev.md",sourceDirName:"reference/controllers/events/variables",slug:"/reference/controllers/events/variables/ev",permalink:"/docs/reference/controllers/events/variables/ev",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/controllers/events/variables/ev.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"controllers/events",permalink:"/docs/reference/controllers/events/"},next:{title:"controllers/init\\_patch",permalink:"/docs/reference/controllers/init_patch/"}},l={},i=[];function d(e){const n={blockquote:"blockquote",code:"code",h1:"h1",p:"p",pre:"pre",strong:"strong",...(0,r.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.h1,{id:"variable-ev",children:"Variable: ev"}),"\n",(0,t.jsxs)(n.blockquote,{children:["\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.code,{children:"const"})," ",(0,t.jsx)(n.strong,{children:"ev"}),": ",(0,t.jsx)(n.code,{children:"EventEmitter2"})]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"This is the library's event emitter. Use this to listen to internal events of the library like so:"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('event', callback)\n"})}),"\n",(0,t.jsx)(n.p,{children:"The event you want to listen to is in the format of [namespace].[sessionId]"}),"\n",(0,t.jsx)(n.p,{children:"The event can include wildcards."}),"\n",(0,t.jsxs)(n.p,{children:["For example, to listen to all qr code events, the event will be ",(0,t.jsx)(n.code,{children:"qr.**"}),". e.g:"]}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('qr.**',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"Listen to all sessionData events"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('sessionData.**',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"Listen to all events from session1"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('**.session1',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"Listen to all events"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('**.**',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"ev always emits data, sessionId and the namespace which is helpful to know if there are multiple sessions or you're listening to events from all namespaces"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('**.**', (data, sessionId, namespace) => {\n\n console.log(`${namespace} event detected for session ${sessionId}`, data)\n\n});\n"})})]})}function v(e={}){const{wrapper:n}={...(0,r.R)(),...e.components};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,n,s)=>{s.d(n,{R:()=>c,x:()=>a});var t=s(6540);const r={},o=t.createContext(r);function c(e){const n=t.useContext(o);return t.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function a(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:c(e.components),t.createElement(o.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/71e949d7.c6634281.js b/assets/js/71e949d7.c6634281.js
new file mode 100644
index 0000000000..4cb50f5398
--- /dev/null
+++ b/assets/js/71e949d7.c6634281.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1623],{830:(e,n,s)=>{s.r(n),s.d(n,{assets:()=>l,contentTitle:()=>a,default:()=>v,frontMatter:()=>o,metadata:()=>c,toc:()=>i});var t=s(4848),r=s(8453);const o={},a="Variable: ev",c={id:"reference/controllers/events/variables/ev",title:"Variable: ev",description:"const ev: EventEmitter2",source:"@site/docs/reference/controllers/events/variables/ev.md",sourceDirName:"reference/controllers/events/variables",slug:"/reference/controllers/events/variables/ev",permalink:"/docs/reference/controllers/events/variables/ev",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/controllers/events/variables/ev.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"controllers/events",permalink:"/docs/reference/controllers/events/"},next:{title:"controllers/init\\_patch",permalink:"/docs/reference/controllers/init_patch/"}},l={},i=[];function d(e){const n={blockquote:"blockquote",code:"code",h1:"h1",header:"header",p:"p",pre:"pre",strong:"strong",...(0,r.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.header,{children:(0,t.jsx)(n.h1,{id:"variable-ev",children:"Variable: ev"})}),"\n",(0,t.jsxs)(n.blockquote,{children:["\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.code,{children:"const"})," ",(0,t.jsx)(n.strong,{children:"ev"}),": ",(0,t.jsx)(n.code,{children:"EventEmitter2"})]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"This is the library's event emitter. Use this to listen to internal events of the library like so:"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('event', callback)\n"})}),"\n",(0,t.jsx)(n.p,{children:"The event you want to listen to is in the format of [namespace].[sessionId]"}),"\n",(0,t.jsx)(n.p,{children:"The event can include wildcards."}),"\n",(0,t.jsxs)(n.p,{children:["For example, to listen to all qr code events, the event will be ",(0,t.jsx)(n.code,{children:"qr.**"}),". e.g:"]}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('qr.**',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"Listen to all sessionData events"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('sessionData.**',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"Listen to all events from session1"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('**.session1',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"Listen to all events"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('**.**',...\n"})}),"\n",(0,t.jsx)(n.p,{children:"ev always emits data, sessionId and the namespace which is helpful to know if there are multiple sessions or you're listening to events from all namespaces"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"ev.on('**.**', (data, sessionId, namespace) => {\n\n console.log(`${namespace} event detected for session ${sessionId}`, data)\n\n});\n"})})]})}function v(e={}){const{wrapper:n}={...(0,r.R)(),...e.components};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,n,s)=>{s.d(n,{R:()=>a,x:()=>c});var t=s(6540);const r={},o=t.createContext(r);function a(e){const n=t.useContext(o);return t.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function c(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:a(e.components),t.createElement(o.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/72bcfeeb.4df11037.js b/assets/js/72bcfeeb.4df11037.js
deleted file mode 100644
index b4e053c4db..0000000000
--- a/assets/js/72bcfeeb.4df11037.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[3795],{6506:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>a,contentTitle:()=>c,default:()=>u,frontMatter:()=>s,metadata:()=>o,toc:()=>l});var r=t(4848),i=t(8453);const s={},c="Function: create()",o={id:"reference/controllers/initializer/functions/create",title:"Function: create()",description:"create(config): Promise\\",source:"@site/docs/reference/controllers/initializer/functions/create.md",sourceDirName:"reference/controllers/initializer/functions",slug:"/reference/controllers/initializer/functions/create",permalink:"/docs/reference/controllers/initializer/functions/create",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/controllers/initializer/functions/create.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"controllers/initializer",permalink:"/docs/reference/controllers/initializer/"},next:{title:"Function: timeout()",permalink:"/docs/reference/controllers/initializer/functions/timeout"}},a={},l=[{value:"Parameters",id:"parameters",level:2},{value:"Returns",id:"returns",level:2}];function d(e){const n={a:"a",blockquote:"blockquote",code:"code",em:"em",h1:"h1",h2:"h2",p:"p",pre:"pre",strong:"strong",...(0,i.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.h1,{id:"function-create",children:"Function: create()"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"create"}),"(",(0,r.jsx)(n.code,{children:"config"}),"): ",(0,r.jsx)(n.code,{children:"Promise"}),"<",(0,r.jsx)(n.a,{href:"/docs/reference/api/Client/classes/Client",children:(0,r.jsx)(n.code,{children:"Client"})}),">"]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"Used to initialize the client session."}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.em,{children:"Note"})," It is required to set all config variables as ",(0,r.jsx)(n.a,{href:"https://open-wa.github.io/wa-automate-nodejs/interfaces/configobject.html",children:"ConfigObject"})," that includes both ",(0,r.jsx)(n.a,{href:"https://open-wa.github.io/wa-automate-nodejs/interfaces/configobject.html#sessionId",children:"sessionId"}),". Setting the session id as the first variable is no longer valid"]}),"\n",(0,r.jsx)(n.p,{children:"e.g"}),"\n",(0,r.jsx)(n.pre,{children:(0,r.jsx)(n.code,{className:"language-javascript",children:"create({\nsessionId: 'main',\ncustomUserAgent: ' 'WhatsApp/2.16.352 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15',\nblockCrashLogs true,\n...\n})....\n"})}),"\n",(0,r.jsx)(n.h2,{id:"parameters",children:"Parameters"}),"\n",(0,r.jsxs)(n.p,{children:["\u2022 ",(0,r.jsx)(n.strong,{children:"config"}),": ",(0,r.jsx)(n.a,{href:"/docs/reference/api/model/config/interfaces/ConfigObject",children:(0,r.jsx)(n.code,{children:"ConfigObject"})})," | ",(0,r.jsx)(n.a,{href:"/docs/reference/api/model/config/type-aliases/AdvancedConfig",children:(0,r.jsx)(n.code,{children:"AdvancedConfig"})})," = ",(0,r.jsx)(n.code,{children:"{}"})]}),"\n",(0,r.jsx)(n.p,{children:"AdvancedConfig The extended custom configuration"}),"\n",(0,r.jsx)(n.h2,{id:"returns",children:"Returns"}),"\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"Promise"}),"<",(0,r.jsx)(n.a,{href:"/docs/reference/api/Client/classes/Client",children:(0,r.jsx)(n.code,{children:"Client"})}),">"]})]})}function u(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>c,x:()=>o});var r=t(6540);const i={},s=r.createContext(i);function c(e){const n=r.useContext(s);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function o(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:c(e.components),r.createElement(s.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/72bcfeeb.cabe5abe.js b/assets/js/72bcfeeb.cabe5abe.js
new file mode 100644
index 0000000000..777179205e
--- /dev/null
+++ b/assets/js/72bcfeeb.cabe5abe.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[3795],{6506:(e,n,r)=>{r.r(n),r.d(n,{assets:()=>a,contentTitle:()=>c,default:()=>h,frontMatter:()=>s,metadata:()=>o,toc:()=>l});var t=r(4848),i=r(8453);const s={},c="Function: create()",o={id:"reference/controllers/initializer/functions/create",title:"Function: create()",description:"create(config): Promise\\",source:"@site/docs/reference/controllers/initializer/functions/create.md",sourceDirName:"reference/controllers/initializer/functions",slug:"/reference/controllers/initializer/functions/create",permalink:"/docs/reference/controllers/initializer/functions/create",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/controllers/initializer/functions/create.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"controllers/initializer",permalink:"/docs/reference/controllers/initializer/"},next:{title:"Function: timeout()",permalink:"/docs/reference/controllers/initializer/functions/timeout"}},a={},l=[{value:"Parameters",id:"parameters",level:2},{value:"Returns",id:"returns",level:2}];function d(e){const n={a:"a",blockquote:"blockquote",code:"code",em:"em",h1:"h1",h2:"h2",header:"header",p:"p",pre:"pre",strong:"strong",...(0,i.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.header,{children:(0,t.jsx)(n.h1,{id:"function-create",children:"Function: create()"})}),"\n",(0,t.jsxs)(n.blockquote,{children:["\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.strong,{children:"create"}),"(",(0,t.jsx)(n.code,{children:"config"}),"): ",(0,t.jsx)(n.code,{children:"Promise"}),"<",(0,t.jsx)(n.a,{href:"/docs/reference/api/Client/classes/Client",children:(0,t.jsx)(n.code,{children:"Client"})}),">"]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"Used to initialize the client session."}),"\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.em,{children:"Note"})," It is required to set all config variables as ",(0,t.jsx)(n.a,{href:"https://open-wa.github.io/wa-automate-nodejs/interfaces/configobject.html",children:"ConfigObject"})," that includes both ",(0,t.jsx)(n.a,{href:"https://open-wa.github.io/wa-automate-nodejs/interfaces/configobject.html#sessionId",children:"sessionId"}),". Setting the session id as the first variable is no longer valid"]}),"\n",(0,t.jsx)(n.p,{children:"e.g"}),"\n",(0,t.jsx)(n.pre,{children:(0,t.jsx)(n.code,{className:"language-javascript",children:"create({\nsessionId: 'main',\ncustomUserAgent: ' 'WhatsApp/2.16.352 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15',\nblockCrashLogs true,\n...\n})....\n"})}),"\n",(0,t.jsx)(n.h2,{id:"parameters",children:"Parameters"}),"\n",(0,t.jsxs)(n.p,{children:["\u2022 ",(0,t.jsx)(n.strong,{children:"config"}),": ",(0,t.jsx)(n.a,{href:"/docs/reference/api/model/config/interfaces/ConfigObject",children:(0,t.jsx)(n.code,{children:"ConfigObject"})})," | ",(0,t.jsx)(n.a,{href:"/docs/reference/api/model/config/type-aliases/AdvancedConfig",children:(0,t.jsx)(n.code,{children:"AdvancedConfig"})})," = ",(0,t.jsx)(n.code,{children:"{}"})]}),"\n",(0,t.jsx)(n.p,{children:"AdvancedConfig The extended custom configuration"}),"\n",(0,t.jsx)(n.h2,{id:"returns",children:"Returns"}),"\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.code,{children:"Promise"}),"<",(0,t.jsx)(n.a,{href:"/docs/reference/api/Client/classes/Client",children:(0,t.jsx)(n.code,{children:"Client"})}),">"]})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,n,r)=>{r.d(n,{R:()=>c,x:()=>o});var t=r(6540);const i={},s=t.createContext(i);function c(e){const n=t.useContext(s);return t.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function o(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:c(e.components),t.createElement(s.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/73664a40.9cfceefb.js b/assets/js/73664a40.9cfceefb.js
new file mode 100644
index 0000000000..025fa8a9d0
--- /dev/null
+++ b/assets/js/73664a40.9cfceefb.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1972],{9581:(e,s,i)=>{i.r(s),i.d(s,{assets:()=>l,contentTitle:()=>u,default:()=>a,frontMatter:()=>n,metadata:()=>r,toc:()=>m});var t=i(4848),o=i(8453);const n={slug:"long-blog-post",title:"Long Blog Post",authors:"endi",tags:["hello","docusaurus"]},u=void 0,r={permalink:"/blog/long-blog-post",editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/blog/2019-05-29-long-blog-post.md",source:"@site/blog/2019-05-29-long-blog-post.md",title:"Long Blog Post",description:"This is the summary of a very long blog post,",date:"2019-05-29T00:00:00.000Z",tags:[{inline:!1,label:"Hello",permalink:"/blog/tags/hello",description:"Hello tag description"},{inline:!1,label:"Docusaurus",permalink:"/blog/tags/docusaurus",description:"Docusaurus tag description"}],readingTime:2.05,hasTruncateMarker:!0,authors:[{name:"Endilie Yacop Sucipto",title:"Maintainer of Docusaurus",url:"https://github.com/endiliey",imageURL:"https://github.com/endiliey.png",key:"endi",page:null}],frontMatter:{slug:"long-blog-post",title:"Long Blog Post",authors:"endi",tags:["hello","docusaurus"]},unlisted:!1,prevItem:{title:"MDX Blog Post",permalink:"/blog/mdx-blog-post"},nextItem:{title:"First Blog Post",permalink:"/blog/first-blog-post"}},l={authorsImageUrls:[void 0]},m=[];function c(e){const s={code:"code",p:"p",...(0,o.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(s.p,{children:"This is the summary of a very long blog post,"}),"\n",(0,t.jsxs)(s.p,{children:["Use a ",(0,t.jsx)(s.code,{children:"\x3c!--"})," ",(0,t.jsx)(s.code,{children:"truncate"})," ",(0,t.jsx)(s.code,{children:"--\x3e"})," comment to limit blog post size in the list view."]}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"})]})}function a(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,t.jsx)(s,{...e,children:(0,t.jsx)(c,{...e})}):c(e)}},8453:(e,s,i)=>{i.d(s,{R:()=>u,x:()=>r});var t=i(6540);const o={},n=t.createContext(o);function u(e){const s=t.useContext(n);return t.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function r(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:u(e.components),t.createElement(n.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/73664a40.cd7a7421.js b/assets/js/73664a40.cd7a7421.js
deleted file mode 100644
index 55a700e423..0000000000
--- a/assets/js/73664a40.cd7a7421.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1972],{9581:(e,s,i)=>{i.r(s),i.d(s,{assets:()=>l,contentTitle:()=>u,default:()=>a,frontMatter:()=>n,metadata:()=>r,toc:()=>m});var t=i(4848),o=i(8453);const n={slug:"long-blog-post",title:"Long Blog Post",authors:"endi",tags:["hello","docusaurus"]},u=void 0,r={permalink:"/blog/long-blog-post",editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/blog/2019-05-29-long-blog-post.md",source:"@site/blog/2019-05-29-long-blog-post.md",title:"Long Blog Post",description:"This is the summary of a very long blog post,",date:"2019-05-29T00:00:00.000Z",tags:[{inline:!1,label:"Hello",permalink:"/blog/tags/hello",description:"Hello tag description"},{inline:!1,label:"Docusaurus",permalink:"/blog/tags/docusaurus",description:"Docusaurus tag description"}],readingTime:2.05,hasTruncateMarker:!0,authors:[{name:"Endilie Yacop Sucipto",title:"Maintainer of Docusaurus",url:"https://github.com/endiliey",imageURL:"https://github.com/endiliey.png",key:"endi"}],frontMatter:{slug:"long-blog-post",title:"Long Blog Post",authors:"endi",tags:["hello","docusaurus"]},unlisted:!1,prevItem:{title:"MDX Blog Post",permalink:"/blog/mdx-blog-post"},nextItem:{title:"First Blog Post",permalink:"/blog/first-blog-post"}},l={authorsImageUrls:[void 0]},m=[];function c(e){const s={code:"code",p:"p",...(0,o.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(s.p,{children:"This is the summary of a very long blog post,"}),"\n",(0,t.jsxs)(s.p,{children:["Use a ",(0,t.jsx)(s.code,{children:"\x3c!--"})," ",(0,t.jsx)(s.code,{children:"truncate"})," ",(0,t.jsx)(s.code,{children:"--\x3e"})," comment to limit blog post size in the list view."]}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"}),"\n",(0,t.jsx)(s.p,{children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque elementum dignissim ultricies. Fusce rhoncus ipsum tempor eros aliquam consequat. Lorem ipsum dolor sit amet"})]})}function a(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,t.jsx)(s,{...e,children:(0,t.jsx)(c,{...e})}):c(e)}},8453:(e,s,i)=>{i.d(s,{R:()=>u,x:()=>r});var t=i(6540);const o={},n=t.createContext(o);function u(e){const s=t.useContext(n);return t.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function r(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:u(e.components),t.createElement(n.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/73c627ad.610d16b0.js b/assets/js/73c627ad.610d16b0.js
new file mode 100644
index 0000000000..882be02040
--- /dev/null
+++ b/assets/js/73c627ad.610d16b0.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[5972],{4933:(e,r,n)=>{n.r(r),n.d(r,{assets:()=>d,contentTitle:()=>o,default:()=>u,frontMatter:()=>s,metadata:()=>i,toc:()=>a});var t=n(4848),c=n(8453);const s={},o="Interface: CustomProduct",i={id:"reference/api/model/product/interfaces/CustomProduct",title:"Interface: CustomProduct",description:"Properties",source:"@site/docs/reference/api/model/product/interfaces/CustomProduct.md",sourceDirName:"reference/api/model/product/interfaces",slug:"/reference/api/model/product/interfaces/CustomProduct",permalink:"/docs/reference/api/model/product/interfaces/CustomProduct",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/product/interfaces/CustomProduct.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: CartItem",permalink:"/docs/reference/api/model/product/interfaces/CartItem"},next:{title:"Interface: Order",permalink:"/docs/reference/api/model/product/interfaces/Order"}},d={},a=[{value:"Properties",id:"properties",level:2},{value:"currency",id:"currency",level:3},{value:"description",id:"description",level:3},{value:"name",id:"name",level:3},{value:"priceAmount1000",id:"priceamount1000",level:3},{value:"url?",id:"url",level:3}];function l(e){const r={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",p:"p",strong:"strong",...(0,c.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(r.header,{children:(0,t.jsx)(r.h1,{id:"interface-customproduct",children:"Interface: CustomProduct"})}),"\n",(0,t.jsx)(r.h2,{id:"properties",children:"Properties"}),"\n",(0,t.jsx)(r.h3,{id:"currency",children:"currency"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"currency"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["The ",(0,t.jsx)(r.a,{href:"https://en.wikipedia.org/wiki/ISO_4217",children:(0,t.jsx)(r.strong,{children:"ISO 4217"})})," 3 letter currency code. E.g (Swedish krona)\n",(0,t.jsx)(r.code,{children:"SEK"})]}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"description",children:"description"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"description"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsx)(r.p,{children:"The description of the product. This shows right under the price so it is useful for subscriptions/rentals. E.g:"}),"\n",(0,t.jsx)(r.p,{children:(0,t.jsx)(r.code,{children:"(per day)\\n\\nCome and have a fantastic sailing adventure aboard our boat. \\nShe is a Bavaria 35 sports cruiser and is powered by 2 economical Volvo D6\u2019s with Bravo 2 outdrives as well as a bow thruster. This Makes maneuvering very easy. She can accommodate up to 8 people for day charters and for overnight charters she can accommodate 4 in comfort in 2 cabins."})}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"name",children:"name"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"name"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["The main title of the product. E.g:\n",(0,t.jsx)(r.code,{children:"BAVARIA \u2014 35 SPORTS CRUISER (2006)"})]}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"priceamount1000",children:"priceAmount1000"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"priceAmount1000"}),": ",(0,t.jsx)(r.code,{children:"number"})]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["The price amount multiplied by 1000. For example, for something costing ",(0,t.jsx)(r.code,{children:"825"})," units of currency:\n",(0,t.jsx)(r.code,{children:"825000"})]}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"url",children:"url?"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.code,{children:"optional"})," ",(0,t.jsx)(r.strong,{children:"url"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsx)(r.p,{children:"The URL of the product."}),"\n",(0,t.jsx)(r.p,{children:"NOTE: At the moment, the URL DOES NOT WORK. It shows up for the recipient but they will not be able to click it. As a rememdy, it is added as a reply to the product message."})]})}function u(e={}){const{wrapper:r}={...(0,c.R)(),...e.components};return r?(0,t.jsx)(r,{...e,children:(0,t.jsx)(l,{...e})}):l(e)}},8453:(e,r,n)=>{n.d(r,{R:()=>o,x:()=>i});var t=n(6540);const c={},s=t.createContext(c);function o(e){const r=t.useContext(s);return t.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function i(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(c):e.components||c:o(e.components),t.createElement(s.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/73c627ad.f33f76ec.js b/assets/js/73c627ad.f33f76ec.js
deleted file mode 100644
index ef329166c5..0000000000
--- a/assets/js/73c627ad.f33f76ec.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[5972],{4933:(e,r,n)=>{n.r(r),n.d(r,{assets:()=>d,contentTitle:()=>o,default:()=>u,frontMatter:()=>s,metadata:()=>i,toc:()=>a});var t=n(4848),c=n(8453);const s={},o="Interface: CustomProduct",i={id:"reference/api/model/product/interfaces/CustomProduct",title:"Interface: CustomProduct",description:"Properties",source:"@site/docs/reference/api/model/product/interfaces/CustomProduct.md",sourceDirName:"reference/api/model/product/interfaces",slug:"/reference/api/model/product/interfaces/CustomProduct",permalink:"/docs/reference/api/model/product/interfaces/CustomProduct",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/product/interfaces/CustomProduct.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: CartItem",permalink:"/docs/reference/api/model/product/interfaces/CartItem"},next:{title:"Interface: Order",permalink:"/docs/reference/api/model/product/interfaces/Order"}},d={},a=[{value:"Properties",id:"properties",level:2},{value:"currency",id:"currency",level:3},{value:"description",id:"description",level:3},{value:"name",id:"name",level:3},{value:"priceAmount1000",id:"priceamount1000",level:3},{value:"url?",id:"url",level:3}];function l(e){const r={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",hr:"hr",p:"p",strong:"strong",...(0,c.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(r.h1,{id:"interface-customproduct",children:"Interface: CustomProduct"}),"\n",(0,t.jsx)(r.h2,{id:"properties",children:"Properties"}),"\n",(0,t.jsx)(r.h3,{id:"currency",children:"currency"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"currency"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["The ",(0,t.jsx)(r.a,{href:"https://en.wikipedia.org/wiki/ISO_4217",children:(0,t.jsx)(r.strong,{children:"ISO 4217"})})," 3 letter currency code. E.g (Swedish krona)\n",(0,t.jsx)(r.code,{children:"SEK"})]}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"description",children:"description"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"description"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsx)(r.p,{children:"The description of the product. This shows right under the price so it is useful for subscriptions/rentals. E.g:"}),"\n",(0,t.jsx)(r.p,{children:(0,t.jsx)(r.code,{children:"(per day)\\n\\nCome and have a fantastic sailing adventure aboard our boat. \\nShe is a Bavaria 35 sports cruiser and is powered by 2 economical Volvo D6\u2019s with Bravo 2 outdrives as well as a bow thruster. This Makes maneuvering very easy. She can accommodate up to 8 people for day charters and for overnight charters she can accommodate 4 in comfort in 2 cabins."})}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"name",children:"name"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"name"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["The main title of the product. E.g:\n",(0,t.jsx)(r.code,{children:"BAVARIA \u2014 35 SPORTS CRUISER (2006)"})]}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"priceamount1000",children:"priceAmount1000"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"priceAmount1000"}),": ",(0,t.jsx)(r.code,{children:"number"})]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["The price amount multiplied by 1000. For example, for something costing ",(0,t.jsx)(r.code,{children:"825"})," units of currency:\n",(0,t.jsx)(r.code,{children:"825000"})]}),"\n",(0,t.jsx)(r.hr,{}),"\n",(0,t.jsx)(r.h3,{id:"url",children:"url?"}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.code,{children:"optional"})," ",(0,t.jsx)(r.strong,{children:"url"}),": ",(0,t.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsx)(r.p,{children:"The URL of the product."}),"\n",(0,t.jsx)(r.p,{children:"NOTE: At the moment, the URL DOES NOT WORK. It shows up for the recipient but they will not be able to click it. As a rememdy, it is added as a reply to the product message."})]})}function u(e={}){const{wrapper:r}={...(0,c.R)(),...e.components};return r?(0,t.jsx)(r,{...e,children:(0,t.jsx)(l,{...e})}):l(e)}},8453:(e,r,n)=>{n.d(r,{R:()=>o,x:()=>i});var t=n(6540);const c={},s=t.createContext(c);function o(e){const r=t.useContext(s);return t.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function i(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(c):e.components||c:o(e.components),t.createElement(s.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/73d41d19.da269f44.js b/assets/js/73d41d19.da269f44.js
new file mode 100644
index 0000000000..792167c9a8
--- /dev/null
+++ b/assets/js/73d41d19.da269f44.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[5352],{2970:(e,r,s)=>{s.r(r),s.d(r,{assets:()=>o,contentTitle:()=>l,default:()=>h,frontMatter:()=>a,metadata:()=>d,toc:()=>c});var n=s(4848),i=s(8453);const a={},l="api/model",d={id:"reference/api/model/index",title:"api/model",description:"Index",source:"@site/docs/reference/api/model/index.md",sourceDirName:"reference/api/model",slug:"/reference/api/model/",permalink:"/docs/reference/api/model/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Enumeration: ExposedFn",permalink:"/docs/reference/api/functions/exposed.enum/enumerations/ExposedFn"},next:{title:"api/model/aliases",permalink:"/docs/reference/api/model/aliases/"}},o={},c=[{value:"Index",id:"index",level:2},{value:"Enumerations",id:"enumerations",level:3},{value:"Type Aliases",id:"type-aliases",level:3},{value:"References",id:"references",level:2},{value:"AccountNumber",id:"accountnumber",level:3},{value:"AddParticipantError",id:"addparticipanterror",level:3},{value:"AddParticipantErrorStatusCode",id:"addparticipanterrorstatuscode",level:3},{value:"AdvancedConfig",id:"advancedconfig",level:3},{value:"AdvancedFile",id:"advancedfile",level:3},{value:"Base64",id:"base64",level:3},{value:"BaseChat",id:"basechat",level:3},{value:"BizCategory",id:"bizcategory",level:3},{value:"BizProfileOptions",id:"bizprofileoptions",level:3},{value:"BusinessHours",id:"businesshours",level:3},{value:"BusinessProfile",id:"businessprofile",level:3},{value:"CLOUD_PROVIDERS",id:"cloud_providers",level:3},{value:"Call",id:"call",level:3},{value:"CallState",id:"callstate",level:3},{value:"CartItem",id:"cartitem",level:3},{value:"Chat",id:"chat",level:3},{value:"ChatId",id:"chatid",level:3},{value:"ChatMuteDuration",id:"chatmuteduration",level:3},{value:"ChatServer",id:"chatserver",level:3},{value:"ChatState",id:"chatstate",level:3},{value:"ChatTypes",id:"chattypes",level:3},{value:"ConfigObject",id:"configobject",level:3},{value:"Contact",id:"contact",level:3},{value:"ContactId",id:"contactid",level:3},{value:"Content",id:"content",level:3},{value:"CountryCode",id:"countrycode",level:3},{value:"CustomError",id:"customerror",level:3},{value:"CustomProduct",id:"customproduct",level:3},{value:"DIRECTORY_STRATEGY",id:"directory_strategy",level:3},{value:"DataURL",id:"dataurl",level:3},{value:"DevTools",id:"devtools",level:3},{value:"ERROR_NAME",id:"error_name",level:3},{value:"EphemeralDuration",id:"ephemeralduration",level:3},{value:"EventPayload",id:"eventpayload",level:3},{value:"FilePath",id:"filepath",level:3},{value:"GetURL",id:"geturl",level:3},{value:"GroupChat",id:"groupchat",level:3},{value:"GroupChatCreationParticipantAddResponse",id:"groupchatcreationparticipantaddresponse",level:3},{value:"GroupChatCreationResponse",id:"groupchatcreationresponse",level:3},{value:"GroupChatId",id:"groupchatid",level:3},{value:"GroupChatServer",id:"groupchatserver",level:3},{value:"GroupId",id:"groupid",level:3},{value:"Label",id:"label",level:3},{value:"LicenseType",id:"licensetype",level:3},{value:"LiveLocationChangedEvent",id:"livelocationchangedevent",level:3},{value:"Message",id:"message",level:3},{value:"MessageAck",id:"messageack",level:3},{value:"MessageId",id:"messageid",level:3},{value:"MessageInfo",id:"messageinfo",level:3},{value:"MessageInfoInteraction",id:"messageinfointeraction",level:3},{value:"MessageTypes",id:"messagetypes",level:3},{value:"Mp4StickerConversionProcessOptions",id:"mp4stickerconversionprocessoptions",level:3},{value:"NonSerializedId",id:"nonserializedid",level:3},{value:"NotificationLanguage",id:"notificationlanguage",level:3},{value:"NumberCheck",id:"numbercheck",level:3},{value:"OnError",id:"onerror",level:3},{value:"Order",id:"order",level:3},{value:"PageEvaluationTimeout",id:"pageevaluationtimeout",level:3},{value:"PollData",id:"polldata",level:3},{value:"PollOption",id:"polloption",level:3},{value:"PollVote",id:"pollvote",level:3},{value:"Product",id:"product",level:3},{value:"ProxyServerCredentials",id:"proxyservercredentials",level:3},{value:"QRFormat",id:"qrformat",level:3},{value:"QRQuality",id:"qrquality",level:3},{value:"QuoteMap",id:"quotemap",level:3},{value:"Reaction",id:"reaction",level:3},{value:"ReactionEvent",id:"reactionevent",level:3},{value:"ReactionRecord",id:"reactionrecord",level:3},{value:"ReactionSender",id:"reactionsender",level:3},{value:"SessionData",id:"sessiondata",level:3},{value:"SessionExpiredError",id:"sessionexpirederror",level:3},{value:"SimpleListener",id:"simplelistener",level:3},{value:"SingleChat",id:"singlechat",level:3},{value:"StickerMetadata",id:"stickermetadata",level:3},{value:"WaServers",id:"waservers",level:3},{value:"Webhook",id:"webhook",level:3},{value:"defaultProcessOptions",id:"defaultprocessoptions",level:3}];function t(e){const r={a:"a",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",li:"li",p:"p",ul:"ul",...(0,i.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(r.header,{children:(0,n.jsx)(r.h1,{id:"apimodel",children:"api/model"})}),"\n",(0,n.jsx)(r.h2,{id:"index",children:"Index"}),"\n",(0,n.jsx)(r.h3,{id:"enumerations",children:"Enumerations"}),"\n",(0,n.jsxs)(r.ul,{children:["\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/enumerations/Events",children:"Events"})}),"\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/enumerations/STATE",children:"STATE"})}),"\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/enumerations/Status",children:"Status"})}),"\n"]}),"\n",(0,n.jsx)(r.h3,{id:"type-aliases",children:"Type Aliases"}),"\n",(0,n.jsxs)(r.ul,{children:["\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/type-aliases/EasyApiResponse",children:"EasyApiResponse"})}),"\n"]}),"\n",(0,n.jsx)(r.h2,{id:"references",children:"References"}),"\n",(0,n.jsx)(r.h3,{id:"accountnumber",children:"AccountNumber"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/AccountNumber",children:"AccountNumber"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"addparticipanterror",children:"AddParticipantError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/AddParticipantError",children:"AddParticipantError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"addparticipanterrorstatuscode",children:"AddParticipantErrorStatusCode"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/enumerations/AddParticipantErrorStatusCode",children:"AddParticipantErrorStatusCode"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"advancedconfig",children:"AdvancedConfig"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/type-aliases/AdvancedConfig",children:"AdvancedConfig"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"advancedfile",children:"AdvancedFile"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/AdvancedFile",children:"AdvancedFile"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"base64",children:"Base64"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/Base64",children:"Base64"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"basechat",children:"BaseChat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/BaseChat",children:"BaseChat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"bizcategory",children:"BizCategory"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BizCategory",children:"BizCategory"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"bizprofileoptions",children:"BizProfileOptions"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BizProfileOptions",children:"BizProfileOptions"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"businesshours",children:"BusinessHours"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BusinessHours",children:"BusinessHours"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"businessprofile",children:"BusinessProfile"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BusinessProfile",children:"BusinessProfile"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"cloud_providers",children:"CLOUD_PROVIDERS"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/CLOUD_PROVIDERS",children:"CLOUD_PROVIDERS"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"call",children:"Call"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/call/interfaces/Call",children:"Call"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"callstate",children:"CallState"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/call/enumerations/CallState",children:"CallState"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"cartitem",children:"CartItem"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/CartItem",children:"CartItem"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chat",children:"Chat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/type-aliases/Chat",children:"Chat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatid",children:"ChatId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/ChatId",children:"ChatId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatmuteduration",children:"ChatMuteDuration"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/enumerations/ChatMuteDuration",children:"ChatMuteDuration"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatserver",children:"ChatServer"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/ChatServer",children:"ChatServer"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatstate",children:"ChatState"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/enumerations/ChatState",children:"ChatState"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chattypes",children:"ChatTypes"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/enumerations/ChatTypes",children:"ChatTypes"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"configobject",children:"ConfigObject"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/ConfigObject",children:"ConfigObject"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"contact",children:"Contact"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/Contact",children:"Contact"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"contactid",children:"ContactId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/ContactId",children:"ContactId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"content",children:"Content"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/Content",children:"Content"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"countrycode",children:"CountryCode"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/CountryCode",children:"CountryCode"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"customerror",children:"CustomError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/CustomError",children:"CustomError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"customproduct",children:"CustomProduct"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/CustomProduct",children:"CustomProduct"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"directory_strategy",children:"DIRECTORY_STRATEGY"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/DIRECTORY_STRATEGY",children:"DIRECTORY_STRATEGY"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"dataurl",children:"DataURL"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/DataURL",children:"DataURL"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"devtools",children:"DevTools"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/DevTools",children:"DevTools"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"error_name",children:"ERROR_NAME"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/enumerations/ERROR_NAME",children:"ERROR_NAME"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"ephemeralduration",children:"EphemeralDuration"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/type-aliases/EphemeralDuration",children:"EphemeralDuration"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"eventpayload",children:"EventPayload"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/EventPayload",children:"EventPayload"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"filepath",children:"FilePath"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/FilePath",children:"FilePath"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"geturl",children:"GetURL"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GetURL",children:"GetURL"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchat",children:"GroupChat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/GroupChat",children:"GroupChat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatcreationparticipantaddresponse",children:"GroupChatCreationParticipantAddResponse"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/GroupChatCreationParticipantAddResponse",children:"GroupChatCreationParticipantAddResponse"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatcreationresponse",children:"GroupChatCreationResponse"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/GroupChatCreationResponse",children:"GroupChatCreationResponse"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatid",children:"GroupChatId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GroupChatId",children:"GroupChatId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatserver",children:"GroupChatServer"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GroupChatServer",children:"GroupChatServer"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupid",children:"GroupId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GroupId",children:"GroupId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"label",children:"Label"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/label/interfaces/Label",children:"Label"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"licensetype",children:"LicenseType"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/LicenseType",children:"LicenseType"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"livelocationchangedevent",children:"LiveLocationChangedEvent"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/LiveLocationChangedEvent",children:"LiveLocationChangedEvent"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"message",children:"Message"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:"Message"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageack",children:"MessageAck"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/enumerations/MessageAck",children:"MessageAck"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageid",children:"MessageId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/MessageId",children:"MessageId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageinfo",children:"MessageInfo"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/MessageInfo",children:"MessageInfo"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageinfointeraction",children:"MessageInfoInteraction"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/MessageInfoInteraction",children:"MessageInfoInteraction"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messagetypes",children:"MessageTypes"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/enumerations/MessageTypes",children:"MessageTypes"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"mp4stickerconversionprocessoptions",children:"Mp4StickerConversionProcessOptions"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/media/type-aliases/Mp4StickerConversionProcessOptions",children:"Mp4StickerConversionProcessOptions"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"nonserializedid",children:"NonSerializedId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/NonSerializedId",children:"NonSerializedId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"notificationlanguage",children:"NotificationLanguage"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/NotificationLanguage",children:"NotificationLanguage"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"numbercheck",children:"NumberCheck"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/NumberCheck",children:"NumberCheck"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"onerror",children:"OnError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/OnError",children:"OnError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"order",children:"Order"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/Order",children:"Order"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"pageevaluationtimeout",children:"PageEvaluationTimeout"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/PageEvaluationTimeout",children:"PageEvaluationTimeout"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"polldata",children:"PollData"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/PollData",children:"PollData"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"polloption",children:"PollOption"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/PollOption",children:"PollOption"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"pollvote",children:"PollVote"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/PollVote",children:"PollVote"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"product",children:"Product"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/Product",children:"Product"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"proxyservercredentials",children:"ProxyServerCredentials"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/ProxyServerCredentials",children:"ProxyServerCredentials"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"qrformat",children:"QRFormat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/QRFormat",children:"QRFormat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"qrquality",children:"QRQuality"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/QRQuality",children:"QRQuality"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"quotemap",children:"QuoteMap"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/QuoteMap",children:"QuoteMap"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reaction",children:"Reaction"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/reactions/type-aliases/Reaction",children:"Reaction"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reactionevent",children:"ReactionEvent"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/reactions/type-aliases/ReactionEvent",children:"ReactionEvent"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reactionrecord",children:"ReactionRecord"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/reactions/type-aliases/ReactionRecord",children:"ReactionRecord"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reactionsender",children:"ReactionSender"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/ReactionSender",children:"ReactionSender"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"sessiondata",children:"SessionData"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/SessionData",children:"SessionData"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"sessionexpirederror",children:"SessionExpiredError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/SessionExpiredError",children:"SessionExpiredError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"simplelistener",children:"SimpleListener"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/events/enumerations/SimpleListener",children:"SimpleListener"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"singlechat",children:"SingleChat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/SingleChat",children:"SingleChat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"stickermetadata",children:"StickerMetadata"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/media/type-aliases/StickerMetadata",children:"StickerMetadata"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"waservers",children:"WaServers"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/WaServers",children:"WaServers"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"webhook",children:"Webhook"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/Webhook",children:"Webhook"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"defaultprocessoptions",children:"defaultProcessOptions"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/media/variables/defaultProcessOptions",children:"defaultProcessOptions"})]})]})}function h(e={}){const{wrapper:r}={...(0,i.R)(),...e.components};return r?(0,n.jsx)(r,{...e,children:(0,n.jsx)(t,{...e})}):t(e)}},8453:(e,r,s)=>{s.d(r,{R:()=>l,x:()=>d});var n=s(6540);const i={},a=n.createContext(i);function l(e){const r=n.useContext(a);return n.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function d(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:l(e.components),n.createElement(a.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/73d41d19.f58dea4d.js b/assets/js/73d41d19.f58dea4d.js
deleted file mode 100644
index 9eac3c2915..0000000000
--- a/assets/js/73d41d19.f58dea4d.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[5352],{2970:(e,r,s)=>{s.r(r),s.d(r,{assets:()=>o,contentTitle:()=>l,default:()=>h,frontMatter:()=>a,metadata:()=>d,toc:()=>c});var n=s(4848),i=s(8453);const a={},l="api/model",d={id:"reference/api/model/index",title:"api/model",description:"Index",source:"@site/docs/reference/api/model/index.md",sourceDirName:"reference/api/model",slug:"/reference/api/model/",permalink:"/docs/reference/api/model/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Enumeration: ExposedFn",permalink:"/docs/reference/api/functions/exposed.enum/enumerations/ExposedFn"},next:{title:"api/model/aliases",permalink:"/docs/reference/api/model/aliases/"}},o={},c=[{value:"Index",id:"index",level:2},{value:"Enumerations",id:"enumerations",level:3},{value:"Type Aliases",id:"type-aliases",level:3},{value:"References",id:"references",level:2},{value:"AccountNumber",id:"accountnumber",level:3},{value:"AddParticipantError",id:"addparticipanterror",level:3},{value:"AddParticipantErrorStatusCode",id:"addparticipanterrorstatuscode",level:3},{value:"AdvancedConfig",id:"advancedconfig",level:3},{value:"AdvancedFile",id:"advancedfile",level:3},{value:"Base64",id:"base64",level:3},{value:"BaseChat",id:"basechat",level:3},{value:"BizCategory",id:"bizcategory",level:3},{value:"BizProfileOptions",id:"bizprofileoptions",level:3},{value:"BusinessHours",id:"businesshours",level:3},{value:"BusinessProfile",id:"businessprofile",level:3},{value:"CLOUD_PROVIDERS",id:"cloud_providers",level:3},{value:"Call",id:"call",level:3},{value:"CallState",id:"callstate",level:3},{value:"CartItem",id:"cartitem",level:3},{value:"Chat",id:"chat",level:3},{value:"ChatId",id:"chatid",level:3},{value:"ChatMuteDuration",id:"chatmuteduration",level:3},{value:"ChatServer",id:"chatserver",level:3},{value:"ChatState",id:"chatstate",level:3},{value:"ChatTypes",id:"chattypes",level:3},{value:"ConfigObject",id:"configobject",level:3},{value:"Contact",id:"contact",level:3},{value:"ContactId",id:"contactid",level:3},{value:"Content",id:"content",level:3},{value:"CountryCode",id:"countrycode",level:3},{value:"CustomError",id:"customerror",level:3},{value:"CustomProduct",id:"customproduct",level:3},{value:"DIRECTORY_STRATEGY",id:"directory_strategy",level:3},{value:"DataURL",id:"dataurl",level:3},{value:"DevTools",id:"devtools",level:3},{value:"ERROR_NAME",id:"error_name",level:3},{value:"EphemeralDuration",id:"ephemeralduration",level:3},{value:"EventPayload",id:"eventpayload",level:3},{value:"FilePath",id:"filepath",level:3},{value:"GetURL",id:"geturl",level:3},{value:"GroupChat",id:"groupchat",level:3},{value:"GroupChatCreationParticipantAddResponse",id:"groupchatcreationparticipantaddresponse",level:3},{value:"GroupChatCreationResponse",id:"groupchatcreationresponse",level:3},{value:"GroupChatId",id:"groupchatid",level:3},{value:"GroupChatServer",id:"groupchatserver",level:3},{value:"GroupId",id:"groupid",level:3},{value:"Label",id:"label",level:3},{value:"LicenseType",id:"licensetype",level:3},{value:"LiveLocationChangedEvent",id:"livelocationchangedevent",level:3},{value:"Message",id:"message",level:3},{value:"MessageAck",id:"messageack",level:3},{value:"MessageId",id:"messageid",level:3},{value:"MessageInfo",id:"messageinfo",level:3},{value:"MessageInfoInteraction",id:"messageinfointeraction",level:3},{value:"MessageTypes",id:"messagetypes",level:3},{value:"Mp4StickerConversionProcessOptions",id:"mp4stickerconversionprocessoptions",level:3},{value:"NonSerializedId",id:"nonserializedid",level:3},{value:"NotificationLanguage",id:"notificationlanguage",level:3},{value:"NumberCheck",id:"numbercheck",level:3},{value:"OnError",id:"onerror",level:3},{value:"Order",id:"order",level:3},{value:"PageEvaluationTimeout",id:"pageevaluationtimeout",level:3},{value:"PollData",id:"polldata",level:3},{value:"PollOption",id:"polloption",level:3},{value:"PollVote",id:"pollvote",level:3},{value:"Product",id:"product",level:3},{value:"ProxyServerCredentials",id:"proxyservercredentials",level:3},{value:"QRFormat",id:"qrformat",level:3},{value:"QRQuality",id:"qrquality",level:3},{value:"QuoteMap",id:"quotemap",level:3},{value:"Reaction",id:"reaction",level:3},{value:"ReactionEvent",id:"reactionevent",level:3},{value:"ReactionRecord",id:"reactionrecord",level:3},{value:"ReactionSender",id:"reactionsender",level:3},{value:"SessionData",id:"sessiondata",level:3},{value:"SessionExpiredError",id:"sessionexpirederror",level:3},{value:"SimpleListener",id:"simplelistener",level:3},{value:"SingleChat",id:"singlechat",level:3},{value:"StickerMetadata",id:"stickermetadata",level:3},{value:"WaServers",id:"waservers",level:3},{value:"Webhook",id:"webhook",level:3},{value:"defaultProcessOptions",id:"defaultprocessoptions",level:3}];function t(e){const r={a:"a",h1:"h1",h2:"h2",h3:"h3",hr:"hr",li:"li",p:"p",ul:"ul",...(0,i.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(r.h1,{id:"apimodel",children:"api/model"}),"\n",(0,n.jsx)(r.h2,{id:"index",children:"Index"}),"\n",(0,n.jsx)(r.h3,{id:"enumerations",children:"Enumerations"}),"\n",(0,n.jsxs)(r.ul,{children:["\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/enumerations/Events",children:"Events"})}),"\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/enumerations/STATE",children:"STATE"})}),"\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/enumerations/Status",children:"Status"})}),"\n"]}),"\n",(0,n.jsx)(r.h3,{id:"type-aliases",children:"Type Aliases"}),"\n",(0,n.jsxs)(r.ul,{children:["\n",(0,n.jsx)(r.li,{children:(0,n.jsx)(r.a,{href:"/docs/reference/api/model/type-aliases/EasyApiResponse",children:"EasyApiResponse"})}),"\n"]}),"\n",(0,n.jsx)(r.h2,{id:"references",children:"References"}),"\n",(0,n.jsx)(r.h3,{id:"accountnumber",children:"AccountNumber"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/AccountNumber",children:"AccountNumber"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"addparticipanterror",children:"AddParticipantError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/AddParticipantError",children:"AddParticipantError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"addparticipanterrorstatuscode",children:"AddParticipantErrorStatusCode"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/enumerations/AddParticipantErrorStatusCode",children:"AddParticipantErrorStatusCode"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"advancedconfig",children:"AdvancedConfig"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/type-aliases/AdvancedConfig",children:"AdvancedConfig"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"advancedfile",children:"AdvancedFile"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/AdvancedFile",children:"AdvancedFile"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"base64",children:"Base64"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/Base64",children:"Base64"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"basechat",children:"BaseChat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/BaseChat",children:"BaseChat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"bizcategory",children:"BizCategory"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BizCategory",children:"BizCategory"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"bizprofileoptions",children:"BizProfileOptions"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BizProfileOptions",children:"BizProfileOptions"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"businesshours",children:"BusinessHours"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BusinessHours",children:"BusinessHours"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"businessprofile",children:"BusinessProfile"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/BusinessProfile",children:"BusinessProfile"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"cloud_providers",children:"CLOUD_PROVIDERS"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/CLOUD_PROVIDERS",children:"CLOUD_PROVIDERS"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"call",children:"Call"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/call/interfaces/Call",children:"Call"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"callstate",children:"CallState"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/call/enumerations/CallState",children:"CallState"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"cartitem",children:"CartItem"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/CartItem",children:"CartItem"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chat",children:"Chat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/type-aliases/Chat",children:"Chat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatid",children:"ChatId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/ChatId",children:"ChatId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatmuteduration",children:"ChatMuteDuration"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/enumerations/ChatMuteDuration",children:"ChatMuteDuration"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatserver",children:"ChatServer"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/ChatServer",children:"ChatServer"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chatstate",children:"ChatState"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/enumerations/ChatState",children:"ChatState"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"chattypes",children:"ChatTypes"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/enumerations/ChatTypes",children:"ChatTypes"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"configobject",children:"ConfigObject"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/ConfigObject",children:"ConfigObject"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"contact",children:"Contact"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/Contact",children:"Contact"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"contactid",children:"ContactId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/ContactId",children:"ContactId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"content",children:"Content"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/Content",children:"Content"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"countrycode",children:"CountryCode"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/CountryCode",children:"CountryCode"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"customerror",children:"CustomError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/CustomError",children:"CustomError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"customproduct",children:"CustomProduct"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/CustomProduct",children:"CustomProduct"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"directory_strategy",children:"DIRECTORY_STRATEGY"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/DIRECTORY_STRATEGY",children:"DIRECTORY_STRATEGY"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"dataurl",children:"DataURL"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/DataURL",children:"DataURL"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"devtools",children:"DevTools"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/DevTools",children:"DevTools"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"error_name",children:"ERROR_NAME"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/enumerations/ERROR_NAME",children:"ERROR_NAME"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"ephemeralduration",children:"EphemeralDuration"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/type-aliases/EphemeralDuration",children:"EphemeralDuration"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"eventpayload",children:"EventPayload"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/EventPayload",children:"EventPayload"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"filepath",children:"FilePath"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/FilePath",children:"FilePath"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"geturl",children:"GetURL"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GetURL",children:"GetURL"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchat",children:"GroupChat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/GroupChat",children:"GroupChat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatcreationparticipantaddresponse",children:"GroupChatCreationParticipantAddResponse"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/GroupChatCreationParticipantAddResponse",children:"GroupChatCreationParticipantAddResponse"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatcreationresponse",children:"GroupChatCreationResponse"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/GroupChatCreationResponse",children:"GroupChatCreationResponse"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatid",children:"GroupChatId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GroupChatId",children:"GroupChatId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupchatserver",children:"GroupChatServer"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GroupChatServer",children:"GroupChatServer"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"groupid",children:"GroupId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/GroupId",children:"GroupId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"label",children:"Label"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/label/interfaces/Label",children:"Label"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"licensetype",children:"LicenseType"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/LicenseType",children:"LicenseType"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"livelocationchangedevent",children:"LiveLocationChangedEvent"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/LiveLocationChangedEvent",children:"LiveLocationChangedEvent"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"message",children:"Message"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/Message",children:"Message"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageack",children:"MessageAck"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/enumerations/MessageAck",children:"MessageAck"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageid",children:"MessageId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/MessageId",children:"MessageId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageinfo",children:"MessageInfo"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/MessageInfo",children:"MessageInfo"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messageinfointeraction",children:"MessageInfoInteraction"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/MessageInfoInteraction",children:"MessageInfoInteraction"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"messagetypes",children:"MessageTypes"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/enumerations/MessageTypes",children:"MessageTypes"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"mp4stickerconversionprocessoptions",children:"Mp4StickerConversionProcessOptions"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/media/type-aliases/Mp4StickerConversionProcessOptions",children:"Mp4StickerConversionProcessOptions"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"nonserializedid",children:"NonSerializedId"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/NonSerializedId",children:"NonSerializedId"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"notificationlanguage",children:"NotificationLanguage"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/NotificationLanguage",children:"NotificationLanguage"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"numbercheck",children:"NumberCheck"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/contact/interfaces/NumberCheck",children:"NumberCheck"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"onerror",children:"OnError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/OnError",children:"OnError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"order",children:"Order"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/Order",children:"Order"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"pageevaluationtimeout",children:"PageEvaluationTimeout"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/PageEvaluationTimeout",children:"PageEvaluationTimeout"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"polldata",children:"PollData"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/PollData",children:"PollData"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"polloption",children:"PollOption"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/PollOption",children:"PollOption"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"pollvote",children:"PollVote"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/PollVote",children:"PollVote"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"product",children:"Product"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/product/interfaces/Product",children:"Product"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"proxyservercredentials",children:"ProxyServerCredentials"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/ProxyServerCredentials",children:"ProxyServerCredentials"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"qrformat",children:"QRFormat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/QRFormat",children:"QRFormat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"qrquality",children:"QRQuality"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/enumerations/QRQuality",children:"QRQuality"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"quotemap",children:"QuoteMap"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/QuoteMap",children:"QuoteMap"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reaction",children:"Reaction"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/reactions/type-aliases/Reaction",children:"Reaction"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reactionevent",children:"ReactionEvent"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/reactions/type-aliases/ReactionEvent",children:"ReactionEvent"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reactionrecord",children:"ReactionRecord"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/reactions/type-aliases/ReactionRecord",children:"ReactionRecord"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"reactionsender",children:"ReactionSender"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/message/interfaces/ReactionSender",children:"ReactionSender"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"sessiondata",children:"SessionData"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/SessionData",children:"SessionData"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"sessionexpirederror",children:"SessionExpiredError"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/errors/classes/SessionExpiredError",children:"SessionExpiredError"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"simplelistener",children:"SimpleListener"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/events/enumerations/SimpleListener",children:"SimpleListener"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"singlechat",children:"SingleChat"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/chat/interfaces/SingleChat",children:"SingleChat"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"stickermetadata",children:"StickerMetadata"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/media/type-aliases/StickerMetadata",children:"StickerMetadata"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"waservers",children:"WaServers"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/aliases/type-aliases/WaServers",children:"WaServers"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"webhook",children:"Webhook"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/config/interfaces/Webhook",children:"Webhook"})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"defaultprocessoptions",children:"defaultProcessOptions"}),"\n",(0,n.jsxs)(r.p,{children:["Re-exports ",(0,n.jsx)(r.a,{href:"/docs/reference/api/model/media/variables/defaultProcessOptions",children:"defaultProcessOptions"})]})]})}function h(e={}){const{wrapper:r}={...(0,i.R)(),...e.components};return r?(0,n.jsx)(r,{...e,children:(0,n.jsx)(t,{...e})}):t(e)}},8453:(e,r,s)=>{s.d(r,{R:()=>l,x:()=>d});var n=s(6540);const i={},a=n.createContext(i);function l(e){const r=n.useContext(a);return n.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function d(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:l(e.components),n.createElement(a.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/745741e5.28a9c9ef.js b/assets/js/745741e5.28a9c9ef.js
deleted file mode 100644
index 9e7e40d327..0000000000
--- a/assets/js/745741e5.28a9c9ef.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1121],{1214:(e,r,n)=>{n.r(r),n.d(r,{assets:()=>o,contentTitle:()=>d,default:()=>u,frontMatter:()=>t,metadata:()=>c,toc:()=>l});var s=n(4848),i=n(8453);const t={},d="Interface: Id",c={id:"reference/api/model/id/interfaces/Id",title:"Interface: Id",description:"Properties",source:"@site/docs/reference/api/model/id/interfaces/Id.md",sourceDirName:"reference/api/model/id/interfaces",slug:"/reference/api/model/id/interfaces/Id",permalink:"/docs/reference/api/model/id/interfaces/Id",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/id/interfaces/Id.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/id",permalink:"/docs/reference/api/model/id/"},next:{title:"api/model/label",permalink:"/docs/reference/api/model/label/"}},o={},l=[{value:"Properties",id:"properties",level:2},{value:"_serialized",id:"_serialized",level:3},{value:"server",id:"server",level:3},{value:"user",id:"user",level:3}];function a(e){const r={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",hr:"hr",p:"p",strong:"strong",...(0,i.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(r.h1,{id:"interface-id",children:"Interface: Id"}),"\n",(0,s.jsx)(r.h2,{id:"properties",children:"Properties"}),"\n",(0,s.jsx)(r.h3,{id:"_serialized",children:"_serialized"}),"\n",(0,s.jsxs)(r.blockquote,{children:["\n",(0,s.jsxs)(r.p,{children:[(0,s.jsx)(r.strong,{children:"_serialized"}),": ",(0,s.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,s.jsx)(r.hr,{}),"\n",(0,s.jsx)(r.h3,{id:"server",children:"server"}),"\n",(0,s.jsxs)(r.blockquote,{children:["\n",(0,s.jsxs)(r.p,{children:[(0,s.jsx)(r.strong,{children:"server"}),": ",(0,s.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,s.jsx)(r.hr,{}),"\n",(0,s.jsx)(r.h3,{id:"user",children:"user"}),"\n",(0,s.jsxs)(r.blockquote,{children:["\n",(0,s.jsxs)(r.p,{children:[(0,s.jsx)(r.strong,{children:"user"}),": ",(0,s.jsx)(r.code,{children:"string"})]}),"\n"]})]})}function u(e={}){const{wrapper:r}={...(0,i.R)(),...e.components};return r?(0,s.jsx)(r,{...e,children:(0,s.jsx)(a,{...e})}):a(e)}},8453:(e,r,n)=>{n.d(r,{R:()=>d,x:()=>c});var s=n(6540);const i={},t=s.createContext(i);function d(e){const r=s.useContext(t);return s.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function c(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:d(e.components),s.createElement(t.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/745741e5.2d19b10b.js b/assets/js/745741e5.2d19b10b.js
new file mode 100644
index 0000000000..c6025c4481
--- /dev/null
+++ b/assets/js/745741e5.2d19b10b.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1121],{1214:(e,r,n)=>{n.r(r),n.d(r,{assets:()=>o,contentTitle:()=>d,default:()=>u,frontMatter:()=>t,metadata:()=>c,toc:()=>l});var s=n(4848),i=n(8453);const t={},d="Interface: Id",c={id:"reference/api/model/id/interfaces/Id",title:"Interface: Id",description:"Properties",source:"@site/docs/reference/api/model/id/interfaces/Id.md",sourceDirName:"reference/api/model/id/interfaces",slug:"/reference/api/model/id/interfaces/Id",permalink:"/docs/reference/api/model/id/interfaces/Id",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/id/interfaces/Id.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/id",permalink:"/docs/reference/api/model/id/"},next:{title:"api/model/label",permalink:"/docs/reference/api/model/label/"}},o={},l=[{value:"Properties",id:"properties",level:2},{value:"_serialized",id:"_serialized",level:3},{value:"server",id:"server",level:3},{value:"user",id:"user",level:3}];function a(e){const r={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",p:"p",strong:"strong",...(0,i.R)(),...e.components};return(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(r.header,{children:(0,s.jsx)(r.h1,{id:"interface-id",children:"Interface: Id"})}),"\n",(0,s.jsx)(r.h2,{id:"properties",children:"Properties"}),"\n",(0,s.jsx)(r.h3,{id:"_serialized",children:"_serialized"}),"\n",(0,s.jsxs)(r.blockquote,{children:["\n",(0,s.jsxs)(r.p,{children:[(0,s.jsx)(r.strong,{children:"_serialized"}),": ",(0,s.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,s.jsx)(r.hr,{}),"\n",(0,s.jsx)(r.h3,{id:"server",children:"server"}),"\n",(0,s.jsxs)(r.blockquote,{children:["\n",(0,s.jsxs)(r.p,{children:[(0,s.jsx)(r.strong,{children:"server"}),": ",(0,s.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,s.jsx)(r.hr,{}),"\n",(0,s.jsx)(r.h3,{id:"user",children:"user"}),"\n",(0,s.jsxs)(r.blockquote,{children:["\n",(0,s.jsxs)(r.p,{children:[(0,s.jsx)(r.strong,{children:"user"}),": ",(0,s.jsx)(r.code,{children:"string"})]}),"\n"]})]})}function u(e={}){const{wrapper:r}={...(0,i.R)(),...e.components};return r?(0,s.jsx)(r,{...e,children:(0,s.jsx)(a,{...e})}):a(e)}},8453:(e,r,n)=>{n.d(r,{R:()=>d,x:()=>c});var s=n(6540);const i={},t=s.createContext(i);function d(e){const r=s.useContext(t);return s.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function c(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:d(e.components),s.createElement(t.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7628d2f1.5747a848.js b/assets/js/7628d2f1.5747a848.js
deleted file mode 100644
index 39a37d0e3a..0000000000
--- a/assets/js/7628d2f1.5747a848.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6067],{5468:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>i,contentTitle:()=>c,default:()=>u,frontMatter:()=>a,metadata:()=>o,toc:()=>l});var r=t(4848),s=t(8453);const a={},c="Enumeration: namespace",o={id:"reference/api/Client/enumerations/namespace",title:"Enumeration: namespace",description:"Enumeration Members",source:"@site/docs/reference/api/Client/enumerations/namespace.md",sourceDirName:"reference/api/Client/enumerations",slug:"/reference/api/Client/enumerations/namespace",permalink:"/docs/reference/api/Client/enumerations/namespace",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/Client/enumerations/namespace.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Class: Client",permalink:"/docs/reference/api/Client/classes/Client"},next:{title:"Variable: useragent",permalink:"/docs/reference/api/Client/variables/useragent"}},i={},l=[{value:"Enumeration Members",id:"enumeration-members",level:2},{value:"Chat",id:"chat",level:3},{value:"Contact",id:"contact",level:3},{value:"GroupMetadata",id:"groupmetadata",level:3},{value:"Msg",id:"msg",level:3}];function d(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",hr:"hr",p:"p",strong:"strong",...(0,s.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.h1,{id:"enumeration-namespace",children:"Enumeration: namespace"}),"\n",(0,r.jsx)(n.h2,{id:"enumeration-members",children:"Enumeration Members"}),"\n",(0,r.jsx)(n.h3,{id:"chat",children:"Chat"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Chat"}),": ",(0,r.jsx)(n.code,{children:'"Chat"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"contact",children:"Contact"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Contact"}),": ",(0,r.jsx)(n.code,{children:'"Contact"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"groupmetadata",children:"GroupMetadata"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"GroupMetadata"}),": ",(0,r.jsx)(n.code,{children:'"GroupMetadata"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"msg",children:"Msg"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Msg"}),": ",(0,r.jsx)(n.code,{children:'"Msg"'})]}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,s.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>c,x:()=>o});var r=t(6540);const s={},a=r.createContext(s);function c(e){const n=r.useContext(a);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function o(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:c(e.components),r.createElement(a.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7628d2f1.6ea6096a.js b/assets/js/7628d2f1.6ea6096a.js
new file mode 100644
index 0000000000..ed8f870f29
--- /dev/null
+++ b/assets/js/7628d2f1.6ea6096a.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6067],{5468:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>i,contentTitle:()=>c,default:()=>u,frontMatter:()=>a,metadata:()=>o,toc:()=>l});var r=t(4848),s=t(8453);const a={},c="Enumeration: namespace",o={id:"reference/api/Client/enumerations/namespace",title:"Enumeration: namespace",description:"Enumeration Members",source:"@site/docs/reference/api/Client/enumerations/namespace.md",sourceDirName:"reference/api/Client/enumerations",slug:"/reference/api/Client/enumerations/namespace",permalink:"/docs/reference/api/Client/enumerations/namespace",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/Client/enumerations/namespace.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Class: Client",permalink:"/docs/reference/api/Client/classes/Client"},next:{title:"Variable: useragent",permalink:"/docs/reference/api/Client/variables/useragent"}},i={},l=[{value:"Enumeration Members",id:"enumeration-members",level:2},{value:"Chat",id:"chat",level:3},{value:"Contact",id:"contact",level:3},{value:"GroupMetadata",id:"groupmetadata",level:3},{value:"Msg",id:"msg",level:3}];function d(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",p:"p",strong:"strong",...(0,s.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.header,{children:(0,r.jsx)(n.h1,{id:"enumeration-namespace",children:"Enumeration: namespace"})}),"\n",(0,r.jsx)(n.h2,{id:"enumeration-members",children:"Enumeration Members"}),"\n",(0,r.jsx)(n.h3,{id:"chat",children:"Chat"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Chat"}),": ",(0,r.jsx)(n.code,{children:'"Chat"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"contact",children:"Contact"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Contact"}),": ",(0,r.jsx)(n.code,{children:'"Contact"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"groupmetadata",children:"GroupMetadata"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"GroupMetadata"}),": ",(0,r.jsx)(n.code,{children:'"GroupMetadata"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"msg",children:"Msg"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"Msg"}),": ",(0,r.jsx)(n.code,{children:'"Msg"'})]}),"\n"]})]})}function u(e={}){const{wrapper:n}={...(0,s.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>c,x:()=>o});var r=t(6540);const s={},a=r.createContext(s);function c(e){const n=r.useContext(a);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function o(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:c(e.components),r.createElement(a.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7661071f.0c27915b.js b/assets/js/7661071f.0c27915b.js
new file mode 100644
index 0000000000..dd04e68c5f
--- /dev/null
+++ b/assets/js/7661071f.0c27915b.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[8737],{4137:(e,o,s)=>{s.r(o),s.d(o,{assets:()=>c,contentTitle:()=>r,default:()=>d,frontMatter:()=>l,metadata:()=>a,toc:()=>i});var n=s(4848),t=s(8453);const l={slug:"welcome",title:"Welcome",authors:["slorber","yangshun"],tags:["facebook","hello","docusaurus"]},r=void 0,a={permalink:"/blog/welcome",editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/blog/2021-08-26-welcome/index.md",source:"@site/blog/2021-08-26-welcome/index.md",title:"Welcome",description:"Docusaurus blogging features are powered by the blog plugin.",date:"2021-08-26T00:00:00.000Z",tags:[{inline:!1,label:"Facebook",permalink:"/blog/tags/facebook",description:"Facebook tag description"},{inline:!1,label:"Hello",permalink:"/blog/tags/hello",description:"Hello tag description"},{inline:!1,label:"Docusaurus",permalink:"/blog/tags/docusaurus",description:"Docusaurus tag description"}],readingTime:.405,hasTruncateMarker:!1,authors:[{name:"S\xe9bastien Lorber",title:"Docusaurus maintainer",url:"https://sebastienlorber.com",imageURL:"https://github.com/slorber.png",key:"slorber",page:null},{name:"Yangshun Tay",title:"Front End Engineer @ Facebook",url:"https://github.com/yangshun",imageURL:"https://github.com/yangshun.png",key:"yangshun",page:null}],frontMatter:{slug:"welcome",title:"Welcome",authors:["slorber","yangshun"],tags:["facebook","hello","docusaurus"]},unlisted:!1,nextItem:{title:"MDX Blog Post",permalink:"/blog/mdx-blog-post"}},c={authorsImageUrls:[void 0,void 0]},i=[];function u(e){const o={a:"a",code:"code",img:"img",li:"li",p:"p",strong:"strong",ul:"ul",...(0,t.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)(o.p,{children:[(0,n.jsx)(o.a,{href:"https://docusaurus.io/docs/blog",children:"Docusaurus blogging features"})," are powered by the ",(0,n.jsx)(o.a,{href:"https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog",children:"blog plugin"}),"."]}),"\n",(0,n.jsxs)(o.p,{children:["Simply add Markdown files (or folders) to the ",(0,n.jsx)(o.code,{children:"blog"})," directory."]}),"\n",(0,n.jsxs)(o.p,{children:["Regular blog authors can be added to ",(0,n.jsx)(o.code,{children:"authors.yml"}),"."]}),"\n",(0,n.jsx)(o.p,{children:"The blog post date can be extracted from filenames, such as:"}),"\n",(0,n.jsxs)(o.ul,{children:["\n",(0,n.jsx)(o.li,{children:(0,n.jsx)(o.code,{children:"2019-05-30-welcome.md"})}),"\n",(0,n.jsx)(o.li,{children:(0,n.jsx)(o.code,{children:"2019-05-30-welcome/index.md"})}),"\n"]}),"\n",(0,n.jsx)(o.p,{children:"A blog post folder can be convenient to co-locate blog post images:"}),"\n",(0,n.jsx)(o.p,{children:(0,n.jsx)(o.img,{alt:"Docusaurus Plushie",src:s(575).A+"",width:"1500",height:"500"})}),"\n",(0,n.jsx)(o.p,{children:"The blog supports tags as well!"}),"\n",(0,n.jsxs)(o.p,{children:[(0,n.jsx)(o.strong,{children:"And if you don't want a blog"}),": just delete this directory, and use ",(0,n.jsx)(o.code,{children:"blog: false"})," in your Docusaurus config."]})]})}function d(e={}){const{wrapper:o}={...(0,t.R)(),...e.components};return o?(0,n.jsx)(o,{...e,children:(0,n.jsx)(u,{...e})}):u(e)}},575:(e,o,s)=>{s.d(o,{A:()=>n});const n=s.p+"assets/images/docusaurus-plushie-banner-a60f7593abca1e3eef26a9afa244e4fb.jpeg"},8453:(e,o,s)=>{s.d(o,{R:()=>r,x:()=>a});var n=s(6540);const t={},l=n.createContext(t);function r(e){const o=n.useContext(l);return n.useMemo((function(){return"function"==typeof e?e(o):{...o,...e}}),[o,e])}function a(e){let o;return o=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:r(e.components),n.createElement(l.Provider,{value:o},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7661071f.209ee5e2.js b/assets/js/7661071f.209ee5e2.js
deleted file mode 100644
index 545368b0a1..0000000000
--- a/assets/js/7661071f.209ee5e2.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[8737],{4137:(e,o,s)=>{s.r(o),s.d(o,{assets:()=>c,contentTitle:()=>l,default:()=>d,frontMatter:()=>r,metadata:()=>a,toc:()=>i});var n=s(4848),t=s(8453);const r={slug:"welcome",title:"Welcome",authors:["slorber","yangshun"],tags:["facebook","hello","docusaurus"]},l=void 0,a={permalink:"/blog/welcome",editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/blog/2021-08-26-welcome/index.md",source:"@site/blog/2021-08-26-welcome/index.md",title:"Welcome",description:"Docusaurus blogging features are powered by the blog plugin.",date:"2021-08-26T00:00:00.000Z",tags:[{inline:!1,label:"Facebook",permalink:"/blog/tags/facebook",description:"Facebook tag description"},{inline:!1,label:"Hello",permalink:"/blog/tags/hello",description:"Hello tag description"},{inline:!1,label:"Docusaurus",permalink:"/blog/tags/docusaurus",description:"Docusaurus tag description"}],readingTime:.405,hasTruncateMarker:!1,authors:[{name:"S\xe9bastien Lorber",title:"Docusaurus maintainer",url:"https://sebastienlorber.com",imageURL:"https://github.com/slorber.png",key:"slorber"},{name:"Yangshun Tay",title:"Front End Engineer @ Facebook",url:"https://github.com/yangshun",imageURL:"https://github.com/yangshun.png",key:"yangshun"}],frontMatter:{slug:"welcome",title:"Welcome",authors:["slorber","yangshun"],tags:["facebook","hello","docusaurus"]},unlisted:!1,nextItem:{title:"MDX Blog Post",permalink:"/blog/mdx-blog-post"}},c={authorsImageUrls:[void 0,void 0]},i=[];function u(e){const o={a:"a",code:"code",img:"img",li:"li",p:"p",strong:"strong",ul:"ul",...(0,t.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)(o.p,{children:[(0,n.jsx)(o.a,{href:"https://docusaurus.io/docs/blog",children:"Docusaurus blogging features"})," are powered by the ",(0,n.jsx)(o.a,{href:"https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-content-blog",children:"blog plugin"}),"."]}),"\n",(0,n.jsxs)(o.p,{children:["Simply add Markdown files (or folders) to the ",(0,n.jsx)(o.code,{children:"blog"})," directory."]}),"\n",(0,n.jsxs)(o.p,{children:["Regular blog authors can be added to ",(0,n.jsx)(o.code,{children:"authors.yml"}),"."]}),"\n",(0,n.jsx)(o.p,{children:"The blog post date can be extracted from filenames, such as:"}),"\n",(0,n.jsxs)(o.ul,{children:["\n",(0,n.jsx)(o.li,{children:(0,n.jsx)(o.code,{children:"2019-05-30-welcome.md"})}),"\n",(0,n.jsx)(o.li,{children:(0,n.jsx)(o.code,{children:"2019-05-30-welcome/index.md"})}),"\n"]}),"\n",(0,n.jsx)(o.p,{children:"A blog post folder can be convenient to co-locate blog post images:"}),"\n",(0,n.jsx)(o.p,{children:(0,n.jsx)(o.img,{alt:"Docusaurus Plushie",src:s(575).A+"",width:"1500",height:"500"})}),"\n",(0,n.jsx)(o.p,{children:"The blog supports tags as well!"}),"\n",(0,n.jsxs)(o.p,{children:[(0,n.jsx)(o.strong,{children:"And if you don't want a blog"}),": just delete this directory, and use ",(0,n.jsx)(o.code,{children:"blog: false"})," in your Docusaurus config."]})]})}function d(e={}){const{wrapper:o}={...(0,t.R)(),...e.components};return o?(0,n.jsx)(o,{...e,children:(0,n.jsx)(u,{...e})}):u(e)}},575:(e,o,s)=>{s.d(o,{A:()=>n});const n=s.p+"assets/images/docusaurus-plushie-banner-a60f7593abca1e3eef26a9afa244e4fb.jpeg"},8453:(e,o,s)=>{s.d(o,{R:()=>l,x:()=>a});var n=s(6540);const t={},r=n.createContext(t);function l(e){const o=n.useContext(r);return n.useMemo((function(){return"function"==typeof e?e(o):{...o,...e}}),[o,e])}function a(e){let o;return o=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:l(e.components),n.createElement(r.Provider,{value:o},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7803af04.59242b76.js b/assets/js/7803af04.59242b76.js
new file mode 100644
index 0000000000..4d4cc5464d
--- /dev/null
+++ b/assets/js/7803af04.59242b76.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1536],{3958:(e,n,s)=>{s.r(n),s.d(n,{assets:()=>d,contentTitle:()=>c,default:()=>x,frontMatter:()=>o,metadata:()=>l,toc:()=>t});var r=s(4848),i=s(8453);const o={},c="Interface: SessionInfo",l={id:"reference/api/model/sessionInfo/interfaces/SessionInfo",title:"Interface: SessionInfo",description:"Properties",source:"@site/docs/reference/api/model/sessionInfo/interfaces/SessionInfo.md",sourceDirName:"reference/api/model/sessionInfo/interfaces",slug:"/reference/api/model/sessionInfo/interfaces/SessionInfo",permalink:"/docs/reference/api/model/sessionInfo/interfaces/SessionInfo",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/sessionInfo/interfaces/SessionInfo.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: HealthCheck",permalink:"/docs/reference/api/model/sessionInfo/interfaces/HealthCheck"},next:{title:"Type Alias: EasyApiResponse",permalink:"/docs/reference/api/model/type-aliases/EasyApiResponse"}},d={},t=[{value:"Properties",id:"properties",level:2},{value:"ACC_TYPE?",id:"acc_type",level:3},{value:"BROWSER_VERSION",id:"browser_version",level:3},{value:"CLI?",id:"cli",level:3},{value:"INSTANCE_ID?",id:"instance_id",level:3},{value:"LATEST_VERSION?",id:"latest_version",level:3},{value:"LAUNCH_TIME_MS?",id:"launch_time_ms",level:3},{value:"NUM?",id:"num",level:3},{value:"NUM_HASH?",id:"num_hash",level:3},{value:"OS?",id:"os",level:3},{value:"OW_KEY?",id:"ow_key",level:3},{value:"PAGE_UA",id:"page_ua",level:3},{value:"PATCH_HASH?",id:"patch_hash",level:3},{value:"PHONE_VERSION?",id:"phone_version",level:3},{value:"PPTR_VERSION?",id:"pptr_version",level:3},{value:"RAM_INFO?",id:"ram_info",level:3},{value:"START_TS?",id:"start_ts",level:3},{value:"WA_AUTOMATE_VERSION",id:"wa_automate_version",level:3},{value:"WA_VERSION",id:"wa_version",level:3}];function h(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",p:"p",strong:"strong",...(0,i.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.header,{children:(0,r.jsx)(n.h1,{id:"interface-sessioninfo",children:"Interface: SessionInfo"})}),"\n",(0,r.jsx)(n.h2,{id:"properties",children:"Properties"}),"\n",(0,r.jsx)(n.h3,{id:"acc_type",children:"ACC_TYPE?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"ACC_TYPE"}),": ",(0,r.jsx)(n.code,{children:'"PERSONAL"'})," | ",(0,r.jsx)(n.code,{children:'"BUSINESS"'})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"browser_version",children:"BROWSER_VERSION"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"BROWSER_VERSION"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"cli",children:"CLI?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"CLI"}),": ",(0,r.jsx)(n.code,{children:"boolean"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"instance_id",children:"INSTANCE_ID?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"INSTANCE_ID"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"latest_version",children:"LATEST_VERSION?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"LATEST_VERSION"}),": ",(0,r.jsx)(n.code,{children:"boolean"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"launch_time_ms",children:"LAUNCH_TIME_MS?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"LAUNCH_TIME_MS"}),": ",(0,r.jsx)(n.code,{children:"number"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"num",children:"NUM?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"NUM"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"num_hash",children:"NUM_HASH?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"NUM_HASH"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"os",children:"OS?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"OS"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"ow_key",children:"OW_KEY?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"OW_KEY"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"page_ua",children:"PAGE_UA"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"PAGE_UA"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"patch_hash",children:"PATCH_HASH?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"PATCH_HASH"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"phone_version",children:"PHONE_VERSION?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"PHONE_VERSION"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"pptr_version",children:"PPTR_VERSION?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"PPTR_VERSION"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"ram_info",children:"RAM_INFO?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"RAM_INFO"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"start_ts",children:"START_TS?"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.code,{children:"optional"})," ",(0,r.jsx)(n.strong,{children:"START_TS"}),": ",(0,r.jsx)(n.code,{children:"number"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"wa_automate_version",children:"WA_AUTOMATE_VERSION"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"WA_AUTOMATE_VERSION"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"wa_version",children:"WA_VERSION"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"WA_VERSION"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]})]})}function x(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(h,{...e})}):h(e)}},8453:(e,n,s)=>{s.d(n,{R:()=>c,x:()=>l});var r=s(6540);const i={},o=r.createContext(i);function c(e){const n=r.useContext(o);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function l(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:c(e.components),r.createElement(o.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7803af04.f06c755d.js b/assets/js/7803af04.f06c755d.js
deleted file mode 100644
index 95bf13a827..0000000000
--- a/assets/js/7803af04.f06c755d.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[1536],{3958:(e,n,s)=>{s.r(n),s.d(n,{assets:()=>d,contentTitle:()=>c,default:()=>x,frontMatter:()=>o,metadata:()=>l,toc:()=>t});var i=s(4848),r=s(8453);const o={},c="Interface: SessionInfo",l={id:"reference/api/model/sessionInfo/interfaces/SessionInfo",title:"Interface: SessionInfo",description:"Properties",source:"@site/docs/reference/api/model/sessionInfo/interfaces/SessionInfo.md",sourceDirName:"reference/api/model/sessionInfo/interfaces",slug:"/reference/api/model/sessionInfo/interfaces/SessionInfo",permalink:"/docs/reference/api/model/sessionInfo/interfaces/SessionInfo",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/sessionInfo/interfaces/SessionInfo.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: HealthCheck",permalink:"/docs/reference/api/model/sessionInfo/interfaces/HealthCheck"},next:{title:"Type Alias: EasyApiResponse",permalink:"/docs/reference/api/model/type-aliases/EasyApiResponse"}},d={},t=[{value:"Properties",id:"properties",level:2},{value:"ACC_TYPE?",id:"acc_type",level:3},{value:"BROWSER_VERSION",id:"browser_version",level:3},{value:"CLI?",id:"cli",level:3},{value:"INSTANCE_ID?",id:"instance_id",level:3},{value:"LATEST_VERSION?",id:"latest_version",level:3},{value:"LAUNCH_TIME_MS?",id:"launch_time_ms",level:3},{value:"NUM?",id:"num",level:3},{value:"NUM_HASH?",id:"num_hash",level:3},{value:"OS?",id:"os",level:3},{value:"OW_KEY?",id:"ow_key",level:3},{value:"PAGE_UA",id:"page_ua",level:3},{value:"PATCH_HASH?",id:"patch_hash",level:3},{value:"PHONE_VERSION?",id:"phone_version",level:3},{value:"PPTR_VERSION?",id:"pptr_version",level:3},{value:"RAM_INFO?",id:"ram_info",level:3},{value:"START_TS?",id:"start_ts",level:3},{value:"WA_AUTOMATE_VERSION",id:"wa_automate_version",level:3},{value:"WA_VERSION",id:"wa_version",level:3}];function h(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",hr:"hr",p:"p",strong:"strong",...(0,r.R)(),...e.components};return(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(n.h1,{id:"interface-sessioninfo",children:"Interface: SessionInfo"}),"\n",(0,i.jsx)(n.h2,{id:"properties",children:"Properties"}),"\n",(0,i.jsx)(n.h3,{id:"acc_type",children:"ACC_TYPE?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"ACC_TYPE"}),": ",(0,i.jsx)(n.code,{children:'"PERSONAL"'})," | ",(0,i.jsx)(n.code,{children:'"BUSINESS"'})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"browser_version",children:"BROWSER_VERSION"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.strong,{children:"BROWSER_VERSION"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"cli",children:"CLI?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"CLI"}),": ",(0,i.jsx)(n.code,{children:"boolean"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"instance_id",children:"INSTANCE_ID?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"INSTANCE_ID"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"latest_version",children:"LATEST_VERSION?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"LATEST_VERSION"}),": ",(0,i.jsx)(n.code,{children:"boolean"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"launch_time_ms",children:"LAUNCH_TIME_MS?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"LAUNCH_TIME_MS"}),": ",(0,i.jsx)(n.code,{children:"number"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"num",children:"NUM?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"NUM"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"num_hash",children:"NUM_HASH?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"NUM_HASH"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"os",children:"OS?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"OS"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"ow_key",children:"OW_KEY?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"OW_KEY"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"page_ua",children:"PAGE_UA"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.strong,{children:"PAGE_UA"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"patch_hash",children:"PATCH_HASH?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"PATCH_HASH"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"phone_version",children:"PHONE_VERSION?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"PHONE_VERSION"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"pptr_version",children:"PPTR_VERSION?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"PPTR_VERSION"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"ram_info",children:"RAM_INFO?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"RAM_INFO"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"start_ts",children:"START_TS?"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.code,{children:"optional"})," ",(0,i.jsx)(n.strong,{children:"START_TS"}),": ",(0,i.jsx)(n.code,{children:"number"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"wa_automate_version",children:"WA_AUTOMATE_VERSION"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.strong,{children:"WA_AUTOMATE_VERSION"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,i.jsx)(n.hr,{}),"\n",(0,i.jsx)(n.h3,{id:"wa_version",children:"WA_VERSION"}),"\n",(0,i.jsxs)(n.blockquote,{children:["\n",(0,i.jsxs)(n.p,{children:[(0,i.jsx)(n.strong,{children:"WA_VERSION"}),": ",(0,i.jsx)(n.code,{children:"string"})]}),"\n"]})]})}function x(e={}){const{wrapper:n}={...(0,r.R)(),...e.components};return n?(0,i.jsx)(n,{...e,children:(0,i.jsx)(h,{...e})}):h(e)}},8453:(e,n,s)=>{s.d(n,{R:()=>c,x:()=>l});var i=s(6540);const r={},o=i.createContext(r);function c(e){const n=i.useContext(o);return i.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function l(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(r):e.components||r:c(e.components),i.createElement(o.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/792432d4.a232f1e4.js b/assets/js/792432d4.a232f1e4.js
deleted file mode 100644
index a4cf1eb7e4..0000000000
--- a/assets/js/792432d4.a232f1e4.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[2426],{9341:(e,s,r)=>{r.r(s),r.d(s,{assets:()=>c,contentTitle:()=>n,default:()=>d,frontMatter:()=>a,metadata:()=>i,toc:()=>l});var t=r(4848),o=r(8453);const a={},n="Type Alias: GroupId",i={id:"reference/api/model/aliases/type-aliases/GroupId",title:"Type Alias: GroupId",description:"GroupId: \\$\\{number\\}@$\\{GroupChatServer\\}\\",source:"@site/docs/reference/api/model/aliases/type-aliases/GroupId.md",sourceDirName:"reference/api/model/aliases/type-aliases",slug:"/reference/api/model/aliases/type-aliases/GroupId",permalink:"/docs/reference/api/model/aliases/type-aliases/GroupId",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/aliases/type-aliases/GroupId.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Type Alias: GroupChatServer",permalink:"/docs/reference/api/model/aliases/type-aliases/GroupChatServer"},next:{title:"Type Alias: MessageId",permalink:"/docs/reference/api/model/aliases/type-aliases/MessageId"}},c={},l=[];function p(e){const s={blockquote:"blockquote",code:"code",h1:"h1",p:"p",strong:"strong",...(0,o.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(s.h1,{id:"type-alias-groupid",children:"Type Alias: GroupId"}),"\n",(0,t.jsxs)(s.blockquote,{children:["\n",(0,t.jsxs)(s.p,{children:[(0,t.jsx)(s.strong,{children:"GroupId"}),": `${number}@${GroupChatServer}`"]}),"\n"]}),"\n",(0,t.jsxs)(s.p,{children:["A new group or community has the format of a random number followed by ",(0,t.jsx)(s.code,{children:"@g.us"})]})]})}function d(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,t.jsx)(s,{...e,children:(0,t.jsx)(p,{...e})}):p(e)}},8453:(e,s,r)=>{r.d(s,{R:()=>n,x:()=>i});var t=r(6540);const o={},a=t.createContext(o);function n(e){const s=t.useContext(a);return t.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function i(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:n(e.components),t.createElement(a.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/792432d4.a3d18f27.js b/assets/js/792432d4.a3d18f27.js
new file mode 100644
index 0000000000..d0bbd31203
--- /dev/null
+++ b/assets/js/792432d4.a3d18f27.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[2426],{9341:(e,r,s)=>{s.r(r),s.d(r,{assets:()=>c,contentTitle:()=>n,default:()=>p,frontMatter:()=>o,metadata:()=>i,toc:()=>d});var t=s(4848),a=s(8453);const o={},n="Type Alias: GroupId",i={id:"reference/api/model/aliases/type-aliases/GroupId",title:"Type Alias: GroupId",description:"GroupId: \\$\\{number\\}@$\\{GroupChatServer\\}\\",source:"@site/docs/reference/api/model/aliases/type-aliases/GroupId.md",sourceDirName:"reference/api/model/aliases/type-aliases",slug:"/reference/api/model/aliases/type-aliases/GroupId",permalink:"/docs/reference/api/model/aliases/type-aliases/GroupId",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/aliases/type-aliases/GroupId.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Type Alias: GroupChatServer",permalink:"/docs/reference/api/model/aliases/type-aliases/GroupChatServer"},next:{title:"Type Alias: MessageId",permalink:"/docs/reference/api/model/aliases/type-aliases/MessageId"}},c={},d=[];function l(e){const r={blockquote:"blockquote",code:"code",h1:"h1",header:"header",p:"p",strong:"strong",...(0,a.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(r.header,{children:(0,t.jsx)(r.h1,{id:"type-alias-groupid",children:"Type Alias: GroupId"})}),"\n",(0,t.jsxs)(r.blockquote,{children:["\n",(0,t.jsxs)(r.p,{children:[(0,t.jsx)(r.strong,{children:"GroupId"}),": `${number}@${GroupChatServer}`"]}),"\n"]}),"\n",(0,t.jsxs)(r.p,{children:["A new group or community has the format of a random number followed by ",(0,t.jsx)(r.code,{children:"@g.us"})]})]})}function p(e={}){const{wrapper:r}={...(0,a.R)(),...e.components};return r?(0,t.jsx)(r,{...e,children:(0,t.jsx)(l,{...e})}):l(e)}},8453:(e,r,s)=>{s.d(r,{R:()=>n,x:()=>i});var t=s(6540);const a={},o=t.createContext(a);function n(e){const r=t.useContext(o);return t.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function i(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:n(e.components),t.createElement(o.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/79bb96de.6d540f7c.js b/assets/js/79bb96de.6d540f7c.js
deleted file mode 100644
index 90b2b4908f..0000000000
--- a/assets/js/79bb96de.6d540f7c.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6851],{4868:(e,s,n)=>{n.r(s),n.d(s,{assets:()=>r,contentTitle:()=>a,default:()=>g,frontMatter:()=>i,metadata:()=>c,toc:()=>l});var t=n(4848),o=n(8453);const i={},a="Receiving Messages",c={id:"how-to/receive-messages",title:"Receiving Messages",description:"Listen to only incoming messages",source:"@site/docs/how-to/receive-messages.md",sourceDirName:"how-to",slug:"/how-to/receive-messages",permalink:"/docs/how-to/receive-messages",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/receive-messages.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"receive-files",permalink:"/docs/how-to/receive-files"},next:{title:"Sending Files",permalink:"/docs/how-to/send-files"}},r={},l=[{value:"Listen to only incoming messages",id:"listen-to-only-incoming-messages",level:2},{value:"Listen to all messages in and out",id:"listen-to-all-messages-in-and-out",level:2}];function d(e){const s={code:"code",h1:"h1",h2:"h2",p:"p",pre:"pre",...(0,o.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(s.h1,{id:"receiving-messages",children:"Receiving Messages"}),"\n",(0,t.jsx)(s.h2,{id:"listen-to-only-incoming-messages",children:"Listen to only incoming messages"}),"\n",(0,t.jsx)(s.p,{children:"[[onMessage]]"}),"\n",(0,t.jsx)(s.pre,{children:(0,t.jsx)(s.code,{className:"language-javascript",children:" client.onMessage(message=>{\n console.log(message.body);\n })\n"})}),"\n",(0,t.jsx)(s.h2,{id:"listen-to-all-messages-in-and-out",children:"Listen to all messages in and out"}),"\n",(0,t.jsx)(s.p,{children:"[[onAnyMessage]]"}),"\n",(0,t.jsx)(s.pre,{children:(0,t.jsx)(s.code,{className:"language-javascript",children:" client.onAnyMessage(message=>{\n console.log(message.body);\n })\n"})})]})}function g(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,t.jsx)(s,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,s,n)=>{n.d(s,{R:()=>a,x:()=>c});var t=n(6540);const o={},i=t.createContext(o);function a(e){const s=t.useContext(i);return t.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function c(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:a(e.components),t.createElement(i.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/79bb96de.a40a46d6.js b/assets/js/79bb96de.a40a46d6.js
new file mode 100644
index 0000000000..7e12dd648b
--- /dev/null
+++ b/assets/js/79bb96de.a40a46d6.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6851],{4868:(e,s,n)=>{n.r(s),n.d(s,{assets:()=>r,contentTitle:()=>a,default:()=>g,frontMatter:()=>i,metadata:()=>c,toc:()=>l});var t=n(4848),o=n(8453);const i={},a="Receiving Messages",c={id:"how-to/receive-messages",title:"Receiving Messages",description:"Listen to only incoming messages",source:"@site/docs/how-to/receive-messages.md",sourceDirName:"how-to",slug:"/how-to/receive-messages",permalink:"/docs/how-to/receive-messages",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/receive-messages.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"receive-files",permalink:"/docs/how-to/receive-files"},next:{title:"Sending Files",permalink:"/docs/how-to/send-files"}},r={},l=[{value:"Listen to only incoming messages",id:"listen-to-only-incoming-messages",level:2},{value:"Listen to all messages in and out",id:"listen-to-all-messages-in-and-out",level:2}];function d(e){const s={code:"code",h1:"h1",h2:"h2",header:"header",p:"p",pre:"pre",...(0,o.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(s.header,{children:(0,t.jsx)(s.h1,{id:"receiving-messages",children:"Receiving Messages"})}),"\n",(0,t.jsx)(s.h2,{id:"listen-to-only-incoming-messages",children:"Listen to only incoming messages"}),"\n",(0,t.jsx)(s.p,{children:"[[onMessage]]"}),"\n",(0,t.jsx)(s.pre,{children:(0,t.jsx)(s.code,{className:"language-javascript",children:" client.onMessage(message=>{\n console.log(message.body);\n })\n"})}),"\n",(0,t.jsx)(s.h2,{id:"listen-to-all-messages-in-and-out",children:"Listen to all messages in and out"}),"\n",(0,t.jsx)(s.p,{children:"[[onAnyMessage]]"}),"\n",(0,t.jsx)(s.pre,{children:(0,t.jsx)(s.code,{className:"language-javascript",children:" client.onAnyMessage(message=>{\n console.log(message.body);\n })\n"})})]})}function g(e={}){const{wrapper:s}={...(0,o.R)(),...e.components};return s?(0,t.jsx)(s,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,s,n)=>{n.d(s,{R:()=>a,x:()=>c});var t=n(6540);const o={},i=t.createContext(o);function a(e){const s=t.useContext(i);return t.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function c(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(o):e.components||o:a(e.components),t.createElement(i.Provider,{value:s},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7c769d76.d00e3472.js b/assets/js/7c769d76.d00e3472.js
deleted file mode 100644
index eb515a31ed..0000000000
--- a/assets/js/7c769d76.d00e3472.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[8726],{4662:(e,t,o)=>{o.r(t),o.d(t,{assets:()=>i,contentTitle:()=>a,default:()=>h,frontMatter:()=>c,metadata:()=>r,toc:()=>u});var n=o(4848),s=o(8453);const c={},a="Detecting Logouts",r={id:"how-to/detect-logout",title:"Detecting Logouts",description:"First use [[onStateChanged]] to detect changes in the session state. Then use [[forceRefocus]] to force the the app to continue working. If state equals UNPAIRED that means the host account user has manually de authenticated the session through the app.",source:"@site/docs/how-to/detect-logout.md",sourceDirName:"how-to",slug:"/how-to/detect-logout",permalink:"/docs/how-to/detect-logout",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/detect-logout.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Decrypting Media",permalink:"/docs/how-to/decrypt-media"},next:{title:"Group",permalink:"/docs/how-to/groups"}},i={},u=[];function d(e){const t={code:"code",h1:"h1",p:"p",pre:"pre",...(0,s.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(t.h1,{id:"detecting-logouts",children:"Detecting Logouts"}),"\n",(0,n.jsxs)(t.p,{children:["First use [[onStateChanged]] to detect changes in the session state. Then use [[forceRefocus]] to force the the app to continue working. If ",(0,n.jsx)(t.code,{children:"state"})," equals ",(0,n.jsx)(t.code,{children:"UNPAIRED"})," that means the host account user has manually de authenticated the session through the app."]}),"\n",(0,n.jsx)(t.pre,{children:(0,n.jsx)(t.code,{className:"language-javascript",children:"\n client.onStateChanged(state=>{\n console.log('statechanged', state)\n if(state===\"CONFLICT\" || state===\"UNLAUNCHED\") client.forceRefocus();\n\n if(state==='UNPAIRED') console.log('LOGGED OUT!!!!')\n });\n"})}),"\n",(0,n.jsx)(t.p,{children:"For more information see: [[STATE]]"})]})}function h(e={}){const{wrapper:t}={...(0,s.R)(),...e.components};return t?(0,n.jsx)(t,{...e,children:(0,n.jsx)(d,{...e})}):d(e)}},8453:(e,t,o)=>{o.d(t,{R:()=>a,x:()=>r});var n=o(6540);const s={},c=n.createContext(s);function a(e){const t=n.useContext(c);return n.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function r(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:a(e.components),n.createElement(c.Provider,{value:t},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7c769d76.eb690d6c.js b/assets/js/7c769d76.eb690d6c.js
new file mode 100644
index 0000000000..7f7056a82c
--- /dev/null
+++ b/assets/js/7c769d76.eb690d6c.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[8726],{4662:(e,t,o)=>{o.r(t),o.d(t,{assets:()=>i,contentTitle:()=>a,default:()=>h,frontMatter:()=>c,metadata:()=>r,toc:()=>u});var n=o(4848),s=o(8453);const c={},a="Detecting Logouts",r={id:"how-to/detect-logout",title:"Detecting Logouts",description:"First use [[onStateChanged]] to detect changes in the session state. Then use [[forceRefocus]] to force the the app to continue working. If state equals UNPAIRED that means the host account user has manually de authenticated the session through the app.",source:"@site/docs/how-to/detect-logout.md",sourceDirName:"how-to",slug:"/how-to/detect-logout",permalink:"/docs/how-to/detect-logout",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/how-to/detect-logout.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Decrypting Media",permalink:"/docs/how-to/decrypt-media"},next:{title:"Group",permalink:"/docs/how-to/groups"}},i={},u=[];function d(e){const t={code:"code",h1:"h1",header:"header",p:"p",pre:"pre",...(0,s.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(t.header,{children:(0,n.jsx)(t.h1,{id:"detecting-logouts",children:"Detecting Logouts"})}),"\n",(0,n.jsxs)(t.p,{children:["First use [[onStateChanged]] to detect changes in the session state. Then use [[forceRefocus]] to force the the app to continue working. If ",(0,n.jsx)(t.code,{children:"state"})," equals ",(0,n.jsx)(t.code,{children:"UNPAIRED"})," that means the host account user has manually de authenticated the session through the app."]}),"\n",(0,n.jsx)(t.pre,{children:(0,n.jsx)(t.code,{className:"language-javascript",children:"\n client.onStateChanged(state=>{\n console.log('statechanged', state)\n if(state===\"CONFLICT\" || state===\"UNLAUNCHED\") client.forceRefocus();\n\n if(state==='UNPAIRED') console.log('LOGGED OUT!!!!')\n });\n"})}),"\n",(0,n.jsx)(t.p,{children:"For more information see: [[STATE]]"})]})}function h(e={}){const{wrapper:t}={...(0,s.R)(),...e.components};return t?(0,n.jsx)(t,{...e,children:(0,n.jsx)(d,{...e})}):d(e)}},8453:(e,t,o)=>{o.d(t,{R:()=>a,x:()=>r});var n=o(6540);const s={},c=n.createContext(s);function a(e){const t=n.useContext(c);return n.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function r(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:a(e.components),n.createElement(c.Provider,{value:t},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7d55d1f2.352f6aa2.js b/assets/js/7d55d1f2.352f6aa2.js
new file mode 100644
index 0000000000..9c1a6215a5
--- /dev/null
+++ b/assets/js/7d55d1f2.352f6aa2.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7157],{7342:(e,n,r)=>{r.r(n),r.d(n,{assets:()=>c,contentTitle:()=>l,default:()=>h,frontMatter:()=>i,metadata:()=>a,toc:()=>o});var t=r(4848),s=r(8453);const i={},l="Interface: Label",a={id:"reference/api/model/label/interfaces/Label",title:"Interface: Label",description:"Properties",source:"@site/docs/reference/api/model/label/interfaces/Label.md",sourceDirName:"reference/api/model/label/interfaces",slug:"/reference/api/model/label/interfaces/Label",permalink:"/docs/reference/api/model/label/interfaces/Label",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/label/interfaces/Label.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/label",permalink:"/docs/reference/api/model/label/"},next:{title:"api/model/media",permalink:"/docs/reference/api/model/media/"}},c={},o=[{value:"Properties",id:"properties",level:2},{value:"id",id:"id",level:3},{value:"items",id:"items",level:3},{value:"name",id:"name",level:3}];function d(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",header:"header",hr:"hr",p:"p",strong:"strong",...(0,s.R)(),...e.components};return(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(n.header,{children:(0,t.jsx)(n.h1,{id:"interface-label",children:"Interface: Label"})}),"\n",(0,t.jsx)(n.h2,{id:"properties",children:"Properties"}),"\n",(0,t.jsx)(n.h3,{id:"id",children:"id"}),"\n",(0,t.jsxs)(n.blockquote,{children:["\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.strong,{children:"id"}),": ",(0,t.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:'The internal ID of the label. Usually a number represented as a string e.g "1"'}),"\n",(0,t.jsx)(n.hr,{}),"\n",(0,t.jsx)(n.h3,{id:"items",children:"items"}),"\n",(0,t.jsxs)(n.blockquote,{children:["\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.strong,{children:"items"}),": ",(0,t.jsx)(n.code,{children:"object"}),"[]"]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"The items that are tagged with this label"}),"\n",(0,t.jsx)(n.hr,{}),"\n",(0,t.jsx)(n.h3,{id:"name",children:"name"}),"\n",(0,t.jsxs)(n.blockquote,{children:["\n",(0,t.jsxs)(n.p,{children:[(0,t.jsx)(n.strong,{children:"name"}),": ",(0,t.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,t.jsx)(n.p,{children:"The text contents of the label"})]})}function h(e={}){const{wrapper:n}={...(0,s.R)(),...e.components};return n?(0,t.jsx)(n,{...e,children:(0,t.jsx)(d,{...e})}):d(e)}},8453:(e,n,r)=>{r.d(n,{R:()=>l,x:()=>a});var t=r(6540);const s={},i=t.createContext(s);function l(e){const n=t.useContext(i);return t.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function a(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:l(e.components),t.createElement(i.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7d55d1f2.ccfc5ce3.js b/assets/js/7d55d1f2.ccfc5ce3.js
deleted file mode 100644
index 9300331a0a..0000000000
--- a/assets/js/7d55d1f2.ccfc5ce3.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[7157],{7342:(e,n,t)=>{t.r(n),t.d(n,{assets:()=>c,contentTitle:()=>l,default:()=>h,frontMatter:()=>i,metadata:()=>a,toc:()=>o});var r=t(4848),s=t(8453);const i={},l="Interface: Label",a={id:"reference/api/model/label/interfaces/Label",title:"Interface: Label",description:"Properties",source:"@site/docs/reference/api/model/label/interfaces/Label.md",sourceDirName:"reference/api/model/label/interfaces",slug:"/reference/api/model/label/interfaces/Label",permalink:"/docs/reference/api/model/label/interfaces/Label",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/api/model/label/interfaces/Label.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"api/model/label",permalink:"/docs/reference/api/model/label/"},next:{title:"api/model/media",permalink:"/docs/reference/api/model/media/"}},c={},o=[{value:"Properties",id:"properties",level:2},{value:"id",id:"id",level:3},{value:"items",id:"items",level:3},{value:"name",id:"name",level:3}];function d(e){const n={blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",hr:"hr",p:"p",strong:"strong",...(0,s.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(n.h1,{id:"interface-label",children:"Interface: Label"}),"\n",(0,r.jsx)(n.h2,{id:"properties",children:"Properties"}),"\n",(0,r.jsx)(n.h3,{id:"id",children:"id"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"id"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:'The internal ID of the label. Usually a number represented as a string e.g "1"'}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"items",children:"items"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"items"}),": ",(0,r.jsx)(n.code,{children:"object"}),"[]"]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"The items that are tagged with this label"}),"\n",(0,r.jsx)(n.hr,{}),"\n",(0,r.jsx)(n.h3,{id:"name",children:"name"}),"\n",(0,r.jsxs)(n.blockquote,{children:["\n",(0,r.jsxs)(n.p,{children:[(0,r.jsx)(n.strong,{children:"name"}),": ",(0,r.jsx)(n.code,{children:"string"})]}),"\n"]}),"\n",(0,r.jsx)(n.p,{children:"The text contents of the label"})]})}function h(e={}){const{wrapper:n}={...(0,s.R)(),...e.components};return n?(0,r.jsx)(n,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}},8453:(e,n,t)=>{t.d(n,{R:()=>l,x:()=>a});var r=t(6540);const s={},i=r.createContext(s);function l(e){const n=r.useContext(i);return r.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function a(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(s):e.components||s:l(e.components),r.createElement(i.Provider,{value:n},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7e283186.b17b125c.js b/assets/js/7e283186.b17b125c.js
deleted file mode 100644
index 8b779edfc9..0000000000
--- a/assets/js/7e283186.b17b125c.js
+++ /dev/null
@@ -1 +0,0 @@
-"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[2119],{1040:(e,r,s)=>{s.r(r),s.d(r,{assets:()=>o,contentTitle:()=>c,default:()=>u,frontMatter:()=>i,metadata:()=>l,toc:()=>a});var n=s(4848),t=s(8453);const i={},c="Interface: DialogTemplate",l={id:"reference/structures/Dialog/interfaces/DialogTemplate",title:"Interface: DialogTemplate",description:"Properties",source:"@site/docs/reference/structures/Dialog/interfaces/DialogTemplate.md",sourceDirName:"reference/structures/Dialog/interfaces",slug:"/reference/structures/Dialog/interfaces/DialogTemplate",permalink:"/docs/reference/structures/Dialog/interfaces/DialogTemplate",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/Dialog/interfaces/DialogTemplate.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: DialogState",permalink:"/docs/reference/structures/Dialog/interfaces/DialogState"},next:{title:"Interface: DialogValidation",permalink:"/docs/reference/structures/Dialog/interfaces/DialogValidation"}},o={},a=[{value:"Properties",id:"properties",level:2},{value:"dialogId",id:"dialogid",level:3},{value:"identifier",id:"identifier",level:3},{value:"privateOnly",id:"privateonly",level:3},{value:"properties",id:"properties-1",level:3},{value:"Index Signature",id:"index-signature",level:4},{value:"startMessage",id:"startmessage",level:3},{value:"successMessage",id:"successmessage",level:3}];function d(e){const r={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",h4:"h4",hr:"hr",p:"p",strong:"strong",...(0,t.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(r.h1,{id:"interface-dialogtemplate",children:"Interface: DialogTemplate"}),"\n",(0,n.jsx)(r.h2,{id:"properties",children:"Properties"}),"\n",(0,n.jsx)(r.h3,{id:"dialogid",children:"dialogId"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"dialogId"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"identifier",children:"identifier"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"identifier"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"privateonly",children:"privateOnly"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"privateOnly"}),": ",(0,n.jsx)(r.code,{children:"boolean"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"properties-1",children:"properties"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"properties"}),": ",(0,n.jsx)(r.code,{children:"object"})]}),"\n"]}),"\n",(0,n.jsx)(r.h4,{id:"index-signature",children:"Index Signature"}),"\n",(0,n.jsxs)(r.p,{children:["[",(0,n.jsx)(r.code,{children:"key"}),": ",(0,n.jsx)(r.code,{children:"string"}),"]: ",(0,n.jsx)(r.a,{href:"/docs/reference/structures/Dialog/interfaces/DialogProperty",children:(0,n.jsx)(r.code,{children:"DialogProperty"})})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"startmessage",children:"startMessage"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"startMessage"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"successmessage",children:"successMessage"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"successMessage"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]})]})}function u(e={}){const{wrapper:r}={...(0,t.R)(),...e.components};return r?(0,n.jsx)(r,{...e,children:(0,n.jsx)(d,{...e})}):d(e)}},8453:(e,r,s)=>{s.d(r,{R:()=>c,x:()=>l});var n=s(6540);const t={},i=n.createContext(t);function c(e){const r=n.useContext(i);return n.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function l(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:c(e.components),n.createElement(i.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/7e283186.b751a54a.js b/assets/js/7e283186.b751a54a.js
new file mode 100644
index 0000000000..49c5960424
--- /dev/null
+++ b/assets/js/7e283186.b751a54a.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[2119],{1040:(e,r,s)=>{s.r(r),s.d(r,{assets:()=>o,contentTitle:()=>c,default:()=>u,frontMatter:()=>i,metadata:()=>l,toc:()=>a});var n=s(4848),t=s(8453);const i={},c="Interface: DialogTemplate",l={id:"reference/structures/Dialog/interfaces/DialogTemplate",title:"Interface: DialogTemplate",description:"Properties",source:"@site/docs/reference/structures/Dialog/interfaces/DialogTemplate.md",sourceDirName:"reference/structures/Dialog/interfaces",slug:"/reference/structures/Dialog/interfaces/DialogTemplate",permalink:"/docs/reference/structures/Dialog/interfaces/DialogTemplate",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/Dialog/interfaces/DialogTemplate.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Interface: DialogState",permalink:"/docs/reference/structures/Dialog/interfaces/DialogState"},next:{title:"Interface: DialogValidation",permalink:"/docs/reference/structures/Dialog/interfaces/DialogValidation"}},o={},a=[{value:"Properties",id:"properties",level:2},{value:"dialogId",id:"dialogid",level:3},{value:"identifier",id:"identifier",level:3},{value:"privateOnly",id:"privateonly",level:3},{value:"properties",id:"properties-1",level:3},{value:"Index Signature",id:"index-signature",level:4},{value:"startMessage",id:"startmessage",level:3},{value:"successMessage",id:"successmessage",level:3}];function d(e){const r={a:"a",blockquote:"blockquote",code:"code",h1:"h1",h2:"h2",h3:"h3",h4:"h4",header:"header",hr:"hr",p:"p",strong:"strong",...(0,t.R)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(r.header,{children:(0,n.jsx)(r.h1,{id:"interface-dialogtemplate",children:"Interface: DialogTemplate"})}),"\n",(0,n.jsx)(r.h2,{id:"properties",children:"Properties"}),"\n",(0,n.jsx)(r.h3,{id:"dialogid",children:"dialogId"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"dialogId"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"identifier",children:"identifier"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"identifier"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"privateonly",children:"privateOnly"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"privateOnly"}),": ",(0,n.jsx)(r.code,{children:"boolean"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"properties-1",children:"properties"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"properties"}),": ",(0,n.jsx)(r.code,{children:"object"})]}),"\n"]}),"\n",(0,n.jsx)(r.h4,{id:"index-signature",children:"Index Signature"}),"\n",(0,n.jsxs)(r.p,{children:["[",(0,n.jsx)(r.code,{children:"key"}),": ",(0,n.jsx)(r.code,{children:"string"}),"]: ",(0,n.jsx)(r.a,{href:"/docs/reference/structures/Dialog/interfaces/DialogProperty",children:(0,n.jsx)(r.code,{children:"DialogProperty"})})]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"startmessage",children:"startMessage"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"startMessage"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]}),"\n",(0,n.jsx)(r.hr,{}),"\n",(0,n.jsx)(r.h3,{id:"successmessage",children:"successMessage"}),"\n",(0,n.jsxs)(r.blockquote,{children:["\n",(0,n.jsxs)(r.p,{children:[(0,n.jsx)(r.strong,{children:"successMessage"}),": ",(0,n.jsx)(r.code,{children:"string"})]}),"\n"]})]})}function u(e={}){const{wrapper:r}={...(0,t.R)(),...e.components};return r?(0,n.jsx)(r,{...e,children:(0,n.jsx)(d,{...e})}):d(e)}},8453:(e,r,s)=>{s.d(r,{R:()=>c,x:()=>l});var n=s(6540);const t={},i=n.createContext(t);function c(e){const r=n.useContext(i);return n.useMemo((function(){return"function"==typeof e?e(r):{...r,...e}}),[r,e])}function l(e){let r;return r=e.disableParentContext?"function"==typeof e.components?e.components(t):e.components||t:c(e.components),n.createElement(i.Provider,{value:r},e.children)}}}]);
\ No newline at end of file
diff --git a/assets/js/80965edc.7ac73897.js b/assets/js/80965edc.7ac73897.js
new file mode 100644
index 0000000000..a8cacf4d3b
--- /dev/null
+++ b/assets/js/80965edc.7ac73897.js
@@ -0,0 +1 @@
+"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[6555],{6794:(e,r,s)=>{s.r(r),s.d(r,{assets:()=>i,contentTitle:()=>n,default:()=>d,frontMatter:()=>c,metadata:()=>o,toc:()=>a});var t=s(4848),l=s(8453);const c={},n="structures/Collector",o={id:"reference/structures/Collector/index",title:"structures/Collector",description:"Index",source:"@site/docs/reference/structures/Collector/index.md",sourceDirName:"reference/structures/Collector",slug:"/reference/structures/Collector/",permalink:"/docs/reference/structures/Collector/",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/docs/reference/structures/Collector/index.md",tags:[],version:"current",frontMatter:{},sidebar:"tutorialSidebar",previous:{title:"Variable: log",permalink:"/docs/reference/logging/logging/variables/log"},next:{title:"Class: Collection\\Your Docusaurus site did not load properly.
\nA very common reason is a wrong site baseUrl configuration.
\nCurrent configured baseUrl = ${e} ${"/"===e?" (default value)":""}
\nWe suggest trying baseUrl =
\n