From 0c8b54203f83cfa6aac22b792d33fcaf40febda5 Mon Sep 17 00:00:00 2001 From: TechQuery Date: Tue, 8 Aug 2023 20:05:29 +0000 Subject: [PATCH] deploy: a49b6415be3a49ee0a4a25f5c30f6f8581a180c1 --- .nojekyll | 1 + assets/highlight.css | 22 + assets/main.js | 58 + assets/search.js | 1 + assets/style.css | 1367 +++++++++++++++++++++++ classes/ChatListModel.html | 207 ++++ classes/LarkApp.html | 341 ++++++ classes/MessageListModel.html | 213 ++++ classes/SpreadSheetModel.html | 261 +++++ functions/BiDataTable.html | 138 +++ functions/BiTable.html | 125 +++ functions/BiTableView.html | 125 +++ functions/createPageStream.html | 152 +++ functions/isLarkError.html | 130 +++ functions/makeSimpleFilter.html | 137 +++ functions/normalizeText.html | 130 +++ index.html | 143 +++ interfaces/ActionCardTag.html | 159 +++ interfaces/AtTag.html | 159 +++ interfaces/ButtonCardTag.html | 187 ++++ interfaces/CardHeader.html | 152 +++ interfaces/ChatCardMessage.html | 152 +++ interfaces/ChatMessage.html | 237 ++++ interfaces/ChatMeta.html | 307 +++++ interfaces/ChatMetion.html | 178 +++ interfaces/ChatSender.html | 166 +++ interfaces/ConfirmCardTag.html | 152 +++ interfaces/CreateChatMeta.html | 231 ++++ interfaces/DivCardTag.html | 173 +++ interfaces/FileMessage.html | 157 +++ interfaces/HrCardTag.html | 145 +++ interfaces/ImageTag.html | 166 +++ interfaces/InteractiveMessage.html | 173 +++ interfaces/LarkAppOption.html | 163 +++ interfaces/LinkTag.html | 162 +++ interfaces/RevisionTable.html | 152 +++ interfaces/SendChatMessage.html | 159 +++ interfaces/SheetCellMedia.html | 166 +++ interfaces/TableCellAttachment.html | 193 ++++ interfaces/TableCellDocumentMetion.html | 175 +++ interfaces/TableCellLink.html | 159 +++ interfaces/TableCellMedia.html | 178 +++ interfaces/TableCellMetion.html | 162 +++ interfaces/TableCellRelation.html | 170 +++ interfaces/TableCellText.html | 154 +++ interfaces/TableCellUser.html | 165 +++ interfaces/TableCellUserMetion.html | 182 +++ interfaces/TableRecord.html | 192 ++++ interfaces/TextCardTag.html | 166 +++ interfaces/TextMessage.html | 148 +++ interfaces/TextTag.html | 162 +++ interfaces/URLCardTag.html | 166 +++ interfaces/UserCardMessage.html | 152 +++ modules.html | 212 ++++ types/AudioMessage.html | 121 ++ types/BITableList.html | 121 ++ types/BITableMeta.html | 126 +++ types/BiBaseData.html | 121 ++ types/BiDataTableClass.html | 126 +++ types/BiTableItem.html | 121 ++ types/CardTag.html | 121 ++ types/ChatMessageContent.html | 121 ++ types/ChatMessageType.html | 121 ++ types/ChatPermission.html | 121 ++ types/FilterOperator.html | 121 ++ types/I18nKey.html | 121 ++ types/JSTicket.html | 128 +++ types/LarkData.html | 137 +++ types/LarkPageData.html | 137 +++ types/LocaleUser.html | 121 ++ types/RichTextMessage.html | 131 +++ types/RichTextTag.html | 121 ++ types/SheetCellValue.html | 121 ++ types/SheetMeta.html | 121 ++ types/SheetRangeData.html | 130 +++ types/SpreadSheetMeta.html | 130 +++ types/StickerMessage.html | 121 ++ types/TableCellLocation.html | 121 ++ types/TableCellValue.html | 121 ++ types/TableRecordData.html | 131 +++ types/TableRecordFields.html | 121 ++ types/TableRecordList.html | 126 +++ types/TableViewItem.html | 121 ++ types/TableViewList.html | 121 ++ types/TemplateColor.html | 121 ++ types/TenantAccessToken.html | 131 +++ types/UploadTargetType.html | 121 ++ types/UserMeta.html | 121 ++ types/VideoMessage.html | 121 ++ 89 files changed, 14320 insertions(+) create mode 100644 .nojekyll create mode 100644 assets/highlight.css create mode 100644 assets/main.js create mode 100644 assets/search.js create mode 100644 assets/style.css create mode 100644 classes/ChatListModel.html create mode 100644 classes/LarkApp.html create mode 100644 classes/MessageListModel.html create mode 100644 classes/SpreadSheetModel.html create mode 100644 functions/BiDataTable.html create mode 100644 functions/BiTable.html create mode 100644 functions/BiTableView.html create mode 100644 functions/createPageStream.html create mode 100644 functions/isLarkError.html create mode 100644 functions/makeSimpleFilter.html create mode 100644 functions/normalizeText.html create mode 100644 index.html create mode 100644 interfaces/ActionCardTag.html create mode 100644 interfaces/AtTag.html create mode 100644 interfaces/ButtonCardTag.html create mode 100644 interfaces/CardHeader.html create mode 100644 interfaces/ChatCardMessage.html create mode 100644 interfaces/ChatMessage.html create mode 100644 interfaces/ChatMeta.html create mode 100644 interfaces/ChatMetion.html create mode 100644 interfaces/ChatSender.html create mode 100644 interfaces/ConfirmCardTag.html create mode 100644 interfaces/CreateChatMeta.html create mode 100644 interfaces/DivCardTag.html create mode 100644 interfaces/FileMessage.html create mode 100644 interfaces/HrCardTag.html create mode 100644 interfaces/ImageTag.html create mode 100644 interfaces/InteractiveMessage.html create mode 100644 interfaces/LarkAppOption.html create mode 100644 interfaces/LinkTag.html create mode 100644 interfaces/RevisionTable.html create mode 100644 interfaces/SendChatMessage.html create mode 100644 interfaces/SheetCellMedia.html create mode 100644 interfaces/TableCellAttachment.html create mode 100644 interfaces/TableCellDocumentMetion.html create mode 100644 interfaces/TableCellLink.html create mode 100644 interfaces/TableCellMedia.html create mode 100644 interfaces/TableCellMetion.html create mode 100644 interfaces/TableCellRelation.html create mode 100644 interfaces/TableCellText.html create mode 100644 interfaces/TableCellUser.html create mode 100644 interfaces/TableCellUserMetion.html create mode 100644 interfaces/TableRecord.html create mode 100644 interfaces/TextCardTag.html create mode 100644 interfaces/TextMessage.html create mode 100644 interfaces/TextTag.html create mode 100644 interfaces/URLCardTag.html create mode 100644 interfaces/UserCardMessage.html create mode 100644 modules.html create mode 100644 types/AudioMessage.html create mode 100644 types/BITableList.html create mode 100644 types/BITableMeta.html create mode 100644 types/BiBaseData.html create mode 100644 types/BiDataTableClass.html create mode 100644 types/BiTableItem.html create mode 100644 types/CardTag.html create mode 100644 types/ChatMessageContent.html create mode 100644 types/ChatMessageType.html create mode 100644 types/ChatPermission.html create mode 100644 types/FilterOperator.html create mode 100644 types/I18nKey.html create mode 100644 types/JSTicket.html create mode 100644 types/LarkData.html create mode 100644 types/LarkPageData.html create mode 100644 types/LocaleUser.html create mode 100644 types/RichTextMessage.html create mode 100644 types/RichTextTag.html create mode 100644 types/SheetCellValue.html create mode 100644 types/SheetMeta.html create mode 100644 types/SheetRangeData.html create mode 100644 types/SpreadSheetMeta.html create mode 100644 types/StickerMessage.html create mode 100644 types/TableCellLocation.html create mode 100644 types/TableCellValue.html create mode 100644 types/TableRecordData.html create mode 100644 types/TableRecordFields.html create mode 100644 types/TableRecordList.html create mode 100644 types/TableViewItem.html create mode 100644 types/TableViewList.html create mode 100644 types/TemplateColor.html create mode 100644 types/TenantAccessToken.html create mode 100644 types/UploadTargetType.html create mode 100644 types/UserMeta.html create mode 100644 types/VideoMessage.html diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 0000000..5674cf3 --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,22 @@ +:root { + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --code-background: var(--dark-code-background); +} + +pre, code { background: var(--code-background); } diff --git a/assets/main.js b/assets/main.js new file mode 100644 index 0000000..4c8fa61 --- /dev/null +++ b/assets/main.js @@ -0,0 +1,58 @@ +"use strict"; +"use strict";(()=>{var Se=Object.create;var re=Object.defineProperty;var we=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ke=Object.getPrototypeOf,Qe=Object.prototype.hasOwnProperty;var Pe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Ie=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Te(e))!Qe.call(t,i)&&i!==r&&re(t,i,{get:()=>e[i],enumerable:!(n=we(e,i))||n.enumerable});return t};var Ce=(t,e,r)=>(r=t!=null?Se(ke(t)):{},Ie(e||!t||!t.__esModule?re(r,"default",{value:t,enumerable:!0}):r,t));var ae=Pe((se,oe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var d=t.utils.clone(r)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(n.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?d+=2:a==l&&(r+=n[u+1]*i[d+1],u+=2,d+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),y;m in s.node.edges?y=s.node.edges[m]:(y=new t.TokenSet,s.node.edges[m]=y),s.str.length==1&&(y.final=!0),i.push({node:y,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof se=="object"?oe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ne=[];function G(t,e){ne.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){ne.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n,app:this}),n.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),r=e?.parentElement;for(;r&&!r.classList.contains(".tsd-navigation");)r instanceof HTMLDetailsElement&&(r.open=!0),r=r.parentElement;if(e){let n=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=n}}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let r=e.parentElement;for(;r&&r.tagName!=="SECTION";)r=r.parentElement;if(r&&r.offsetParent==null){this.alwaysVisibleMember=r,r.classList.add("always-visible");let n=document.createElement("p");n.classList.add("warning"),n.textContent="This member is normally hidden due to your filter settings.",r.prepend(n)}}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let r;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent="Copied!",e.classList.add("visible"),clearTimeout(r),r=setTimeout(()=>{e.classList.remove("visible"),r=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let r;return()=>{clearTimeout(r),r=setTimeout(()=>t(),e)}};var ce=Ce(ae());function de(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("tsd-search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Oe(t,n,r,s)}function Oe(t,e,r,n){r.addEventListener("input",ie(()=>{Re(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Fe(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function _e(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ce.Index.load(window.searchData.index))}function Re(t,e,r,n){if(_e(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${le(l.parent,i)}.${u}`);let d=document.createElement("li");d.classList.value=l.classes??"";let m=document.createElement("a");m.href=n.base+l.url,m.innerHTML=u,d.append(m),e.appendChild(d)}}function ue(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Fe(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function le(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(K(t.substring(s,o)),`${K(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(K(t.substring(s))),i.join("")}var Me={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>Me[e])}var P=class{constructor(e){this.el=e.el,this.app=e.app}};var M="mousedown",fe="mousemove",N="mouseup",J={x:0,y:0},he=!1,ee=!1,De=!1,D=!1,pe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(pe?"is-mobile":"not-mobile");pe&&"ontouchstart"in document.documentElement&&(De=!0,M="touchstart",fe="touchmove",N="touchend");document.addEventListener(M,t=>{ee=!0,D=!1;let e=M=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(fe,t=>{if(ee&&!D){let e=M=="touchstart"?t.targetTouches[0]:t,r=J.x-(e.pageX||0),n=J.y-(e.pageY||0);D=Math.sqrt(r*r+n*n)>10}});document.addEventListener(N,()=>{ee=!1});document.addEventListener("click",t=>{he&&(t.preventDefault(),t.stopImmediatePropagation(),he=!1)});var X=class extends P{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(M,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){D||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!D&&this.active&&r.target.closest(".col-sidebar")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),n.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var me=document.head.appendChild(document.createElement("style"));me.dataset.for="filters";var Y=class extends P{constructor(r){super(r);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),me.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let r=Q.getItem(this.key);return r?r==="true":this.el.checked}setLocalStorage(r){Q.setItem(this.key,r.toString()),this.value=r,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let n=Array.from(r.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);r.style.display=n?"none":"block"})}};var Z=class extends P{constructor(r){super(r);this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update()),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ve(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}de();G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var ge=document.getElementById("tsd-theme");ge&&ve(ge);var Ae=new U;Object.defineProperty(window,"app",{value:Ae});document.querySelectorAll("summary a").forEach(t=>{t.addEventListener("click",()=>{location.assign(t.href)})});})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/assets/search.js b/assets/search.js new file mode 100644 index 0000000..b79f370 --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"rows\":[{\"kind\":64,\"name\":\"isLarkError\",\"url\":\"functions/isLarkError.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"LarkData\",\"url\":\"types/LarkData.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"LarkPageData\",\"url\":\"types/LarkPageData.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TenantAccessToken\",\"url\":\"types/TenantAccessToken.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"LocaleUser\",\"url\":\"types/LocaleUser.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"UserMeta\",\"url\":\"types/UserMeta.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"JSTicket\",\"url\":\"types/JSTicket.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"I18nKey\",\"url\":\"types/I18nKey.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"UploadTargetType\",\"url\":\"types/UploadTargetType.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SheetMeta\",\"url\":\"types/SheetMeta.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SpreadSheetMeta\",\"url\":\"types/SpreadSheetMeta.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"SheetCellMedia\",\"url\":\"interfaces/SheetCellMedia.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/SheetCellMedia.html#type\",\"classes\":\"\",\"parent\":\"SheetCellMedia\"},{\"kind\":1024,\"name\":\"cellPosition\",\"url\":\"interfaces/SheetCellMedia.html#cellPosition\",\"classes\":\"\",\"parent\":\"SheetCellMedia\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/SheetCellMedia.html#text\",\"classes\":\"\",\"parent\":\"SheetCellMedia\"},{\"kind\":1024,\"name\":\"link\",\"url\":\"interfaces/SheetCellMedia.html#link\",\"classes\":\"\",\"parent\":\"SheetCellMedia\"},{\"kind\":4194304,\"name\":\"SheetCellValue\",\"url\":\"types/SheetCellValue.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"SheetRangeData\",\"url\":\"types/SheetRangeData.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"RevisionTable\",\"url\":\"interfaces/RevisionTable.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/RevisionTable.html#name\",\"classes\":\"\",\"parent\":\"RevisionTable\"},{\"kind\":1024,\"name\":\"revision\",\"url\":\"interfaces/RevisionTable.html#revision\",\"classes\":\"\",\"parent\":\"RevisionTable\"},{\"kind\":4194304,\"name\":\"BITableMeta\",\"url\":\"types/BITableMeta.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BITableList\",\"url\":\"types/BITableList.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TableViewList\",\"url\":\"types/TableViewList.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"TableCellText\",\"url\":\"interfaces/TableCellText.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellText.html#type\",\"classes\":\"\",\"parent\":\"TableCellText\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TableCellText.html#text\",\"classes\":\"\",\"parent\":\"TableCellText\"},{\"kind\":4194304,\"name\":\"TableCellLocation\",\"url\":\"types/TableCellLocation.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"TableCellLink\",\"url\":\"interfaces/TableCellLink.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellLink.html#type\",\"classes\":\"\",\"parent\":\"TableCellLink\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TableCellLink.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellLink\"},{\"kind\":1024,\"name\":\"link\",\"url\":\"interfaces/TableCellLink.html#link\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellLink\"},{\"kind\":256,\"name\":\"TableCellMedia\",\"url\":\"interfaces/TableCellMedia.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellMedia.html#type\",\"classes\":\"\",\"parent\":\"TableCellMedia\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/TableCellMedia.html#size\",\"classes\":\"\",\"parent\":\"TableCellMedia\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/TableCellMedia.html#name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellMedia\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/TableCellMedia.html#url\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellMedia\"},{\"kind\":1024,\"name\":\"file_token\",\"url\":\"interfaces/TableCellMedia.html#file_token\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellMedia\"},{\"kind\":1024,\"name\":\"tmp_url\",\"url\":\"interfaces/TableCellMedia.html#tmp_url\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellMedia\"},{\"kind\":256,\"name\":\"TableCellAttachment\",\"url\":\"interfaces/TableCellAttachment.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"mimeType\",\"url\":\"interfaces/TableCellAttachment.html#mimeType\",\"classes\":\"\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/TableCellAttachment.html#name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"size\",\"url\":\"interfaces/TableCellAttachment.html#size\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/TableCellAttachment.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"attachmentToken\",\"url\":\"interfaces/TableCellAttachment.html#attachmentToken\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/TableCellAttachment.html#height\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"timeStamp\",\"url\":\"interfaces/TableCellAttachment.html#timeStamp\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/TableCellAttachment.html#width\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellAttachment\"},{\"kind\":256,\"name\":\"TableCellUser\",\"url\":\"interfaces/TableCellUser.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/TableCellUser.html#id\",\"classes\":\"\",\"parent\":\"TableCellUser\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/TableCellUser.html#name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUser\"},{\"kind\":1024,\"name\":\"en_name\",\"url\":\"interfaces/TableCellUser.html#en_name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUser\"},{\"kind\":1024,\"name\":\"email\",\"url\":\"interfaces/TableCellUser.html#email\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUser\"},{\"kind\":256,\"name\":\"TableCellMetion\",\"url\":\"interfaces/TableCellMetion.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellMetion.html#type\",\"classes\":\"\",\"parent\":\"TableCellMetion\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TableCellMetion.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellMetion\"},{\"kind\":1024,\"name\":\"mentionType\",\"url\":\"interfaces/TableCellMetion.html#mentionType\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellMetion\"},{\"kind\":256,\"name\":\"TableCellUserMetion\",\"url\":\"interfaces/TableCellUserMetion.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"mentionType\",\"url\":\"interfaces/TableCellUserMetion.html#mentionType\",\"classes\":\"\",\"parent\":\"TableCellUserMetion\"},{\"kind\":1024,\"name\":\"mentionNotify\",\"url\":\"interfaces/TableCellUserMetion.html#mentionNotify\",\"classes\":\"\",\"parent\":\"TableCellUserMetion\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellUserMetion.html#type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUserMetion\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TableCellUserMetion.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUserMetion\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/TableCellUserMetion.html#name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUserMetion\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"interfaces/TableCellUserMetion.html#token\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellUserMetion\"},{\"kind\":256,\"name\":\"TableCellDocumentMetion\",\"url\":\"interfaces/TableCellDocumentMetion.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"mentionType\",\"url\":\"interfaces/TableCellDocumentMetion.html#mentionType\",\"classes\":\"\",\"parent\":\"TableCellDocumentMetion\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellDocumentMetion.html#type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellDocumentMetion\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TableCellDocumentMetion.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellDocumentMetion\"},{\"kind\":1024,\"name\":\"link\",\"url\":\"interfaces/TableCellDocumentMetion.html#link\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellDocumentMetion\"},{\"kind\":1024,\"name\":\"token\",\"url\":\"interfaces/TableCellDocumentMetion.html#token\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellDocumentMetion\"},{\"kind\":256,\"name\":\"TableCellRelation\",\"url\":\"interfaces/TableCellRelation.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"table_id\",\"url\":\"interfaces/TableCellRelation.html#table_id\",\"classes\":\"\",\"parent\":\"TableCellRelation\"},{\"kind\":1024,\"name\":\"record_ids\",\"url\":\"interfaces/TableCellRelation.html#record_ids\",\"classes\":\"\",\"parent\":\"TableCellRelation\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/TableCellRelation.html#type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellRelation\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TableCellRelation.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableCellRelation\"},{\"kind\":4194304,\"name\":\"TableCellValue\",\"url\":\"types/TableCellValue.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TableRecordFields\",\"url\":\"types/TableRecordFields.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"TableRecord\",\"url\":\"interfaces/TableRecord.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"created_by\",\"url\":\"interfaces/TableRecord.html#created_by\",\"classes\":\"\",\"parent\":\"TableRecord\"},{\"kind\":1024,\"name\":\"created_time\",\"url\":\"interfaces/TableRecord.html#created_time\",\"classes\":\"\",\"parent\":\"TableRecord\"},{\"kind\":1024,\"name\":\"last_modified_by\",\"url\":\"interfaces/TableRecord.html#last_modified_by\",\"classes\":\"\",\"parent\":\"TableRecord\"},{\"kind\":1024,\"name\":\"last_modified_time\",\"url\":\"interfaces/TableRecord.html#last_modified_time\",\"classes\":\"\",\"parent\":\"TableRecord\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"interfaces/TableRecord.html#fields\",\"classes\":\"\",\"parent\":\"TableRecord\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/TableRecord.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableRecord\"},{\"kind\":1024,\"name\":\"record_id\",\"url\":\"interfaces/TableRecord.html#record_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TableRecord\"},{\"kind\":4194304,\"name\":\"TableRecordData\",\"url\":\"types/TableRecordData.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TableRecordList\",\"url\":\"types/TableRecordList.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"LarkAppOption\",\"url\":\"interfaces/LarkAppOption.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"interfaces/LarkAppOption.html#host\",\"classes\":\"\",\"parent\":\"LarkAppOption\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/LarkAppOption.html#id\",\"classes\":\"\",\"parent\":\"LarkAppOption\"},{\"kind\":1024,\"name\":\"secret\",\"url\":\"interfaces/LarkAppOption.html#secret\",\"classes\":\"\",\"parent\":\"LarkAppOption\"},{\"kind\":128,\"name\":\"LarkApp\",\"url\":\"classes/LarkApp.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LarkApp.html#constructor\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"classes/LarkApp.html#host\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/LarkApp.html#id\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"secret\",\"url\":\"classes/LarkApp.html#secret\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"client\",\"url\":\"classes/LarkApp.html#client\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"accessToken\",\"url\":\"classes/LarkApp.html#accessToken\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":2048,\"name\":\"getAccessToken\",\"url\":\"classes/LarkApp.html#getAccessToken\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"getTenantAccessToken\",\"url\":\"classes/LarkApp.html#getTenantAccessToken\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/LarkApp.html#getTenantAccessToken.__type-2\",\"classes\":\"\",\"parent\":\"LarkApp.getTenantAccessToken\"},{\"kind\":2048,\"name\":\"getWebSignInURL\",\"url\":\"classes/LarkApp.html#getWebSignInURL\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":2048,\"name\":\"getUserMeta\",\"url\":\"classes/LarkApp.html#getUserMeta\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":1024,\"name\":\"getJSTicket\",\"url\":\"classes/LarkApp.html#getJSTicket\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/LarkApp.html#getJSTicket.__type\",\"classes\":\"\",\"parent\":\"LarkApp.getJSTicket\"},{\"kind\":2048,\"name\":\"downloadFile\",\"url\":\"classes/LarkApp.html#downloadFile\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":2048,\"name\":\"uploadFile\",\"url\":\"classes/LarkApp.html#uploadFile\",\"classes\":\"\",\"parent\":\"LarkApp\"},{\"kind\":64,\"name\":\"createPageStream\",\"url\":\"functions/createPageStream.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ChatListModel\",\"url\":\"classes/ChatListModel.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"baseURI\",\"url\":\"classes/ChatListModel.html#baseURI\",\"classes\":\"\",\"parent\":\"ChatListModel\"},{\"kind\":2048,\"name\":\"openStream\",\"url\":\"classes/ChatListModel.html#openStream\",\"classes\":\"\",\"parent\":\"ChatListModel\"},{\"kind\":2048,\"name\":\"updateOne\",\"url\":\"classes/ChatListModel.html#updateOne\",\"classes\":\"\",\"parent\":\"ChatListModel\"},{\"kind\":128,\"name\":\"MessageListModel\",\"url\":\"classes/MessageListModel.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/MessageListModel.html#constructor\",\"classes\":\"\",\"parent\":\"MessageListModel\"},{\"kind\":1024,\"name\":\"baseURI\",\"url\":\"classes/MessageListModel.html#baseURI\",\"classes\":\"\",\"parent\":\"MessageListModel\"},{\"kind\":1024,\"name\":\"chatId\",\"url\":\"classes/MessageListModel.html#chatId\",\"classes\":\"\",\"parent\":\"MessageListModel\"},{\"kind\":2048,\"name\":\"openStream\",\"url\":\"classes/MessageListModel.html#openStream\",\"classes\":\"\",\"parent\":\"MessageListModel\"},{\"kind\":2048,\"name\":\"createOne\",\"url\":\"classes/MessageListModel.html#createOne\",\"classes\":\"\",\"parent\":\"MessageListModel\"},{\"kind\":4194304,\"name\":\"ChatPermission\",\"url\":\"types/ChatPermission.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CreateChatMeta\",\"url\":\"interfaces/CreateChatMeta.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"owner_id\",\"url\":\"interfaces/CreateChatMeta.html#owner_id\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"chat_mode\",\"url\":\"interfaces/CreateChatMeta.html#chat_mode\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"chat_type\",\"url\":\"interfaces/CreateChatMeta.html#chat_type\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"avatar\",\"url\":\"interfaces/CreateChatMeta.html#avatar\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/CreateChatMeta.html#name\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/CreateChatMeta.html#description\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"i18n_names\",\"url\":\"interfaces/CreateChatMeta.html#i18n_names\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"user_id_list\",\"url\":\"interfaces/CreateChatMeta.html#user_id_list\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"bot_id_list\",\"url\":\"interfaces/CreateChatMeta.html#bot_id_list\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"external\",\"url\":\"interfaces/CreateChatMeta.html#external\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"join_message_visibility\",\"url\":\"interfaces/CreateChatMeta.html#join_message_visibility\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"leave_message_visibility\",\"url\":\"interfaces/CreateChatMeta.html#leave_message_visibility\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":1024,\"name\":\"membership_approval\",\"url\":\"interfaces/CreateChatMeta.html#membership_approval\",\"classes\":\"\",\"parent\":\"CreateChatMeta\"},{\"kind\":256,\"name\":\"ChatMeta\",\"url\":\"interfaces/ChatMeta.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tenant_key\",\"url\":\"interfaces/ChatMeta.html#tenant_key\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"owner_id_type\",\"url\":\"interfaces/ChatMeta.html#owner_id_type\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"chat_id\",\"url\":\"interfaces/ChatMeta.html#chat_id\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"chat_tag\",\"url\":\"interfaces/ChatMeta.html#chat_tag\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"add_member_permission\",\"url\":\"interfaces/ChatMeta.html#add_member_permission\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"share_card_permission\",\"url\":\"interfaces/ChatMeta.html#share_card_permission\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"at_all_permission\",\"url\":\"interfaces/ChatMeta.html#at_all_permission\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"edit_permission\",\"url\":\"interfaces/ChatMeta.html#edit_permission\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"moderation_permission\",\"url\":\"interfaces/ChatMeta.html#moderation_permission\",\"classes\":\"\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"owner_id\",\"url\":\"interfaces/ChatMeta.html#owner_id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"chat_mode\",\"url\":\"interfaces/ChatMeta.html#chat_mode\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"chat_type\",\"url\":\"interfaces/ChatMeta.html#chat_type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"avatar\",\"url\":\"interfaces/ChatMeta.html#avatar\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ChatMeta.html#name\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/ChatMeta.html#description\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"i18n_names\",\"url\":\"interfaces/ChatMeta.html#i18n_names\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"user_id_list\",\"url\":\"interfaces/ChatMeta.html#user_id_list\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"bot_id_list\",\"url\":\"interfaces/ChatMeta.html#bot_id_list\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"external\",\"url\":\"interfaces/ChatMeta.html#external\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"join_message_visibility\",\"url\":\"interfaces/ChatMeta.html#join_message_visibility\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"leave_message_visibility\",\"url\":\"interfaces/ChatMeta.html#leave_message_visibility\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":1024,\"name\":\"membership_approval\",\"url\":\"interfaces/ChatMeta.html#membership_approval\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMeta\"},{\"kind\":4194304,\"name\":\"ChatMessageType\",\"url\":\"types/ChatMessageType.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"SendChatMessage\",\"url\":\"interfaces/SendChatMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"msg_type\",\"url\":\"interfaces/SendChatMessage.html#msg_type\",\"classes\":\"\",\"parent\":\"SendChatMessage\"},{\"kind\":1024,\"name\":\"content\",\"url\":\"interfaces/SendChatMessage.html#content\",\"classes\":\"\",\"parent\":\"SendChatMessage\"},{\"kind\":1024,\"name\":\"receive_id\",\"url\":\"interfaces/SendChatMessage.html#receive_id\",\"classes\":\"\",\"parent\":\"SendChatMessage\"},{\"kind\":256,\"name\":\"ChatSender\",\"url\":\"interfaces/ChatSender.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ChatSender.html#id\",\"classes\":\"\",\"parent\":\"ChatSender\"},{\"kind\":1024,\"name\":\"id_type\",\"url\":\"interfaces/ChatSender.html#id_type\",\"classes\":\"\",\"parent\":\"ChatSender\"},{\"kind\":1024,\"name\":\"sender_type\",\"url\":\"interfaces/ChatSender.html#sender_type\",\"classes\":\"\",\"parent\":\"ChatSender\"},{\"kind\":1024,\"name\":\"tenant_key\",\"url\":\"interfaces/ChatSender.html#tenant_key\",\"classes\":\"\",\"parent\":\"ChatSender\"},{\"kind\":256,\"name\":\"ChatMetion\",\"url\":\"interfaces/ChatMetion.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/ChatMetion.html#key\",\"classes\":\"\",\"parent\":\"ChatMetion\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ChatMetion.html#name\",\"classes\":\"\",\"parent\":\"ChatMetion\"},{\"kind\":1024,\"name\":\"tenant_key\",\"url\":\"interfaces/ChatMetion.html#tenant_key\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMetion\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ChatMetion.html#id\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMetion\"},{\"kind\":1024,\"name\":\"id_type\",\"url\":\"interfaces/ChatMetion.html#id_type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMetion\"},{\"kind\":256,\"name\":\"ChatMessage\",\"url\":\"interfaces/ChatMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"chat_id\",\"url\":\"interfaces/ChatMessage.html#chat_id\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"message_id\",\"url\":\"interfaces/ChatMessage.html#message_id\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"upper_message_id\",\"url\":\"interfaces/ChatMessage.html#upper_message_id\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"root_id\",\"url\":\"interfaces/ChatMessage.html#root_id\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"parent_id\",\"url\":\"interfaces/ChatMessage.html#parent_id\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"create_time\",\"url\":\"interfaces/ChatMessage.html#create_time\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"update_time\",\"url\":\"interfaces/ChatMessage.html#update_time\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"deleted\",\"url\":\"interfaces/ChatMessage.html#deleted\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"updated\",\"url\":\"interfaces/ChatMessage.html#updated\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"sender\",\"url\":\"interfaces/ChatMessage.html#sender\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"mentions\",\"url\":\"interfaces/ChatMessage.html#mentions\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/ChatMessage.html#body\",\"classes\":\"\",\"parent\":\"ChatMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ChatMessage.html#body.__type\",\"classes\":\"\",\"parent\":\"ChatMessage.body\"},{\"kind\":1024,\"name\":\"content\",\"url\":\"interfaces/ChatMessage.html#body.__type.content\",\"classes\":\"\",\"parent\":\"ChatMessage.body.__type\"},{\"kind\":1024,\"name\":\"msg_type\",\"url\":\"interfaces/ChatMessage.html#msg_type\",\"classes\":\"tsd-is-inherited\",\"parent\":\"ChatMessage\"},{\"kind\":256,\"name\":\"TextMessage\",\"url\":\"interfaces/TextMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TextMessage.html#text\",\"classes\":\"\",\"parent\":\"TextMessage\"},{\"kind\":256,\"name\":\"TextTag\",\"url\":\"interfaces/TextTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/TextTag.html#tag\",\"classes\":\"\",\"parent\":\"TextTag\"},{\"kind\":1024,\"name\":\"un_escape\",\"url\":\"interfaces/TextTag.html#un_escape\",\"classes\":\"\",\"parent\":\"TextTag\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/TextTag.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"TextTag\"},{\"kind\":256,\"name\":\"LinkTag\",\"url\":\"interfaces/LinkTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/LinkTag.html#tag\",\"classes\":\"\",\"parent\":\"LinkTag\"},{\"kind\":1024,\"name\":\"href\",\"url\":\"interfaces/LinkTag.html#href\",\"classes\":\"\",\"parent\":\"LinkTag\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/LinkTag.html#text\",\"classes\":\"tsd-is-inherited\",\"parent\":\"LinkTag\"},{\"kind\":256,\"name\":\"AtTag\",\"url\":\"interfaces/AtTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/AtTag.html#tag\",\"classes\":\"\",\"parent\":\"AtTag\"},{\"kind\":1024,\"name\":\"user_id\",\"url\":\"interfaces/AtTag.html#user_id\",\"classes\":\"\",\"parent\":\"AtTag\"},{\"kind\":1024,\"name\":\"user_name\",\"url\":\"interfaces/AtTag.html#user_name\",\"classes\":\"\",\"parent\":\"AtTag\"},{\"kind\":256,\"name\":\"ImageTag\",\"url\":\"interfaces/ImageTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/ImageTag.html#tag\",\"classes\":\"\",\"parent\":\"ImageTag\"},{\"kind\":1024,\"name\":\"image_key\",\"url\":\"interfaces/ImageTag.html#image_key\",\"classes\":\"\",\"parent\":\"ImageTag\"},{\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/ImageTag.html#width\",\"classes\":\"\",\"parent\":\"ImageTag\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/ImageTag.html#height\",\"classes\":\"\",\"parent\":\"ImageTag\"},{\"kind\":4194304,\"name\":\"RichTextTag\",\"url\":\"types/RichTextTag.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"RichTextMessage\",\"url\":\"types/RichTextMessage.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/RichTextMessage.html#__type\",\"classes\":\"\",\"parent\":\"RichTextMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/RichTextMessage.html#__type.__index.__type-1\",\"classes\":\"\",\"parent\":\"RichTextMessage.__type.__index\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"types/RichTextMessage.html#__type.__index.__type-1.title\",\"classes\":\"\",\"parent\":\"RichTextMessage.__type.__index.__type\"},{\"kind\":1024,\"name\":\"content\",\"url\":\"types/RichTextMessage.html#__type.__index.__type-1.content\",\"classes\":\"\",\"parent\":\"RichTextMessage.__type.__index.__type\"},{\"kind\":256,\"name\":\"UserCardMessage\",\"url\":\"interfaces/UserCardMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/UserCardMessage.html#type\",\"classes\":\"\",\"parent\":\"UserCardMessage\"},{\"kind\":1024,\"name\":\"user_id\",\"url\":\"interfaces/UserCardMessage.html#user_id\",\"classes\":\"\",\"parent\":\"UserCardMessage\"},{\"kind\":256,\"name\":\"ChatCardMessage\",\"url\":\"interfaces/ChatCardMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ChatCardMessage.html#type\",\"classes\":\"\",\"parent\":\"ChatCardMessage\"},{\"kind\":1024,\"name\":\"chat_id\",\"url\":\"interfaces/ChatCardMessage.html#chat_id\",\"classes\":\"\",\"parent\":\"ChatCardMessage\"},{\"kind\":256,\"name\":\"FileMessage\",\"url\":\"interfaces/FileMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/FileMessage.html#type\",\"classes\":\"\",\"parent\":\"FileMessage\"},{\"kind\":1024,\"name\":\"file_key\",\"url\":\"interfaces/FileMessage.html#file_key\",\"classes\":\"\",\"parent\":\"FileMessage\"},{\"kind\":4194304,\"name\":\"StickerMessage\",\"url\":\"types/StickerMessage.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AudioMessage\",\"url\":\"types/AudioMessage.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"VideoMessage\",\"url\":\"types/VideoMessage.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"TextCardTag\",\"url\":\"interfaces/TextCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/TextCardTag.html#tag\",\"classes\":\"\",\"parent\":\"TextCardTag\"},{\"kind\":1024,\"name\":\"content\",\"url\":\"interfaces/TextCardTag.html#content\",\"classes\":\"\",\"parent\":\"TextCardTag\"},{\"kind\":1024,\"name\":\"i18n\",\"url\":\"interfaces/TextCardTag.html#i18n\",\"classes\":\"\",\"parent\":\"TextCardTag\"},{\"kind\":1024,\"name\":\"lines\",\"url\":\"interfaces/TextCardTag.html#lines\",\"classes\":\"\",\"parent\":\"TextCardTag\"},{\"kind\":256,\"name\":\"HrCardTag\",\"url\":\"interfaces/HrCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/HrCardTag.html#tag\",\"classes\":\"\",\"parent\":\"HrCardTag\"},{\"kind\":256,\"name\":\"URLCardTag\",\"url\":\"interfaces/URLCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/URLCardTag.html#url\",\"classes\":\"\",\"parent\":\"URLCardTag\"},{\"kind\":1024,\"name\":\"pc_url\",\"url\":\"interfaces/URLCardTag.html#pc_url\",\"classes\":\"\",\"parent\":\"URLCardTag\"},{\"kind\":1024,\"name\":\"android_url\",\"url\":\"interfaces/URLCardTag.html#android_url\",\"classes\":\"\",\"parent\":\"URLCardTag\"},{\"kind\":1024,\"name\":\"ios_url\",\"url\":\"interfaces/URLCardTag.html#ios_url\",\"classes\":\"\",\"parent\":\"URLCardTag\"},{\"kind\":256,\"name\":\"ConfirmCardTag\",\"url\":\"interfaces/ConfirmCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/ConfirmCardTag.html#title\",\"classes\":\"\",\"parent\":\"ConfirmCardTag\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/ConfirmCardTag.html#text\",\"classes\":\"\",\"parent\":\"ConfirmCardTag\"},{\"kind\":256,\"name\":\"ButtonCardTag\",\"url\":\"interfaces/ButtonCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/ButtonCardTag.html#tag\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ButtonCardTag.html#type\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/ButtonCardTag.html#text\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ButtonCardTag.html#value\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/ButtonCardTag.html#url\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":1024,\"name\":\"multi_url\",\"url\":\"interfaces/ButtonCardTag.html#multi_url\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":1024,\"name\":\"confirm\",\"url\":\"interfaces/ButtonCardTag.html#confirm\",\"classes\":\"\",\"parent\":\"ButtonCardTag\"},{\"kind\":256,\"name\":\"DivCardTag\",\"url\":\"interfaces/DivCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/DivCardTag.html#tag\",\"classes\":\"\",\"parent\":\"DivCardTag\"},{\"kind\":1024,\"name\":\"text\",\"url\":\"interfaces/DivCardTag.html#text\",\"classes\":\"\",\"parent\":\"DivCardTag\"},{\"kind\":1024,\"name\":\"fields\",\"url\":\"interfaces/DivCardTag.html#fields\",\"classes\":\"\",\"parent\":\"DivCardTag\"},{\"kind\":1024,\"name\":\"extra\",\"url\":\"interfaces/DivCardTag.html#extra\",\"classes\":\"\",\"parent\":\"DivCardTag\"},{\"kind\":256,\"name\":\"ActionCardTag\",\"url\":\"interfaces/ActionCardTag.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"tag\",\"url\":\"interfaces/ActionCardTag.html#tag\",\"classes\":\"\",\"parent\":\"ActionCardTag\"},{\"kind\":1024,\"name\":\"layout\",\"url\":\"interfaces/ActionCardTag.html#layout\",\"classes\":\"\",\"parent\":\"ActionCardTag\"},{\"kind\":1024,\"name\":\"actions\",\"url\":\"interfaces/ActionCardTag.html#actions\",\"classes\":\"\",\"parent\":\"ActionCardTag\"},{\"kind\":4194304,\"name\":\"CardTag\",\"url\":\"types/CardTag.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TemplateColor\",\"url\":\"types/TemplateColor.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"CardHeader\",\"url\":\"interfaces/CardHeader.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/CardHeader.html#title\",\"classes\":\"\",\"parent\":\"CardHeader\"},{\"kind\":1024,\"name\":\"template\",\"url\":\"interfaces/CardHeader.html#template\",\"classes\":\"\",\"parent\":\"CardHeader\"},{\"kind\":256,\"name\":\"InteractiveMessage\",\"url\":\"interfaces/InteractiveMessage.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"config\",\"url\":\"interfaces/InteractiveMessage.html#config\",\"classes\":\"\",\"parent\":\"InteractiveMessage\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/InteractiveMessage.html#config.__type\",\"classes\":\"\",\"parent\":\"InteractiveMessage.config\"},{\"kind\":1024,\"name\":\"enable_forward\",\"url\":\"interfaces/InteractiveMessage.html#config.__type.enable_forward\",\"classes\":\"\",\"parent\":\"InteractiveMessage.config.__type\"},{\"kind\":1024,\"name\":\"update_multi\",\"url\":\"interfaces/InteractiveMessage.html#config.__type.update_multi\",\"classes\":\"\",\"parent\":\"InteractiveMessage.config.__type\"},{\"kind\":1024,\"name\":\"header\",\"url\":\"interfaces/InteractiveMessage.html#header\",\"classes\":\"\",\"parent\":\"InteractiveMessage\"},{\"kind\":1024,\"name\":\"elements\",\"url\":\"interfaces/InteractiveMessage.html#elements\",\"classes\":\"\",\"parent\":\"InteractiveMessage\"},{\"kind\":1024,\"name\":\"i18n_elements\",\"url\":\"interfaces/InteractiveMessage.html#i18n_elements\",\"classes\":\"\",\"parent\":\"InteractiveMessage\"},{\"kind\":4194304,\"name\":\"ChatMessageContent\",\"url\":\"types/ChatMessageContent.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"SpreadSheetModel\",\"url\":\"classes/SpreadSheetModel.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SpreadSheetModel.html#constructor\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":1024,\"name\":\"baseURI\",\"url\":\"classes/SpreadSheetModel.html#baseURI\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":1024,\"name\":\"offset\",\"url\":\"classes/SpreadSheetModel.html#offset\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":1024,\"name\":\"columnKeys\",\"url\":\"classes/SpreadSheetModel.html#columnKeys\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":1024,\"name\":\"meta\",\"url\":\"classes/SpreadSheetModel.html#meta\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"classes/SpreadSheetModel.html#id\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":1024,\"name\":\"sheetId\",\"url\":\"classes/SpreadSheetModel.html#sheetId\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":2048,\"name\":\"getMeta\",\"url\":\"classes/SpreadSheetModel.html#getMeta\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":2048,\"name\":\"loadPage\",\"url\":\"classes/SpreadSheetModel.html#loadPage\",\"classes\":\"\",\"parent\":\"SpreadSheetModel\"},{\"kind\":64,\"name\":\"makeSimpleFilter\",\"url\":\"functions/makeSimpleFilter.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"BiDataTable\",\"url\":\"functions/BiDataTable.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"BiTableView\",\"url\":\"functions/BiTableView.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"BiTable\",\"url\":\"functions/BiTable.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"FilterOperator\",\"url\":\"types/FilterOperator.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"normalizeText\",\"url\":\"functions/normalizeText.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BiBaseData\",\"url\":\"types/BiBaseData.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"TableViewItem\",\"url\":\"types/TableViewItem.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BiDataTableClass\",\"url\":\"types/BiDataTableClass.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"BiTableItem\",\"url\":\"types/BiTableItem.html\",\"classes\":\"\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,52.713]],[\"comment/0\",[]],[\"name/1\",[1,52.713]],[\"comment/1\",[]],[\"name/2\",[2,52.713]],[\"comment/2\",[]],[\"name/3\",[3,52.713]],[\"comment/3\",[]],[\"name/4\",[4,52.713]],[\"comment/4\",[]],[\"name/5\",[5,52.713]],[\"comment/5\",[]],[\"name/6\",[6,52.713]],[\"comment/6\",[]],[\"name/7\",[7,52.713]],[\"comment/7\",[]],[\"name/8\",[8,52.713]],[\"comment/8\",[]],[\"name/9\",[9,52.713]],[\"comment/9\",[]],[\"name/10\",[10,52.713]],[\"comment/10\",[]],[\"name/11\",[11,52.713]],[\"comment/11\",[]],[\"name/12\",[12,31.51]],[\"comment/12\",[]],[\"name/13\",[13,52.713]],[\"comment/13\",[]],[\"name/14\",[14,30.741]],[\"comment/14\",[]],[\"name/15\",[15,44.24]],[\"comment/15\",[]],[\"name/16\",[16,52.713]],[\"comment/16\",[]],[\"name/17\",[17,52.713]],[\"comment/17\",[]],[\"name/18\",[18,52.713]],[\"comment/18\",[]],[\"name/19\",[19,35.367]],[\"comment/19\",[]],[\"name/20\",[20,52.713]],[\"comment/20\",[]],[\"name/21\",[21,52.713]],[\"comment/21\",[]],[\"name/22\",[22,52.713]],[\"comment/22\",[]],[\"name/23\",[23,52.713]],[\"comment/23\",[]],[\"name/24\",[24,52.713]],[\"comment/24\",[]],[\"name/25\",[12,31.51]],[\"comment/25\",[]],[\"name/26\",[14,30.741]],[\"comment/26\",[]],[\"name/27\",[25,52.713]],[\"comment/27\",[]],[\"name/28\",[26,52.713]],[\"comment/28\",[]],[\"name/29\",[12,31.51]],[\"comment/29\",[]],[\"name/30\",[14,30.741]],[\"comment/30\",[]],[\"name/31\",[15,44.24]],[\"comment/31\",[]],[\"name/32\",[27,52.713]],[\"comment/32\",[]],[\"name/33\",[12,31.51]],[\"comment/33\",[]],[\"name/34\",[28,47.605]],[\"comment/34\",[]],[\"name/35\",[19,35.367]],[\"comment/35\",[]],[\"name/36\",[29,44.24]],[\"comment/36\",[]],[\"name/37\",[30,52.713]],[\"comment/37\",[]],[\"name/38\",[31,52.713]],[\"comment/38\",[]],[\"name/39\",[32,52.713]],[\"comment/39\",[]],[\"name/40\",[33,52.713]],[\"comment/40\",[]],[\"name/41\",[19,35.367]],[\"comment/41\",[]],[\"name/42\",[28,47.605]],[\"comment/42\",[]],[\"name/43\",[34,35.367]],[\"comment/43\",[]],[\"name/44\",[35,52.713]],[\"comment/44\",[]],[\"name/45\",[36,47.605]],[\"comment/45\",[]],[\"name/46\",[37,52.713]],[\"comment/46\",[]],[\"name/47\",[38,47.605]],[\"comment/47\",[]],[\"name/48\",[39,52.713]],[\"comment/48\",[]],[\"name/49\",[34,35.367]],[\"comment/49\",[]],[\"name/50\",[19,35.367]],[\"comment/50\",[]],[\"name/51\",[40,52.713]],[\"comment/51\",[]],[\"name/52\",[41,52.713]],[\"comment/52\",[]],[\"name/53\",[42,52.713]],[\"comment/53\",[]],[\"name/54\",[12,31.51]],[\"comment/54\",[]],[\"name/55\",[14,30.741]],[\"comment/55\",[]],[\"name/56\",[43,44.24]],[\"comment/56\",[]],[\"name/57\",[44,52.713]],[\"comment/57\",[]],[\"name/58\",[43,44.24]],[\"comment/58\",[]],[\"name/59\",[45,52.713]],[\"comment/59\",[]],[\"name/60\",[12,31.51]],[\"comment/60\",[]],[\"name/61\",[14,30.741]],[\"comment/61\",[]],[\"name/62\",[19,35.367]],[\"comment/62\",[]],[\"name/63\",[46,47.605]],[\"comment/63\",[]],[\"name/64\",[47,52.713]],[\"comment/64\",[]],[\"name/65\",[43,44.24]],[\"comment/65\",[]],[\"name/66\",[12,31.51]],[\"comment/66\",[]],[\"name/67\",[14,30.741]],[\"comment/67\",[]],[\"name/68\",[15,44.24]],[\"comment/68\",[]],[\"name/69\",[46,47.605]],[\"comment/69\",[]],[\"name/70\",[48,52.713]],[\"comment/70\",[]],[\"name/71\",[49,52.713]],[\"comment/71\",[]],[\"name/72\",[50,52.713]],[\"comment/72\",[]],[\"name/73\",[12,31.51]],[\"comment/73\",[]],[\"name/74\",[14,30.741]],[\"comment/74\",[]],[\"name/75\",[51,52.713]],[\"comment/75\",[]],[\"name/76\",[52,52.713]],[\"comment/76\",[]],[\"name/77\",[53,52.713]],[\"comment/77\",[]],[\"name/78\",[54,52.713]],[\"comment/78\",[]],[\"name/79\",[55,52.713]],[\"comment/79\",[]],[\"name/80\",[56,52.713]],[\"comment/80\",[]],[\"name/81\",[57,52.713]],[\"comment/81\",[]],[\"name/82\",[58,47.605]],[\"comment/82\",[]],[\"name/83\",[34,35.367]],[\"comment/83\",[]],[\"name/84\",[59,52.713]],[\"comment/84\",[]],[\"name/85\",[60,52.713]],[\"comment/85\",[]],[\"name/86\",[61,52.713]],[\"comment/86\",[]],[\"name/87\",[62,52.713]],[\"comment/87\",[]],[\"name/88\",[63,47.605]],[\"comment/88\",[]],[\"name/89\",[34,35.367]],[\"comment/89\",[]],[\"name/90\",[64,47.605]],[\"comment/90\",[]],[\"name/91\",[65,52.713]],[\"comment/91\",[]],[\"name/92\",[66,44.24]],[\"comment/92\",[]],[\"name/93\",[63,47.605]],[\"comment/93\",[]],[\"name/94\",[34,35.367]],[\"comment/94\",[]],[\"name/95\",[64,47.605]],[\"comment/95\",[]],[\"name/96\",[67,52.713]],[\"comment/96\",[]],[\"name/97\",[68,52.713]],[\"comment/97\",[]],[\"name/98\",[69,52.713]],[\"comment/98\",[]],[\"name/99\",[70,52.713]],[\"comment/99\",[]],[\"name/100\",[71,38.05]],[\"comment/100\",[]],[\"name/101\",[72,52.713]],[\"comment/101\",[]],[\"name/102\",[73,52.713]],[\"comment/102\",[]],[\"name/103\",[74,52.713]],[\"comment/103\",[]],[\"name/104\",[71,38.05]],[\"comment/104\",[]],[\"name/105\",[75,52.713]],[\"comment/105\",[]],[\"name/106\",[76,52.713]],[\"comment/106\",[]],[\"name/107\",[77,52.713]],[\"comment/107\",[]],[\"name/108\",[78,52.713]],[\"comment/108\",[]],[\"name/109\",[79,44.24]],[\"comment/109\",[]],[\"name/110\",[80,47.605]],[\"comment/110\",[]],[\"name/111\",[81,52.713]],[\"comment/111\",[]],[\"name/112\",[82,52.713]],[\"comment/112\",[]],[\"name/113\",[66,44.24]],[\"comment/113\",[]],[\"name/114\",[79,44.24]],[\"comment/114\",[]],[\"name/115\",[83,52.713]],[\"comment/115\",[]],[\"name/116\",[80,47.605]],[\"comment/116\",[]],[\"name/117\",[84,52.713]],[\"comment/117\",[]],[\"name/118\",[85,52.713]],[\"comment/118\",[]],[\"name/119\",[86,52.713]],[\"comment/119\",[]],[\"name/120\",[87,47.605]],[\"comment/120\",[]],[\"name/121\",[88,47.605]],[\"comment/121\",[]],[\"name/122\",[89,47.605]],[\"comment/122\",[]],[\"name/123\",[90,47.605]],[\"comment/123\",[]],[\"name/124\",[19,35.367]],[\"comment/124\",[]],[\"name/125\",[91,47.605]],[\"comment/125\",[]],[\"name/126\",[92,47.605]],[\"comment/126\",[]],[\"name/127\",[93,47.605]],[\"comment/127\",[]],[\"name/128\",[94,47.605]],[\"comment/128\",[]],[\"name/129\",[95,47.605]],[\"comment/129\",[]],[\"name/130\",[96,47.605]],[\"comment/130\",[]],[\"name/131\",[97,47.605]],[\"comment/131\",[]],[\"name/132\",[98,47.605]],[\"comment/132\",[]],[\"name/133\",[99,52.713]],[\"comment/133\",[]],[\"name/134\",[100,44.24]],[\"comment/134\",[]],[\"name/135\",[101,52.713]],[\"comment/135\",[]],[\"name/136\",[102,44.24]],[\"comment/136\",[]],[\"name/137\",[103,52.713]],[\"comment/137\",[]],[\"name/138\",[104,52.713]],[\"comment/138\",[]],[\"name/139\",[105,52.713]],[\"comment/139\",[]],[\"name/140\",[106,52.713]],[\"comment/140\",[]],[\"name/141\",[107,52.713]],[\"comment/141\",[]],[\"name/142\",[108,52.713]],[\"comment/142\",[]],[\"name/143\",[87,47.605]],[\"comment/143\",[]],[\"name/144\",[88,47.605]],[\"comment/144\",[]],[\"name/145\",[89,47.605]],[\"comment/145\",[]],[\"name/146\",[90,47.605]],[\"comment/146\",[]],[\"name/147\",[19,35.367]],[\"comment/147\",[]],[\"name/148\",[91,47.605]],[\"comment/148\",[]],[\"name/149\",[92,47.605]],[\"comment/149\",[]],[\"name/150\",[93,47.605]],[\"comment/150\",[]],[\"name/151\",[94,47.605]],[\"comment/151\",[]],[\"name/152\",[95,47.605]],[\"comment/152\",[]],[\"name/153\",[96,47.605]],[\"comment/153\",[]],[\"name/154\",[97,47.605]],[\"comment/154\",[]],[\"name/155\",[98,47.605]],[\"comment/155\",[]],[\"name/156\",[109,52.713]],[\"comment/156\",[]],[\"name/157\",[110,52.713]],[\"comment/157\",[]],[\"name/158\",[111,47.605]],[\"comment/158\",[]],[\"name/159\",[112,41.727]],[\"comment/159\",[]],[\"name/160\",[113,52.713]],[\"comment/160\",[]],[\"name/161\",[114,52.713]],[\"comment/161\",[]],[\"name/162\",[34,35.367]],[\"comment/162\",[]],[\"name/163\",[115,47.605]],[\"comment/163\",[]],[\"name/164\",[116,52.713]],[\"comment/164\",[]],[\"name/165\",[100,44.24]],[\"comment/165\",[]],[\"name/166\",[117,52.713]],[\"comment/166\",[]],[\"name/167\",[118,52.713]],[\"comment/167\",[]],[\"name/168\",[19,35.367]],[\"comment/168\",[]],[\"name/169\",[100,44.24]],[\"comment/169\",[]],[\"name/170\",[34,35.367]],[\"comment/170\",[]],[\"name/171\",[115,47.605]],[\"comment/171\",[]],[\"name/172\",[119,52.713]],[\"comment/172\",[]],[\"name/173\",[102,44.24]],[\"comment/173\",[]],[\"name/174\",[120,52.713]],[\"comment/174\",[]],[\"name/175\",[121,52.713]],[\"comment/175\",[]],[\"name/176\",[122,52.713]],[\"comment/176\",[]],[\"name/177\",[123,52.713]],[\"comment/177\",[]],[\"name/178\",[124,52.713]],[\"comment/178\",[]],[\"name/179\",[125,52.713]],[\"comment/179\",[]],[\"name/180\",[126,52.713]],[\"comment/180\",[]],[\"name/181\",[127,52.713]],[\"comment/181\",[]],[\"name/182\",[128,52.713]],[\"comment/182\",[]],[\"name/183\",[129,52.713]],[\"comment/183\",[]],[\"name/184\",[130,52.713]],[\"comment/184\",[]],[\"name/185\",[71,38.05]],[\"comment/185\",[]],[\"name/186\",[112,41.727]],[\"comment/186\",[]],[\"name/187\",[111,47.605]],[\"comment/187\",[]],[\"name/188\",[131,52.713]],[\"comment/188\",[]],[\"name/189\",[14,30.741]],[\"comment/189\",[]],[\"name/190\",[132,52.713]],[\"comment/190\",[]],[\"name/191\",[133,34.255]],[\"comment/191\",[]],[\"name/192\",[134,52.713]],[\"comment/192\",[]],[\"name/193\",[14,30.741]],[\"comment/193\",[]],[\"name/194\",[135,52.713]],[\"comment/194\",[]],[\"name/195\",[133,34.255]],[\"comment/195\",[]],[\"name/196\",[136,52.713]],[\"comment/196\",[]],[\"name/197\",[14,30.741]],[\"comment/197\",[]],[\"name/198\",[137,52.713]],[\"comment/198\",[]],[\"name/199\",[133,34.255]],[\"comment/199\",[]],[\"name/200\",[138,47.605]],[\"comment/200\",[]],[\"name/201\",[139,52.713]],[\"comment/201\",[]],[\"name/202\",[140,52.713]],[\"comment/202\",[]],[\"name/203\",[133,34.255]],[\"comment/203\",[]],[\"name/204\",[141,52.713]],[\"comment/204\",[]],[\"name/205\",[38,47.605]],[\"comment/205\",[]],[\"name/206\",[36,47.605]],[\"comment/206\",[]],[\"name/207\",[142,52.713]],[\"comment/207\",[]],[\"name/208\",[143,52.713]],[\"comment/208\",[]],[\"name/209\",[71,38.05]],[\"comment/209\",[]],[\"name/210\",[71,38.05]],[\"comment/210\",[]],[\"name/211\",[144,44.24]],[\"comment/211\",[]],[\"name/212\",[112,41.727]],[\"comment/212\",[]],[\"name/213\",[145,52.713]],[\"comment/213\",[]],[\"name/214\",[12,31.51]],[\"comment/214\",[]],[\"name/215\",[138,47.605]],[\"comment/215\",[]],[\"name/216\",[146,52.713]],[\"comment/216\",[]],[\"name/217\",[12,31.51]],[\"comment/217\",[]],[\"name/218\",[102,44.24]],[\"comment/218\",[]],[\"name/219\",[147,52.713]],[\"comment/219\",[]],[\"name/220\",[12,31.51]],[\"comment/220\",[]],[\"name/221\",[148,52.713]],[\"comment/221\",[]],[\"name/222\",[149,52.713]],[\"comment/222\",[]],[\"name/223\",[150,52.713]],[\"comment/223\",[]],[\"name/224\",[151,52.713]],[\"comment/224\",[]],[\"name/225\",[152,52.713]],[\"comment/225\",[]],[\"name/226\",[133,34.255]],[\"comment/226\",[]],[\"name/227\",[112,41.727]],[\"comment/227\",[]],[\"name/228\",[153,52.713]],[\"comment/228\",[]],[\"name/229\",[154,52.713]],[\"comment/229\",[]],[\"name/230\",[155,52.713]],[\"comment/230\",[]],[\"name/231\",[133,34.255]],[\"comment/231\",[]],[\"name/232\",[156,52.713]],[\"comment/232\",[]],[\"name/233\",[29,44.24]],[\"comment/233\",[]],[\"name/234\",[157,52.713]],[\"comment/234\",[]],[\"name/235\",[158,52.713]],[\"comment/235\",[]],[\"name/236\",[159,52.713]],[\"comment/236\",[]],[\"name/237\",[160,52.713]],[\"comment/237\",[]],[\"name/238\",[144,44.24]],[\"comment/238\",[]],[\"name/239\",[14,30.741]],[\"comment/239\",[]],[\"name/240\",[161,52.713]],[\"comment/240\",[]],[\"name/241\",[133,34.255]],[\"comment/241\",[]],[\"name/242\",[12,31.51]],[\"comment/242\",[]],[\"name/243\",[14,30.741]],[\"comment/243\",[]],[\"name/244\",[162,52.713]],[\"comment/244\",[]],[\"name/245\",[29,44.24]],[\"comment/245\",[]],[\"name/246\",[163,52.713]],[\"comment/246\",[]],[\"name/247\",[164,52.713]],[\"comment/247\",[]],[\"name/248\",[165,52.713]],[\"comment/248\",[]],[\"name/249\",[133,34.255]],[\"comment/249\",[]],[\"name/250\",[14,30.741]],[\"comment/250\",[]],[\"name/251\",[58,47.605]],[\"comment/251\",[]],[\"name/252\",[166,52.713]],[\"comment/252\",[]],[\"name/253\",[167,52.713]],[\"comment/253\",[]],[\"name/254\",[133,34.255]],[\"comment/254\",[]],[\"name/255\",[168,52.713]],[\"comment/255\",[]],[\"name/256\",[169,52.713]],[\"comment/256\",[]],[\"name/257\",[170,52.713]],[\"comment/257\",[]],[\"name/258\",[171,52.713]],[\"comment/258\",[]],[\"name/259\",[172,52.713]],[\"comment/259\",[]],[\"name/260\",[144,44.24]],[\"comment/260\",[]],[\"name/261\",[173,52.713]],[\"comment/261\",[]],[\"name/262\",[174,52.713]],[\"comment/262\",[]],[\"name/263\",[175,52.713]],[\"comment/263\",[]],[\"name/264\",[71,38.05]],[\"comment/264\",[]],[\"name/265\",[176,52.713]],[\"comment/265\",[]],[\"name/266\",[177,52.713]],[\"comment/266\",[]],[\"name/267\",[178,52.713]],[\"comment/267\",[]],[\"name/268\",[179,52.713]],[\"comment/268\",[]],[\"name/269\",[180,52.713]],[\"comment/269\",[]],[\"name/270\",[181,52.713]],[\"comment/270\",[]],[\"name/271\",[182,52.713]],[\"comment/271\",[]],[\"name/272\",[66,44.24]],[\"comment/272\",[]],[\"name/273\",[79,44.24]],[\"comment/273\",[]],[\"name/274\",[183,52.713]],[\"comment/274\",[]],[\"name/275\",[184,52.713]],[\"comment/275\",[]],[\"name/276\",[185,52.713]],[\"comment/276\",[]],[\"name/277\",[34,35.367]],[\"comment/277\",[]],[\"name/278\",[186,52.713]],[\"comment/278\",[]],[\"name/279\",[187,52.713]],[\"comment/279\",[]],[\"name/280\",[188,52.713]],[\"comment/280\",[]],[\"name/281\",[189,52.713]],[\"comment/281\",[]],[\"name/282\",[190,52.713]],[\"comment/282\",[]],[\"name/283\",[191,52.713]],[\"comment/283\",[]],[\"name/284\",[192,52.713]],[\"comment/284\",[]],[\"name/285\",[193,52.713]],[\"comment/285\",[]],[\"name/286\",[194,52.713]],[\"comment/286\",[]],[\"name/287\",[195,52.713]],[\"comment/287\",[]],[\"name/288\",[196,52.713]],[\"comment/288\",[]],[\"name/289\",[197,52.713]],[\"comment/289\",[]],[\"name/290\",[198,52.713]],[\"comment/290\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":71,\"name\":{\"100\":{},\"104\":{},\"185\":{},\"209\":{},\"210\":{},\"264\":{}},\"comment\":{}}],[\"accesstoken\",{\"_index\":68,\"name\":{\"97\":{}},\"comment\":{}}],[\"actioncardtag\",{\"_index\":167,\"name\":{\"253\":{}},\"comment\":{}}],[\"actions\",{\"_index\":169,\"name\":{\"256\":{}},\"comment\":{}}],[\"add_member_permission\",{\"_index\":104,\"name\":{\"138\":{}},\"comment\":{}}],[\"android_url\",{\"_index\":158,\"name\":{\"235\":{}},\"comment\":{}}],[\"at_all_permission\",{\"_index\":106,\"name\":{\"140\":{}},\"comment\":{}}],[\"attachmenttoken\",{\"_index\":35,\"name\":{\"44\":{}},\"comment\":{}}],[\"attag\",{\"_index\":137,\"name\":{\"198\":{}},\"comment\":{}}],[\"audiomessage\",{\"_index\":150,\"name\":{\"223\":{}},\"comment\":{}}],[\"avatar\",{\"_index\":90,\"name\":{\"123\":{},\"146\":{}},\"comment\":{}}],[\"baseuri\",{\"_index\":79,\"name\":{\"109\":{},\"114\":{},\"273\":{}},\"comment\":{}}],[\"bibasedata\",{\"_index\":195,\"name\":{\"287\":{}},\"comment\":{}}],[\"bidatatable\",{\"_index\":190,\"name\":{\"282\":{}},\"comment\":{}}],[\"bidatatableclass\",{\"_index\":197,\"name\":{\"289\":{}},\"comment\":{}}],[\"bitable\",{\"_index\":192,\"name\":{\"284\":{}},\"comment\":{}}],[\"bitableitem\",{\"_index\":198,\"name\":{\"290\":{}},\"comment\":{}}],[\"bitablelist\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"bitablemeta\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"bitableview\",{\"_index\":191,\"name\":{\"283\":{}},\"comment\":{}}],[\"body\",{\"_index\":130,\"name\":{\"184\":{}},\"comment\":{}}],[\"bot_id_list\",{\"_index\":94,\"name\":{\"128\":{},\"151\":{}},\"comment\":{}}],[\"buttoncardtag\",{\"_index\":161,\"name\":{\"240\":{}},\"comment\":{}}],[\"cardheader\",{\"_index\":172,\"name\":{\"259\":{}},\"comment\":{}}],[\"cardtag\",{\"_index\":170,\"name\":{\"257\":{}},\"comment\":{}}],[\"cellposition\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"chat_id\",{\"_index\":102,\"name\":{\"136\":{},\"173\":{},\"218\":{}},\"comment\":{}}],[\"chat_mode\",{\"_index\":88,\"name\":{\"121\":{},\"144\":{}},\"comment\":{}}],[\"chat_tag\",{\"_index\":103,\"name\":{\"137\":{}},\"comment\":{}}],[\"chat_type\",{\"_index\":89,\"name\":{\"122\":{},\"145\":{}},\"comment\":{}}],[\"chatcardmessage\",{\"_index\":146,\"name\":{\"216\":{}},\"comment\":{}}],[\"chatid\",{\"_index\":83,\"name\":{\"115\":{}},\"comment\":{}}],[\"chatlistmodel\",{\"_index\":78,\"name\":{\"108\":{}},\"comment\":{}}],[\"chatmessage\",{\"_index\":119,\"name\":{\"172\":{}},\"comment\":{}}],[\"chatmessagecontent\",{\"_index\":181,\"name\":{\"270\":{}},\"comment\":{}}],[\"chatmessagetype\",{\"_index\":109,\"name\":{\"156\":{}},\"comment\":{}}],[\"chatmeta\",{\"_index\":99,\"name\":{\"133\":{}},\"comment\":{}}],[\"chatmetion\",{\"_index\":117,\"name\":{\"166\":{}},\"comment\":{}}],[\"chatpermission\",{\"_index\":85,\"name\":{\"118\":{}},\"comment\":{}}],[\"chatsender\",{\"_index\":114,\"name\":{\"161\":{}},\"comment\":{}}],[\"client\",{\"_index\":67,\"name\":{\"96\":{}},\"comment\":{}}],[\"columnkeys\",{\"_index\":184,\"name\":{\"275\":{}},\"comment\":{}}],[\"config\",{\"_index\":175,\"name\":{\"263\":{}},\"comment\":{}}],[\"confirm\",{\"_index\":164,\"name\":{\"247\":{}},\"comment\":{}}],[\"confirmcardtag\",{\"_index\":160,\"name\":{\"237\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":66,\"name\":{\"92\":{},\"113\":{},\"272\":{}},\"comment\":{}}],[\"content\",{\"_index\":112,\"name\":{\"159\":{},\"186\":{},\"212\":{},\"227\":{}},\"comment\":{}}],[\"create_time\",{\"_index\":124,\"name\":{\"178\":{}},\"comment\":{}}],[\"createchatmeta\",{\"_index\":86,\"name\":{\"119\":{}},\"comment\":{}}],[\"created_by\",{\"_index\":54,\"name\":{\"78\":{}},\"comment\":{}}],[\"created_time\",{\"_index\":55,\"name\":{\"79\":{}},\"comment\":{}}],[\"createone\",{\"_index\":84,\"name\":{\"117\":{}},\"comment\":{}}],[\"createpagestream\",{\"_index\":77,\"name\":{\"107\":{}},\"comment\":{}}],[\"deleted\",{\"_index\":126,\"name\":{\"180\":{}},\"comment\":{}}],[\"description\",{\"_index\":91,\"name\":{\"125\":{},\"148\":{}},\"comment\":{}}],[\"divcardtag\",{\"_index\":165,\"name\":{\"248\":{}},\"comment\":{}}],[\"downloadfile\",{\"_index\":75,\"name\":{\"105\":{}},\"comment\":{}}],[\"edit_permission\",{\"_index\":107,\"name\":{\"141\":{}},\"comment\":{}}],[\"elements\",{\"_index\":179,\"name\":{\"268\":{}},\"comment\":{}}],[\"email\",{\"_index\":41,\"name\":{\"52\":{}},\"comment\":{}}],[\"en_name\",{\"_index\":40,\"name\":{\"51\":{}},\"comment\":{}}],[\"enable_forward\",{\"_index\":176,\"name\":{\"265\":{}},\"comment\":{}}],[\"external\",{\"_index\":95,\"name\":{\"129\":{},\"152\":{}},\"comment\":{}}],[\"extra\",{\"_index\":166,\"name\":{\"252\":{}},\"comment\":{}}],[\"fields\",{\"_index\":58,\"name\":{\"82\":{},\"251\":{}},\"comment\":{}}],[\"file_key\",{\"_index\":148,\"name\":{\"221\":{}},\"comment\":{}}],[\"file_token\",{\"_index\":30,\"name\":{\"37\":{}},\"comment\":{}}],[\"filemessage\",{\"_index\":147,\"name\":{\"219\":{}},\"comment\":{}}],[\"filteroperator\",{\"_index\":193,\"name\":{\"285\":{}},\"comment\":{}}],[\"getaccesstoken\",{\"_index\":69,\"name\":{\"98\":{}},\"comment\":{}}],[\"getjsticket\",{\"_index\":74,\"name\":{\"103\":{}},\"comment\":{}}],[\"getmeta\",{\"_index\":187,\"name\":{\"279\":{}},\"comment\":{}}],[\"gettenantaccesstoken\",{\"_index\":70,\"name\":{\"99\":{}},\"comment\":{}}],[\"getusermeta\",{\"_index\":73,\"name\":{\"102\":{}},\"comment\":{}}],[\"getwebsigninurl\",{\"_index\":72,\"name\":{\"101\":{}},\"comment\":{}}],[\"header\",{\"_index\":178,\"name\":{\"267\":{}},\"comment\":{}}],[\"height\",{\"_index\":36,\"name\":{\"45\":{},\"206\":{}},\"comment\":{}}],[\"host\",{\"_index\":63,\"name\":{\"88\":{},\"93\":{}},\"comment\":{}}],[\"hrcardtag\",{\"_index\":155,\"name\":{\"230\":{}},\"comment\":{}}],[\"href\",{\"_index\":136,\"name\":{\"196\":{}},\"comment\":{}}],[\"i18n\",{\"_index\":153,\"name\":{\"228\":{}},\"comment\":{}}],[\"i18n_elements\",{\"_index\":180,\"name\":{\"269\":{}},\"comment\":{}}],[\"i18n_names\",{\"_index\":92,\"name\":{\"126\":{},\"149\":{}},\"comment\":{}}],[\"i18nkey\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"id\",{\"_index\":34,\"name\":{\"43\":{},\"49\":{},\"83\":{},\"89\":{},\"94\":{},\"162\":{},\"170\":{},\"277\":{}},\"comment\":{}}],[\"id_type\",{\"_index\":115,\"name\":{\"163\":{},\"171\":{}},\"comment\":{}}],[\"image_key\",{\"_index\":141,\"name\":{\"204\":{}},\"comment\":{}}],[\"imagetag\",{\"_index\":140,\"name\":{\"202\":{}},\"comment\":{}}],[\"interactivemessage\",{\"_index\":174,\"name\":{\"262\":{}},\"comment\":{}}],[\"ios_url\",{\"_index\":159,\"name\":{\"236\":{}},\"comment\":{}}],[\"islarkerror\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"join_message_visibility\",{\"_index\":96,\"name\":{\"130\":{},\"153\":{}},\"comment\":{}}],[\"jsticket\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"key\",{\"_index\":118,\"name\":{\"167\":{}},\"comment\":{}}],[\"larkapp\",{\"_index\":65,\"name\":{\"91\":{}},\"comment\":{}}],[\"larkappoption\",{\"_index\":62,\"name\":{\"87\":{}},\"comment\":{}}],[\"larkdata\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"larkpagedata\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"last_modified_by\",{\"_index\":56,\"name\":{\"80\":{}},\"comment\":{}}],[\"last_modified_time\",{\"_index\":57,\"name\":{\"81\":{}},\"comment\":{}}],[\"layout\",{\"_index\":168,\"name\":{\"255\":{}},\"comment\":{}}],[\"leave_message_visibility\",{\"_index\":97,\"name\":{\"131\":{},\"154\":{}},\"comment\":{}}],[\"lines\",{\"_index\":154,\"name\":{\"229\":{}},\"comment\":{}}],[\"link\",{\"_index\":15,\"name\":{\"15\":{},\"31\":{},\"68\":{}},\"comment\":{}}],[\"linktag\",{\"_index\":135,\"name\":{\"194\":{}},\"comment\":{}}],[\"loadpage\",{\"_index\":188,\"name\":{\"280\":{}},\"comment\":{}}],[\"localeuser\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"makesimplefilter\",{\"_index\":189,\"name\":{\"281\":{}},\"comment\":{}}],[\"membership_approval\",{\"_index\":98,\"name\":{\"132\":{},\"155\":{}},\"comment\":{}}],[\"mentionnotify\",{\"_index\":45,\"name\":{\"59\":{}},\"comment\":{}}],[\"mentions\",{\"_index\":129,\"name\":{\"183\":{}},\"comment\":{}}],[\"mentiontype\",{\"_index\":43,\"name\":{\"56\":{},\"58\":{},\"65\":{}},\"comment\":{}}],[\"message_id\",{\"_index\":120,\"name\":{\"174\":{}},\"comment\":{}}],[\"messagelistmodel\",{\"_index\":82,\"name\":{\"112\":{}},\"comment\":{}}],[\"meta\",{\"_index\":185,\"name\":{\"276\":{}},\"comment\":{}}],[\"mimetype\",{\"_index\":33,\"name\":{\"40\":{}},\"comment\":{}}],[\"moderation_permission\",{\"_index\":108,\"name\":{\"142\":{}},\"comment\":{}}],[\"msg_type\",{\"_index\":111,\"name\":{\"158\":{},\"187\":{}},\"comment\":{}}],[\"multi_url\",{\"_index\":163,\"name\":{\"246\":{}},\"comment\":{}}],[\"name\",{\"_index\":19,\"name\":{\"19\":{},\"35\":{},\"41\":{},\"50\":{},\"62\":{},\"124\":{},\"147\":{},\"168\":{}},\"comment\":{}}],[\"normalizetext\",{\"_index\":194,\"name\":{\"286\":{}},\"comment\":{}}],[\"offset\",{\"_index\":183,\"name\":{\"274\":{}},\"comment\":{}}],[\"openstream\",{\"_index\":80,\"name\":{\"110\":{},\"116\":{}},\"comment\":{}}],[\"owner_id\",{\"_index\":87,\"name\":{\"120\":{},\"143\":{}},\"comment\":{}}],[\"owner_id_type\",{\"_index\":101,\"name\":{\"135\":{}},\"comment\":{}}],[\"parent_id\",{\"_index\":123,\"name\":{\"177\":{}},\"comment\":{}}],[\"pc_url\",{\"_index\":157,\"name\":{\"234\":{}},\"comment\":{}}],[\"receive_id\",{\"_index\":113,\"name\":{\"160\":{}},\"comment\":{}}],[\"record_id\",{\"_index\":59,\"name\":{\"84\":{}},\"comment\":{}}],[\"record_ids\",{\"_index\":50,\"name\":{\"72\":{}},\"comment\":{}}],[\"revision\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"revisiontable\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"richtextmessage\",{\"_index\":143,\"name\":{\"208\":{}},\"comment\":{}}],[\"richtexttag\",{\"_index\":142,\"name\":{\"207\":{}},\"comment\":{}}],[\"root_id\",{\"_index\":122,\"name\":{\"176\":{}},\"comment\":{}}],[\"secret\",{\"_index\":64,\"name\":{\"90\":{},\"95\":{}},\"comment\":{}}],[\"sendchatmessage\",{\"_index\":110,\"name\":{\"157\":{}},\"comment\":{}}],[\"sender\",{\"_index\":128,\"name\":{\"182\":{}},\"comment\":{}}],[\"sender_type\",{\"_index\":116,\"name\":{\"164\":{}},\"comment\":{}}],[\"share_card_permission\",{\"_index\":105,\"name\":{\"139\":{}},\"comment\":{}}],[\"sheetcellmedia\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"sheetcellvalue\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"sheetid\",{\"_index\":186,\"name\":{\"278\":{}},\"comment\":{}}],[\"sheetmeta\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"sheetrangedata\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"size\",{\"_index\":28,\"name\":{\"34\":{},\"42\":{}},\"comment\":{}}],[\"spreadsheetmeta\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"spreadsheetmodel\",{\"_index\":182,\"name\":{\"271\":{}},\"comment\":{}}],[\"stickermessage\",{\"_index\":149,\"name\":{\"222\":{}},\"comment\":{}}],[\"table_id\",{\"_index\":49,\"name\":{\"71\":{}},\"comment\":{}}],[\"tablecellattachment\",{\"_index\":32,\"name\":{\"39\":{}},\"comment\":{}}],[\"tablecelldocumentmetion\",{\"_index\":47,\"name\":{\"64\":{}},\"comment\":{}}],[\"tablecelllink\",{\"_index\":26,\"name\":{\"28\":{}},\"comment\":{}}],[\"tablecelllocation\",{\"_index\":25,\"name\":{\"27\":{}},\"comment\":{}}],[\"tablecellmedia\",{\"_index\":27,\"name\":{\"32\":{}},\"comment\":{}}],[\"tablecellmetion\",{\"_index\":42,\"name\":{\"53\":{}},\"comment\":{}}],[\"tablecellrelation\",{\"_index\":48,\"name\":{\"70\":{}},\"comment\":{}}],[\"tablecelltext\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"tablecelluser\",{\"_index\":39,\"name\":{\"48\":{}},\"comment\":{}}],[\"tablecellusermetion\",{\"_index\":44,\"name\":{\"57\":{}},\"comment\":{}}],[\"tablecellvalue\",{\"_index\":51,\"name\":{\"75\":{}},\"comment\":{}}],[\"tablerecord\",{\"_index\":53,\"name\":{\"77\":{}},\"comment\":{}}],[\"tablerecorddata\",{\"_index\":60,\"name\":{\"85\":{}},\"comment\":{}}],[\"tablerecordfields\",{\"_index\":52,\"name\":{\"76\":{}},\"comment\":{}}],[\"tablerecordlist\",{\"_index\":61,\"name\":{\"86\":{}},\"comment\":{}}],[\"tableviewitem\",{\"_index\":196,\"name\":{\"288\":{}},\"comment\":{}}],[\"tableviewlist\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"tag\",{\"_index\":133,\"name\":{\"191\":{},\"195\":{},\"199\":{},\"203\":{},\"226\":{},\"231\":{},\"241\":{},\"249\":{},\"254\":{}},\"comment\":{}}],[\"template\",{\"_index\":173,\"name\":{\"261\":{}},\"comment\":{}}],[\"templatecolor\",{\"_index\":171,\"name\":{\"258\":{}},\"comment\":{}}],[\"tenant_key\",{\"_index\":100,\"name\":{\"134\":{},\"165\":{},\"169\":{}},\"comment\":{}}],[\"tenantaccesstoken\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"text\",{\"_index\":14,\"name\":{\"14\":{},\"26\":{},\"30\":{},\"55\":{},\"61\":{},\"67\":{},\"74\":{},\"189\":{},\"193\":{},\"197\":{},\"239\":{},\"243\":{},\"250\":{}},\"comment\":{}}],[\"textcardtag\",{\"_index\":152,\"name\":{\"225\":{}},\"comment\":{}}],[\"textmessage\",{\"_index\":131,\"name\":{\"188\":{}},\"comment\":{}}],[\"texttag\",{\"_index\":132,\"name\":{\"190\":{}},\"comment\":{}}],[\"timestamp\",{\"_index\":37,\"name\":{\"46\":{}},\"comment\":{}}],[\"title\",{\"_index\":144,\"name\":{\"211\":{},\"238\":{},\"260\":{}},\"comment\":{}}],[\"tmp_url\",{\"_index\":31,\"name\":{\"38\":{}},\"comment\":{}}],[\"token\",{\"_index\":46,\"name\":{\"63\":{},\"69\":{}},\"comment\":{}}],[\"type\",{\"_index\":12,\"name\":{\"12\":{},\"25\":{},\"29\":{},\"33\":{},\"54\":{},\"60\":{},\"66\":{},\"73\":{},\"214\":{},\"217\":{},\"220\":{},\"242\":{}},\"comment\":{}}],[\"un_escape\",{\"_index\":134,\"name\":{\"192\":{}},\"comment\":{}}],[\"update_multi\",{\"_index\":177,\"name\":{\"266\":{}},\"comment\":{}}],[\"update_time\",{\"_index\":125,\"name\":{\"179\":{}},\"comment\":{}}],[\"updated\",{\"_index\":127,\"name\":{\"181\":{}},\"comment\":{}}],[\"updateone\",{\"_index\":81,\"name\":{\"111\":{}},\"comment\":{}}],[\"uploadfile\",{\"_index\":76,\"name\":{\"106\":{}},\"comment\":{}}],[\"uploadtargettype\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"upper_message_id\",{\"_index\":121,\"name\":{\"175\":{}},\"comment\":{}}],[\"url\",{\"_index\":29,\"name\":{\"36\":{},\"233\":{},\"245\":{}},\"comment\":{}}],[\"urlcardtag\",{\"_index\":156,\"name\":{\"232\":{}},\"comment\":{}}],[\"user_id\",{\"_index\":138,\"name\":{\"200\":{},\"215\":{}},\"comment\":{}}],[\"user_id_list\",{\"_index\":93,\"name\":{\"127\":{},\"150\":{}},\"comment\":{}}],[\"user_name\",{\"_index\":139,\"name\":{\"201\":{}},\"comment\":{}}],[\"usercardmessage\",{\"_index\":145,\"name\":{\"213\":{}},\"comment\":{}}],[\"usermeta\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"value\",{\"_index\":162,\"name\":{\"244\":{}},\"comment\":{}}],[\"videomessage\",{\"_index\":151,\"name\":{\"224\":{}},\"comment\":{}}],[\"width\",{\"_index\":38,\"name\":{\"47\":{},\"205\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..18b4f8f --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1367 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: var(--light-color-ts-type-alias); + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 > a, +h2 > a, +h3 > a, +h4 > a, +h5 > a, +h6 > a { + text-decoration: none; + color: var(--color-text); +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; +} + +pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: relative; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} + +.tsd-navigation.settings { + margin: 1rem 0; +} +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.5rem); +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: inline-flex; + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); +} +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li, +.tsd-page-navigation li { + padding: 0; + max-width: 100%; +} +.tsd-nested-navigation { + margin-left: 3rem; +} +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; +} +.tsd-small-nested-navigation { + margin-left: 1.5rem; +} +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; +} + +.tsd-nested-navigation > li > a, +.tsd-nested-navigation > li > span { + width: calc(100% - 1.75rem - 0.5rem); +} + +.tsd-page-navigation ul { + padding-left: 1.75rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ +} +.tsd-accordion-summary, +.tsd-accordion-summary a { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + + cursor: pointer; +} +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-index-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-kind-constructor { + color: var(--color-ts-constructor); +} +.tsd-kind-property { + color: var(--color-ts-property); +} +.tsd-kind-method { + color: var(--color-ts-method); +} +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); +} +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } +} + +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/classes/ChatListModel.html b/classes/ChatListModel.html new file mode 100644 index 0000000..eff0327 --- /dev/null +++ b/classes/ChatListModel.html @@ -0,0 +1,207 @@ +ChatListModel | Lark SDK
+
+ +
+
+
+
+ +

Class ChatListModelAbstract

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      Rest ...args: any[]
    +

    Returns ChatListModel

+
+

Properties

+
+ +
baseURI: string = 'im/v1/chats'
+
+

Methods

+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/LarkApp.html b/classes/LarkApp.html new file mode 100644 index 0000000..b4d7f4f --- /dev/null +++ b/classes/LarkApp.html @@ -0,0 +1,341 @@ +LarkApp | Lark SDK
+
+ +
+
+
+
+ +

Class LarkApp

+
+

Hierarchy

+
    +
  • LarkApp
+
+

Implements

+
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
accessToken?: string
+
+ +
client: HTTPClient<Context>
+
+ +
getJSTicket: ((...data) => Promise<string>) = ...
+
+

Type declaration

+
+
+ +
getTenantAccessToken: ((...data) => Promise<string>) = ...
+
+

Type declaration

+
+
+ +
host?: string
+
+ +
id: string
+
+ +
secret?: string
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/MessageListModel.html b/classes/MessageListModel.html new file mode 100644 index 0000000..8b259ab --- /dev/null +++ b/classes/MessageListModel.html @@ -0,0 +1,213 @@ +MessageListModel | Lark SDK
+
+ +
+
+
+
+ +

Class MessageListModelAbstract

+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
baseURI: string = 'im/v1/messages'
+
+ +
chatId: string
+
+

Methods

+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/SpreadSheetModel.html b/classes/SpreadSheetModel.html new file mode 100644 index 0000000..2e76576 --- /dev/null +++ b/classes/SpreadSheetModel.html @@ -0,0 +1,261 @@ +SpreadSheetModel | Lark SDK
+
+ +
+
+
+
+ +

Class SpreadSheetModel<D, F>Abstract

+
+

Type Parameters

+
    +
  • +

    D extends DataObject

  • +
  • +

    F extends NewData<D> = NewData<D>

+
+

Hierarchy

+
    +
  • ListModel<D, F> +
      +
    • SpreadSheetModel
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
    + +
  • +
    +

    Type Parameters

    +
      +
    • +

      D extends DataObject

    • +
    • +

      F extends NewData<D> = NewData<D>

    +
    +

    Parameters

    +
      +
    • +
      id: string
    • +
    • +
      sheetId: string
    +

    Returns SpreadSheetModel<D, F>

+
+

Properties

+
+ +
baseURI: string = ''
+
+ +
columnKeys: (keyof D)[]
+
+ +
id: string
+
+ +
meta?: SheetMeta
+
+ +
offset: [number, number] = ...
+
+ +
sheetId: string
+
+

Methods

+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/BiDataTable.html b/functions/BiDataTable.html new file mode 100644 index 0000000..3c07abb --- /dev/null +++ b/functions/BiDataTable.html @@ -0,0 +1,138 @@ +BiDataTable | Lark SDK
+
+ +
+
+
+
+ +

Function BiDataTable

+
+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/BiTable.html b/functions/BiTable.html new file mode 100644 index 0000000..69583ce --- /dev/null +++ b/functions/BiTable.html @@ -0,0 +1,125 @@ +BiTable | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/BiTableView.html b/functions/BiTableView.html new file mode 100644 index 0000000..ae26b3d --- /dev/null +++ b/functions/BiTableView.html @@ -0,0 +1,125 @@ +BiTableView | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/createPageStream.html b/functions/createPageStream.html new file mode 100644 index 0000000..380e3f6 --- /dev/null +++ b/functions/createPageStream.html @@ -0,0 +1,152 @@ +createPageStream | Lark SDK
+
+ +
+
+
+
+ +

Function createPageStream

+
+
    + +
  • +
    +

    Type Parameters

    +
      +
    • +

      T extends DataObject

    +
    +

    Parameters

    +
      +
    • +
      client: RESTClient
    • +
    • +
      path: string
    • +
    • +
      onCount: ((total) => any)
      +
        +
      • +
          +
        • (total): any
        • +
        • +
          +

          Parameters

          +
            +
          • +
            total: number
          +

          Returns any

    • +
    • +
      filter: DataObject = {}
    +

    Returns AsyncGenerator<T, void, undefined>

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/isLarkError.html b/functions/isLarkError.html new file mode 100644 index 0000000..fc7584f --- /dev/null +++ b/functions/isLarkError.html @@ -0,0 +1,130 @@ +isLarkError | Lark SDK
+
+ +
+
+
+
+ +

Function isLarkError

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      Optional data: any
    +

    Returns data is {
        code: number;
        data: {};
        msg: string;
    }

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/makeSimpleFilter.html b/functions/makeSimpleFilter.html new file mode 100644 index 0000000..e046695 --- /dev/null +++ b/functions/makeSimpleFilter.html @@ -0,0 +1,137 @@ +makeSimpleFilter | Lark SDK
+
+ +
+
+
+
+ +

Function makeSimpleFilter

+
+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/normalizeText.html b/functions/normalizeText.html new file mode 100644 index 0000000..5152388 --- /dev/null +++ b/functions/normalizeText.html @@ -0,0 +1,130 @@ +normalizeText | Lark SDK
+
+ +
+
+
+
+ +

Function normalizeText

+
+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..2f9eae3 --- /dev/null +++ b/index.html @@ -0,0 +1,143 @@ +Lark SDK
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ActionCardTag.html b/interfaces/ActionCardTag.html new file mode 100644 index 0000000..13ddaba --- /dev/null +++ b/interfaces/ActionCardTag.html @@ -0,0 +1,159 @@ +ActionCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface ActionCardTag

+
+

Hierarchy

+
    +
  • ActionCardTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
actions: ButtonCardTag[]
+
+ +
layout: "bisected"
+
+ +
tag: "action"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/AtTag.html b/interfaces/AtTag.html new file mode 100644 index 0000000..e470e5e --- /dev/null +++ b/interfaces/AtTag.html @@ -0,0 +1,159 @@ +AtTag | Lark SDK
+
+ +
+
+
+
+ +

Interface AtTag

+
+

Hierarchy

+
    +
  • AtTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
tag: "at"
+
+ +
user_id: string
+
+ +
user_name?: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ButtonCardTag.html b/interfaces/ButtonCardTag.html new file mode 100644 index 0000000..5e2c71d --- /dev/null +++ b/interfaces/ButtonCardTag.html @@ -0,0 +1,187 @@ +ButtonCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface ButtonCardTag

+
+

Hierarchy

+
    +
  • ButtonCardTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
confirm?: ConfirmCardTag
+
+ +
multi_url?: URLCardTag
+
+ +
tag: "button"
+
+ +
+
+ +
type?: "default" | "primary" | "danger"
+
+ +
url?: string
+
+ +
value?: Record<string, string>
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/CardHeader.html b/interfaces/CardHeader.html new file mode 100644 index 0000000..7c86415 --- /dev/null +++ b/interfaces/CardHeader.html @@ -0,0 +1,152 @@ +CardHeader | Lark SDK
+
+ +
+
+
+
+ +

Interface CardHeader

+
+

Hierarchy

+
    +
  • CardHeader
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
template?: TemplateColor
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ChatCardMessage.html b/interfaces/ChatCardMessage.html new file mode 100644 index 0000000..fc8712c --- /dev/null +++ b/interfaces/ChatCardMessage.html @@ -0,0 +1,152 @@ +ChatCardMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface ChatCardMessage

+
+

Hierarchy

+
    +
  • ChatCardMessage
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
chat_id: string
+
+ +
type: "share_chat"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ChatMessage.html b/interfaces/ChatMessage.html new file mode 100644 index 0000000..b1fb72b --- /dev/null +++ b/interfaces/ChatMessage.html @@ -0,0 +1,237 @@ +ChatMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface ChatMessage

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+ +
body: {
    content: `text:${string}` | `card:${string}`;
}
+
+

Type declaration

+
    +
  • +
    content: `text:${string}` | `card:${string}`
+
+ +
chat_id: string
+
+ +
create_time: string
+
+ +
deleted: boolean
+
+ +
mentions: ChatMetion[]
+
+ +
message_id: string
+
+ +
msg_type: ChatMessageType
+
+ +
parent_id: string
+
+ +
root_id: string
+
+ +
sender: ChatSender
+
+ +
update_time: string
+
+ +
updated: boolean
+
+ +
upper_message_id: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ChatMeta.html b/interfaces/ChatMeta.html new file mode 100644 index 0000000..9c2d51d --- /dev/null +++ b/interfaces/ChatMeta.html @@ -0,0 +1,307 @@ +ChatMeta | Lark SDK
+
+ +
+
+
+
+ +

Interface ChatMeta

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+ +
add_member_permission: ChatPermission
+
+ +
at_all_permission: ChatPermission
+
+ +
avatar: string
+
+ +
bot_id_list: string[]
+
+ +
chat_id: string
+
+ +
chat_mode: "group"
+
+ +
chat_tag: "inner"
+
+ +
chat_type: "private" | "public"
+
+ +
description: string
+
+ +
edit_permission: ChatPermission
+
+ +
external: boolean
+
+ +
i18n_names: Record<`${string}_${string}`, string>
+
+ +
join_message_visibility: ChatPermission
+
+ +
leave_message_visibility: ChatPermission
+
+ +
membership_approval: "no_approval_required" | "approval_required"
+
+ +
moderation_permission: ChatPermission
+
+ +
name: string
+
+ +
owner_id: string
+
+ +
owner_id_type: "user_id"
+
+ +
share_card_permission: "allowed"
+
+ +
tenant_key: string
+
+ +
user_id_list: string[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ChatMetion.html b/interfaces/ChatMetion.html new file mode 100644 index 0000000..8c96721 --- /dev/null +++ b/interfaces/ChatMetion.html @@ -0,0 +1,178 @@ +ChatMetion | Lark SDK
+
+ +
+
+
+
+ +

Interface ChatMetion

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
id: string
+
+ +
id_type: "open_id" | "app_id"
+
+ +
key: string
+
+ +
name: string
+
+ +
tenant_key: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ChatSender.html b/interfaces/ChatSender.html new file mode 100644 index 0000000..62ccdd6 --- /dev/null +++ b/interfaces/ChatSender.html @@ -0,0 +1,166 @@ +ChatSender | Lark SDK
+
+ +
+
+
+
+ +

Interface ChatSender

+
+

Hierarchy

+
    +
  • ChatSender
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
id: string
+
+ +
id_type: "open_id" | "app_id"
+
+ +
sender_type: "app"
+
+ +
tenant_key: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ConfirmCardTag.html b/interfaces/ConfirmCardTag.html new file mode 100644 index 0000000..f5217f4 --- /dev/null +++ b/interfaces/ConfirmCardTag.html @@ -0,0 +1,152 @@ +ConfirmCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface ConfirmCardTag

+
+

Hierarchy

+
    +
  • ConfirmCardTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/CreateChatMeta.html b/interfaces/CreateChatMeta.html new file mode 100644 index 0000000..e2a11bc --- /dev/null +++ b/interfaces/CreateChatMeta.html @@ -0,0 +1,231 @@ +CreateChatMeta | Lark SDK
+
+ +
+
+
+
+ +

Interface CreateChatMeta

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+ +
avatar: string
+
+ +
bot_id_list: string[]
+
+ +
chat_mode: "group"
+
+ +
chat_type: "private" | "public"
+
+ +
description: string
+
+ +
external: boolean
+
+ +
i18n_names: Record<`${string}_${string}`, string>
+
+ +
join_message_visibility: ChatPermission
+
+ +
leave_message_visibility: ChatPermission
+
+ +
membership_approval: "no_approval_required" | "approval_required"
+
+ +
name: string
+
+ +
owner_id: string
+
+ +
user_id_list: string[]
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/DivCardTag.html b/interfaces/DivCardTag.html new file mode 100644 index 0000000..7d0689b --- /dev/null +++ b/interfaces/DivCardTag.html @@ -0,0 +1,173 @@ +DivCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface DivCardTag

+
+

Hierarchy

+
    +
  • DivCardTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
fields?: {
    is_short: boolean;
    text: TextCardTag;
}[]
+
+

Type declaration

+
+
+ +
tag: "div"
+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/FileMessage.html b/interfaces/FileMessage.html new file mode 100644 index 0000000..d91029e --- /dev/null +++ b/interfaces/FileMessage.html @@ -0,0 +1,157 @@ +FileMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface FileMessage<T>

+
+

Type Parameters

+
    +
  • +

    T extends string = "file"

+
+

Hierarchy

+
    +
  • FileMessage
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
file_key: string
+
+ +
type: T
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/HrCardTag.html b/interfaces/HrCardTag.html new file mode 100644 index 0000000..a638f8a --- /dev/null +++ b/interfaces/HrCardTag.html @@ -0,0 +1,145 @@ +HrCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface HrCardTag

+
+

Hierarchy

+
    +
  • HrCardTag
+
+
+
+ +
+
+

Properties

+
tag +
+
+

Properties

+
+ +
tag: "hr"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/ImageTag.html b/interfaces/ImageTag.html new file mode 100644 index 0000000..babf4c7 --- /dev/null +++ b/interfaces/ImageTag.html @@ -0,0 +1,166 @@ +ImageTag | Lark SDK
+
+ +
+
+
+
+ +

Interface ImageTag

+
+

Hierarchy

+
    +
  • ImageTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
height?: number
+
+ +
image_key: string
+
+ +
tag: "img"
+
+ +
width?: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/InteractiveMessage.html b/interfaces/InteractiveMessage.html new file mode 100644 index 0000000..e577878 --- /dev/null +++ b/interfaces/InteractiveMessage.html @@ -0,0 +1,173 @@ +InteractiveMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface InteractiveMessage

+
+

Hierarchy

+
    +
  • InteractiveMessage
+
+
+
+ +
+
+

Properties

+
+ +
config?: {
    enable_forward?: boolean;
    update_multi?: boolean;
}
+
+

Type declaration

+
    +
  • +
    Optional enable_forward?: boolean
  • +
  • +
    Optional update_multi?: boolean
+
+ +
elements?: CardTag[]
+
+ +
header?: CardHeader
+
+ +
i18n_elements?: CardTag[]
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/LarkAppOption.html b/interfaces/LarkAppOption.html new file mode 100644 index 0000000..d8f6924 --- /dev/null +++ b/interfaces/LarkAppOption.html @@ -0,0 +1,163 @@ +LarkAppOption | Lark SDK
+
+ +
+
+
+
+ +

Interface LarkAppOption

+
+

Hierarchy

+
    +
  • LarkAppOption
+
+

Implemented by

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
host?: string
+
+ +
id: string
+
+ +
secret?: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/LinkTag.html b/interfaces/LinkTag.html new file mode 100644 index 0000000..689233b --- /dev/null +++ b/interfaces/LinkTag.html @@ -0,0 +1,162 @@ +LinkTag | Lark SDK
+
+ +
+
+
+
+ +

Interface LinkTag

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
href: string
+
+ +
tag: "a"
+
+ +
text: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/RevisionTable.html b/interfaces/RevisionTable.html new file mode 100644 index 0000000..0566fb4 --- /dev/null +++ b/interfaces/RevisionTable.html @@ -0,0 +1,152 @@ +RevisionTable | Lark SDK
+
+ +
+
+
+
+ +

Interface RevisionTable

+
+

Hierarchy

+
    +
  • RevisionTable
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
name: string
+
+ +
revision: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/SendChatMessage.html b/interfaces/SendChatMessage.html new file mode 100644 index 0000000..fd0fe30 --- /dev/null +++ b/interfaces/SendChatMessage.html @@ -0,0 +1,159 @@ +SendChatMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface SendChatMessage

+
+

Hierarchy

+
    +
  • SendChatMessage
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
+
+ +
msg_type: ChatMessageType
+
+ +
receive_id: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/SheetCellMedia.html b/interfaces/SheetCellMedia.html new file mode 100644 index 0000000..a8dbb87 --- /dev/null +++ b/interfaces/SheetCellMedia.html @@ -0,0 +1,166 @@ +SheetCellMedia | Lark SDK
+
+ +
+
+
+
+ +

Interface SheetCellMedia

+
+

Hierarchy

+
    +
  • SheetCellMedia
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
cellPosition: null
+
+ +
link?: string
+
+ +
text: string
+
+ +
type: "url"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellAttachment.html b/interfaces/TableCellAttachment.html new file mode 100644 index 0000000..6e869d7 --- /dev/null +++ b/interfaces/TableCellAttachment.html @@ -0,0 +1,193 @@ +TableCellAttachment | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellAttachment

+
+

Hierarchy

+
    +
  • Pick<TableCellMedia, "name" | "size">
  • +
  • Record<"id" | "attachmentToken", string>
  • +
  • Record<"height" | "timeStamp" | "width", number> +
      +
    • TableCellAttachment
+
+
+
+ +
+
+

Properties

+
+ +
attachmentToken: string
+
+ +
height: number
+
+ +
id: string
+
+ +
mimeType: `${string}/${string}`
+
+ +
name: string
+
+ +
size: number
+
+ +
timeStamp: number
+
+ +
width: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellDocumentMetion.html b/interfaces/TableCellDocumentMetion.html new file mode 100644 index 0000000..fb43c32 --- /dev/null +++ b/interfaces/TableCellDocumentMetion.html @@ -0,0 +1,175 @@ +TableCellDocumentMetion | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellDocumentMetion

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
link: string
+
+ +
mentionType: "Bitable"
+
+ +
text: string
+
+ +
token: string
+
+ +
type: "mention"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellLink.html b/interfaces/TableCellLink.html new file mode 100644 index 0000000..f9fd496 --- /dev/null +++ b/interfaces/TableCellLink.html @@ -0,0 +1,159 @@ +TableCellLink | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellLink

+
+

Hierarchy

+
    +
  • Record<"link" | "text", string> +
      +
    • TableCellLink
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
link: string
+
+ +
text: string
+
+ +
type: "url"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellMedia.html b/interfaces/TableCellMedia.html new file mode 100644 index 0000000..1d83a79 --- /dev/null +++ b/interfaces/TableCellMedia.html @@ -0,0 +1,178 @@ +TableCellMedia | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellMedia

+
+

Hierarchy

+
    +
  • Record<"file_token" | "name" | `${"" | "tmp_"}url`, string> +
      +
    • TableCellMedia
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
file_token: string
+
+ +
name: string
+
+ +
size: number
+
+ +
tmp_url: string
+
+ +
type: `${string}/${string}`
+
+ +
url: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellMetion.html b/interfaces/TableCellMetion.html new file mode 100644 index 0000000..6d3b9c5 --- /dev/null +++ b/interfaces/TableCellMetion.html @@ -0,0 +1,162 @@ +TableCellMetion | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellMetion

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
mentionType: string
+
+ +
text: string
+
+ +
type: "mention"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellRelation.html b/interfaces/TableCellRelation.html new file mode 100644 index 0000000..35814e2 --- /dev/null +++ b/interfaces/TableCellRelation.html @@ -0,0 +1,170 @@ +TableCellRelation | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellRelation

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
record_ids: [string, string?]
+
+ +
table_id: string
+
+ +
text: string
+
+ +
type: "text"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellText.html b/interfaces/TableCellText.html new file mode 100644 index 0000000..e6e5564 --- /dev/null +++ b/interfaces/TableCellText.html @@ -0,0 +1,154 @@ +TableCellText | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellText

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
text: string
+
+ +
type: "text"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellUser.html b/interfaces/TableCellUser.html new file mode 100644 index 0000000..d08a1a1 --- /dev/null +++ b/interfaces/TableCellUser.html @@ -0,0 +1,165 @@ +TableCellUser | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellUser

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
email: string
+
+ +
en_name: string
+
+ +
id: string
+
+ +
name: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableCellUserMetion.html b/interfaces/TableCellUserMetion.html new file mode 100644 index 0000000..eafb7b2 --- /dev/null +++ b/interfaces/TableCellUserMetion.html @@ -0,0 +1,182 @@ +TableCellUserMetion | Lark SDK
+
+ +
+
+
+
+ +

Interface TableCellUserMetion

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
mentionNotify: boolean
+
+ +
mentionType: "User"
+
+ +
name: string
+
+ +
text: string
+
+ +
token: string
+
+ +
type: "mention"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TableRecord.html b/interfaces/TableRecord.html new file mode 100644 index 0000000..457d26c --- /dev/null +++ b/interfaces/TableRecord.html @@ -0,0 +1,192 @@ +TableRecord | Lark SDK
+
+ +
+
+
+
+ +

Interface TableRecord<T>

+
+

Type Parameters

+
+
+

Hierarchy

+
    +
  • Record<"id" | "record_id", string> +
      +
    • TableRecord
+
+
+
+ +
+
+

Properties

+
+ +
created_by: TableCellUser
+
+ +
created_time: number
+
+ +
fields: T
+
+ +
id: string
+
+ +
last_modified_by?: TableCellUser
+
+ +
last_modified_time?: number
+
+ +
record_id: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TextCardTag.html b/interfaces/TextCardTag.html new file mode 100644 index 0000000..1fb0f12 --- /dev/null +++ b/interfaces/TextCardTag.html @@ -0,0 +1,166 @@ +TextCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface TextCardTag

+
+

Hierarchy

+
    +
  • TextCardTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
content?: string
+
+ +
i18n?: Record<`${string}_${string}`, string>
+
+ +
lines?: number
+
+ +
tag: "plain_text" | "lark_md"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TextMessage.html b/interfaces/TextMessage.html new file mode 100644 index 0000000..a04a43f --- /dev/null +++ b/interfaces/TextMessage.html @@ -0,0 +1,148 @@ +TextMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface TextMessage

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
text: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/TextTag.html b/interfaces/TextTag.html new file mode 100644 index 0000000..38f4c13 --- /dev/null +++ b/interfaces/TextTag.html @@ -0,0 +1,162 @@ +TextTag | Lark SDK
+
+ +
+
+
+
+ +

Interface TextTag

+
+

Hierarchy

+
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
tag: "text"
+
+ +
text: string
+
+ +
un_escape?: boolean
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/URLCardTag.html b/interfaces/URLCardTag.html new file mode 100644 index 0000000..f6d7da6 --- /dev/null +++ b/interfaces/URLCardTag.html @@ -0,0 +1,166 @@ +URLCardTag | Lark SDK
+
+ +
+
+
+
+ +

Interface URLCardTag

+
+

Hierarchy

+
    +
  • URLCardTag
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
android_url: string
+
+ +
ios_url: string
+
+ +
pc_url: string
+
+ +
url: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/UserCardMessage.html b/interfaces/UserCardMessage.html new file mode 100644 index 0000000..ffbb397 --- /dev/null +++ b/interfaces/UserCardMessage.html @@ -0,0 +1,152 @@ +UserCardMessage | Lark SDK
+
+ +
+
+
+
+ +

Interface UserCardMessage

+
+

Hierarchy

+
    +
  • UserCardMessage
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
type: "share_user"
+
+ +
user_id: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..481514e --- /dev/null +++ b/modules.html @@ -0,0 +1,212 @@ +Lark SDK
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/AudioMessage.html b/types/AudioMessage.html new file mode 100644 index 0000000..204e704 --- /dev/null +++ b/types/AudioMessage.html @@ -0,0 +1,121 @@ +AudioMessage | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/BITableList.html b/types/BITableList.html new file mode 100644 index 0000000..0940f14 --- /dev/null +++ b/types/BITableList.html @@ -0,0 +1,121 @@ +BITableList | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/BITableMeta.html b/types/BITableMeta.html new file mode 100644 index 0000000..84ed3e3 --- /dev/null +++ b/types/BITableMeta.html @@ -0,0 +1,126 @@ +BITableMeta | Lark SDK
+
+ +
+
+
+
+ +

Type alias BITableMeta

+
BITableMeta: LarkData<{
    app: {
        app_token: string;
    } & RevisionTable;
}>
+
+

Type declaration

+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/BiBaseData.html b/types/BiBaseData.html new file mode 100644 index 0000000..0fbf260 --- /dev/null +++ b/types/BiBaseData.html @@ -0,0 +1,121 @@ +BiBaseData | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/BiDataTableClass.html b/types/BiDataTableClass.html new file mode 100644 index 0000000..0e7d300 --- /dev/null +++ b/types/BiDataTableClass.html @@ -0,0 +1,126 @@ +BiDataTableClass | Lark SDK
+
+ +
+
+
+
+ +

Type alias BiDataTableClass<T>

+
BiDataTableClass<T>: ReturnType<typeof BiDataTable>
+
+

Type Parameters

+
    +
  • +

    T extends DataObject

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/BiTableItem.html b/types/BiTableItem.html new file mode 100644 index 0000000..c34271a --- /dev/null +++ b/types/BiTableItem.html @@ -0,0 +1,121 @@ +BiTableItem | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/CardTag.html b/types/CardTag.html new file mode 100644 index 0000000..1cea6ff --- /dev/null +++ b/types/CardTag.html @@ -0,0 +1,121 @@ +CardTag | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/ChatMessageContent.html b/types/ChatMessageContent.html new file mode 100644 index 0000000..99dea59 --- /dev/null +++ b/types/ChatMessageContent.html @@ -0,0 +1,121 @@ +ChatMessageContent | Lark SDK
+
+ +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/ChatMessageType.html b/types/ChatMessageType.html new file mode 100644 index 0000000..7ea4149 --- /dev/null +++ b/types/ChatMessageType.html @@ -0,0 +1,121 @@ +ChatMessageType | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/ChatPermission.html b/types/ChatPermission.html new file mode 100644 index 0000000..bdf5dfd --- /dev/null +++ b/types/ChatPermission.html @@ -0,0 +1,121 @@ +ChatPermission | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/FilterOperator.html b/types/FilterOperator.html new file mode 100644 index 0000000..87cacae --- /dev/null +++ b/types/FilterOperator.html @@ -0,0 +1,121 @@ +FilterOperator | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/I18nKey.html b/types/I18nKey.html new file mode 100644 index 0000000..a9fd52c --- /dev/null +++ b/types/I18nKey.html @@ -0,0 +1,121 @@ +I18nKey | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/JSTicket.html b/types/JSTicket.html new file mode 100644 index 0000000..543a83e --- /dev/null +++ b/types/JSTicket.html @@ -0,0 +1,128 @@ +JSTicket | Lark SDK
+
+ +
+
+
+
+ +

Type alias JSTicket

+
JSTicket: LarkData<{
    expire_in: number;
    ticket: string;
}>
+
+

Type declaration

+
    +
  • +
    expire_in: number
  • +
  • +
    ticket: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/LarkData.html b/types/LarkData.html new file mode 100644 index 0000000..ce521bb --- /dev/null +++ b/types/LarkData.html @@ -0,0 +1,137 @@ +LarkData | Lark SDK
+
+ +
+
+
+
+ +

Type alias LarkData<D, E>

+
LarkData<D, E>: E & {
    code: number;
    data: D;
    msg: string;
}
+
+

Type Parameters

+
    +
  • +

    D extends Record<string, any> = {}

  • +
  • +

    E extends Record<string, any> = {}

+
+

Type declaration

+
    +
  • +
    code: number
  • +
  • +
    data: D
  • +
  • +
    msg: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/LarkPageData.html b/types/LarkPageData.html new file mode 100644 index 0000000..c42337f --- /dev/null +++ b/types/LarkPageData.html @@ -0,0 +1,137 @@ +LarkPageData | Lark SDK
+
+ +
+
+
+
+ +

Type alias LarkPageData<D>

+
LarkPageData<D>: LarkData<{
    has_more: boolean;
    items: D[];
    page_token: string;
    total?: number;
}>
+
+

Type Parameters

+
    +
  • +

    D extends Record<string, any> = {}

+
+

Type declaration

+
    +
  • +
    has_more: boolean
  • +
  • +
    items: D[]
  • +
  • +
    page_token: string
  • +
  • +
    Optional total?: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/LocaleUser.html b/types/LocaleUser.html new file mode 100644 index 0000000..471edcf --- /dev/null +++ b/types/LocaleUser.html @@ -0,0 +1,121 @@ +LocaleUser | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/RichTextMessage.html b/types/RichTextMessage.html new file mode 100644 index 0000000..3d9115d --- /dev/null +++ b/types/RichTextMessage.html @@ -0,0 +1,131 @@ +RichTextMessage | Lark SDK
+
+ +
+
+
+
+ +

Type alias RichTextMessage

+
RichTextMessage: {
    [key: I18nKey]: {
        content: RichTextTag[][];
        title: string;
    };
}
+
+

Type declaration

+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/RichTextTag.html b/types/RichTextTag.html new file mode 100644 index 0000000..6de904d --- /dev/null +++ b/types/RichTextTag.html @@ -0,0 +1,121 @@ +RichTextTag | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/SheetCellValue.html b/types/SheetCellValue.html new file mode 100644 index 0000000..9adeef4 --- /dev/null +++ b/types/SheetCellValue.html @@ -0,0 +1,121 @@ +SheetCellValue | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/SheetMeta.html b/types/SheetMeta.html new file mode 100644 index 0000000..5cf8e8f --- /dev/null +++ b/types/SheetMeta.html @@ -0,0 +1,121 @@ +SheetMeta | Lark SDK
+
+ +
+
+
+
+ +

Type alias SheetMeta

+
SheetMeta: Record<"sheetId" | "title", string> & Record<`${"row" | "column"}Count` | `frozen${"Row" | "Col"}Count` | "index", number>
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/SheetRangeData.html b/types/SheetRangeData.html new file mode 100644 index 0000000..e0e46e1 --- /dev/null +++ b/types/SheetRangeData.html @@ -0,0 +1,130 @@ +SheetRangeData | Lark SDK
+
+ +
+
+
+
+ +

Type alias SheetRangeData

+
SheetRangeData: LarkData<{
    revision: number;
    spreadsheetToken: string;
    valueRange: Record<"revision" | "majorDimension", string> & {
        range: `${string}!${string}:${string}`;
        values: SheetCellValue[][];
    };
}>
+
+

Type declaration

+
    +
  • +
    revision: number
  • +
  • +
    spreadsheetToken: string
  • +
  • +
    valueRange: Record<"revision" | "majorDimension", string> & {
        range: `${string}!${string}:${string}`;
        values: SheetCellValue[][];
    }
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/SpreadSheetMeta.html b/types/SpreadSheetMeta.html new file mode 100644 index 0000000..ff8b7ea --- /dev/null +++ b/types/SpreadSheetMeta.html @@ -0,0 +1,130 @@ +SpreadSheetMeta | Lark SDK
+
+ +
+
+
+
+ +

Type alias SpreadSheetMeta

+
SpreadSheetMeta: LarkData<{
    properties: {
        title: string;
    } & Record<"revision" | "ownerUser" | "sheetCount", number>;
    sheets: SheetMeta[];
    spreadsheetToken: string;
}>
+
+

Type declaration

+
    +
  • +
    properties: {
        title: string;
    } & Record<"revision" | "ownerUser" | "sheetCount", number>
  • +
  • +
    sheets: SheetMeta[]
  • +
  • +
    spreadsheetToken: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/StickerMessage.html b/types/StickerMessage.html new file mode 100644 index 0000000..21f51e0 --- /dev/null +++ b/types/StickerMessage.html @@ -0,0 +1,121 @@ +StickerMessage | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableCellLocation.html b/types/TableCellLocation.html new file mode 100644 index 0000000..4dd4afc --- /dev/null +++ b/types/TableCellLocation.html @@ -0,0 +1,121 @@ +TableCellLocation | Lark SDK
+
+ +
+
+
+
+ +

Type alias TableCellLocation

+
TableCellLocation: Record<"name" | "pname" | "cityname" | "adname" | "address" | "full_address" | "location", string>
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableCellValue.html b/types/TableCellValue.html new file mode 100644 index 0000000..7141b94 --- /dev/null +++ b/types/TableCellValue.html @@ -0,0 +1,121 @@ +TableCellValue | Lark SDK
+
+ +
+
+
+
+ +

Type alias TableCellValue

+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableRecordData.html b/types/TableRecordData.html new file mode 100644 index 0000000..5d26682 --- /dev/null +++ b/types/TableRecordData.html @@ -0,0 +1,131 @@ +TableRecordData | Lark SDK
+
+ +
+
+
+
+ +

Type alias TableRecordData<T>

+
TableRecordData<T>: LarkData<{
    record: TableRecord<T>;
}>
+
+

Type Parameters

+
+
+

Type declaration

+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableRecordFields.html b/types/TableRecordFields.html new file mode 100644 index 0000000..31318a5 --- /dev/null +++ b/types/TableRecordFields.html @@ -0,0 +1,121 @@ +TableRecordFields | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableRecordList.html b/types/TableRecordList.html new file mode 100644 index 0000000..56b8679 --- /dev/null +++ b/types/TableRecordList.html @@ -0,0 +1,126 @@ +TableRecordList | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableViewItem.html b/types/TableViewItem.html new file mode 100644 index 0000000..1f3a032 --- /dev/null +++ b/types/TableViewItem.html @@ -0,0 +1,121 @@ +TableViewItem | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TableViewList.html b/types/TableViewList.html new file mode 100644 index 0000000..869b331 --- /dev/null +++ b/types/TableViewList.html @@ -0,0 +1,121 @@ +TableViewList | Lark SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TemplateColor.html b/types/TemplateColor.html new file mode 100644 index 0000000..055c02d --- /dev/null +++ b/types/TemplateColor.html @@ -0,0 +1,121 @@ +TemplateColor | Lark SDK
+
+ +
+
+
+
+ +

Type alias TemplateColor

+
TemplateColor: "blue" | "wathet" | "turquoise" | "green" | "yellow" | "orange" | "red" | "carmine" | "violet" | "purple" | "indigo" | "grey"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/TenantAccessToken.html b/types/TenantAccessToken.html new file mode 100644 index 0000000..dc0126c --- /dev/null +++ b/types/TenantAccessToken.html @@ -0,0 +1,131 @@ +TenantAccessToken | Lark SDK
+
+ +
+
+
+
+ +

Type alias TenantAccessToken

+
TenantAccessToken: LarkData<{}, {
    expire: number;
    tenant_access_token: string;
}>
+
+

Type declaration

+
    +
    +

    Type declaration

    +
      +
    • +
      expire: number
    • +
    • +
      tenant_access_token: string
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/UploadTargetType.html b/types/UploadTargetType.html new file mode 100644 index 0000000..9460309 --- /dev/null +++ b/types/UploadTargetType.html @@ -0,0 +1,121 @@ +UploadTargetType | Lark SDK
    +
    + +
    +
    +
    +
    + +

    Type alias UploadTargetType

    +
    UploadTargetType: "doc_image" | "docx_image" | "sheet_image" | "doc_file" | "docx_file" | "sheet_file" | "vc_virtual_background" | "bitable_image" | "bitable_file" | "moments" | "ccm_import_open"
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/UserMeta.html b/types/UserMeta.html new file mode 100644 index 0000000..09db3bd --- /dev/null +++ b/types/UserMeta.html @@ -0,0 +1,121 @@ +UserMeta | Lark SDK
    +
    + +
    +
    +
    +
    + +

    Type alias UserMeta

    +
    UserMeta: LarkData<{
        token_type: "Bearer";
    } & LocaleUser & Record<`avatar_${"url" | "thumb" | "middle" | "big"}` | `${"open" | "union" | "user"}_id` | "mobile" | "tenant_key" | `${"access" | "refresh"}_token`, string> & Record<`${"" | "refresh_"}expires_in`, number>>
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/types/VideoMessage.html b/types/VideoMessage.html new file mode 100644 index 0000000..50ebeb8 --- /dev/null +++ b/types/VideoMessage.html @@ -0,0 +1,121 @@ +VideoMessage | Lark SDK
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file