From 2884e2c4e00ca72153016bea723447e7f790649a Mon Sep 17 00:00:00 2001 From: akastercomcom Date: Fri, 22 Sep 2023 04:52:51 +0000 Subject: [PATCH] deploy: 9d4e1e1774f2ee6b034905f8ac6066e3c92d07b6 --- .nojekyll | 1 + assets/26e93147f10415a0ed4a.svg | 6 + assets/75c9471662e97ee24f29.svg | 7 + assets/custom.css | 1 + assets/custom.js | 1 + assets/db90e4df2373980c497d.svg | 9 + assets/highlight.css | 78 + assets/main.js | 58 + assets/search.js | 1 + assets/style.css | 1279 +++++++++++++++++ classes/ain.AinModule.html | 360 +++++ classes/ainize.Ainize.html | 301 ++++ ...ntrollers_appController.AppController.html | 416 ++++++ ...llers_modelController.ModelController.html | 381 +++++ classes/handlers_handler.Handler.html | 240 ++++ classes/internal.Internal.html | 221 +++ .../middlewares_middleware.Middleware.html | 191 +++ classes/model.Model.html | 358 +++++ enums/types_type.ContainerStatus.html | 144 ++ enums/types_type.HISTORY_TYPE.html | 144 ++ enums/types_type.RESPONSE_STATUS.html | 144 ++ functions/constants.defaultAppRules.html | 140 ++ .../constants.getBlockChainEndpoint.html | 132 ++ .../utils_builder.buildSetOperation.html | 136 ++ functions/utils_builder.buildTxBody.html | 134 ++ .../utils_operator.getChangeBalanceOp.html | 138 ++ .../utils_operator.getRequestDepositOp.html | 138 ++ functions/utils_operator.getResponseOp.html | 142 ++ functions/utils_operator.getTransferOp.html | 138 ++ .../utils_operator.getWriteHistoryOp.html | 140 ++ index.html | 179 +++ modules.html | 134 ++ modules/ain.html | 130 ++ modules/ainize.html | 130 ++ modules/constants.html | 138 ++ modules/controllers_appController.html | 130 ++ modules/controllers_modelController.html | 130 ++ modules/handlers_handler.html | 130 ++ modules/internal.html | 130 ++ modules/middlewares_middleware.html | 130 ++ modules/model.html | 130 ++ modules/types_type.html | 149 ++ modules/utils_builder.html | 131 ++ modules/utils_operator.html | 134 ++ types/types_type.appBillingConfig.html | 136 ++ types/types_type.createAppConfig.html | 132 ++ types/types_type.creditHistories.html | 128 ++ types/types_type.creditHistory.html | 134 ++ types/types_type.deployConfig.html | 132 ++ types/types_type.deposit.html | 134 ++ types/types_type.opResult.html | 132 ++ types/types_type.request.html | 134 ++ types/types_type.response.html | 123 ++ types/types_type.setRuleParam.html | 123 ++ types/types_type.setTriggerFunctionParm.html | 123 ++ types/types_type.triggerFunctionConfig.html | 132 ++ types/types_type.txResult.html | 137 ++ types/types_type.writeRuleConfig.html | 128 ++ .../constants.DEFAULT_BILLING_CONFIG.html | 123 ++ .../constants.HANDLER_HEARBEAT_INTERVAL.html | 123 ++ variables/constants.Path.html | 156 ++ variables/constants.SECOND.html | 123 ++ 62 files changed, 9837 insertions(+) create mode 100644 .nojekyll create mode 100644 assets/26e93147f10415a0ed4a.svg create mode 100644 assets/75c9471662e97ee24f29.svg create mode 100644 assets/custom.css create mode 100644 assets/custom.js create mode 100644 assets/db90e4df2373980c497d.svg 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/ain.AinModule.html create mode 100644 classes/ainize.Ainize.html create mode 100644 classes/controllers_appController.AppController.html create mode 100644 classes/controllers_modelController.ModelController.html create mode 100644 classes/handlers_handler.Handler.html create mode 100644 classes/internal.Internal.html create mode 100644 classes/middlewares_middleware.Middleware.html create mode 100644 classes/model.Model.html create mode 100644 enums/types_type.ContainerStatus.html create mode 100644 enums/types_type.HISTORY_TYPE.html create mode 100644 enums/types_type.RESPONSE_STATUS.html create mode 100644 functions/constants.defaultAppRules.html create mode 100644 functions/constants.getBlockChainEndpoint.html create mode 100644 functions/utils_builder.buildSetOperation.html create mode 100644 functions/utils_builder.buildTxBody.html create mode 100644 functions/utils_operator.getChangeBalanceOp.html create mode 100644 functions/utils_operator.getRequestDepositOp.html create mode 100644 functions/utils_operator.getResponseOp.html create mode 100644 functions/utils_operator.getTransferOp.html create mode 100644 functions/utils_operator.getWriteHistoryOp.html create mode 100644 index.html create mode 100644 modules.html create mode 100644 modules/ain.html create mode 100644 modules/ainize.html create mode 100644 modules/constants.html create mode 100644 modules/controllers_appController.html create mode 100644 modules/controllers_modelController.html create mode 100644 modules/handlers_handler.html create mode 100644 modules/internal.html create mode 100644 modules/middlewares_middleware.html create mode 100644 modules/model.html create mode 100644 modules/types_type.html create mode 100644 modules/utils_builder.html create mode 100644 modules/utils_operator.html create mode 100644 types/types_type.appBillingConfig.html create mode 100644 types/types_type.createAppConfig.html create mode 100644 types/types_type.creditHistories.html create mode 100644 types/types_type.creditHistory.html create mode 100644 types/types_type.deployConfig.html create mode 100644 types/types_type.deposit.html create mode 100644 types/types_type.opResult.html create mode 100644 types/types_type.request.html create mode 100644 types/types_type.response.html create mode 100644 types/types_type.setRuleParam.html create mode 100644 types/types_type.setTriggerFunctionParm.html create mode 100644 types/types_type.triggerFunctionConfig.html create mode 100644 types/types_type.txResult.html create mode 100644 types/types_type.writeRuleConfig.html create mode 100644 variables/constants.DEFAULT_BILLING_CONFIG.html create mode 100644 variables/constants.HANDLER_HEARBEAT_INTERVAL.html create mode 100644 variables/constants.Path.html create mode 100644 variables/constants.SECOND.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/26e93147f10415a0ed4a.svg b/assets/26e93147f10415a0ed4a.svg new file mode 100644 index 0000000..09d06a6 --- /dev/null +++ b/assets/26e93147f10415a0ed4a.svg @@ -0,0 +1,6 @@ + + +TypeScript logo + + + diff --git a/assets/75c9471662e97ee24f29.svg b/assets/75c9471662e97ee24f29.svg new file mode 100644 index 0000000..a8c3280 --- /dev/null +++ b/assets/75c9471662e97ee24f29.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/assets/custom.css b/assets/custom.css new file mode 100644 index 0000000..02a48b9 --- /dev/null +++ b/assets/custom.css @@ -0,0 +1 @@ +.tree{background:var(--color-panel);font-family:Roboto Mono,monospace;margin-top:20px}.tree-config{display:flex;gap:8px;justify-content:end;padding:8px}.tree-config__button{align-items:center;background-color:transparent;border:0;color:var(--color-toolbar-text);cursor:pointer;display:flex;height:20px;justify-content:center;opacity:.8;padding:0;width:20px}.tree-config__button:hover{opacity:.9}.tree-content{color:var(--color-text);font-size:.85rem;font-weight:400;line-height:1.5;padding:0 20px 20px;position:relative}.tree-content span{font-size:13px;letter-spacing:.4px}.tree-content ul{list-style:none;margin:0;padding-left:5px}.tree-content ul li{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding-bottom:5px;padding-left:15px;padding-top:5px;position:relative}.tree-content ul li:before{height:1px;margin:auto;top:15px;width:10px}.tree-content ul li:after,.tree-content ul li:before{background-color:#666;content:"";left:0;position:absolute}.tree-content ul li:after{bottom:0;height:100%;top:0;width:1px}.tree-content ul li:last-child:after{height:15px}.tree-content ul a{cursor:pointer}.category:not([data-id=root]){display:none}.category:not([data-id=root])._open{display:block}.category__title{color:var(--color-text-aside);cursor:pointer}.category__link,.category__title{align-items:center;display:flex;flex-shrink:0;text-decoration:none}a.category__link:hover,a.category__title:hover{text-decoration:underline}.category__title._open .category__folder{background:url(db90e4df2373980c497d.svg)}.category__folder{background:url(75c9471662e97ee24f29.svg);display:inline-block;flex-shrink:0;height:15px;margin-right:6px;width:15px}.category__link._active{color:inherit}.category__link--ts:before{background-image:url(26e93147f10415a0ed4a.svg);content:"";display:inline-block;flex-shrink:0;height:15px;margin:0 7px 2px 0;vertical-align:middle;width:15px} \ No newline at end of file diff --git a/assets/custom.js b/assets/custom.js new file mode 100644 index 0000000..2b53bf1 --- /dev/null +++ b/assets/custom.js @@ -0,0 +1 @@ +(()=>{"use strict";var t={893:(t,e,s)=>{s.r(e)},555:(t,e,s)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.HierarchyManager=void 0;const o=s(498);e.HierarchyManager=class{constructor(){this.stateManager=new o.StateManager,this.titleSelector=".js-category-title",this.listSelector=".js-category-list"}init(){this.addListeners(),this.initSaved(),this.openCurrentPath()}openPathAndSave(t){this.openPath(t),this.stateManager.addOpenedPath(t)}openPath(t){var e,s;const o=document.querySelector(`${this.listSelector}[data-id="${t}"]`);o&&(o.classList.add("_open"),null===(s=null===(e=o.parentNode)||void 0===e?void 0:e.querySelector(this.titleSelector))||void 0===s||s.classList.add("_open"))}closePath(t){var e,s;const o=document.querySelector(`${this.listSelector}[data-id="${t}"]`);o&&(o.classList.remove("_open"),null===(s=null===(e=o.parentNode)||void 0===e?void 0:e.querySelector(this.titleSelector))||void 0===s||s.classList.remove("_open"),this.stateManager.removeOpenedPath(t))}closePathWithChildren(t){this.closePath(t);const e=document.querySelector(`${this.listSelector}[data-id="${t}"]`);if(!e)return;const s=e.querySelectorAll(this.listSelector);for(const t of s)this.closePath(t.dataset.id||"")}togglePath(t){const e=document.querySelector(`${this.listSelector}[data-id="${t}"]`);e&&(e.classList.contains("_open")?this.closePathWithChildren(t):this.openPathAndSave(t))}addListeners(){const t=document.querySelectorAll('.js-category-title:not([data-id="root"])');for(const e of t)e.addEventListener("click",(()=>{const t=e.dataset.id||"";this.togglePath(t)}));this.addExpandListener(),this.addCollapseListener(),this.addTargetListener()}addExpandListener(){const t=document.querySelector(".js-tree-expand");null==t||t.addEventListener("click",(()=>{const t=document.querySelectorAll(this.listSelector);for(const e of t){const t=e.dataset.id||"";this.openPathAndSave(t)}}))}addCollapseListener(){const t=document.querySelector(".js-tree-collapse");null==t||t.addEventListener("click",(()=>{const t=document.querySelectorAll(this.listSelector);for(const e of t){const t=e.dataset.id||"";this.closePath(t)}}))}addTargetListener(){const t=document.querySelector(".js-tree-target");null==t||t.addEventListener("click",(()=>{const t=this.openCurrentPath();null==t||t.scrollIntoView()}))}initSaved(){const t=this.stateManager.getOpenedPaths();for(const e of t)this.openPath(e)}openCurrentPath(){const t=window.location.pathname.split("/"),e=`/${t[t.length-2]||""}/${t[t.length-1]||""}`,s=document.querySelector(`.js-category-link[data-id="${e}"]`);if(!s)return null;s.classList.add("_active");let o=s.closest(this.listSelector);for(;o;){const t=o.dataset.id||"";this.openPath(t),o=o.parentNode.closest(this.listSelector)}return s}}},498:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.StateManager=void 0;e.StateManager=class{constructor(){this.openedPathLsKey="opened-path-state",this.openedPaths=[];const t=localStorage.getItem("opened-path-state");this.openedPaths=t?JSON.parse(t):[]}addOpenedPath(t){this.openedPaths.push(t),this.updateState()}removeOpenedPath(t){this.openedPaths=this.openedPaths.filter((e=>e!==t)),this.updateState()}getOpenedPaths(){return this.openedPaths}updateState(){localStorage.setItem(this.openedPathLsKey,JSON.stringify(this.openedPaths))}}}},e={};function s(o){var a=e[o];if(void 0!==a)return a.exports;var n=e[o]={exports:{}};return t[o](n,n.exports,s),n.exports}s.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};(()=>{s(893);(new(s(555).HierarchyManager)).init()})()})(); \ No newline at end of file diff --git a/assets/db90e4df2373980c497d.svg b/assets/db90e4df2373980c497d.svg new file mode 100644 index 0000000..074613e --- /dev/null +++ b/assets/db90e4df2373980c497d.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 0000000..8081247 --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,78 @@ +:root { + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #AF00DB; + --dark-hl-3: #C586C0; + --light-hl-4: #001080; + --dark-hl-4: #9CDCFE; + --light-hl-5: #0000FF; + --dark-hl-5: #569CD6; + --light-hl-6: #0070C1; + --dark-hl-6: #4FC1FF; + --light-hl-7: #267F99; + --dark-hl-7: #4EC9B0; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +pre, code { background: var(--code-background); } diff --git a/assets/main.js b/assets/main.js new file mode 100644 index 0000000..f7c8366 --- /dev/null +++ b/assets/main.js @@ -0,0 +1,58 @@ +"use strict"; +"use strict";(()=>{var Qe=Object.create;var ae=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Ce=Object.getOwnPropertyNames;var Oe=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty;var _e=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Me=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ce(e))!Re.call(t,i)&&i!==n&&ae(t,i,{get:()=>e[i],enumerable:!(r=Pe(e,i))||r.enumerable});return t};var De=(t,e,n)=>(n=t!=null?Qe(Oe(t)):{},Me(e||!t||!t.__esModule?ae(n,"default",{value:t,enumerable:!0}):n,t));var de=_e((ce,he)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var h=t.utils.clone(n)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(r.slice(a,o),h))}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,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(n+=r[l+1]*i[h+1],l+=2,h+=2);return n},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),n=1,r=0;n0){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 u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,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 l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),m=s.str.charAt(1),v;m in s.node.edges?v=s.node.edges[m]:(v=new t.TokenSet,s.node.edges[m]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.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(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},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,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<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 n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,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 n=e.peekLexeme();if(n!=null)switch(n.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 r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.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 n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.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 '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;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 n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;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,n){typeof define=="function"&&define.amd?define(n):typeof ce=="object"?he.exports=n():e.lunr=n()}(this,function(){return t})})()});var le=[];function B(t,e){le.push({selector:e,constructor:t})}var Y=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureFocusedElementVisible(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){le.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureFocusedElementVisible(){this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null);let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(n&&n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let r=document.createElement("p");r.classList.add("warning"),r.textContent="This member is normally hidden due to your filter settings.",n.prepend(r)}}};var I=class{constructor(e){this.el=e.el,this.app=e.app}};var J=class{constructor(){this.listeners={}}addEventListener(e,n){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(n)}removeEventListener(e,n){if(!(e in this.listeners))return;let r=this.listeners[e];for(let i=0,s=r.length;i{let n=Date.now();return(...r)=>{n+e-Date.now()<0&&(t(...r),n=Date.now())}};var re=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.navigation=document.querySelector(".col-menu"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.searchInput=document.querySelector("#tsd-search input"),this.searchInput&&this.searchInput.addEventListener("focus",()=>{this.hideShowToolbar()}),this.onResize(),this.onScroll()}triggerResize(){let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let n=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(n)}onScroll(){this.scrollTop=window.scrollY||0;let n=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(n),this.hideShowToolbar()}hideShowToolbar(){let n=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0||!!this.searchInput&&this.searchInput===document.activeElement,n!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.navigation?.classList.toggle("col-menu--hide")),this.lastY=this.scrollTop}},R=re;R.instance=new re;var X=class extends I{constructor(n){super(n);this.anchors=[];this.index=-1;R.instance.addEventListener("resize",()=>this.onResize()),R.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substring(0,n.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let i=r.href;if(i.indexOf("#")==-1||i.substring(0,n.length)!=n)return;let s=i.substring(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=r.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let n;for(let i=0,s=this.anchors.length;ii.position-s.position);let r=new CustomEvent("scroll",{detail:{scrollTop:R.instance.scrollTop}});this.onScroll(r)}onScroll(n){let r=n.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>r;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var me=De(de());function ve(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("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 n=document.querySelector("#tsd-search input"),r=document.querySelector("#tsd-search .results");if(!n||!r)throw new Error("The input field or the result list wrapper was not found");let i=!1;r.addEventListener("mousedown",()=>i=!0),r.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),n.addEventListener("focus",()=>t.classList.add("has-focus")),n.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Fe(t,r,n,s)}function Fe(t,e,n,r){n.addEventListener("input",ue(()=>{He(t,e,n,r)},200));let i=!1;n.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ve(e,n):s.key=="Escape"?n.blur():s.key=="ArrowUp"?pe(e,-1):s.key==="ArrowDown"?pe(e,1):i=!1}),n.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!n.matches(":focus")&&s.key==="/"&&(n.focus(),s.preventDefault())})}function Ae(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=me.Index.load(window.searchData.index))}function He(t,e,n,r){if(Ae(r,t),!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s=i?r.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${fe(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes??"";let m=document.createElement("a");m.href=r.base+u.url,m.innerHTML=l,h.append(m),e.appendChild(h)}}function pe(t,e){let n=t.querySelector(".current");if(!n)n=t.querySelector(e==1?"li:first-child":"li:last-child"),n&&n.classList.add("current");else{let r=n;if(e===1)do r=r.nextElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);else do r=r.previousElementSibling??void 0;while(r instanceof HTMLElement&&r.offsetParent==null);r&&(n.classList.remove("current"),r.classList.add("current"))}}function Ve(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),e.blur()}}function fe(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(ie(t.substring(s,o)),`${ie(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(ie(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function ie(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var F="mousedown",ye="mousemove",j="mouseup",Z={x:0,y:0},ge=!1,se=!1,Be=!1,A=!1,xe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(xe?"is-mobile":"not-mobile");xe&&"ontouchstart"in document.documentElement&&(Be=!0,F="touchstart",ye="touchmove",j="touchend");document.addEventListener(F,t=>{se=!0,A=!1;let e=F=="touchstart"?t.targetTouches[0]:t;Z.y=e.pageY||0,Z.x=e.pageX||0});document.addEventListener(ye,t=>{if(se&&!A){let e=F=="touchstart"?t.targetTouches[0]:t,n=Z.x-(e.pageX||0),r=Z.y-(e.pageY||0);A=Math.sqrt(n*n+r*r)>10}});document.addEventListener(j,()=>{se=!1});document.addEventListener("click",t=>{ge&&(t.preventDefault(),t.stopImmediatePropagation(),ge=!1)});var K=class extends I{constructor(n){super(n);this.className=this.el.dataset.toggle||"",this.el.addEventListener(j,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(F,r=>this.onDocumentPointerDown(r)),document.addEventListener(j,r=>this.onDocumentPointerUp(r))}setActive(n){if(this.active==n)return;this.active=n,document.documentElement.classList.toggle("has-"+this.className,n),this.el.classList.toggle("active",n);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(n){A||(this.setActive(!0),n.preventDefault())}onDocumentPointerDown(n){if(this.active){if(n.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(n){if(!A&&this.active&&n.target.closest(".col-menu")){let r=n.target.closest("a");if(r){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),r.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var oe;try{oe=localStorage}catch{oe={getItem(){return null},setItem(){}}}var Q=oe;var Le=document.head.appendChild(document.createElement("style"));Le.dataset.for="filters";var ee=class extends I{constructor(n){super(n);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),Le.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.checked}setLocalStorage(n){Q.setItem(this.key,n.toString()),this.value=n,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(n=>{n.style.display="block";let r=Array.from(n.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);n.style.display=r?"none":"block"})}};var te=class extends I{constructor(n){super(n);this.calculateHeights(),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.textContent.replace(/\s+/g,"-").toLowerCase()}`,this.setLocalStorage(this.fromLocalStorage(),!0),this.summary.addEventListener("click",r=>this.toggleVisibility(r)),this.icon.style.transform=this.getIconRotation()}getIconRotation(n=this.el.open){return`rotate(${n?0:-90}deg)`}calculateHeights(){let n=this.el.open,{position:r,left:i}=this.el.style;this.el.style.position="fixed",this.el.style.left="-9999px",this.el.open=!0,this.expandedHeight=this.el.offsetHeight+"px",this.el.open=!1,this.collapsedHeight=this.el.offsetHeight+"px",this.el.open=n,this.el.style.height=n?this.expandedHeight:this.collapsedHeight,this.el.style.position=r,this.el.style.left=i}toggleVisibility(n){n.preventDefault(),this.el.style.overflow="hidden",this.el.open?this.collapse():this.expand()}expand(n=!0){this.el.open=!0,this.animate(this.collapsedHeight,this.expandedHeight,{opening:!0,duration:n?300:0})}collapse(n=!0){this.animate(this.expandedHeight,this.collapsedHeight,{opening:!1,duration:n?300:0})}animate(n,r,{opening:i,duration:s=300}){if(this.animation)return;let o={duration:s,easing:"ease"};this.animation=this.el.animate({height:[n,r]},o),this.icon.animate({transform:[this.icon.style.transform||this.getIconRotation(!i),this.getIconRotation(i)]},o).addEventListener("finish",()=>{this.icon.style.transform=this.getIconRotation(i)}),this.animation.addEventListener("finish",()=>this.animationEnd(i))}animationEnd(n){this.el.open=n,this.animation=void 0,this.el.style.height="auto",this.el.style.overflow="visible",this.setLocalStorage(n)}fromLocalStorage(){let n=Q.getItem(this.key);return n?n==="true":this.el.open}setLocalStorage(n,r=!1){this.fromLocalStorage()===n&&!r||(Q.setItem(this.key,n.toString()),this.el.open=n,this.handleValueChange(r))}handleValueChange(n=!1){this.fromLocalStorage()===this.el.open&&!n||(this.fromLocalStorage()?this.expand(!1):this.collapse(!1))}};function be(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,Ee(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),Ee(t.value)})}function Ee(t){document.documentElement.dataset.theme=t}ve();B(X,".menu-highlight");B(K,"a[data-toggle]");B(te,".tsd-index-accordion");B(ee,".tsd-filter-item input[type=checkbox]");var we=document.getElementById("theme");we&&be(we);var je=new Y;Object.defineProperty(window,"app",{value:je});})(); +/*! 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..ac9d0aa --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"kind\":2,\"name\":\"ain\",\"url\":\"modules/ain.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"AinModule\",\"url\":\"classes/ain.AinModule.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"ain\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"classes/ain.AinModule.html#instance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"getInstance\",\"url\":\"classes/ain.AinModule.html#getInstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ain.AinModule.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":1024,\"name\":\"ain\",\"url\":\"classes/ain.AinModule.html#ain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"initAin\",\"url\":\"classes/ain.AinModule.html#initAin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"isDefaultAccountExist\",\"url\":\"classes/ain.AinModule.html#isDefaultAccountExist\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"createAccount\",\"url\":\"classes/ain.AinModule.html#createAccount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"setDefaultAccount\",\"url\":\"classes/ain.AinModule.html#setDefaultAccount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"getDefaultAccount\",\"url\":\"classes/ain.AinModule.html#getDefaultAccount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"removeDefaultAccount\",\"url\":\"classes/ain.AinModule.html#removeDefaultAccount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"getAddress\",\"url\":\"classes/ain.AinModule.html#getAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"getBalance\",\"url\":\"classes/ain.AinModule.html#getBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"getValue\",\"url\":\"classes/ain.AinModule.html#getValue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"_sendTransaction\",\"url\":\"classes/ain.AinModule.html#_sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"checkAinInitiated\",\"url\":\"classes/ain.AinModule.html#checkAinInitiated\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"getEventManager\",\"url\":\"classes/ain.AinModule.html#getEventManager\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"hasFailedOpResultList\",\"url\":\"classes/ain.AinModule.html#hasFailedOpResultList\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"ain.AinModule\"},{\"kind\":2048,\"name\":\"handleTxResultWrapper\",\"url\":\"classes/ain.AinModule.html#handleTxResultWrapper\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"ain.AinModule\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/ain.AinModule.html#handleTxResultWrapper.handleTxResultWrapper-1.__type-2\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"ain.AinModule.handleTxResultWrapper.handleTxResultWrapper\"},{\"kind\":1024,\"name\":\"sendTransaction\",\"url\":\"classes/ain.AinModule.html#sendTransaction\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ain.AinModule\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/ain.AinModule.html#sendTransaction.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ain.AinModule.sendTransaction\"},{\"kind\":2,\"name\":\"ainize\",\"url\":\"modules/ainize.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Ainize\",\"url\":\"classes/ainize.Ainize.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"ainize\"},{\"kind\":2048,\"name\":\"createAinAccount\",\"url\":\"classes/ainize.Ainize.html#createAinAccount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ainize.Ainize.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"classes/ainize.Ainize.html#cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"ainize.Ainize\"},{\"kind\":1024,\"name\":\"handler\",\"url\":\"classes/ainize.Ainize.html#handler\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"ainize.Ainize\"},{\"kind\":1024,\"name\":\"ain\",\"url\":\"classes/ainize.Ainize.html#ain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":1024,\"name\":\"middleware\",\"url\":\"classes/ainize.Ainize.html#middleware\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":1024,\"name\":\"internal\",\"url\":\"classes/ainize.Ainize.html#internal\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":1024,\"name\":\"appController\",\"url\":\"classes/ainize.Ainize.html#appController\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/ainize.Ainize.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/ainize.Ainize.html#logout\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"getAddress\",\"url\":\"classes/ainize.Ainize.html#getAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"getAinBalance\",\"url\":\"classes/ainize.Ainize.html#getAinBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"deploy\",\"url\":\"classes/ainize.Ainize.html#deploy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"model\",\"url\":\"classes/ainize.Ainize.html#model\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2048,\"name\":\"test\",\"url\":\"classes/ainize.Ainize.html#test\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ainize.Ainize\"},{\"kind\":2,\"name\":\"constants\",\"url\":\"modules/constants.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getBlockChainEndpoint\",\"url\":\"functions/constants.getBlockChainEndpoint.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"constants\"},{\"kind\":32,\"name\":\"Path\",\"url\":\"variables/constants.Path.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"constants\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/constants.Path.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"constants.Path\"},{\"kind\":1024,\"name\":\"app\",\"url\":\"variables/constants.Path.html#__type.app\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"constants.Path.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/constants.Path.html#__type.app.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"constants.Path.__type.app\"},{\"kind\":1024,\"name\":\"transfer\",\"url\":\"variables/constants.Path.html#__type.transfer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"constants.Path.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/constants.Path.html#__type.transfer.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"constants.Path.__type.transfer\"},{\"kind\":64,\"name\":\"defaultAppRules\",\"url\":\"functions/constants.defaultAppRules.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"constants\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/constants.defaultAppRules.html#defaultAppRules.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"constants.defaultAppRules.defaultAppRules\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/constants.defaultAppRules.html#defaultAppRules.__type.__index.__type-1\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"constants.defaultAppRules.defaultAppRules.__type.__index\"},{\"kind\":1024,\"name\":\"ref\",\"url\":\"functions/constants.defaultAppRules.html#defaultAppRules.__type.__index.__type-1.ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"constants.defaultAppRules.defaultAppRules.__type.__index.__type\"},{\"kind\":1024,\"name\":\"value\",\"url\":\"functions/constants.defaultAppRules.html#defaultAppRules.__type.__index.__type-1.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"constants.defaultAppRules.defaultAppRules.__type.__index.__type\"},{\"kind\":32,\"name\":\"DEFAULT_BILLING_CONFIG\",\"url\":\"variables/constants.DEFAULT_BILLING_CONFIG.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"constants\"},{\"kind\":32,\"name\":\"SECOND\",\"url\":\"variables/constants.SECOND.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"constants\"},{\"kind\":32,\"name\":\"HANDLER_HEARBEAT_INTERVAL\",\"url\":\"variables/constants.HANDLER_HEARBEAT_INTERVAL.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"constants\"},{\"kind\":2,\"name\":\"controllers/appController\",\"url\":\"modules/controllers_appController.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"AppController\",\"url\":\"classes/controllers_appController.AppController.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"controllers/appController\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"classes/controllers_appController.AppController.html#instance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"getInstance\",\"url\":\"classes/controllers_appController.AppController.html#getInstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/controllers_appController.AppController.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":1024,\"name\":\"ain\",\"url\":\"classes/controllers_appController.AppController.html#ain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"createApp\",\"url\":\"classes/controllers_appController.AppController.html#createApp\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"setAppBillingConfig\",\"url\":\"classes/controllers_appController.AppController.html#setAppBillingConfig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"getBillingConfig\",\"url\":\"classes/controllers_appController.AppController.html#getBillingConfig\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"setTriggerFunctions\",\"url\":\"classes/controllers_appController.AppController.html#setTriggerFunctions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"setRules\",\"url\":\"classes/controllers_appController.AppController.html#setRules\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"setContainerStatus\",\"url\":\"classes/controllers_appController.AppController.html#setContainerStatus\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"addAdmin\",\"url\":\"classes/controllers_appController.AppController.html#addAdmin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"deleteAdmin\",\"url\":\"classes/controllers_appController.AppController.html#deleteAdmin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"checkCostAndBalance\",\"url\":\"classes/controllers_appController.AppController.html#checkCostAndBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"getCreditBalance\",\"url\":\"classes/controllers_appController.AppController.html#getCreditBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"buildSetContainerStatusOp\",\"url\":\"classes/controllers_appController.AppController.html#buildSetContainerStatusOp\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"buildSetAppBillingConfigOp\",\"url\":\"classes/controllers_appController.AppController.html#buildSetAppBillingConfigOp\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"buildCreateAppOp\",\"url\":\"classes/controllers_appController.AppController.html#buildCreateAppOp\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2048,\"name\":\"buildSetFunctionValue\",\"url\":\"classes/controllers_appController.AppController.html#buildSetFunctionValue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/controllers_appController.AppController.html#buildSetFunctionValue.buildSetFunctionValue-1.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"controllers/appController.AppController.buildSetFunctionValue.buildSetFunctionValue\"},{\"kind\":1024,\"name\":\".function\",\"url\":\"classes/controllers_appController.AppController.html#buildSetFunctionValue.buildSetFunctionValue-1.__type._function\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"controllers/appController.AppController.buildSetFunctionValue.buildSetFunctionValue.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/controllers_appController.AppController.html#buildSetFunctionValue.buildSetFunctionValue-1.__type._function.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"controllers/appController.AppController.buildSetFunctionValue.buildSetFunctionValue.__type..function\"},{\"kind\":2048,\"name\":\"buildSetAdminOp\",\"url\":\"classes/controllers_appController.AppController.html#buildSetAdminOp\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/appController.AppController\"},{\"kind\":2,\"name\":\"controllers/modelController\",\"url\":\"modules/controllers_modelController.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"ModelController\",\"url\":\"classes/controllers_modelController.ModelController.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"controllers/modelController\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"classes/controllers_modelController.ModelController.html#instance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"getInstance\",\"url\":\"classes/controllers_modelController.ModelController.html#getInstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/controllers_modelController.ModelController.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":1024,\"name\":\"ain\",\"url\":\"classes/controllers_modelController.ModelController.html#ain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":1024,\"name\":\"handler\",\"url\":\"classes/controllers_modelController.ModelController.html#handler\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"isRunning\",\"url\":\"classes/controllers_modelController.ModelController.html#isRunning\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"getInformation\",\"url\":\"classes/controllers_modelController.ModelController.html#getInformation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"calculateCost\",\"url\":\"classes/controllers_modelController.ModelController.html#calculateCost\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"chargeCredit\",\"url\":\"classes/controllers_modelController.ModelController.html#chargeCredit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"withdrawCredit\",\"url\":\"classes/controllers_modelController.ModelController.html#withdrawCredit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"getCreditBalance\",\"url\":\"classes/controllers_modelController.ModelController.html#getCreditBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"getCreditHistory\",\"url\":\"classes/controllers_modelController.ModelController.html#getCreditHistory\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"use\",\"url\":\"classes/controllers_modelController.ModelController.html#use\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"run\",\"url\":\"classes/controllers_modelController.ModelController.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/controllers_modelController.ModelController.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"changeModelInfo\",\"url\":\"classes/controllers_modelController.ModelController.html#changeModelInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"getDepositAddress\",\"url\":\"classes/controllers_modelController.ModelController.html#getDepositAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"isLoggedIn\",\"url\":\"classes/controllers_modelController.ModelController.html#isLoggedIn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2048,\"name\":\"isAdmin\",\"url\":\"classes/controllers_modelController.ModelController.html#isAdmin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"controllers/modelController.ModelController\"},{\"kind\":2,\"name\":\"handlers/handler\",\"url\":\"modules/handlers_handler.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Handler\",\"url\":\"classes/handlers_handler.Handler.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"handlers/handler\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"classes/handlers_handler.Handler.html#instance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"getInstance\",\"url\":\"classes/handlers_handler.Handler.html#getInstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/handlers_handler.Handler.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":1024,\"name\":\"ain\",\"url\":\"classes/handlers_handler.Handler.html#ain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"checkEventManager\",\"url\":\"classes/handlers_handler.Handler.html#checkEventManager\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"connect\",\"url\":\"classes/handlers_handler.Handler.html#connect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"disconnect\",\"url\":\"classes/handlers_handler.Handler.html#disconnect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"disconnectedCb\",\"url\":\"classes/handlers_handler.Handler.html#disconnectedCb\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"subscribe\",\"url\":\"classes/handlers_handler.Handler.html#subscribe\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2048,\"name\":\"unsubscribe\",\"url\":\"classes/handlers_handler.Handler.html#unsubscribe\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"handlers/handler.Handler\"},{\"kind\":2,\"name\":\"internal\",\"url\":\"modules/internal.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Internal\",\"url\":\"classes/internal.Internal.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"internal\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/internal.Internal.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"internal.Internal\"},{\"kind\":1024,\"name\":\"ain\",\"url\":\"classes/internal.Internal.html#ain\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"internal.Internal\"},{\"kind\":2048,\"name\":\"handleDeposit\",\"url\":\"classes/internal.Internal.html#handleDeposit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"internal.Internal\"},{\"kind\":2048,\"name\":\"handleRequest\",\"url\":\"classes/internal.Internal.html#handleRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"internal.Internal\"},{\"kind\":2048,\"name\":\"getDataFromServiceRequest\",\"url\":\"classes/internal.Internal.html#getDataFromServiceRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"internal.Internal\"},{\"kind\":2048,\"name\":\"getDataFromDepositRequest\",\"url\":\"classes/internal.Internal.html#getDataFromDepositRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"internal.Internal\"},{\"kind\":2,\"name\":\"middlewares/middleware\",\"url\":\"modules/middlewares_middleware.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Middleware\",\"url\":\"classes/middlewares_middleware.Middleware.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"middlewares/middleware\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/middlewares_middleware.Middleware.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"middlewares/middleware.Middleware\"},{\"kind\":1024,\"name\":\"cache\",\"url\":\"classes/middlewares_middleware.Middleware.html#cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"middlewares/middleware.Middleware\"},{\"kind\":2048,\"name\":\"triggerDuplicateFilter\",\"url\":\"classes/middlewares_middleware.Middleware.html#triggerDuplicateFilter\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"middlewares/middleware.Middleware\"},{\"kind\":2,\"name\":\"model\",\"url\":\"modules/model.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Model\",\"url\":\"classes/model.Model.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"model\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/model.Model.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":1024,\"name\":\"modelName\",\"url\":\"classes/model.Model.html#modelName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":1024,\"name\":\"modelController\",\"url\":\"classes/model.Model.html#modelController\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"isRunning\",\"url\":\"classes/model.Model.html#isRunning\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"getInformation\",\"url\":\"classes/model.Model.html#getInformation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"calculateCost\",\"url\":\"classes/model.Model.html#calculateCost\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"chargeCredit\",\"url\":\"classes/model.Model.html#chargeCredit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"withdrawCredit\",\"url\":\"classes/model.Model.html#withdrawCredit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"getCreditBalance\",\"url\":\"classes/model.Model.html#getCreditBalance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"getCreditHistory\",\"url\":\"classes/model.Model.html#getCreditHistory\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"use\",\"url\":\"classes/model.Model.html#use\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"run\",\"url\":\"classes/model.Model.html#run\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"stop\",\"url\":\"classes/model.Model.html#stop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"changeModelInfo\",\"url\":\"classes/model.Model.html#changeModelInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"isAdmin\",\"url\":\"classes/model.Model.html#isAdmin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"model.Model\"},{\"kind\":2048,\"name\":\"isLoggedIn\",\"url\":\"classes/model.Model.html#isLoggedIn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"model.Model\"},{\"kind\":2,\"name\":\"types/type\",\"url\":\"modules/types_type.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":4194304,\"name\":\"triggerFunctionConfig\",\"url\":\"types/types_type.triggerFunctionConfig.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.triggerFunctionConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.triggerFunctionConfig\"},{\"kind\":1024,\"name\":\"function_type\",\"url\":\"types/types_type.triggerFunctionConfig.html#__type.function_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.triggerFunctionConfig.__type\"},{\"kind\":1024,\"name\":\"function_url\",\"url\":\"types/types_type.triggerFunctionConfig.html#__type.function_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.triggerFunctionConfig.__type\"},{\"kind\":1024,\"name\":\"function_id\",\"url\":\"types/types_type.triggerFunctionConfig.html#__type.function_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.triggerFunctionConfig.__type\"},{\"kind\":4194304,\"name\":\"setTriggerFunctionParm\",\"url\":\"types/types_type.setTriggerFunctionParm.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":4194304,\"name\":\"writeRuleConfig\",\"url\":\"types/types_type.writeRuleConfig.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.writeRuleConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.writeRuleConfig\"},{\"kind\":1024,\"name\":\"write\",\"url\":\"types/types_type.writeRuleConfig.html#__type.write\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.writeRuleConfig.__type\"},{\"kind\":4194304,\"name\":\"setRuleParam\",\"url\":\"types/types_type.setRuleParam.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":4194304,\"name\":\"appBillingConfig\",\"url\":\"types/types_type.appBillingConfig.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.appBillingConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.appBillingConfig\"},{\"kind\":1024,\"name\":\"depositAddress\",\"url\":\"types/types_type.appBillingConfig.html#__type.depositAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.appBillingConfig.__type\"},{\"kind\":1024,\"name\":\"costPerToken\",\"url\":\"types/types_type.appBillingConfig.html#__type.costPerToken\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.appBillingConfig.__type\"},{\"kind\":1024,\"name\":\"minCost\",\"url\":\"types/types_type.appBillingConfig.html#__type.minCost\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.appBillingConfig.__type\"},{\"kind\":1024,\"name\":\"maxCost\",\"url\":\"types/types_type.appBillingConfig.html#__type.maxCost\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.appBillingConfig.__type\"},{\"kind\":1024,\"name\":\"responseTimeout\",\"url\":\"types/types_type.appBillingConfig.html#__type.responseTimeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.appBillingConfig.__type\"},{\"kind\":8,\"name\":\"HISTORY_TYPE\",\"url\":\"enums/types_type.HISTORY_TYPE.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":16,\"name\":\"DEPOSIT\",\"url\":\"enums/types_type.HISTORY_TYPE.html#DEPOSIT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/type.HISTORY_TYPE\"},{\"kind\":16,\"name\":\"USAGE\",\"url\":\"enums/types_type.HISTORY_TYPE.html#USAGE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/type.HISTORY_TYPE\"},{\"kind\":4194304,\"name\":\"creditHistories\",\"url\":\"types/types_type.creditHistories.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.creditHistories.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.creditHistories\"},{\"kind\":4194304,\"name\":\"creditHistory\",\"url\":\"types/types_type.creditHistory.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.creditHistory.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.creditHistory\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"types/types_type.creditHistory.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.creditHistory.__type\"},{\"kind\":1024,\"name\":\"amount\",\"url\":\"types/types_type.creditHistory.html#__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.creditHistory.__type\"},{\"kind\":1024,\"name\":\"transferKey\",\"url\":\"types/types_type.creditHistory.html#__type.transferKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.creditHistory.__type\"},{\"kind\":1024,\"name\":\"requestTimestamp\",\"url\":\"types/types_type.creditHistory.html#__type.requestTimestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.creditHistory.__type\"},{\"kind\":4194304,\"name\":\"opResult\",\"url\":\"types/types_type.opResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.opResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.opResult\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/types_type.opResult.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.opResult.__type\"},{\"kind\":1024,\"name\":\"bandwidth_gas_amount\",\"url\":\"types/types_type.opResult.html#__type.bandwidth_gas_amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.opResult.__type\"},{\"kind\":1024,\"name\":\"message\",\"url\":\"types/types_type.opResult.html#__type.message\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.opResult.__type\"},{\"kind\":4194304,\"name\":\"txResult\",\"url\":\"types/types_type.txResult.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.txResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.txResult\"},{\"kind\":1024,\"name\":\"gas_amount_total\",\"url\":\"types/types_type.txResult.html#__type.gas_amount_total\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.txResult.__type\"},{\"kind\":1024,\"name\":\"gas_cost_total\",\"url\":\"types/types_type.txResult.html#__type.gas_cost_total\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.txResult.__type\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"types/types_type.txResult.html#__type.code\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.txResult.__type\"},{\"kind\":1024,\"name\":\"result_list\",\"url\":\"types/types_type.txResult.html#__type.result_list\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.txResult.__type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.txResult.html#__type.result_list.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"types/type.txResult.__type.result_list\"},{\"kind\":8,\"name\":\"RESPONSE_STATUS\",\"url\":\"enums/types_type.RESPONSE_STATUS.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":16,\"name\":\"SUCCESS\",\"url\":\"enums/types_type.RESPONSE_STATUS.html#SUCCESS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/type.RESPONSE_STATUS\"},{\"kind\":16,\"name\":\"FAIL\",\"url\":\"enums/types_type.RESPONSE_STATUS.html#FAIL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/type.RESPONSE_STATUS\"},{\"kind\":4194304,\"name\":\"request\",\"url\":\"types/types_type.request.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.request.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.request\"},{\"kind\":1024,\"name\":\"requestData\",\"url\":\"types/types_type.request.html#__type.requestData\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.request.__type\"},{\"kind\":1024,\"name\":\"requesterAddress\",\"url\":\"types/types_type.request.html#__type.requesterAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.request.__type\"},{\"kind\":1024,\"name\":\"requestKey\",\"url\":\"types/types_type.request.html#__type.requestKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.request.__type\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"types/types_type.request.html#__type.appName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.request.__type\"},{\"kind\":4194304,\"name\":\"response\",\"url\":\"types/types_type.response.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":4194304,\"name\":\"deposit\",\"url\":\"types/types_type.deposit.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.deposit.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.deposit\"},{\"kind\":1024,\"name\":\"transferKey\",\"url\":\"types/types_type.deposit.html#__type.transferKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deposit.__type\"},{\"kind\":1024,\"name\":\"transferValue\",\"url\":\"types/types_type.deposit.html#__type.transferValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deposit.__type\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"types/types_type.deposit.html#__type.appName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deposit.__type\"},{\"kind\":1024,\"name\":\"requesterAddress\",\"url\":\"types/types_type.deposit.html#__type.requesterAddress\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deposit.__type\"},{\"kind\":4194304,\"name\":\"deployConfig\",\"url\":\"types/types_type.deployConfig.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.deployConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.deployConfig\"},{\"kind\":1024,\"name\":\"modelName\",\"url\":\"types/types_type.deployConfig.html#__type.modelName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deployConfig.__type\"},{\"kind\":1024,\"name\":\"billingConfig\",\"url\":\"types/types_type.deployConfig.html#__type.billingConfig\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deployConfig.__type\"},{\"kind\":1024,\"name\":\"serviceUrl\",\"url\":\"types/types_type.deployConfig.html#__type.serviceUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.deployConfig.__type\"},{\"kind\":4194304,\"name\":\"createAppConfig\",\"url\":\"types/types_type.createAppConfig.html\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/types_type.createAppConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"types/type.createAppConfig\"},{\"kind\":1024,\"name\":\"appName\",\"url\":\"types/types_type.createAppConfig.html#__type.appName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.createAppConfig.__type\"},{\"kind\":1024,\"name\":\"billingConfig\",\"url\":\"types/types_type.createAppConfig.html#__type.billingConfig\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.createAppConfig.__type\"},{\"kind\":1024,\"name\":\"serviceUrl\",\"url\":\"types/types_type.createAppConfig.html#__type.serviceUrl\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types/type.createAppConfig.__type\"},{\"kind\":8,\"name\":\"ContainerStatus\",\"url\":\"enums/types_type.ContainerStatus.html\",\"classes\":\"tsd-kind-enum tsd-parent-kind-module\",\"parent\":\"types/type\"},{\"kind\":16,\"name\":\"RUNNING\",\"url\":\"enums/types_type.ContainerStatus.html#RUNNING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/type.ContainerStatus\"},{\"kind\":16,\"name\":\"STOP\",\"url\":\"enums/types_type.ContainerStatus.html#STOP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"types/type.ContainerStatus\"},{\"kind\":2,\"name\":\"utils/builder\",\"url\":\"modules/utils_builder.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"buildSetOperation\",\"url\":\"functions/utils_builder.buildSetOperation.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/builder\"},{\"kind\":64,\"name\":\"buildTxBody\",\"url\":\"functions/utils_builder.buildTxBody.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/builder\"},{\"kind\":2,\"name\":\"utils/operator\",\"url\":\"modules/utils_operator.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"getChangeBalanceOp\",\"url\":\"functions/utils_operator.getChangeBalanceOp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/operator\"},{\"kind\":64,\"name\":\"getWriteHistoryOp\",\"url\":\"functions/utils_operator.getWriteHistoryOp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/operator\"},{\"kind\":64,\"name\":\"getTransferOp\",\"url\":\"functions/utils_operator.getTransferOp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/operator\"},{\"kind\":64,\"name\":\"getRequestDepositOp\",\"url\":\"functions/utils_operator.getRequestDepositOp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/operator\"},{\"kind\":64,\"name\":\"getResponseOp\",\"url\":\"functions/utils_operator.getResponseOp.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"utils/operator\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,33.967]],[\"comment/0\",[]],[\"name/1\",[1,50.062]],[\"comment/1\",[]],[\"name/2\",[2,39.076]],[\"comment/2\",[]],[\"name/3\",[3,39.076]],[\"comment/3\",[]],[\"name/4\",[4,32.716]],[\"comment/4\",[]],[\"name/5\",[0,33.967]],[\"comment/5\",[]],[\"name/6\",[5,50.062]],[\"comment/6\",[]],[\"name/7\",[6,50.062]],[\"comment/7\",[]],[\"name/8\",[7,50.062]],[\"comment/8\",[]],[\"name/9\",[8,50.062]],[\"comment/9\",[]],[\"name/10\",[9,50.062]],[\"comment/10\",[]],[\"name/11\",[10,50.062]],[\"comment/11\",[]],[\"name/12\",[11,44.954]],[\"comment/12\",[]],[\"name/13\",[12,50.062]],[\"comment/13\",[]],[\"name/14\",[13,50.062]],[\"comment/14\",[]],[\"name/15\",[14,50.062]],[\"comment/15\",[]],[\"name/16\",[15,50.062]],[\"comment/16\",[]],[\"name/17\",[16,50.062]],[\"comment/17\",[]],[\"name/18\",[17,50.062]],[\"comment/18\",[]],[\"name/19\",[18,50.062]],[\"comment/19\",[]],[\"name/20\",[19,23.436]],[\"comment/20\",[]],[\"name/21\",[20,50.062]],[\"comment/21\",[]],[\"name/22\",[19,23.436]],[\"comment/22\",[]],[\"name/23\",[21,44.954]],[\"comment/23\",[]],[\"name/24\",[21,44.954]],[\"comment/24\",[]],[\"name/25\",[22,50.062]],[\"comment/25\",[]],[\"name/26\",[4,32.716]],[\"comment/26\",[]],[\"name/27\",[23,44.954]],[\"comment/27\",[]],[\"name/28\",[24,41.589]],[\"comment/28\",[]],[\"name/29\",[0,33.967]],[\"comment/29\",[]],[\"name/30\",[25,44.954]],[\"comment/30\",[]],[\"name/31\",[26,41.589]],[\"comment/31\",[]],[\"name/32\",[27,44.954]],[\"comment/32\",[]],[\"name/33\",[28,50.062]],[\"comment/33\",[]],[\"name/34\",[29,50.062]],[\"comment/34\",[]],[\"name/35\",[11,44.954]],[\"comment/35\",[]],[\"name/36\",[30,50.062]],[\"comment/36\",[]],[\"name/37\",[31,50.062]],[\"comment/37\",[]],[\"name/38\",[32,41.589]],[\"comment/38\",[]],[\"name/39\",[33,50.062]],[\"comment/39\",[]],[\"name/40\",[34,50.062]],[\"comment/40\",[]],[\"name/41\",[35,50.062]],[\"comment/41\",[]],[\"name/42\",[36,50.062]],[\"comment/42\",[]],[\"name/43\",[19,23.436]],[\"comment/43\",[]],[\"name/44\",[37,50.062]],[\"comment/44\",[]],[\"name/45\",[19,23.436]],[\"comment/45\",[]],[\"name/46\",[38,50.062]],[\"comment/46\",[]],[\"name/47\",[19,23.436]],[\"comment/47\",[]],[\"name/48\",[39,50.062]],[\"comment/48\",[]],[\"name/49\",[19,23.436]],[\"comment/49\",[]],[\"name/50\",[19,23.436]],[\"comment/50\",[]],[\"name/51\",[40,50.062]],[\"comment/51\",[]],[\"name/52\",[41,50.062]],[\"comment/52\",[]],[\"name/53\",[42,50.062]],[\"comment/53\",[]],[\"name/54\",[43,50.062]],[\"comment/54\",[]],[\"name/55\",[44,50.062]],[\"comment/55\",[]],[\"name/56\",[45,50.062]],[\"comment/56\",[]],[\"name/57\",[27,44.954]],[\"comment/57\",[]],[\"name/58\",[2,39.076]],[\"comment/58\",[]],[\"name/59\",[3,39.076]],[\"comment/59\",[]],[\"name/60\",[4,32.716]],[\"comment/60\",[]],[\"name/61\",[0,33.967]],[\"comment/61\",[]],[\"name/62\",[46,50.062]],[\"comment/62\",[]],[\"name/63\",[47,50.062]],[\"comment/63\",[]],[\"name/64\",[48,50.062]],[\"comment/64\",[]],[\"name/65\",[49,50.062]],[\"comment/65\",[]],[\"name/66\",[50,50.062]],[\"comment/66\",[]],[\"name/67\",[51,50.062]],[\"comment/67\",[]],[\"name/68\",[52,50.062]],[\"comment/68\",[]],[\"name/69\",[53,50.062]],[\"comment/69\",[]],[\"name/70\",[54,50.062]],[\"comment/70\",[]],[\"name/71\",[55,41.589]],[\"comment/71\",[]],[\"name/72\",[56,50.062]],[\"comment/72\",[]],[\"name/73\",[57,50.062]],[\"comment/73\",[]],[\"name/74\",[58,50.062]],[\"comment/74\",[]],[\"name/75\",[59,50.062]],[\"comment/75\",[]],[\"name/76\",[19,23.436]],[\"comment/76\",[]],[\"name/77\",[60,50.062]],[\"comment/77\",[]],[\"name/78\",[19,23.436]],[\"comment/78\",[]],[\"name/79\",[61,50.062]],[\"comment/79\",[]],[\"name/80\",[62,50.062]],[\"comment/80\",[]],[\"name/81\",[63,44.954]],[\"comment/81\",[]],[\"name/82\",[2,39.076]],[\"comment/82\",[]],[\"name/83\",[3,39.076]],[\"comment/83\",[]],[\"name/84\",[4,32.716]],[\"comment/84\",[]],[\"name/85\",[0,33.967]],[\"comment/85\",[]],[\"name/86\",[24,41.589]],[\"comment/86\",[]],[\"name/87\",[64,44.954]],[\"comment/87\",[]],[\"name/88\",[65,44.954]],[\"comment/88\",[]],[\"name/89\",[66,44.954]],[\"comment/89\",[]],[\"name/90\",[67,44.954]],[\"comment/90\",[]],[\"name/91\",[68,44.954]],[\"comment/91\",[]],[\"name/92\",[55,41.589]],[\"comment/92\",[]],[\"name/93\",[69,44.954]],[\"comment/93\",[]],[\"name/94\",[70,44.954]],[\"comment/94\",[]],[\"name/95\",[71,44.954]],[\"comment/95\",[]],[\"name/96\",[72,41.589]],[\"comment/96\",[]],[\"name/97\",[73,44.954]],[\"comment/97\",[]],[\"name/98\",[74,50.062]],[\"comment/98\",[]],[\"name/99\",[75,44.954]],[\"comment/99\",[]],[\"name/100\",[76,44.954]],[\"comment/100\",[]],[\"name/101\",[77,50.062]],[\"comment/101\",[]],[\"name/102\",[24,41.589]],[\"comment/102\",[]],[\"name/103\",[2,39.076]],[\"comment/103\",[]],[\"name/104\",[3,39.076]],[\"comment/104\",[]],[\"name/105\",[4,32.716]],[\"comment/105\",[]],[\"name/106\",[0,33.967]],[\"comment/106\",[]],[\"name/107\",[78,50.062]],[\"comment/107\",[]],[\"name/108\",[79,50.062]],[\"comment/108\",[]],[\"name/109\",[80,50.062]],[\"comment/109\",[]],[\"name/110\",[81,50.062]],[\"comment/110\",[]],[\"name/111\",[82,50.062]],[\"comment/111\",[]],[\"name/112\",[83,50.062]],[\"comment/112\",[]],[\"name/113\",[26,41.589]],[\"comment/113\",[]],[\"name/114\",[26,41.589]],[\"comment/114\",[]],[\"name/115\",[4,32.716]],[\"comment/115\",[]],[\"name/116\",[0,33.967]],[\"comment/116\",[]],[\"name/117\",[84,50.062]],[\"comment/117\",[]],[\"name/118\",[85,50.062]],[\"comment/118\",[]],[\"name/119\",[86,50.062]],[\"comment/119\",[]],[\"name/120\",[87,50.062]],[\"comment/120\",[]],[\"name/121\",[88,50.062]],[\"comment/121\",[]],[\"name/122\",[25,44.954]],[\"comment/122\",[]],[\"name/123\",[4,32.716]],[\"comment/123\",[]],[\"name/124\",[23,44.954]],[\"comment/124\",[]],[\"name/125\",[89,50.062]],[\"comment/125\",[]],[\"name/126\",[32,41.589]],[\"comment/126\",[]],[\"name/127\",[32,41.589]],[\"comment/127\",[]],[\"name/128\",[4,32.716]],[\"comment/128\",[]],[\"name/129\",[90,44.954]],[\"comment/129\",[]],[\"name/130\",[63,44.954]],[\"comment/130\",[]],[\"name/131\",[64,44.954]],[\"comment/131\",[]],[\"name/132\",[65,44.954]],[\"comment/132\",[]],[\"name/133\",[66,44.954]],[\"comment/133\",[]],[\"name/134\",[67,44.954]],[\"comment/134\",[]],[\"name/135\",[68,44.954]],[\"comment/135\",[]],[\"name/136\",[55,41.589]],[\"comment/136\",[]],[\"name/137\",[69,44.954]],[\"comment/137\",[]],[\"name/138\",[70,44.954]],[\"comment/138\",[]],[\"name/139\",[71,44.954]],[\"comment/139\",[]],[\"name/140\",[72,41.589]],[\"comment/140\",[]],[\"name/141\",[73,44.954]],[\"comment/141\",[]],[\"name/142\",[76,44.954]],[\"comment/142\",[]],[\"name/143\",[75,44.954]],[\"comment/143\",[]],[\"name/144\",[91,50.062]],[\"comment/144\",[]],[\"name/145\",[92,50.062]],[\"comment/145\",[]],[\"name/146\",[19,23.436]],[\"comment/146\",[]],[\"name/147\",[93,50.062]],[\"comment/147\",[]],[\"name/148\",[94,50.062]],[\"comment/148\",[]],[\"name/149\",[95,50.062]],[\"comment/149\",[]],[\"name/150\",[96,50.062]],[\"comment/150\",[]],[\"name/151\",[97,50.062]],[\"comment/151\",[]],[\"name/152\",[19,23.436]],[\"comment/152\",[]],[\"name/153\",[98,50.062]],[\"comment/153\",[]],[\"name/154\",[99,50.062]],[\"comment/154\",[]],[\"name/155\",[100,50.062]],[\"comment/155\",[]],[\"name/156\",[19,23.436]],[\"comment/156\",[]],[\"name/157\",[101,50.062]],[\"comment/157\",[]],[\"name/158\",[102,50.062]],[\"comment/158\",[]],[\"name/159\",[103,50.062]],[\"comment/159\",[]],[\"name/160\",[104,50.062]],[\"comment/160\",[]],[\"name/161\",[105,50.062]],[\"comment/161\",[]],[\"name/162\",[106,50.062]],[\"comment/162\",[]],[\"name/163\",[107,44.954]],[\"comment/163\",[]],[\"name/164\",[108,50.062]],[\"comment/164\",[]],[\"name/165\",[109,50.062]],[\"comment/165\",[]],[\"name/166\",[19,23.436]],[\"comment/166\",[]],[\"name/167\",[110,50.062]],[\"comment/167\",[]],[\"name/168\",[19,23.436]],[\"comment/168\",[]],[\"name/169\",[111,50.062]],[\"comment/169\",[]],[\"name/170\",[112,50.062]],[\"comment/170\",[]],[\"name/171\",[113,44.954]],[\"comment/171\",[]],[\"name/172\",[114,50.062]],[\"comment/172\",[]],[\"name/173\",[115,50.062]],[\"comment/173\",[]],[\"name/174\",[19,23.436]],[\"comment/174\",[]],[\"name/175\",[116,44.954]],[\"comment/175\",[]],[\"name/176\",[117,50.062]],[\"comment/176\",[]],[\"name/177\",[118,50.062]],[\"comment/177\",[]],[\"name/178\",[119,50.062]],[\"comment/178\",[]],[\"name/179\",[19,23.436]],[\"comment/179\",[]],[\"name/180\",[120,50.062]],[\"comment/180\",[]],[\"name/181\",[121,50.062]],[\"comment/181\",[]],[\"name/182\",[116,44.954]],[\"comment/182\",[]],[\"name/183\",[122,50.062]],[\"comment/183\",[]],[\"name/184\",[19,23.436]],[\"comment/184\",[]],[\"name/185\",[123,50.062]],[\"comment/185\",[]],[\"name/186\",[124,50.062]],[\"comment/186\",[]],[\"name/187\",[125,50.062]],[\"comment/187\",[]],[\"name/188\",[126,50.062]],[\"comment/188\",[]],[\"name/189\",[19,23.436]],[\"comment/189\",[]],[\"name/190\",[127,50.062]],[\"comment/190\",[]],[\"name/191\",[128,44.954]],[\"comment/191\",[]],[\"name/192\",[129,50.062]],[\"comment/192\",[]],[\"name/193\",[130,41.589]],[\"comment/193\",[]],[\"name/194\",[131,50.062]],[\"comment/194\",[]],[\"name/195\",[107,44.954]],[\"comment/195\",[]],[\"name/196\",[19,23.436]],[\"comment/196\",[]],[\"name/197\",[113,44.954]],[\"comment/197\",[]],[\"name/198\",[132,50.062]],[\"comment/198\",[]],[\"name/199\",[130,41.589]],[\"comment/199\",[]],[\"name/200\",[128,44.954]],[\"comment/200\",[]],[\"name/201\",[133,50.062]],[\"comment/201\",[]],[\"name/202\",[19,23.436]],[\"comment/202\",[]],[\"name/203\",[90,44.954]],[\"comment/203\",[]],[\"name/204\",[134,44.954]],[\"comment/204\",[]],[\"name/205\",[135,44.954]],[\"comment/205\",[]],[\"name/206\",[136,50.062]],[\"comment/206\",[]],[\"name/207\",[19,23.436]],[\"comment/207\",[]],[\"name/208\",[130,41.589]],[\"comment/208\",[]],[\"name/209\",[134,44.954]],[\"comment/209\",[]],[\"name/210\",[135,44.954]],[\"comment/210\",[]],[\"name/211\",[137,50.062]],[\"comment/211\",[]],[\"name/212\",[138,50.062]],[\"comment/212\",[]],[\"name/213\",[72,41.589]],[\"comment/213\",[]],[\"name/214\",[139,50.062]],[\"comment/214\",[]],[\"name/215\",[140,50.062]],[\"comment/215\",[]],[\"name/216\",[141,50.062]],[\"comment/216\",[]],[\"name/217\",[142,50.062]],[\"comment/217\",[]],[\"name/218\",[143,50.062]],[\"comment/218\",[]],[\"name/219\",[144,50.062]],[\"comment/219\",[]],[\"name/220\",[145,50.062]],[\"comment/220\",[]],[\"name/221\",[146,50.062]],[\"comment/221\",[]],[\"name/222\",[147,50.062]],[\"comment/222\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":19,\"name\":{\"20\":{},\"22\":{},\"43\":{},\"45\":{},\"47\":{},\"49\":{},\"50\":{},\"76\":{},\"78\":{},\"146\":{},\"152\":{},\"156\":{},\"166\":{},\"168\":{},\"174\":{},\"179\":{},\"184\":{},\"189\":{},\"196\":{},\"202\":{},\"207\":{}},\"comment\":{}}],[\"_sendtransaction\",{\"_index\":14,\"name\":{\"15\":{}},\"comment\":{}}],[\"addadmin\",{\"_index\":52,\"name\":{\"68\":{}},\"comment\":{}}],[\"ain\",{\"_index\":0,\"name\":{\"0\":{},\"5\":{},\"29\":{},\"61\":{},\"85\":{},\"106\":{},\"116\":{}},\"comment\":{}}],[\"ainize\",{\"_index\":21,\"name\":{\"23\":{},\"24\":{}},\"comment\":{}}],[\"ainmodule\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"amount\",{\"_index\":112,\"name\":{\"170\":{}},\"comment\":{}}],[\"app\",{\"_index\":37,\"name\":{\"44\":{}},\"comment\":{}}],[\"appbillingconfig\",{\"_index\":100,\"name\":{\"155\":{}},\"comment\":{}}],[\"appcontroller\",{\"_index\":27,\"name\":{\"32\":{},\"57\":{}},\"comment\":{}}],[\"appname\",{\"_index\":130,\"name\":{\"193\":{},\"199\":{},\"208\":{}},\"comment\":{}}],[\"bandwidth_gas_amount\",{\"_index\":117,\"name\":{\"176\":{}},\"comment\":{}}],[\"billingconfig\",{\"_index\":134,\"name\":{\"204\":{},\"209\":{}},\"comment\":{}}],[\"buildcreateappop\",{\"_index\":58,\"name\":{\"74\":{}},\"comment\":{}}],[\"buildsetadminop\",{\"_index\":61,\"name\":{\"79\":{}},\"comment\":{}}],[\"buildsetappbillingconfigop\",{\"_index\":57,\"name\":{\"73\":{}},\"comment\":{}}],[\"buildsetcontainerstatusop\",{\"_index\":56,\"name\":{\"72\":{}},\"comment\":{}}],[\"buildsetfunctionvalue\",{\"_index\":59,\"name\":{\"75\":{}},\"comment\":{}}],[\"buildsetoperation\",{\"_index\":140,\"name\":{\"215\":{}},\"comment\":{}}],[\"buildtxbody\",{\"_index\":141,\"name\":{\"216\":{}},\"comment\":{}}],[\"cache\",{\"_index\":23,\"name\":{\"27\":{},\"124\":{}},\"comment\":{}}],[\"calculatecost\",{\"_index\":66,\"name\":{\"89\":{},\"133\":{}},\"comment\":{}}],[\"changemodelinfo\",{\"_index\":73,\"name\":{\"97\":{},\"141\":{}},\"comment\":{}}],[\"chargecredit\",{\"_index\":67,\"name\":{\"90\":{},\"134\":{}},\"comment\":{}}],[\"checkaininitiated\",{\"_index\":15,\"name\":{\"16\":{}},\"comment\":{}}],[\"checkcostandbalance\",{\"_index\":54,\"name\":{\"70\":{}},\"comment\":{}}],[\"checkeventmanager\",{\"_index\":78,\"name\":{\"107\":{}},\"comment\":{}}],[\"code\",{\"_index\":116,\"name\":{\"175\":{},\"182\":{}},\"comment\":{}}],[\"connect\",{\"_index\":79,\"name\":{\"108\":{}},\"comment\":{}}],[\"constants\",{\"_index\":34,\"name\":{\"40\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":4,\"name\":{\"4\":{},\"26\":{},\"60\":{},\"84\":{},\"105\":{},\"115\":{},\"123\":{},\"128\":{}},\"comment\":{}}],[\"containerstatus\",{\"_index\":137,\"name\":{\"211\":{}},\"comment\":{}}],[\"controllers/appcontroller\",{\"_index\":45,\"name\":{\"56\":{}},\"comment\":{}}],[\"controllers/modelcontroller\",{\"_index\":62,\"name\":{\"80\":{}},\"comment\":{}}],[\"costpertoken\",{\"_index\":102,\"name\":{\"158\":{}},\"comment\":{}}],[\"createaccount\",{\"_index\":7,\"name\":{\"8\":{}},\"comment\":{}}],[\"createainaccount\",{\"_index\":22,\"name\":{\"25\":{}},\"comment\":{}}],[\"createapp\",{\"_index\":46,\"name\":{\"62\":{}},\"comment\":{}}],[\"createappconfig\",{\"_index\":136,\"name\":{\"206\":{}},\"comment\":{}}],[\"credithistories\",{\"_index\":109,\"name\":{\"165\":{}},\"comment\":{}}],[\"credithistory\",{\"_index\":110,\"name\":{\"167\":{}},\"comment\":{}}],[\"default_billing_config\",{\"_index\":42,\"name\":{\"53\":{}},\"comment\":{}}],[\"defaultapprules\",{\"_index\":39,\"name\":{\"48\":{}},\"comment\":{}}],[\"deleteadmin\",{\"_index\":53,\"name\":{\"69\":{}},\"comment\":{}}],[\"deploy\",{\"_index\":31,\"name\":{\"37\":{}},\"comment\":{}}],[\"deployconfig\",{\"_index\":133,\"name\":{\"201\":{}},\"comment\":{}}],[\"deposit\",{\"_index\":107,\"name\":{\"163\":{},\"195\":{}},\"comment\":{}}],[\"depositaddress\",{\"_index\":101,\"name\":{\"157\":{}},\"comment\":{}}],[\"disconnect\",{\"_index\":80,\"name\":{\"109\":{}},\"comment\":{}}],[\"disconnectedcb\",{\"_index\":81,\"name\":{\"110\":{}},\"comment\":{}}],[\"fail\",{\"_index\":125,\"name\":{\"187\":{}},\"comment\":{}}],[\"function\",{\"_index\":60,\"name\":{\"77\":{}},\"comment\":{}}],[\"function_id\",{\"_index\":95,\"name\":{\"149\":{}},\"comment\":{}}],[\"function_type\",{\"_index\":93,\"name\":{\"147\":{}},\"comment\":{}}],[\"function_url\",{\"_index\":94,\"name\":{\"148\":{}},\"comment\":{}}],[\"gas_amount_total\",{\"_index\":120,\"name\":{\"180\":{}},\"comment\":{}}],[\"gas_cost_total\",{\"_index\":121,\"name\":{\"181\":{}},\"comment\":{}}],[\"getaddress\",{\"_index\":11,\"name\":{\"12\":{},\"35\":{}},\"comment\":{}}],[\"getainbalance\",{\"_index\":30,\"name\":{\"36\":{}},\"comment\":{}}],[\"getbalance\",{\"_index\":12,\"name\":{\"13\":{}},\"comment\":{}}],[\"getbillingconfig\",{\"_index\":48,\"name\":{\"64\":{}},\"comment\":{}}],[\"getblockchainendpoint\",{\"_index\":35,\"name\":{\"41\":{}},\"comment\":{}}],[\"getchangebalanceop\",{\"_index\":143,\"name\":{\"218\":{}},\"comment\":{}}],[\"getcreditbalance\",{\"_index\":55,\"name\":{\"71\":{},\"92\":{},\"136\":{}},\"comment\":{}}],[\"getcredithistory\",{\"_index\":69,\"name\":{\"93\":{},\"137\":{}},\"comment\":{}}],[\"getdatafromdepositrequest\",{\"_index\":87,\"name\":{\"120\":{}},\"comment\":{}}],[\"getdatafromservicerequest\",{\"_index\":86,\"name\":{\"119\":{}},\"comment\":{}}],[\"getdefaultaccount\",{\"_index\":9,\"name\":{\"10\":{}},\"comment\":{}}],[\"getdepositaddress\",{\"_index\":74,\"name\":{\"98\":{}},\"comment\":{}}],[\"geteventmanager\",{\"_index\":16,\"name\":{\"17\":{}},\"comment\":{}}],[\"getinformation\",{\"_index\":65,\"name\":{\"88\":{},\"132\":{}},\"comment\":{}}],[\"getinstance\",{\"_index\":3,\"name\":{\"3\":{},\"59\":{},\"83\":{},\"104\":{}},\"comment\":{}}],[\"getrequestdepositop\",{\"_index\":146,\"name\":{\"221\":{}},\"comment\":{}}],[\"getresponseop\",{\"_index\":147,\"name\":{\"222\":{}},\"comment\":{}}],[\"gettransferop\",{\"_index\":145,\"name\":{\"220\":{}},\"comment\":{}}],[\"getvalue\",{\"_index\":13,\"name\":{\"14\":{}},\"comment\":{}}],[\"getwritehistoryop\",{\"_index\":144,\"name\":{\"219\":{}},\"comment\":{}}],[\"handledeposit\",{\"_index\":84,\"name\":{\"117\":{}},\"comment\":{}}],[\"handler\",{\"_index\":24,\"name\":{\"28\":{},\"86\":{},\"102\":{}},\"comment\":{}}],[\"handler_hearbeat_interval\",{\"_index\":44,\"name\":{\"55\":{}},\"comment\":{}}],[\"handlerequest\",{\"_index\":85,\"name\":{\"118\":{}},\"comment\":{}}],[\"handlers/handler\",{\"_index\":77,\"name\":{\"101\":{}},\"comment\":{}}],[\"handletxresultwrapper\",{\"_index\":18,\"name\":{\"19\":{}},\"comment\":{}}],[\"hasfailedopresultlist\",{\"_index\":17,\"name\":{\"18\":{}},\"comment\":{}}],[\"history_type\",{\"_index\":106,\"name\":{\"162\":{}},\"comment\":{}}],[\"initain\",{\"_index\":5,\"name\":{\"6\":{}},\"comment\":{}}],[\"instance\",{\"_index\":2,\"name\":{\"2\":{},\"58\":{},\"82\":{},\"103\":{}},\"comment\":{}}],[\"internal\",{\"_index\":26,\"name\":{\"31\":{},\"113\":{},\"114\":{}},\"comment\":{}}],[\"isadmin\",{\"_index\":76,\"name\":{\"100\":{},\"142\":{}},\"comment\":{}}],[\"isdefaultaccountexist\",{\"_index\":6,\"name\":{\"7\":{}},\"comment\":{}}],[\"isloggedin\",{\"_index\":75,\"name\":{\"99\":{},\"143\":{}},\"comment\":{}}],[\"isrunning\",{\"_index\":64,\"name\":{\"87\":{},\"131\":{}},\"comment\":{}}],[\"login\",{\"_index\":28,\"name\":{\"33\":{}},\"comment\":{}}],[\"logout\",{\"_index\":29,\"name\":{\"34\":{}},\"comment\":{}}],[\"maxcost\",{\"_index\":104,\"name\":{\"160\":{}},\"comment\":{}}],[\"message\",{\"_index\":118,\"name\":{\"177\":{}},\"comment\":{}}],[\"middleware\",{\"_index\":25,\"name\":{\"30\":{},\"122\":{}},\"comment\":{}}],[\"middlewares/middleware\",{\"_index\":88,\"name\":{\"121\":{}},\"comment\":{}}],[\"mincost\",{\"_index\":103,\"name\":{\"159\":{}},\"comment\":{}}],[\"model\",{\"_index\":32,\"name\":{\"38\":{},\"126\":{},\"127\":{}},\"comment\":{}}],[\"modelcontroller\",{\"_index\":63,\"name\":{\"81\":{},\"130\":{}},\"comment\":{}}],[\"modelname\",{\"_index\":90,\"name\":{\"129\":{},\"203\":{}},\"comment\":{}}],[\"opresult\",{\"_index\":115,\"name\":{\"173\":{}},\"comment\":{}}],[\"path\",{\"_index\":36,\"name\":{\"42\":{}},\"comment\":{}}],[\"ref\",{\"_index\":40,\"name\":{\"51\":{}},\"comment\":{}}],[\"removedefaultaccount\",{\"_index\":10,\"name\":{\"11\":{}},\"comment\":{}}],[\"request\",{\"_index\":126,\"name\":{\"188\":{}},\"comment\":{}}],[\"requestdata\",{\"_index\":127,\"name\":{\"190\":{}},\"comment\":{}}],[\"requesteraddress\",{\"_index\":128,\"name\":{\"191\":{},\"200\":{}},\"comment\":{}}],[\"requestkey\",{\"_index\":129,\"name\":{\"192\":{}},\"comment\":{}}],[\"requesttimestamp\",{\"_index\":114,\"name\":{\"172\":{}},\"comment\":{}}],[\"response\",{\"_index\":131,\"name\":{\"194\":{}},\"comment\":{}}],[\"response_status\",{\"_index\":123,\"name\":{\"185\":{}},\"comment\":{}}],[\"responsetimeout\",{\"_index\":105,\"name\":{\"161\":{}},\"comment\":{}}],[\"result_list\",{\"_index\":122,\"name\":{\"183\":{}},\"comment\":{}}],[\"run\",{\"_index\":71,\"name\":{\"95\":{},\"139\":{}},\"comment\":{}}],[\"running\",{\"_index\":138,\"name\":{\"212\":{}},\"comment\":{}}],[\"second\",{\"_index\":43,\"name\":{\"54\":{}},\"comment\":{}}],[\"sendtransaction\",{\"_index\":20,\"name\":{\"21\":{}},\"comment\":{}}],[\"serviceurl\",{\"_index\":135,\"name\":{\"205\":{},\"210\":{}},\"comment\":{}}],[\"setappbillingconfig\",{\"_index\":47,\"name\":{\"63\":{}},\"comment\":{}}],[\"setcontainerstatus\",{\"_index\":51,\"name\":{\"67\":{}},\"comment\":{}}],[\"setdefaultaccount\",{\"_index\":8,\"name\":{\"9\":{}},\"comment\":{}}],[\"setruleparam\",{\"_index\":99,\"name\":{\"154\":{}},\"comment\":{}}],[\"setrules\",{\"_index\":50,\"name\":{\"66\":{}},\"comment\":{}}],[\"settriggerfunctionparm\",{\"_index\":96,\"name\":{\"150\":{}},\"comment\":{}}],[\"settriggerfunctions\",{\"_index\":49,\"name\":{\"65\":{}},\"comment\":{}}],[\"stop\",{\"_index\":72,\"name\":{\"96\":{},\"140\":{},\"213\":{}},\"comment\":{}}],[\"subscribe\",{\"_index\":82,\"name\":{\"111\":{}},\"comment\":{}}],[\"success\",{\"_index\":124,\"name\":{\"186\":{}},\"comment\":{}}],[\"test\",{\"_index\":33,\"name\":{\"39\":{}},\"comment\":{}}],[\"transfer\",{\"_index\":38,\"name\":{\"46\":{}},\"comment\":{}}],[\"transferkey\",{\"_index\":113,\"name\":{\"171\":{},\"197\":{}},\"comment\":{}}],[\"transfervalue\",{\"_index\":132,\"name\":{\"198\":{}},\"comment\":{}}],[\"triggerduplicatefilter\",{\"_index\":89,\"name\":{\"125\":{}},\"comment\":{}}],[\"triggerfunctionconfig\",{\"_index\":92,\"name\":{\"145\":{}},\"comment\":{}}],[\"txresult\",{\"_index\":119,\"name\":{\"178\":{}},\"comment\":{}}],[\"type\",{\"_index\":111,\"name\":{\"169\":{}},\"comment\":{}}],[\"types/type\",{\"_index\":91,\"name\":{\"144\":{}},\"comment\":{}}],[\"unsubscribe\",{\"_index\":83,\"name\":{\"112\":{}},\"comment\":{}}],[\"usage\",{\"_index\":108,\"name\":{\"164\":{}},\"comment\":{}}],[\"use\",{\"_index\":70,\"name\":{\"94\":{},\"138\":{}},\"comment\":{}}],[\"utils/builder\",{\"_index\":139,\"name\":{\"214\":{}},\"comment\":{}}],[\"utils/operator\",{\"_index\":142,\"name\":{\"217\":{}},\"comment\":{}}],[\"value\",{\"_index\":41,\"name\":{\"52\":{}},\"comment\":{}}],[\"withdrawcredit\",{\"_index\":68,\"name\":{\"91\":{},\"135\":{}},\"comment\":{}}],[\"write\",{\"_index\":98,\"name\":{\"153\":{}},\"comment\":{}}],[\"writeruleconfig\",{\"_index\":97,\"name\":{\"151\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..496e66f --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1279 @@ +: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-text: #222; + --light-color-text-aside: #707070; + --light-color-link: #4da6ff; + --light-color-ts: #db1373; + --light-color-ts-interface: #139d2c; + --light-color-ts-enum: #9c891a; + --light-color-ts-class: #2484e5; + --light-color-ts-function: #572be7; + --light-color-ts-namespace: #b111c9; + --light-color-ts-private: #707070; + --light-color-ts-variable: #4d68ff; + --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-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + --dark-color-ts: #ff6492; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-class: #61b0ff; + --dark-color-ts-function: #9772ff; + --dark-color-ts-namespace: #e14dff; + --dark-color-ts-private: #e2e2e2; + --dark-color-ts-variable: #4d68ff; + --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-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-function: var(--light-color-ts-function); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-private: var(--light-color-ts-private); + --color-ts-variable: var(--light-color-ts-variable); + --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-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-private: var(--dark-color-ts-private); + --color-ts-variable: var(--dark-color-ts-variable); + --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-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-function: var(--light-color-ts-function); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-private: var(--light-color-ts-private); + --color-ts-variable: var(--light-color-ts-variable); + --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-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-private: var(--dark-color-ts-private); + --color-ts-variable: var(--dark-color-ts-variable); + --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 { + 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; +} + +pre { + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1600px; + padding: 0 2rem; +} + +@media (min-width: 640px) { + .container { + padding: 0 4rem; + } +} +@media (min-width: 1200px) { + .container { + padding: 0 8rem; + } +} +@media (min-width: 1600px) { + .container { + padding: 0 12rem; + } +} + +/* 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 { + display: flex; + justify-content: space-between; + position: relative; + margin: 0 auto; +} + +.col-4, +.col-8 { + box-sizing: border-box; + float: left; + padding: 2rem 1rem; +} + +.col-4 { + flex: 0 0 25%; +} +.col-8 { + flex: 1 0; + flex-wrap: wrap; + padding-left: 0; +} + +@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 shift-to-left { + from { + transform: translate(0, 0); + } + to { + transform: translate(-25%, 0); + } +} +@keyframes unshift-to-left { + from { + transform: translate(-25%, 0); + } + to { + transform: translate(0, 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 { + padding: 10px; + border: 0.1em solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} + +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; +} + +@media (max-width: 1024px) { + html .col-content { + float: none; + max-width: 100%; + width: 100%; + padding-top: 3rem; + } + html .col-menu { + 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; + max-width: 25rem; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-menu > *: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 :is(header, footer, .col-content) { + animation: shift-to-left 0.4s; + } + + .to-has-menu .col-menu { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu :is(header, footer, .col-content) { + animation: unshift-to-left 0.4s; + } + + .from-has-menu .col-menu { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu :is(header, footer, .col-content) { + transform: translate(-25%, 0); + } + .has-menu .col-menu { + 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%; + } +} + +.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-index-panel a, +.tsd-index-panel a.tsd-parent-kind-module { + color: var(--color-ts); +} +.tsd-index-panel a.tsd-parent-kind-interface { + color: var(--color-ts-interface); +} +.tsd-index-panel a.tsd-parent-kind-enum { + color: var(--color-ts-enum); +} +.tsd-index-panel a.tsd-parent-kind-class { + color: var(--color-ts-class); +} +.tsd-index-panel a.tsd-kind-module { + color: var(--color-ts-namespace); +} +.tsd-index-panel a.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-index-panel a.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-index-panel a.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-index-panel a.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-index-panel a.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-index-panel a.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-index-panel a.tsd-is-private { + color: var(--color-ts-private); +} + +.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: absolute; + 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-member [data-tsd-kind] { + color: var(--color-ts); +} +.tsd-member [data-tsd-kind="Interface"] { + color: var(--color-ts-interface); +} +.tsd-member [data-tsd-kind="Enum"] { + color: var(--color-ts-enum); +} +.tsd-member [data-tsd-kind="Class"] { + color: var(--color-ts-class); +} +.tsd-member [data-tsd-kind="Private"] { + color: var(--color-ts-private); +} + +.tsd-navigation a { + display: block; + margin: 0.4rem 0; + border-left: 2px solid transparent; + color: var(--color-text); + text-decoration: none; + transition: border-left-color 0.1s; +} +.tsd-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul { + margin: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li { + padding: 0; +} + +.tsd-navigation.primary .tsd-accordion-details > ul { + margin-top: 0.75rem; +} +.tsd-navigation.primary a { + padding: 0.75rem 0.5rem; + margin: 0; +} +.tsd-navigation.primary ul li a { + margin-left: 0.5rem; +} +.tsd-navigation.primary ul li li a { + margin-left: 1.5rem; +} +.tsd-navigation.primary ul li li li a { + margin-left: 2.5rem; +} +.tsd-navigation.primary ul li li li li a { + margin-left: 3.5rem; +} +.tsd-navigation.primary ul li li li li li a { + margin-left: 4.5rem; +} +.tsd-navigation.primary ul li li li li li li a { + margin-left: 5.5rem; +} +.tsd-navigation.primary li.current > a { + border-left: 0.15rem var(--color-text) solid; +} +.tsd-navigation.primary li.selected > a { + font-weight: bold; + border-left: 0.2rem var(--color-text) solid; +} +.tsd-navigation.primary ul li a:hover { + border-left: 0.2rem var(--color-text-aside) solid; +} +.tsd-navigation.primary li.globals + li > span, +.tsd-navigation.primary li.globals + li > a { + padding-top: 20px; +} + +.tsd-navigation.secondary.tsd-navigation--toolbar-hide { + max-height: calc(100vh - 1rem); + top: 0.5rem; +} +.tsd-navigation.secondary > ul { + display: inline; + padding-right: 0.5rem; + transition: opacity 0.2s; +} +.tsd-navigation.secondary ul li a { + padding-left: 0; +} +.tsd-navigation.secondary ul li li a { + padding-left: 1.1rem; +} +.tsd-navigation.secondary ul li li li a { + padding-left: 2.2rem; +} +.tsd-navigation.secondary ul li li li li a { + padding-left: 3.3rem; +} +.tsd-navigation.secondary ul li li li li li a { + padding-left: 4.4rem; +} +.tsd-navigation.secondary ul li li li li li li a { + padding-left: 5.5rem; +} + +#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 { + margin: 0.25rem 0; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; +} +.tsd-accordion-summary > h1, +.tsd-accordion-summary > h2, +.tsd-accordion-summary > h3, +.tsd-accordion-summary > h4, +.tsd-accordion-summary > h5 { + display: inline-flex; + align-items: center; + vertical-align: middle; + margin-bottom: 0; + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} +.tsd-accordion-summary { + display: block; + cursor: pointer; +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; +} +.tsd-index-accordion .tsd-accordion-summary svg { + margin-right: 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; +} + +@media (min-width: 1025px) { + .col-content { + margin: 2rem auto; + } + + .menu-sticky-wrap { + position: sticky; + height: calc(100vh - 2rem); + top: 4rem; + right: 0; + padding: 0 1.5rem; + padding-top: 1rem; + margin-top: 3rem; + transition: 0.3s ease-in-out; + transition-property: top, padding-top, padding, height; + overflow-y: auto; + } + .col-menu { + border-left: 1px solid var(--color-accent); + } + .col-menu--hide { + top: 1rem; + } + .col-menu .tsd-navigation:not(:last-child) { + padding-bottom: 1.75rem; + } +} + +.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: fixed; + 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-page-toolbar--hide { + transform: translateY(-100%); +} + +.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; +} +@media (max-width: 1024px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } +} +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); +} + +* { + 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); +} diff --git a/classes/ain.AinModule.html b/classes/ain.AinModule.html new file mode 100644 index 0000000..f0254cc --- /dev/null +++ b/classes/ain.AinModule.html @@ -0,0 +1,360 @@ +AinModule | Ainize-SDK
+
+ +
+
+
+
+ +

Class AinModule

+
+

Hierarchy

+
    +
  • AinModule
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
ain?: default
+
+ +
sendTransaction: ((args: any) => Promise<any>) = ...
+
+

Type declaration

+
    +
  • +
      +
    • (args: any): Promise<any>
    • +
    • +
      +

      Parameters

      +
        +
      • +
        args: any
      +

      Returns Promise<any>

+
+ +
instance: AinModule
+
+

Methods

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      data: TransactionBody
    +

    Returns Promise<any>

+
+ +
    + +
  • +

    Returns boolean

+
+ +
    + +
  • +

    Returns Account

+
+ +
    + +
  • +

    Returns string

+
+ +
    + +
  • +

    Returns Promise<number>

+
+ +
    + +
  • +

    Returns null | Account

+
+ +
    + +
  • +

    Returns default

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      path: string
    +

    Returns Promise<any>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      operation: Function
    +

    Returns ((args: any) => Promise<any>)

    +
      +
    • +
        +
      • (args: any): Promise<any>
      • +
      • +
        +

        Parameters

        +
          +
        • +
          args: any
        +

        Returns Promise<any>

+
+ +
    + +
  • +
    +

    Parameters

    +
    +

    Returns boolean

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      chainId: 0 | 1
    +

    Returns void

+
+ +
    + +
  • +

    Returns boolean

+
+ +
    + +
  • +

    Returns void

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      privateKey: string
    +

    Returns void

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/ainize.Ainize.html b/classes/ainize.Ainize.html new file mode 100644 index 0000000..00a0fe8 --- /dev/null +++ b/classes/ainize.Ainize.html @@ -0,0 +1,301 @@ +Ainize | Ainize-SDK
+
+ +
+
+
+
+ +

Class Ainize

+
+

Hierarchy

+
    +
  • Ainize
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
ain: AinModule = ...
+
+ +
appController: AppController = ...
+
+ +
cache: NodeCache
+
+ +
handler: Handler = ...
+
+ +
internal: Internal
+
+ +
middleware: Middleware
+
+

Methods

+
+ +
    + +
  • +

    Deploy AI model container.

    + +

    Returns

    Deployed model object.

    +
    +
    +

    Parameters

    +
      +
    • +
      deployConfig: deployConfig
      +

      Set configuration for setting container. modelName, billingConfig, etc.

      +
    +

    Returns Promise<Model>

+
+ +
    + +
  • +

    Returns Promise<string>

+
+ +
    + +
  • +

    Returns Promise<number>

+
+ +
    + +
  • +

    Login to ainize using AI Network account private key.

    +
    +
    +

    Parameters

    +
      +
    • +
      privateKey: string
    +

    Returns Promise<void>

+
+ +
    + +
  • +

    Logout from ainize.

    +
    +

    Returns Promise<void>

+
+ +
    + +
  • +

    Get deployed model.

    + +

    Returns

    Deployed model object.

    +
    +
    +

    Parameters

    +
      +
    • +
      modelName: string
    +

    Returns Promise<Model>

+
+ +
+
+ +
    + +
  • +

    Create a new AI Network account.

    + +

    Returns

    created account.

    +
    +

    Returns Account

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/controllers_appController.AppController.html b/classes/controllers_appController.AppController.html new file mode 100644 index 0000000..94ff7ac --- /dev/null +++ b/classes/controllers_appController.AppController.html @@ -0,0 +1,416 @@ +AppController | Ainize-SDK
+
+ +
+
+
+ +
+

Hierarchy

+
    +
  • AppController
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
ain: AinModule = ...
+
+ +
instance: AppController
+
+

Methods

+
+ +
    + +
  • +

    Add admin on app.

    + +

    Returns

    Result of transaction.

    +
    +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      userAddress: string
    +

    Returns Promise<any>

+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      userAddress: string
    • +
    • +
      Optional isRemoveOp: boolean
    +

    Returns SetOperation

+
+ +
+
+ +
+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      value: string
    +

    Returns Promise<number>

+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      userAddress: string
    +

    Returns Promise<any>

+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      userAddress: string
    +

    Returns Promise<any>

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

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/controllers_modelController.ModelController.html b/classes/controllers_modelController.ModelController.html new file mode 100644 index 0000000..141b005 --- /dev/null +++ b/classes/controllers_modelController.ModelController.html @@ -0,0 +1,381 @@ +ModelController | Ainize-SDK
+
+ +
+
+
+ +
+

Hierarchy

+
    +
  • ModelController
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
ain: AinModule = ...
+
+ +
handler: Handler = ...
+
+ +
instance: undefined | ModelController
+
+

Methods

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    • +
    • +
      requestData: string
    +

    Returns Promise<number>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    • +
    • +
      config: any
    +

    Returns Promise<void>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    • +
    • +
      amount: number
    +

    Returns Promise<string>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    +

    Returns Promise<number>

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    • +
    • +
      requestData: string
    +

    Returns Promise<string>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    • +
    • +
      amount: number
    +

    Returns Promise<boolean>

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/handlers_handler.Handler.html b/classes/handlers_handler.Handler.html new file mode 100644 index 0000000..d2bbb3f --- /dev/null +++ b/classes/handlers_handler.Handler.html @@ -0,0 +1,240 @@ +Handler | Ainize-SDK
+
+ +
+
+
+
+ +

Class Handler

+
+

Hierarchy

+
    +
  • Handler
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
ain: AinModule = ...
+
+ +
instance: undefined | Handler
+
+

Methods

+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      subscribePath: string
    • +
    • +
      resolve: any
    +

    Returns Promise<void>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      filterId: string
    +

    Returns Promise<void>

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/internal.Internal.html b/classes/internal.Internal.html new file mode 100644 index 0000000..20a6d2f --- /dev/null +++ b/classes/internal.Internal.html @@ -0,0 +1,221 @@ +Internal | Ainize-SDK
+
+ +
+
+
+
+ +

Class Internal

+
+

Hierarchy

+
    +
  • Internal
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
ain: AinModule = ...
+
+

Methods

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
    +

    Returns deposit

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
    +

    Returns request

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
    +

    Returns Promise<any>

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
    • +
    • +
      cost: number
    • +
    • +
      status: RESPONSE_STATUS
    • +
    • +
      responseData: string
    +

    Returns Promise<any>

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/middlewares_middleware.Middleware.html b/classes/middlewares_middleware.Middleware.html new file mode 100644 index 0000000..7d03f49 --- /dev/null +++ b/classes/middlewares_middleware.Middleware.html @@ -0,0 +1,191 @@ +Middleware | Ainize-SDK
+
+ +
+
+
+ +
+

Hierarchy

+
    +
  • Middleware
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
cache: NodeCache
+
+

Methods

+
+ +
    + +
  • +

    Middleware for AI Network trigger call. It will filter duplicated request triggered by same transaction. +It will pass request which is not from AI Network trigger.

    + +

    Returns

    Null if if request is duplicated.

    +
    +
    +

    Parameters

    +
      +
    • +
      req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
    • +
    • +
      res: Response<any, Record<string, any>>
    • +
    • +
      next: NextFunction
      +

      Next function

      +
    +

    Returns void

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/classes/model.Model.html b/classes/model.Model.html new file mode 100644 index 0000000..b1692af --- /dev/null +++ b/classes/model.Model.html @@ -0,0 +1,358 @@ +Model | Ainize-SDK
+
+ +
+
+
+
+ +

Class Model

+
+

Hierarchy

+
    +
  • Model
+
+
+
+ +
+
+

Constructors

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      modelName: string
    +

    Returns Model

+
+

Properties

+
+ +
modelController: ModelController
+
+ +
modelName: string
+
+

Methods

+
+ +
    + +
  • +

    Calculate estimated cost for given request data.

    + +

    Returns

    Estimated cost.

    +
    +
    +

    Parameters

    +
      +
    • +
      requestData: string
    +

    Returns Promise<number>

+
+ +
    + +
  • +

    Change model configuration. Need to be admin. Not implemented yet.

    +
    +
    +

    Parameters

    +
      +
    • +
      config: any
      +

      Configuration to change. Not implemented yet.

      +
    +

    Returns Promise<void>

+
+ +
    + +
  • +

    Charge credit to model.

    + +

    Returns

    Transaction hash.

    +
    +
    +

    Parameters

    +
      +
    • +
      amount: number
      +

      Amount of credit to charge.

      +
    +

    Returns Promise<string>

+
+ +
    + +
  • +

    Get credit balance of model.

    + +

    Returns

    Amount of credit balance.

    +
    +

    Returns Promise<number>

+
+ +
+
+ +
    + +
  • +

    Get model information. not implemented yet.

    + +

    Returns

    Model information.

    +
    +

    Returns Promise<any>

+
+ +
    + +
  • +

    Returns Promise<void>

+
+ +
    + +
  • +

    Returns void

+
+ +
    + +
  • +

    Check if model is running. It throws error when model is not running.

    +
    +

    Returns Promise<void>

+
+ +
    + +
  • +

    Change status of AI model container to Running. Need to be admin. Not implemented yet.

    +
    +

    Returns Promise<void>

+
+ +
    + +
  • +

    Change status of AI model container to Stopped. Need to be admin. Not implemented yet.

    +
    +

    Returns Promise<void>

+
+ +
    + +
  • +

    Use model with given request data.

    + +

    Returns

    Response data from model.

    +
    +
    +

    Parameters

    +
      +
    • +
      requestData: string
      +

      String data for request to model.

      +
    +

    Returns Promise<string>

+
+ +
    + +
  • +

    Withdraw credit from model.

    + +

    Returns

    Transaction hash.

    +
    +
    +

    Parameters

    +
      +
    • +
      amount: number
      +

      Amount of credit to withdraw.

      +
    +

    Returns Promise<boolean>

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/enums/types_type.ContainerStatus.html b/enums/types_type.ContainerStatus.html new file mode 100644 index 0000000..077f0e4 --- /dev/null +++ b/enums/types_type.ContainerStatus.html @@ -0,0 +1,144 @@ +ContainerStatus | Ainize-SDK
+
+ +
+
+
+
+ +

Enumeration ContainerStatus

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
RUNNING: "RUNNING"
+
+ +
STOP: "STOP"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/enums/types_type.HISTORY_TYPE.html b/enums/types_type.HISTORY_TYPE.html new file mode 100644 index 0000000..d398aba --- /dev/null +++ b/enums/types_type.HISTORY_TYPE.html @@ -0,0 +1,144 @@ +HISTORY_TYPE | Ainize-SDK
+
+ +
+
+
+
+ +

Enumeration HISTORY_TYPE

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
DEPOSIT: "DEPOSIT"
+
+ +
USAGE: "USAGE"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/enums/types_type.RESPONSE_STATUS.html b/enums/types_type.RESPONSE_STATUS.html new file mode 100644 index 0000000..f4bcfa3 --- /dev/null +++ b/enums/types_type.RESPONSE_STATUS.html @@ -0,0 +1,144 @@ +RESPONSE_STATUS | Ainize-SDK
+
+ +
+
+
+
+ +

Enumeration RESPONSE_STATUS

+
+
+
+ +
+
+

Enumeration Members

+
+
+

Enumeration Members

+
+ +
FAIL: "FAIL"
+
+ +
SUCCESS: "SUCCESS"
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/constants.defaultAppRules.html b/functions/constants.defaultAppRules.html new file mode 100644 index 0000000..6d0631e --- /dev/null +++ b/functions/constants.defaultAppRules.html @@ -0,0 +1,140 @@ +defaultAppRules | Ainize-SDK
+
+ +
+
+
+
+ +

Function defaultAppRules

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    +

    Returns {
        [type: string]: {
            ref: string;
            value: object;
        };
    }

    +
      +
    • +
      [type: string]: {
          ref: string;
          value: object;
      }
      +
        +
      • +
        ref: string
      • +
      • +
        value: object
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/constants.getBlockChainEndpoint.html b/functions/constants.getBlockChainEndpoint.html new file mode 100644 index 0000000..739da47 --- /dev/null +++ b/functions/constants.getBlockChainEndpoint.html @@ -0,0 +1,132 @@ +getBlockChainEndpoint | Ainize-SDK
+
+ +
+
+
+
+ +

Function getBlockChainEndpoint

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      chainId: number
    +

    Returns "https://mainnet-event.ainetwork.ai" | "https://testnet-event.ainetwork.ai"

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_builder.buildSetOperation.html b/functions/utils_builder.buildSetOperation.html new file mode 100644 index 0000000..ab07eaa --- /dev/null +++ b/functions/utils_builder.buildSetOperation.html @@ -0,0 +1,136 @@ +buildSetOperation | Ainize-SDK
+
+ +
+
+
+
+ +

Function buildSetOperation

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      type: SetOperationType
    • +
    • +
      ref: string
    • +
    • +
      value: any
    +

    Returns SetOperation

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_builder.buildTxBody.html b/functions/utils_builder.buildTxBody.html new file mode 100644 index 0000000..81c818e --- /dev/null +++ b/functions/utils_builder.buildTxBody.html @@ -0,0 +1,134 @@ +buildTxBody | Ainize-SDK
+
+ +
+
+
+
+ +

Function buildTxBody

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      operation: SetOperation | SetOperation[]
    • +
    • +
      Optional timestamp: number
    +

    Returns TransactionBody

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_operator.getChangeBalanceOp.html b/functions/utils_operator.getChangeBalanceOp.html new file mode 100644 index 0000000..f6f61be --- /dev/null +++ b/functions/utils_operator.getChangeBalanceOp.html @@ -0,0 +1,138 @@ +getChangeBalanceOp | Ainize-SDK
+
+ +
+
+
+
+ +

Function getChangeBalanceOp

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      requesterAddress: string
    • +
    • +
      type: "INC_VALUE" | "DEC_VALUE"
    • +
    • +
      value: number
    +

    Returns SetOperation

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_operator.getRequestDepositOp.html b/functions/utils_operator.getRequestDepositOp.html new file mode 100644 index 0000000..5a8a10a --- /dev/null +++ b/functions/utils_operator.getRequestDepositOp.html @@ -0,0 +1,138 @@ +getRequestDepositOp | Ainize-SDK
+
+ +
+
+
+
+ +

Function getRequestDepositOp

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      userAddress: string
    • +
    • +
      transferKey: string
    • +
    • +
      amount: number
    +

    Returns SetOperation

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_operator.getResponseOp.html b/functions/utils_operator.getResponseOp.html new file mode 100644 index 0000000..3644de9 --- /dev/null +++ b/functions/utils_operator.getResponseOp.html @@ -0,0 +1,142 @@ +getResponseOp | Ainize-SDK
+
+ +
+
+
+
+ +

Function getResponseOp

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      requesterAddress: string
    • +
    • +
      requestKey: string
    • +
    • +
      status: RESPONSE_STATUS
    • +
    • +
      responseData: string
    • +
    • +
      cost: number
    +

    Returns SetOperation

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_operator.getTransferOp.html b/functions/utils_operator.getTransferOp.html new file mode 100644 index 0000000..03b11cc --- /dev/null +++ b/functions/utils_operator.getTransferOp.html @@ -0,0 +1,138 @@ +getTransferOp | Ainize-SDK
+
+ +
+
+
+
+ +

Function getTransferOp

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      userAddress: string
    • +
    • +
      depositAddress: string
    • +
    • +
      transferKey: string
    • +
    • +
      amount: number
    +

    Returns SetOperation

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/functions/utils_operator.getWriteHistoryOp.html b/functions/utils_operator.getWriteHistoryOp.html new file mode 100644 index 0000000..e60ff76 --- /dev/null +++ b/functions/utils_operator.getWriteHistoryOp.html @@ -0,0 +1,140 @@ +getWriteHistoryOp | Ainize-SDK
+
+ +
+
+
+
+ +

Function getWriteHistoryOp

+
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      appName: string
    • +
    • +
      requesterAddress: string
    • +
    • +
      type: HISTORY_TYPE
    • +
    • +
      amount: number
    • +
    • +
      key: string
    +

    Returns SetOperation

+
+
+

Generated using TypeDoc

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

Ainize-SDK

+
+ +

ainize-sdk

+
+

A Typescript SDK for the Ainize, a system for running AI services on the AI Network.

+ + +

Requirements

+
+

node >= 16

+ + +

usage

+
+ + +

Install

+
+
npm install @ainize-team/ainize-sdk

yarn install @ainize-team/ainize-sdk +
+ + +

Import

+
+
import Ainize from '@ainize-team/ainize-sdk'
const ainize = new Ainize(<CHAIN_ID>, <YOUR_PRIVATE_KEY>); +
+

CHAIN_ID

+
    +
  • 0: AI Network test net
  • +
  • 1: AI Network main net
  • +
+ + +

App

+
+

You can manage the AI Network app required for operating AI Services.

+
ainize.app.create(<APP_NAME>, <SERVICE_URL>);
ainize.app.setTriggerFunction(<APP_NAME>, <TRIGGER_URLS>);
ainize.app.setBillingConfig(<APP_NAME>, <BILLING_CONFIG>);
ainize.app.setRules(<APP_NAME>, <RULES>);
ainize.app.addAdmin(<APP_NAME>, <ADDRESS>);
ainize.app.deleteAdmin(<APP_NAME>, <ADDRESS>); +
+
    +
  • APP_NAME: The app name to be registered on AI Network.
  • +
  • SERVICE_URL: The URL for sending API requests to your AI Service.
  • +
+ + +

Service

+
+

You can use AI Service.

+
ainize.service.deposit(<APP_NAME>, <AMOUNT>);
ainize.service.writeRequest(<APP_NAME>, <SERVICE_NAME>, <PROMPT>); +
+ + +

Admin

+
+

You can get user requests.

+
ainize.admin.deposit(<REQUEST>);
ainize.admin.writeResponse(<REQUEST>, <COST_AMOUNT>, <RESPONSE_DATA>, <RESPONSE_STATUS>); +
+ + +

Test

+
+
yarn test
+
+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..98251c0 --- /dev/null +++ b/modules.html @@ -0,0 +1,134 @@ +Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/ain.html b/modules/ain.html new file mode 100644 index 0000000..a61b42a --- /dev/null +++ b/modules/ain.html @@ -0,0 +1,130 @@ +ain | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/ainize.html b/modules/ainize.html new file mode 100644 index 0000000..4f6ad7a --- /dev/null +++ b/modules/ainize.html @@ -0,0 +1,130 @@ +ainize | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/constants.html b/modules/constants.html new file mode 100644 index 0000000..d15f5e4 --- /dev/null +++ b/modules/constants.html @@ -0,0 +1,138 @@ +constants | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/controllers_appController.html b/modules/controllers_appController.html new file mode 100644 index 0000000..447ba6e --- /dev/null +++ b/modules/controllers_appController.html @@ -0,0 +1,130 @@ +controllers/appController | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/controllers_modelController.html b/modules/controllers_modelController.html new file mode 100644 index 0000000..b846227 --- /dev/null +++ b/modules/controllers_modelController.html @@ -0,0 +1,130 @@ +controllers/modelController | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/handlers_handler.html b/modules/handlers_handler.html new file mode 100644 index 0000000..84e72e4 --- /dev/null +++ b/modules/handlers_handler.html @@ -0,0 +1,130 @@ +handlers/handler | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/internal.html b/modules/internal.html new file mode 100644 index 0000000..a2f6052 --- /dev/null +++ b/modules/internal.html @@ -0,0 +1,130 @@ +internal | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/middlewares_middleware.html b/modules/middlewares_middleware.html new file mode 100644 index 0000000..a0dc222 --- /dev/null +++ b/modules/middlewares_middleware.html @@ -0,0 +1,130 @@ +middlewares/middleware | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/model.html b/modules/model.html new file mode 100644 index 0000000..03f8990 --- /dev/null +++ b/modules/model.html @@ -0,0 +1,130 @@ +model | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/types_type.html b/modules/types_type.html new file mode 100644 index 0000000..2c8a2da --- /dev/null +++ b/modules/types_type.html @@ -0,0 +1,149 @@ +types/type | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/utils_builder.html b/modules/utils_builder.html new file mode 100644 index 0000000..1dddcf4 --- /dev/null +++ b/modules/utils_builder.html @@ -0,0 +1,131 @@ +utils/builder | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/utils_operator.html b/modules/utils_operator.html new file mode 100644 index 0000000..5bd7363 --- /dev/null +++ b/modules/utils_operator.html @@ -0,0 +1,134 @@ +utils/operator | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.appBillingConfig.html b/types/types_type.appBillingConfig.html new file mode 100644 index 0000000..d5ea04d --- /dev/null +++ b/types/types_type.appBillingConfig.html @@ -0,0 +1,136 @@ +appBillingConfig | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias appBillingConfig

+
appBillingConfig: {
    costPerToken: number;
    depositAddress: string;
    maxCost?: number;
    minCost: number;
    responseTimeout?: number;
}
+
+

Type declaration

+
    +
  • +
    costPerToken: number
  • +
  • +
    depositAddress: string
  • +
  • +
    Optional maxCost?: number
  • +
  • +
    minCost: number
  • +
  • +
    Optional responseTimeout?: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.createAppConfig.html b/types/types_type.createAppConfig.html new file mode 100644 index 0000000..621494a --- /dev/null +++ b/types/types_type.createAppConfig.html @@ -0,0 +1,132 @@ +createAppConfig | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias createAppConfig

+
createAppConfig: {
    appName: string;
    billingConfig: appBillingConfig;
    serviceUrl: string;
}
+
+

Type declaration

+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.creditHistories.html b/types/types_type.creditHistories.html new file mode 100644 index 0000000..4ff90bf --- /dev/null +++ b/types/types_type.creditHistories.html @@ -0,0 +1,128 @@ +creditHistories | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias creditHistories

+
creditHistories: {
    [timestamp: string]: creditHistory;
}
+
+

Type declaration

+
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.creditHistory.html b/types/types_type.creditHistory.html new file mode 100644 index 0000000..e7d5777 --- /dev/null +++ b/types/types_type.creditHistory.html @@ -0,0 +1,134 @@ +creditHistory | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias creditHistory

+
creditHistory: {
    amount: number;
    requestTimestamp?: string;
    transferKey?: string;
    type: HISTORY_TYPE;
}
+
+

Type declaration

+
    +
  • +
    amount: number
  • +
  • +
    Optional requestTimestamp?: string
  • +
  • +
    Optional transferKey?: string
  • +
  • +
    type: HISTORY_TYPE
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.deployConfig.html b/types/types_type.deployConfig.html new file mode 100644 index 0000000..db2bf79 --- /dev/null +++ b/types/types_type.deployConfig.html @@ -0,0 +1,132 @@ +deployConfig | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias deployConfig

+
deployConfig: {
    billingConfig?: appBillingConfig;
    modelName: string;
    serviceUrl?: string;
}
+
+

Type declaration

+
    +
  • +
    Optional billingConfig?: appBillingConfig
  • +
  • +
    modelName: string
  • +
  • +
    Optional serviceUrl?: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.deposit.html b/types/types_type.deposit.html new file mode 100644 index 0000000..09cf85a --- /dev/null +++ b/types/types_type.deposit.html @@ -0,0 +1,134 @@ +deposit | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias deposit

+
deposit: {
    appName: string;
    requesterAddress: string;
    transferKey: string;
    transferValue: number;
}
+
+

Type declaration

+
    +
  • +
    appName: string
  • +
  • +
    requesterAddress: string
  • +
  • +
    transferKey: string
  • +
  • +
    transferValue: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.opResult.html b/types/types_type.opResult.html new file mode 100644 index 0000000..033865a --- /dev/null +++ b/types/types_type.opResult.html @@ -0,0 +1,132 @@ +opResult | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias opResult

+
opResult: {
    bandwidth_gas_amount: number;
    code: number;
    message?: string;
}
+
+

Type declaration

+
    +
  • +
    bandwidth_gas_amount: number
  • +
  • +
    code: number
  • +
  • +
    Optional message?: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.request.html b/types/types_type.request.html new file mode 100644 index 0000000..69c66dc --- /dev/null +++ b/types/types_type.request.html @@ -0,0 +1,134 @@ +request | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias request

+
request: {
    appName: string;
    requestData: string;
    requestKey: string;
    requesterAddress: string;
}
+
+

Type declaration

+
    +
  • +
    appName: string
  • +
  • +
    requestData: string
  • +
  • +
    requestKey: string
  • +
  • +
    requesterAddress: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.response.html b/types/types_type.response.html new file mode 100644 index 0000000..444182e --- /dev/null +++ b/types/types_type.response.html @@ -0,0 +1,123 @@ +response | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.setRuleParam.html b/types/types_type.setRuleParam.html new file mode 100644 index 0000000..f7b1123 --- /dev/null +++ b/types/types_type.setRuleParam.html @@ -0,0 +1,123 @@ +setRuleParam | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.setTriggerFunctionParm.html b/types/types_type.setTriggerFunctionParm.html new file mode 100644 index 0000000..619523c --- /dev/null +++ b/types/types_type.setTriggerFunctionParm.html @@ -0,0 +1,123 @@ +setTriggerFunctionParm | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.triggerFunctionConfig.html b/types/types_type.triggerFunctionConfig.html new file mode 100644 index 0000000..c0e4674 --- /dev/null +++ b/types/types_type.triggerFunctionConfig.html @@ -0,0 +1,132 @@ +triggerFunctionConfig | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias triggerFunctionConfig

+
triggerFunctionConfig: {
    function_id: string;
    function_type: string;
    function_url: string;
}
+
+

Type declaration

+
    +
  • +
    function_id: string
  • +
  • +
    function_type: string
  • +
  • +
    function_url: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.txResult.html b/types/types_type.txResult.html new file mode 100644 index 0000000..24713ef --- /dev/null +++ b/types/types_type.txResult.html @@ -0,0 +1,137 @@ +txResult | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias txResult

+
txResult: {
    code?: number;
    gas_amount_total: object;
    gas_cost_total: number;
    result_list?: {
        [index: string]: opResult;
    };
}
+
+

Type declaration

+
    +
  • +
    Optional code?: number
  • +
  • +
    gas_amount_total: object
  • +
  • +
    gas_cost_total: number
  • +
  • +
    Optional result_list?: {
        [index: string]: opResult;
    }
    +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/types/types_type.writeRuleConfig.html b/types/types_type.writeRuleConfig.html new file mode 100644 index 0000000..c2d789a --- /dev/null +++ b/types/types_type.writeRuleConfig.html @@ -0,0 +1,128 @@ +writeRuleConfig | Ainize-SDK
+
+ +
+
+
+
+ +

Type alias writeRuleConfig

+
writeRuleConfig: {
    write: string;
}
+
+

Type declaration

+
    +
  • +
    write: string
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/variables/constants.DEFAULT_BILLING_CONFIG.html b/variables/constants.DEFAULT_BILLING_CONFIG.html new file mode 100644 index 0000000..801657b --- /dev/null +++ b/variables/constants.DEFAULT_BILLING_CONFIG.html @@ -0,0 +1,123 @@ +DEFAULT_BILLING_CONFIG | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/variables/constants.HANDLER_HEARBEAT_INTERVAL.html b/variables/constants.HANDLER_HEARBEAT_INTERVAL.html new file mode 100644 index 0000000..d470c7b --- /dev/null +++ b/variables/constants.HANDLER_HEARBEAT_INTERVAL.html @@ -0,0 +1,123 @@ +HANDLER_HEARBEAT_INTERVAL | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/variables/constants.Path.html b/variables/constants.Path.html new file mode 100644 index 0000000..1039948 --- /dev/null +++ b/variables/constants.Path.html @@ -0,0 +1,156 @@ +Path | Ainize-SDK
+
+ +
+
+
+
+ +

Variable PathConst

+
Path: {
    app: ((appName: string) => any);
    transfer: ((from: string, to: string, transferKey: string) => string);
} = ...
+
+

Type declaration

+
    +
  • +
    app: ((appName: string) => any)
    +
      +
    • +
        +
      • (appName: string): any
      • +
      • +
        +

        Parameters

        +
          +
        • +
          appName: string
        +

        Returns any

  • +
  • +
    transfer: ((from: string, to: string, transferKey: string) => string)
    +
      +
    • +
        +
      • (from: string, to: string, transferKey: string): string
      • +
      • +
        +

        Parameters

        +
          +
        • +
          from: string
        • +
        • +
          to: string
        • +
        • +
          transferKey: string
        +

        Returns string

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/variables/constants.SECOND.html b/variables/constants.SECOND.html new file mode 100644 index 0000000..8c74d1a --- /dev/null +++ b/variables/constants.SECOND.html @@ -0,0 +1,123 @@ +SECOND | Ainize-SDK
+
+ +
+ +
+

Generated using TypeDoc

+
\ No newline at end of file