diff --git a/HISTORY.md b/HISTORY.md index e1ecab53..e258fdfd 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,15 @@ +# [9.0.0](https://github.com/hexonet/node-sdk/compare/v8.0.2...v9.0.0) (2022-07-29) + + +### chore + +* **esm/cjs:** review transpilation, introduce cross-fetch ([ed6ca7f](https://github.com/hexonet/node-sdk/commit/ed6ca7fa0333c30fc9c68eddd1d34b036802f2bb)) + + +### BREAKING CHANGES + +* **esm/cjs:** module format review esm/cjs both to be working + ## [8.0.2](https://github.com/hexonet/node-sdk/compare/v8.0.1...v8.0.2) (2022-06-10) ### Bug Fixes diff --git a/docs/docco/src/apiclient.html b/docs/docco/src/apiclient.html index cc3025db..cc3cf248 100644 --- a/docs/docco/src/apiclient.html +++ b/docs/docco/src/apiclient.html @@ -20,11 +20,21 @@
+ + src/apiclient.spec.ts + + + src/apiclient.ts + + src/column.spec.ts + + + src/column.ts @@ -35,6 +45,11 @@ + + src/index.spec.ts + + + src/index.ts @@ -45,31 +60,61 @@ + + src/record.spec.ts + + + src/record.ts + + src/response.spec.ts + + + src/response.ts + + src/responseparser.spec.ts + + + src/responseparser.ts + + src/responsetemplate.spec.ts + + + src/responsetemplate.ts + + src/responsetemplatemanager.spec.ts + + + src/responsetemplatemanager.ts + + src/socketconfig.spec.ts + + + src/socketconfig.ts @@ -98,16 +143,16 @@

apiclient.ts

-
import packageInfo from "../package.json" assert { type: "json" };
-import fetch from "node-fetch";
-import { Logger } from "./logger";
-import { Response } from "./response";
-import { ResponseTemplateManager } from "./responsetemplatemanager";
-import { fixedURLEnc, SocketConfig } from "./socketconfig";
+            
import fetch from "cross-fetch";
+import { Logger } from "./logger.js";
+import { Response } from "./response.js";
+import { ResponseTemplateManager } from "./responsetemplatemanager.js";
+import { fixedURLEnc, SocketConfig } from "./socketconfig.js";
 
 export const ISPAPI_CONNECTION_URL_PROXY = "http://127.0.0.1/api/call.cgi";
 export const ISPAPI_CONNECTION_URL_LIVE = "https://api.ispapi.net/api/call.cgi";
-export const ISPAPI_CONNECTION_URL_OTE = "https://api-ote.ispapi.net/api/call.cgi";
+export const ISPAPI_CONNECTION_URL_OTE =
+  "https://api-ote.ispapi.net/api/call.cgi";
 
 const rtm = ResponseTemplateManager.getInstance();
 
@@ -287,7 +332,7 @@ 

apiclient.ts

* @returns module version */ public getVersion(): string { - return packageInfo.version; + return "8.0.2"; } /** @@ -789,7 +834,6 @@

apiclient.ts

COMMAND: "ConvertIDN", DOMAIN: toconvert, }); - console.dir(r.getPlain()); if (r.isSuccess()) { const col = r.getColumn("ACE"); if (col) { diff --git a/docs/docco/src/apiclient.spec.html b/docs/docco/src/apiclient.spec.html new file mode 100644 index 00000000..6c8abd0a --- /dev/null +++ b/docs/docco/src/apiclient.spec.html @@ -0,0 +1,905 @@ + + + + + apiclient.spec.ts + + + + + +
+
+ + + +
    + +
  • +
    +

    apiclient.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import chaiPromised from "chai-as-promised";
    +import "mocha";
    +import nock from "nock";
    +import {
    +  APIClient,
    +  ISPAPI_CONNECTION_URL_LIVE,
    +  ISPAPI_CONNECTION_URL_OTE,
    +  ISPAPI_CONNECTION_URL_PROXY,
    +} from "./apiclient.js";
    +import { Response } from "./response.js";
    +import { ResponseTemplateManager } from "./responsetemplatemanager.js";
    +chai.use(chaiPromised);
    +
    +const apiScript = "/api/call.cgi";
    +const oteHost = ISPAPI_CONNECTION_URL_OTE.replace(apiScript, "");
    +const expect = chai.expect;
    +const rtm = ResponseTemplateManager.getInstance();
    +const cmd = { COMMAND: "StatusAccount" };
    +let cl: APIClient;
    +
    +after(() => {
    +  nock.cleanAll();
    +});
    +
    +before(() => {
    +  cl = new APIClient();
    +  rtm
    +    .addTemplate(
    +      "login200",
    +      "[RESPONSE]\r\nPROPERTY[SESSION][0]=h8JLZZHdF2WgWWXlwbKWzEG3XrzoW4yshhvtqyg0LCYiX55QnhgYX9cB0W4mlpbx\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.169\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "login500",
    +      rtm.generateTemplate("530", "Authentication failed")
    +    )
    +    .addTemplate(
    +      "OK",
    +      rtm.generateTemplate("200", "Command completed successfully")
    +    )
    +    .addTemplate(
    +      "CHECKS",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=2701\r\nPROPERTY[FIRST][0]=0\r\nPROPERTY[DOMAIN][0]=0-60motorcycletimes.com\r\nPROPERTY[DOMAIN][1]=0-be-s01-0.com\r\nPROPERTY[COUNT][0]=2\r\nPROPERTY[LAST][0]=1\r\nPROPERTY[LIMIT][0]=2\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.023\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "listP0",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=2701\r\nPROPERTY[FIRST][0]=0\r\nPROPERTY[DOMAIN][0]=0-60motorcycletimes.com\r\nPROPERTY[DOMAIN][1]=0-be-s01-0.com\r\nPROPERTY[COUNT][0]=2\r\nPROPERTY[LAST][0]=1\r\nPROPERTY[LIMIT][0]=2\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.023\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "listP1",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=2701\r\nPROPERTY[FIRST][0]=2\r\nPROPERTY[DOMAIN][0]=0-qas-ao17-0.org\r\nPROPERTY[DOMAIN][1]=0-sunnyda222y.com\r\nPROPERTY[COUNT][0]=2\r\nPROPERTY[LAST][0]=3\r\nPROPERTY[LIMIT][0]=2\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.032\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "listFP0",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=3\r\nPROPERTY[FIRST][0]=0\r\nPROPERTY[DOMAIN][0]=0-60motorcycletimes.com\r\nPROPERTY[COUNT][0]=1\r\nPROPERTY[LAST][0]=1\r\nPROPERTY[LIMIT][0]=1\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.023\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "listFP1",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=3\r\nPROPERTY[FIRST][0]=1\r\nPROPERTY[DOMAIN][0]=0-be-s01-0.com\r\nPROPERTY[COUNT][0]=1\r\nPROPERTY[LAST][0]=2\r\nPROPERTY[LIMIT][0]=1\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.032\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "listFP2",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=3\r\nPROPERTY[FIRST][0]=2\r\nPROPERTY[DOMAIN][0]=0-qas-ao17-0.org\r\nPROPERTY[COUNT][0]=2\r\nPROPERTY[LAST][0]=3\r\nPROPERTY[LIMIT][0]=1\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.032\r\nEOF\r\n"
    +    );
    +});
    +
    +describe("APIClient class", function () {
    +  this.timeout(APIClient.socketTimeout);
    +  this.slow(1000);
    +
    +  describe("#.getPOSTData", () => {
    +    it("test object input with special chars", () => {
    +      const validate =
    +        "s_entity=54cd&s_command=AUTH%3Dgwrgwqg%25%26%5C44t3%2A%0ACOMMAND%3DModifyDomain";
    +      const enc = cl.getPOSTData({
    +        AUTH: "gwrgwqg%&\\44t3*",
    +        COMMAND: "ModifyDomain",
    +      });
    +      expect(enc).to.equal(validate);
    +    });
    +
    +    it("test string input", () => {
    +      const enc = cl.getPOSTData("gregergege");
    +      expect(enc).to.equal("s_entity=54cd&s_command=gregergege");
    +    });
    +
    +    it("test object input with null value in parameter", () => {
    +      const validate = "s_entity=54cd&s_command=COMMAND%3DModifyDomain";
    +      const enc = cl.getPOSTData({
    +        AUTH: null,
    +        COMMAND: "ModifyDomain",
    +      });
    +      expect(enc).to.equal(validate);
    +    });
    +
    +    it("test object input with undefined value in parameter", () => {
    +      const validate = "s_entity=54cd&s_command=COMMAND%3DModifyDomain";
    +      const enc = cl.getPOSTData({
    +        AUTH: undefined,
    +        COMMAND: "ModifyDomain",
    +      });
    +      expect(enc).to.equal(validate);
    +    });
    +
    +    it("test data getting secured correctly", () => {
    +      const validate =
    +        "s_entity=54cd&s_login=test.user&s_pw=***&s_command=COMMAND%3DCheckAuthentication%0APASSWORD%3D%2A%2A%2A%0ASUBUSER%3Dtest.user";
    +      cl.setCredentials("test.user", "test.passw0rd");
    +      const enc = cl.getPOSTData(
    +        {
    +          COMMAND: "CheckAuthentication",
    +          PASSWORD: "test.passw0rd",
    +          SUBUSER: "test.user",
    +        },
    +        true
    +      );
    +      cl.setCredentials("", "");
    +      expect(enc).to.equal(validate);
    +    });
    +  });
    +
    +  describe("#.enableDebugMode", () => {
    +    it("activate debug mode", () => {
    +      cl.enableDebugMode();
    +    });
    +  });
    +
    +  describe("#.disableDebugMode", () => {
    +    it("deactivate debug mode", () => {
    +      cl.disableDebugMode();
    +    });
    +  });
    +
    +  describe("#.getSession", () => {
    +    it("validate response", () => {
    +      const session = cl.getSession();
    +      expect(session).to.be.null;
    +    });
    +  });
    +
    +  describe("#.getSession", () => {
    +    it("validate response", () => {
    +      const sessid = "testSessionID12345678";
    +      cl.setSession(sessid);
    +      const session = cl.getSession();
    +      expect(session).to.be.equal(sessid);
    +      cl.setSession("");
    +    });
    +  });
    +
    +  describe("#.getURL", () => {
    +    it("validate default socket url", () => {
    +      const url = cl.getURL();
    +      expect(url).to.equal(ISPAPI_CONNECTION_URL_LIVE);
    +    });
    +  });
    +
    +  describe("#.getUserAgent", () => {
    +    it("validate response", () => {
    +      const ua = cl.getUserAgent();
    +      expect(ua).to.equal(
    +        `NODE-SDK (${process.platform}; ${
    +          process.arch
    +        }; rv:${cl.getVersion()}) node/${process.version}`
    +      );
    +    });
    +  });
    +
    +  describe("#.setUserAgent", () => {
    +    it("validate response", () => {
    +      const cls = cl.setUserAgent("WHMCS", "7.7.0");
    +      const ua = cl.getUserAgent();
    +      expect(cls).to.be.instanceOf(APIClient);
    +      expect(ua).to.equal(
    +        `WHMCS (${process.platform}; ${
    +          process.arch
    +        }; rv:7.7.0) node-sdk/${cl.getVersion()} node/${process.version}`
    +      );
    +    });
    +
    +    it("validate agent string including modules", () => {
    +      const cls = cl.setUserAgent("WHMCS", "7.7.0", [
    +        "reg/2.6.2",
    +        "ssl/7.2.2",
    +        "dc/8.2.2",
    +      ]);
    +      const ua = cl.getUserAgent();
    +      expect(cls).to.be.instanceOf(APIClient);
    +      expect(ua).to.equal(
    +        `WHMCS (${process.platform}; ${
    +          process.arch
    +        }; rv:7.7.0) reg/2.6.2 ssl/7.2.2 dc/8.2.2 node-sdk/${cl.getVersion()} node/${
    +          process.version
    +        }`
    +      );
    +    });
    +  });
    +
    +  describe("#.setURL", () => {
    +    it("validate http socket url", () => {
    +      const url = cl.setURL(ISPAPI_CONNECTION_URL_PROXY).getURL();
    +      expect(url).to.equal(ISPAPI_CONNECTION_URL_PROXY);
    +      cl.setURL(ISPAPI_CONNECTION_URL_LIVE);
    +    });
    +  });
    +
    +  describe("#.setOTP", () => {
    +    it("validate getPOSTData response [otp set] ", () => {
    +      cl.setOTP("12345678");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_otp=12345678&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +
    +    it("validate getPOSTData response [otp reset]", () => {
    +      cl.setOTP("");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal("s_entity=54cd&s_command=COMMAND%3DStatusAccount");
    +    });
    +  });
    +
    +  describe("#.setSession", () => {
    +    it("validate getPOSTData response [session set] ", () => {
    +      cl.setSession("12345678");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_session=12345678&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +
    +    it("validate getPOSTData response [credentials and session set] ", () => {
    + +
  • + + +
  • +
    + +
    + § +
    +

    credentials and otp code have to be unset when session id is set

    + +
    + +
          cl.setRoleCredentials("myaccountid", "myrole", "mypassword")
    +        .setOTP("12345678")
    +        .setSession("12345678");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_session=12345678&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +
    +    it("validate getPOSTData response [session reset]", () => {
    +      cl.setSession("");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal("s_entity=54cd&s_command=COMMAND%3DStatusAccount");
    +    });
    +  });
    +
    +  describe("#.saveSession/reuseSession", () => {
    +    after(() => {
    +      cl.setSession("");
    +    });
    +
    +    it("validate correct settings", () => {
    +      const sessionobj = {};
    +      cl.setSession("12345678").saveSession(sessionobj);
    +      const cl2 = new APIClient();
    +      cl2.reuseSession(sessionobj);
    +      const tmp = cl2.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_session=12345678&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +  });
    +
    +  describe("#.setRemoteIPAddress", () => {
    +    it("validate getPOSTData response [ip set] ", () => {
    +      cl.setRemoteIPAddress("10.10.10.10");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_remoteaddr=10.10.10.10&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +
    +    it("validate getPOSTData response [ip reset]", () => {
    +      cl.setRemoteIPAddress("");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal("s_entity=54cd&s_command=COMMAND%3DStatusAccount");
    +    });
    +  });
    +
    +  describe("#.setCredentials", () => {
    +    it("validate getPOSTData response [credentials set] ", () => {
    +      cl.setCredentials("myaccountid", "mypassword");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_login=myaccountid&s_pw=mypassword&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +
    +    it("validate getPOSTData response [session reset]", () => {
    +      cl.setCredentials("", "");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal("s_entity=54cd&s_command=COMMAND%3DStatusAccount");
    +    });
    +  });
    +
    +  describe("#.setRoleCredentials", () => {
    +    it("validate getPOSTData response [role credentials set] ", () => {
    +      cl.setRoleCredentials("myaccountid", "myroleid", "mypassword");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal(
    +        "s_entity=54cd&s_login=myaccountid%21myroleid&s_pw=mypassword&s_command=COMMAND%3DStatusAccount"
    +      );
    +    });
    +
    +    it("validate getPOSTData response [role credentials reset]", () => {
    +      cl.setRoleCredentials("", "", "");
    +      const tmp = cl.getPOSTData({
    +        COMMAND: "StatusAccount",
    +      });
    +      expect(tmp).to.equal("s_entity=54cd&s_command=COMMAND%3DStatusAccount");
    +    });
    +  });
    +
    +  describe("#.login", () => {
    +    it("validate against mocked API response [login succeeded; no role used]", async () => {
    +      const tpl = new Response(rtm.getTemplate("login200").getPlain(), cmd);
    +      nock(oteHost).post(apiScript).reply(200, tpl.getPlain());
    +      cl.useOTESystem().setCredentials("test.user", "test.passw0rd");
    +      const r = await cl.login();
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +      const rec = r.getRecord(0);
    +      expect(rec).not.to.be.null;
    +      if (rec) {
    +        const rec2 = tpl.getRecord(0);
    +        expect(rec2).not.to.be.null;
    +        if (rec2) {
    +          expect(rec.getDataByKey("SESSION")).to.equal(
    +            rec2.getDataByKey("SESSION")
    +          );
    +        }
    +      }
    +    });
    + +
  • + + +
  • +
    + +
    + § +
    +

    skipping test using public accessible role user; we need to review here

    + +
    + +
        it.skip("validate against mocked API response [login succeeded; role used]", async () => {
    +      const tpl = new Response(rtm.getTemplate("login200").getPlain(), cmd);
    +      nock(oteHost).post(apiScript).reply(200, tpl.getPlain());
    +      cl.useOTESystem().setRoleCredentials(
    +        "test.user",
    +        "testrole",
    +        "test.passw0rd"
    +      );
    +      const r = await cl.login();
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +      const rec = r.getRecord(0);
    +      expect(rec).not.to.be.null;
    +      if (rec) {
    +        const rec2 = tpl.getRecord(0);
    +        expect(rec2).not.to.be.null;
    +        if (rec2) {
    +          expect(rec.getDataByKey("SESSION")).to.equal(
    +            rec2.getDataByKey("SESSION")
    +          );
    +        }
    +      }
    +    });
    +
    +    it("validate against mocked API response [login failed; wrong credentials]", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("login500").getPlain());
    +      cl.setCredentials("test.user", "WRONGPASSWORD");
    +      const r = await cl.login();
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isError()).to.be.true;
    +    });
    + +
  • + + +
  • +
    + +
    + § +
    +

    deactivated as delayConnection is not working together with node-fetch

    + +
    + +
        it.skip("validate against mocked API response [login failed; http timeout]", async () => {
    +      nock.cleanAll();
    +      const tpl = rtm.getTemplate("httperror");
    +      nock(oteHost)
    +        .post(apiScript)
    +        .delayConnection(APIClient.socketTimeout + 1000)
    +        .reply(200, tpl.getPlain());
    +      cl.setCredentials("test.user", "WRONGPASSWORD");
    +      const r = await cl.login();
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isTmpError()).to.be.true;
    +      expect(r.getDescription()).to.equal(tpl.getDescription());
    +    });
    +
    +    it("validate against mocked API response [login succeeded; no session returned] ", async () => {
    + +
  • + + +
  • +
    + +
    + § +
    +

    this case cannot really happen as the api always returns SESSION property. +this case is just to increase coverage

    + +
    + +
          const tpl = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      nock(oteHost).post(apiScript).reply(200, tpl.getPlain());
    +      cl.useOTESystem().setCredentials("test.user", "test.passw0rd");
    +      const r = await cl.login();
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +      const rec = r.getRecord(0);
    +      expect(rec).to.be.null;
    +    });
    +  });
    +
    +  describe("#.loginExtended", () => {
    +    it("validate against mocked API response [login succeeded; no role used] ", async () => {
    +      const tpl = new Response(rtm.getTemplate("login200").getPlain(), cmd);
    +      nock(oteHost).post(apiScript).reply(200, tpl.getPlain());
    +      cl.useOTESystem().setCredentials("test.user", "test.passw0rd");
    +      const r = await cl.loginExtended({
    +        TIMEOUT: 60,
    +      });
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +      const rec = r.getRecord(0);
    +      expect(rec).not.to.be.null;
    +      if (rec) {
    +        const rec2 = tpl.getRecord(0);
    +        expect(rec2).not.to.be.null;
    +        if (rec2) {
    +          expect(rec.getDataByKey("SESSION")).to.equal(
    +            rec2.getDataByKey("SESSION")
    +          );
    +        }
    +      }
    +    });
    +  });
    +
    +  describe("#.logout", () => {
    +    it("validate against mocked API response [logout succeeded]", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("OK").getPlain());
    +      const r = await cl.logout();
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +    });
    +
    +    it("validate against mocked API response [logout failed; session no longer exists]", async () => {
    +      const tpl = new Response(rtm.getTemplate("login200").getPlain(), cmd);
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("login500").getPlain());
    +
    +      const rec2 = tpl.getRecord(0);
    +      expect(rec2).not.to.be.null;
    +      if (rec2) {
    +        const sessid = rec2.getDataByKey("SESSION");
    +        expect(sessid).not.to.be.null;
    +        if (sessid) {
    +          cl.enableDebugMode().setSession(sessid);
    +          const r = await cl.logout();
    +          expect(r).to.be.instanceOf(Response);
    +          expect(r.isError()).to.be.true;
    +        }
    +      }
    +    });
    +  });
    +
    +  describe("#.request", () => {
    + +
  • + + +
  • +
    + +
    + § +
    +

    TODO additional test for statusMessage - not supported through nock [https://github.com/nock/nock/issues/558]

    + +
    + +
        it("validate against mocked API response [200 < r.statusCode > 299]", async () => {
    +      const tpl2 = new Response(rtm.getTemplate("httperror").getPlain(), cmd);
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(404, rtm.getTemplate("404").getPlain());
    +      cl.enableDebugMode()
    +        .setCredentials("test.user", "test.passw0rd")
    +        .useOTESystem();
    +      const r = await cl.request(cmd);
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isTmpError()).to.be.true;
    +      expect(r.getCode()).to.equal(tpl2.getCode());
    +      expect(r.getDescription()).to.equal(tpl2.getDescription());
    +    });
    +
    +    it("validate against mocked API response [200 < r.statusCode > 299, no debug]", async () => {
    +      const tpl2 = new Response(rtm.getTemplate("httperror").getPlain(), cmd);
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(404, rtm.getTemplate("404").getPlain());
    +      cl.disableDebugMode();
    +      const r = await cl.request(cmd);
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isTmpError()).to.be.true;
    +      expect(r.getCode()).to.equal(tpl2.getCode());
    +      expect(r.getDescription()).to.equal(tpl2.getDescription());
    +    });
    +
    +    it("test if flattening of nested array / bulk parameters works", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("OK").getPlain());
    +      const r = await cl.request({
    +        COMMAND: "CheckDomains",
    +        DOMAIN: ["example.com", "example.net"],
    +      });
    +      expect(r).to.be.instanceOf(Response);
    +      const mycmd = r.getCommand();
    +      const keys = Object.keys(mycmd);
    +      expect(keys.includes("DOMAIN")).to.be.false;
    +      expect(keys.includes("DOMAIN0")).to.be.true;
    +      expect(keys.includes("DOMAIN1")).to.be.true;
    +      expect(mycmd.DOMAIN0).to.equal("example.com");
    +      expect(mycmd.DOMAIN1).to.equal("example.net");
    +    });
    +
    +    it("test if auto-idn convert works", async () => {
    +      nock.cleanAll();
    +      const r = await cl.request({
    +        COMMAND: "CheckDomains",
    +        DOMAIN: ["example.com", "dömäin.example", "example.net"],
    +      });
    +      expect(r).to.be.instanceOf(Response);
    +      const mycmd = r.getCommand();
    +      const keys = Object.keys(mycmd);
    +      expect(keys.includes("DOMAIN")).to.be.false;
    +      expect(keys.includes("DOMAIN0")).to.be.true;
    +      expect(keys.includes("DOMAIN1")).to.be.true;
    +      expect(keys.includes("DOMAIN2")).to.be.true;
    +      expect(mycmd.DOMAIN0).to.equal("example.com");
    +      expect(mycmd.DOMAIN1).to.equal("xn--dmin-moa0i.example");
    +      expect(mycmd.DOMAIN2).to.equal("example.net");
    +    });
    +  });
    +
    +  describe("#.requestNextResponsePage", () => {
    +    it("validate against mocked API response [no LAST set]", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("listP1").getPlain());
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), {
    +        COMMAND: "QueryDomainList",
    +        LIMIT: 2,
    +        FIRST: 0,
    +      });
    +      const nr = await cl.requestNextResponsePage(r);
    +      expect(r.isSuccess()).to.be.true;
    +      expect(r.getRecordsLimitation()).to.equal(2);
    +      expect(r.getRecordsCount()).to.equal(2);
    +      expect(r.getFirstRecordIndex()).to.equal(0);
    +      expect(r.getLastRecordIndex()).to.equal(1);
    +      expect(nr).not.to.be.null;
    +      if (nr) {
    +        expect(nr.isSuccess()).to.be.true;
    +        expect(nr.getRecordsLimitation()).to.equal(2);
    +        expect(nr.getRecordsCount()).to.equal(2);
    +        expect(nr.getFirstRecordIndex()).to.equal(2);
    +        expect(nr.getLastRecordIndex()).to.equal(3);
    +      }
    +    });
    +
    +    it("validate against mocked API response [LAST set]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), {
    +        COMMAND: "QueryDomainList",
    +        LIMIT: 2,
    +        FIRST: 0,
    +        LAST: 1,
    +      });
    +      return expect(cl.requestNextResponsePage(r)).to.be.rejectedWith(
    +        Error,
    +        "Parameter LAST in use. Please remove it to avoid issues in requestNextPage."
    +      );
    +    });
    +
    +    it("validate against mocked API response [no FIRST set]", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("listP1").getPlain());
    +      cl.disableDebugMode();
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), {
    +        COMMAND: "QueryDomainList",
    +        LIMIT: 2,
    +      });
    +      const nr = await cl.requestNextResponsePage(r);
    +      expect(r.isSuccess()).to.be.true;
    +      expect(r.getRecordsLimitation()).to.equal(2);
    +      expect(r.getRecordsCount()).to.equal(2);
    +      expect(r.getFirstRecordIndex()).to.equal(0);
    +      expect(r.getLastRecordIndex()).to.equal(1);
    +      expect(nr).not.to.be.null;
    +      if (nr) {
    +        expect(nr.isSuccess()).to.be.true;
    +        expect(nr.getRecordsLimitation()).to.equal(2);
    +        expect(nr.getRecordsCount()).to.equal(2);
    +        expect(nr.getFirstRecordIndex()).to.equal(2);
    +        expect(nr.getLastRecordIndex()).to.equal(3);
    +      }
    +    });
    +  });
    +
    +  describe("#.requestAllResponsePages", () => {
    +    it("validate against mocked API response [success case]", async () => {
    +      let reqcount = 0;
    +      const scope = nock(oteHost)
    +        .persist()
    +        .post(apiScript)
    +        .reply(200, () => {
    +          reqcount++;
    +          if (reqcount === 1) {
    +            return rtm.getTemplate("listFP0").getPlain();
    +          }
    +          if (reqcount === 2) {
    +            return rtm.getTemplate("listFP1").getPlain();
    +          }
    +          return rtm.getTemplate("listFP2").getPlain();
    +        });
    +      const nr = await cl.requestAllResponsePages({
    +        COMMAND: "QueryDomainList",
    +        FIRST: 0,
    +        LIMIT: 1,
    +      });
    +      expect(nr.length).to.equal(3);
    +      scope.persist(false);
    +    });
    +  });
    +
    +  describe("#.setUserView", () => {
    +    it("validate against mocked API response", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("OK").getPlain());
    +      cl.setUserView("hexotestman.com");
    +      const r = await cl.request({ COMMAND: "GetUserIndex" });
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +    });
    +  });
    +
    +  describe("#.resetUserView", () => {
    +    it("validate against mocked API response", async () => {
    +      nock(oteHost)
    +        .post(apiScript)
    +        .reply(200, rtm.getTemplate("OK").getPlain());
    +      cl.resetUserView();
    +      const r = await cl.request({ COMMAND: "GetUserIndex" });
    +      expect(r).to.be.instanceOf(Response);
    +      expect(r.isSuccess()).to.be.true;
    +    });
    +  });
    +
    +  describe("#.setProxy", () => {
    +    it("test setting proxy works", () => {
    +      cl.setProxy("127.0.0.1");
    +      expect(cl.getProxy()).to.equal("127.0.0.1");
    +      cl.setProxy("");
    +    });
    +  });
    +
    +  describe("#.setReferer", () => {
    +    it("test setting referer works", () => {
    +      cl.setReferer("https://www.hexonet.net");
    +      expect(cl.getReferer()).to.equal("https://www.hexonet.net");
    +      cl.setReferer("");
    +    });
    +  });
    +
    +  describe("#.useHighPerformanceConnectionSetup", () => {
    +    it("test setting high performance connection setup works", () => {
    +      cl.useHighPerformanceConnectionSetup();
    +      expect(cl.getURL()).to.equal(ISPAPI_CONNECTION_URL_PROXY);
    +    });
    +  });
    +
    +  describe("#.useDefaultConnectionSetup", () => {
    +    it("test setting default connection setup works", () => {
    +      cl.useDefaultConnectionSetup();
    +      expect(cl.getURL()).to.equal(ISPAPI_CONNECTION_URL_LIVE);
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/column.html b/docs/docco/src/column.html index b9698b0f..08391e57 100644 --- a/docs/docco/src/column.html +++ b/docs/docco/src/column.html @@ -20,11 +20,21 @@
+ + src/apiclient.spec.ts + + + src/apiclient.ts + + src/column.spec.ts + + + src/column.ts @@ -35,6 +45,11 @@ + + src/index.spec.ts + + + src/index.ts @@ -45,31 +60,61 @@ + + src/record.spec.ts + + + src/record.ts + + src/response.spec.ts + + + src/response.ts + + src/responseparser.spec.ts + + + src/responseparser.ts + + src/responsetemplate.spec.ts + + + src/responsetemplate.ts + + src/responsetemplatemanager.spec.ts + + + src/responsetemplatemanager.ts + + src/socketconfig.spec.ts + + + src/socketconfig.ts diff --git a/docs/docco/src/column.spec.html b/docs/docco/src/column.spec.html new file mode 100644 index 00000000..6e14bb83 --- /dev/null +++ b/docs/docco/src/column.spec.html @@ -0,0 +1,176 @@ + + + + + column.spec.ts + + + + + +
+
+ + + +
    + +
  • +
    +

    column.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { Column } from "./column.js";
    +const expect = chai.expect;
    +
    +let col: Column;
    +
    +before(() => {
    +  col = new Column("DOMAIN", [
    +    "mydomain1.com",
    +    "mydomain2.com",
    +    "mydomain3.com",
    +  ]);
    +});
    +
    +describe("Column class", function () {
    +  this.slow(1000);
    +
    +  describe("#.getKey", () => {
    +    it("check return value", () => {
    +      expect(col.getKey()).to.equal("DOMAIN");
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/customlogger.html b/docs/docco/src/customlogger.html index 0f2cfb5a..43783acf 100644 --- a/docs/docco/src/customlogger.html +++ b/docs/docco/src/customlogger.html @@ -20,11 +20,21 @@ -
import { Logger } from "./logger";
-import { Response } from "./response";
+            
import { Logger } from "./logger.js";
+import { Response } from "./response.js";
 
 /**
  * Logger class
diff --git a/docs/docco/src/index.html b/docs/docco/src/index.html
index d3a1dd85..423ec3c0 100644
--- a/docs/docco/src/index.html
+++ b/docs/docco/src/index.html
@@ -20,11 +20,21 @@
             
             
-            
import { APIClient } from "./apiclient";
-import { Response } from "./response";
-import { ResponseTemplateManager } from "./responsetemplatemanager";
+            
import { APIClient } from "./apiclient.js";
+import { Response } from "./response.js";
+import { ResponseTemplateManager } from "./responsetemplatemanager.js";
 
 export {
   /**
diff --git a/docs/docco/src/index.spec.html b/docs/docco/src/index.spec.html
new file mode 100644
index 00000000..b7c7cbb9
--- /dev/null
+++ b/docs/docco/src/index.spec.html
@@ -0,0 +1,175 @@
+
+
+
+
+  index.spec.ts
+  
+  
+  
+
+
+  
+
+ + + +
    + +
  • +
    +

    index.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { APIClient, Response, ResponseTemplateManager } from "./index.js";
    +const expect = chai.expect;
    +
    +describe("index file", function () {
    +  this.slow(1000);
    +
    +  it("check access to APIClient class", () => {
    +    const cl = new APIClient();
    +    expect(cl).to.be.instanceOf(APIClient);
    +  });
    +
    +  it("check access to Response class", () => {
    +    const cl = new Response("", { COMMAND: "StatusAccount" });
    +    expect(cl).to.be.instanceOf(Response);
    +  });
    +
    +  it("check access to ResponseTemplateManager class", () => {
    +    const cl = ResponseTemplateManager.getInstance();
    +    expect(cl).to.be.instanceOf(ResponseTemplateManager);
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/logger.html b/docs/docco/src/logger.html index fe62f7b9..9a3fe4f8 100644 --- a/docs/docco/src/logger.html +++ b/docs/docco/src/logger.html @@ -20,11 +20,21 @@ -
import { Response } from "./response";
+            
import { Response } from "./response.js";
 
 /**
  * Logger class
diff --git a/docs/docco/src/record.html b/docs/docco/src/record.html
index 40ec94b0..226a8556 100644
--- a/docs/docco/src/record.html
+++ b/docs/docco/src/record.html
@@ -20,11 +20,21 @@
             
+ + src/apiclient.spec.ts + + + src/apiclient.ts + + src/column.spec.ts + + + src/column.ts @@ -35,6 +45,11 @@ + + src/index.spec.ts + + + src/index.ts @@ -45,31 +60,61 @@ + + src/record.spec.ts + + + src/record.ts + + src/response.spec.ts + + + src/response.ts + + src/responseparser.spec.ts + + + src/responseparser.ts + + src/responsetemplate.spec.ts + + + src/responsetemplate.ts + + src/responsetemplatemanager.spec.ts + + + src/responsetemplatemanager.ts + + src/socketconfig.spec.ts + + + src/socketconfig.ts diff --git a/docs/docco/src/record.spec.html b/docs/docco/src/record.spec.html new file mode 100644 index 00000000..7d9267ad --- /dev/null +++ b/docs/docco/src/record.spec.html @@ -0,0 +1,184 @@ + + + + + record.spec.ts + + + + + +
+
+ + + +
    + +
  • +
    +

    record.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { Record } from "./record.js";
    +const expect = chai.expect;
    +
    +let rec: Record;
    +const data: any = {
    +  DOMAIN: "mydomain.com",
    +  RATING: "1",
    +  RNDINT: "321",
    +  SUM: "1",
    +};
    +
    +before(() => {
    +  rec = new Record(data);
    +});
    +
    +describe("Record class", function () {
    +  this.slow(1000);
    +
    +  describe("#.getData", () => {
    +    it("check return value", () => {
    +      expect(rec.getData()).to.equal(data);
    +    });
    +  });
    +
    +  describe("#.getDataByKey", () => {
    +    it("check return value [column key not found]", () => {
    +      expect(rec.getDataByKey("KEYNOTEXISTING")).to.be.null;
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/response.html b/docs/docco/src/response.html index df30dd5c..4bdce044 100644 --- a/docs/docco/src/response.html +++ b/docs/docco/src/response.html @@ -20,11 +20,21 @@ -
import { Column } from "./column";
-import { Record } from "./record";
-import { ResponseTemplate } from "./responsetemplate";
+            
import { Column } from "./column.js";
+import { Record } from "./record.js";
+import { ResponseTemplate } from "./responsetemplate.js";
 
 /**
  * Response Class inheriting from ResponseTemplate Class
diff --git a/docs/docco/src/response.spec.html b/docs/docco/src/response.spec.html
new file mode 100644
index 00000000..4328edc7
--- /dev/null
+++ b/docs/docco/src/response.spec.html
@@ -0,0 +1,473 @@
+
+
+
+
+  response.spec.ts
+  
+  
+  
+
+
+  
+
+ + + +
    + +
  • +
    +

    response.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { Response } from "./response.js";
    +import { ResponseParser } from "./responseparser.js";
    +import { ResponseTemplateManager } from "./responsetemplatemanager.js";
    +
    +const expect = chai.expect;
    +const rtm = ResponseTemplateManager.getInstance();
    +const cmd = { COMMAND: "StatusContact" };
    +
    +before(() => {
    +  rtm
    +    .addTemplate(
    +      "listP0",
    +      "[RESPONSE]\r\nPROPERTY[TOTAL][0]=2701\r\nPROPERTY[FIRST][0]=0\r\nPROPERTY[DOMAIN][0]=0-60motorcycletimes.com\r\nPROPERTY[DOMAIN][1]=0-be-s01-0.com\r\nPROPERTY[COUNT][0]=2\r\nPROPERTY[LAST][0]=1\r\nPROPERTY[LIMIT][0]=2\r\nDESCRIPTION=Command completed successfully\r\nCODE=200\r\nQUEUETIME=0\r\nRUNTIME=0.023\r\nEOF\r\n"
    +    )
    +    .addTemplate(
    +      "OK",
    +      rtm.generateTemplate("200", "Command completed successfully")
    +    );
    +});
    +
    +describe("Response class", function () {
    +  this.slow(1000);
    +
    +  describe("constructor", () => {
    +    it("check place holder vars replacment", () => {
    + +
  • + + +
  • +
    + +
    + § +
    +

    ensure no vars are returned in response, just in case no place holder replacements are provided

    + +
    + +
          let r = new Response("", cmd);
    +      expect(/\{[A-Z_]+\}/.test(r.getDescription())).to.be.false;
    + +
  • + + +
  • +
    + +
    + § +
    +

    ensure variable replacements are correctly handled in case place holder replacements are provided

    + +
    + +
          r = new Response(
    +        "",
    +        { COMMAND: "StatusAccount" },
    +        { CONNECTION_URL: "123HXPHFOUND123" }
    +      );
    +      expect(/123HXPHFOUND123/.test(r.getDescription())).to.be.true;
    +    });
    +  });
    +
    +  describe("#.getCommandPlain", () => {
    +    it("check flattening of command works", () => {
    +      const r = new Response("", {
    +        COMMAND: "QueryDomainOptions",
    +        DOMAIN0: "example.com",
    +        DOMAIN1: "example.net",
    +      });
    +      const expected =
    +        "COMMAND = QueryDomainOptions\nDOMAIN0 = example.com\nDOMAIN1 = example.net\n";
    +      expect(r.getCommandPlain()).to.equal(expected);
    +    });
    +
    +    it("check data being returned secure", () => {
    +      const r = new Response("", {
    +        COMMAND: "CheckAuthentication",
    +        SUBUSER: "test.user",
    +        PASSWORD: "test.passw0rd",
    +      });
    +      const expected =
    +        "COMMAND = CheckAuthentication\nSUBUSER = test.user\nPASSWORD = ***\n";
    +      expect(r.getCommandPlain()).to.equal(expected);
    +    });
    +  });
    +
    +  describe("#.getCurrentPageNumber", () => {
    +    it("check return value [w/ entries in response]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      expect(r.getCurrentPageNumber()).to.equal(1);
    +    });
    +
    +    it("check return value [w/o entries in response]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getCurrentPageNumber()).to.equal(null);
    +    });
    +  });
    +
    +  describe("#.getFirstRecordIndex", () => {
    +    it("check return value [w/o FIRST in response, no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getFirstRecordIndex()).to.equal(null);
    +    });
    +
    +    it("check return value [w/o FIRST in response, rows]", () => {
    +      const h = rtm.getTemplate("OK").getHash();
    +      h.PROPERTY = {
    +        DOMAIN: ["mydomain1.com", "mydomain2.com"],
    +      };
    +      const r = new Response(ResponseParser.serialize(h), cmd);
    +      expect(r.getFirstRecordIndex()).to.equal(0);
    +    });
    +  });
    +
    +  describe("#.getColumns", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const cols = r.getColumns();
    +      expect(cols.length).to.equal(6);
    +    });
    +  });
    +
    +  describe("#.getColumnIndex", () => {
    +    it("check return value [colum exists]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const data = r.getColumnIndex("DOMAIN", 0);
    +      expect(data).to.equal("0-60motorcycletimes.com");
    +    });
    +
    +    it("check return value [colum does not exist]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const data = r.getColumnIndex("COLUMN_NOT_EXISTS", 0);
    +      expect(data).to.be.null;
    +    });
    +  });
    +
    +  describe("#.getColumnKeys", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const colkeys = r.getColumnKeys();
    +      expect(colkeys.length).to.equal(6);
    +      expect(colkeys).to.include.members([
    +        "COUNT",
    +        "DOMAIN",
    +        "FIRST",
    +        "LAST",
    +        "LIMIT",
    +        "TOTAL",
    +      ]);
    +    });
    +  });
    +
    +  describe("#.getCurrentRecord", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const rec = r.getCurrentRecord();
    +      expect(rec).not.to.be.null;
    +      if (rec) {
    +        expect(rec.getData()).to.eql({
    +          COUNT: "2",
    +          DOMAIN: "0-60motorcycletimes.com",
    +          FIRST: "0",
    +          LAST: "1",
    +          LIMIT: "2",
    +          TOTAL: "2701",
    +        });
    +      }
    +    });
    +
    +    it("check return value [no records available]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getCurrentRecord()).to.be.null;
    +    });
    +  });
    +
    +  describe("#.getListHash", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const lh = r.getListHash();
    +      expect(lh.LIST.length).to.equal(2);
    +      expect(lh.meta.columns).to.eql(r.getColumnKeys());
    +      expect(lh.meta.pg).to.eql(r.getPagination());
    +    });
    +  });
    +
    +  describe("#.getNextRecord", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      let rec = r.getNextRecord();
    +      expect(rec).not.to.be.null;
    +      if (rec) {
    +        expect(rec.getData()).to.eql({ DOMAIN: "0-be-s01-0.com" });
    +      }
    +      rec = r.getNextRecord();
    +      expect(rec).to.be.null;
    +    });
    +  });
    +
    +  describe("#.getPagination", () => {
    +    it("check return value [next record]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      const pager = r.getPagination();
    +      expect(pager).to.have.all.keys([
    +        "COUNT",
    +        "CURRENTPAGE",
    +        "FIRST",
    +        "LAST",
    +        "LIMIT",
    +        "NEXTPAGE",
    +        "PAGES",
    +        "PREVIOUSPAGE",
    +        "TOTAL",
    +      ]);
    +    });
    +  });
    +
    +  describe("#.getPreviousRecord", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      r.getNextRecord();
    +      const rec = r.getPreviousRecord();
    +      expect(rec).not.to.be.null;
    +      if (rec) {
    +        expect(rec.getData()).to.eql({
    +          COUNT: "2",
    +          DOMAIN: "0-60motorcycletimes.com",
    +          FIRST: "0",
    +          LAST: "1",
    +          LIMIT: "2",
    +          TOTAL: "2701",
    +        });
    +        expect(r.getPreviousRecord()).to.be.null;
    +      }
    +    });
    +  });
    +
    +  describe("#.hasNextPage", () => {
    +    it("check return value [no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.hasNextPage()).to.be.false;
    +    });
    +
    +    it("check return value [rows]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      expect(r.hasNextPage()).to.be.true;
    +    });
    +  });
    +
    +  describe("#.hasPreviousPage", () => {
    +    it("check return value [no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.hasPreviousPage()).to.be.false;
    +    });
    +
    +    it("check return value [rows]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      expect(r.hasPreviousPage()).to.be.false;
    +    });
    +  });
    +
    +  describe("#.getLastRecordIndex", () => {
    +    it("check return value [no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getLastRecordIndex()).to.be.null;
    +    });
    +
    +    it("check return value [w/o LAST in response, rows]", () => {
    +      const h = rtm.getTemplate("OK").getHash();
    +      h.PROPERTY = {
    +        DOMAIN: ["mydomain1.com", "mydomain2.com"],
    +      };
    +      const r = new Response(ResponseParser.serialize(h), cmd);
    +      expect(r.getLastRecordIndex()).to.equal(1);
    +    });
    +  });
    +
    +  describe("#.getNextPageNumber", () => {
    +    it("check return value [no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getNextPageNumber()).to.be.null;
    +    });
    +
    +    it("check return value [rows]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      expect(r.getNextPageNumber()).to.be.equal(2);
    +    });
    +  });
    +
    +  describe("#.getNumberOfPages", () => {
    +    it("check return value [no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getNumberOfPages()).to.equal(0);
    +    });
    +  });
    +
    +  describe("#.getPreviousPageNumber", () => {
    +    it("check return value [no rows]", () => {
    +      const r = new Response(rtm.getTemplate("OK").getPlain(), cmd);
    +      expect(r.getPreviousPageNumber()).to.be.null;
    +    });
    +
    +    it("check return value [rows]", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      expect(r.getPreviousPageNumber()).to.be.null;
    +    });
    +  });
    +
    +  describe("#.rewindRecordList", () => {
    +    it("check return value", () => {
    +      const r = new Response(rtm.getTemplate("listP0").getPlain(), cmd);
    +      expect(r.getPreviousRecord()).to.be.null;
    +      expect(r.getNextRecord()).not.to.be.null;
    +      expect(r.getNextRecord()).to.be.null;
    +      expect(r.rewindRecordList().getPreviousRecord()).to.be.null;
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/responseparser.html b/docs/docco/src/responseparser.html index 49840b4f..24cee7db 100644 --- a/docs/docco/src/responseparser.html +++ b/docs/docco/src/responseparser.html @@ -20,11 +20,21 @@
+ + src/apiclient.spec.ts + + + src/apiclient.ts + + src/column.spec.ts + + + src/column.ts @@ -35,6 +45,11 @@ + + src/index.spec.ts + + + src/index.ts @@ -45,31 +60,61 @@ + + src/record.spec.ts + + + src/record.ts + + src/response.spec.ts + + + src/response.ts + + src/responseparser.spec.ts + + + src/responseparser.ts + + src/responsetemplate.spec.ts + + + src/responsetemplate.ts + + src/responsetemplatemanager.spec.ts + + + src/responsetemplatemanager.ts + + src/socketconfig.spec.ts + + + src/socketconfig.ts diff --git a/docs/docco/src/responseparser.spec.html b/docs/docco/src/responseparser.spec.html new file mode 100644 index 00000000..37537a2c --- /dev/null +++ b/docs/docco/src/responseparser.spec.html @@ -0,0 +1,219 @@ + + + + + responseparser.spec.ts + + + + + +
+
+ + + +
    + +
  • +
    +

    responseparser.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { ResponseParser } from "./responseparser.js";
    +import { ResponseTemplateManager } from "./responsetemplatemanager.js";
    +
    +const expect = chai.expect;
    +const rtm = ResponseTemplateManager.getInstance();
    +
    +before(() => {
    +  rtm.addTemplate(
    +    "OK",
    +    rtm.generateTemplate("200", "Command completed successfully")
    +  );
    +});
    +
    +describe("ResponseParser namespace", function () {
    +  this.slow(1000);
    +
    +  describe("#.serialize", () => {
    +    it("check return value [w/ PROPERTY]", () => {
    +      const r = rtm.getTemplate("OK").getHash();
    +      r.PROPERTY = {
    +        DOMAIN: ["mydomain1.com", "mydomain2.com", "mydomain3.com"],
    +        RATING: ["1", "2", "3"],
    +        SUM: [3],
    +      };
    +      expect(ResponseParser.serialize(r)).to.equal(
    +        "[RESPONSE]\r\nPROPERTY[DOMAIN][0]=mydomain1.com\r\nPROPERTY[DOMAIN][1]=mydomain2.com\r\nPROPERTY[DOMAIN][2]=mydomain3.com\r\nPROPERTY[RATING][0]=1\r\nPROPERTY[RATING][1]=2\r\nPROPERTY[RATING][2]=3\r\nPROPERTY[SUM][0]=3\r\nCODE=200\r\nDESCRIPTION=Command completed successfully\r\nEOF\r\n"
    +      );
    +    });
    +
    +    it("check return value [w/o PROPERTY]", () => {
    +      const tpl = rtm.getTemplate("OK");
    +      expect(ResponseParser.serialize(tpl.getHash())).to.equal(tpl.getPlain());
    +    });
    +
    +    it("check return value [w/o CODE, w/o DESCRIPTION]", () => {
    + +
  • + + +
  • +
    + +
    + § +
    +

    this case shouldn”t happen, otherwise we have an API-side issue

    + +
    + +
          const h = rtm.getTemplate("OK").getHash();
    +      delete h.CODE;
    +      delete h.DESCRIPTION;
    +      expect(ResponseParser.serialize(h)).to.equal("[RESPONSE]\r\nEOF\r\n");
    +    });
    +
    +    it("check return value [w/ QUEUETIME, w/ RUNTIME]", () => {
    +      const h = rtm.getTemplate("OK").getHash();
    +      h.QUEUETIME = "0";
    +      h.RUNTIME = "0.12";
    +      expect(ResponseParser.serialize(h)).to.equal(
    +        "[RESPONSE]\r\nCODE=200\r\nDESCRIPTION=Command completed successfully\r\nQUEUETIME=0\r\nRUNTIME=0.12\r\nEOF\r\n"
    +      );
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/responsetemplate.html b/docs/docco/src/responsetemplate.html index e1ce54aa..31170e52 100644 --- a/docs/docco/src/responsetemplate.html +++ b/docs/docco/src/responsetemplate.html @@ -20,11 +20,21 @@ -
import { ResponseParser } from "./responseparser";
-import { ResponseTemplateManager } from "./responsetemplatemanager";
+            
import { ResponseParser } from "./responseparser.js";
+import { ResponseTemplateManager } from "./responsetemplatemanager.js";
 
 /**
  * ResponseTemplate class
diff --git a/docs/docco/src/responsetemplate.spec.html b/docs/docco/src/responsetemplate.spec.html
new file mode 100644
index 00000000..279b68b9
--- /dev/null
+++ b/docs/docco/src/responsetemplate.spec.html
@@ -0,0 +1,233 @@
+
+
+
+
+  responsetemplate.spec.ts
+  
+  
+  
+
+
+  
+
+ + + +
    + +
  • +
    +

    responsetemplate.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { ResponseTemplate } from "./responsetemplate.js";
    +
    +const expect = chai.expect;
    +
    +describe("ResponseTemplate class", function () {
    +  this.slow(1000);
    +
    +  describe("#.constructor", () => {
    +    it("check instance [raw empty string]", () => {
    +      const tpl = new ResponseTemplate("");
    +      expect(tpl.getCode()).to.equal(423);
    +      expect(tpl.getDescription()).to.equal(
    +        "Empty API response. Probably unreachable API end point {CONNECTION_URL}"
    +      );
    +    });
    +
    +    it("check template `invalid` being returned", () => {
    +      const tpl = new ResponseTemplate(
    +        "[RESPONSE]\r\ncode=200\r\nqueuetime=0\r\nEOF\r\n"
    +      );
    +      expect(tpl.getCode()).to.equal(423);
    +      expect(tpl.getDescription()).to.equal(
    +        "Invalid API response. Contact Support"
    +      );
    +    });
    +  });
    +
    +  describe("#.getHash", () => {
    +    it("check return value", () => {
    +      const h = new ResponseTemplate("").getHash();
    +      expect(h.CODE).to.equal("423");
    +      expect(h.DESCRIPTION).to.equal(
    +        "Empty API response. Probably unreachable API end point {CONNECTION_URL}"
    +      );
    +    });
    +  });
    +
    +  describe("#.getQueuetime", () => {
    +    it("check return value [n/a in API response]", () => {
    +      const tpl = new ResponseTemplate("");
    +      expect(tpl.getQueuetime()).to.equal(0);
    +    });
    +
    +    it("check return value [in API response]", () => {
    +      const tpl = new ResponseTemplate(
    +        "[RESPONSE]\r\ncode=423\r\ndescription=Empty API response. Probably unreachable API end point\r\nqueuetime=0\r\nEOF\r\n"
    +      );
    +      expect(tpl.getQueuetime()).to.equal(0);
    +    });
    +  });
    +
    +  describe("#.getRuntime", () => {
    +    it("check return value [n/a in API response]", () => {
    +      const tpl = new ResponseTemplate("");
    +      expect(tpl.getRuntime()).to.equal(0);
    +    });
    +
    +    it("check return value [in API response]", () => {
    +      const tpl = new ResponseTemplate(
    +        "[RESPONSE]\r\ncode=423\r\ndescription=Empty API response. Probably unreachable API end point\r\nruntime=0.12\r\nEOF\r\n"
    +      );
    +      expect(tpl.getRuntime()).to.equal(0.12);
    +    });
    +  });
    +
    +  describe("#.isPending", () => {
    +    it("check return value [n/a in API response]", () => {
    +      const tpl = new ResponseTemplate("");
    +      expect(tpl.isPending()).to.be.false;
    +    });
    +
    +    it("check return value [in API response]", () => {
    +      const tpl = new ResponseTemplate(
    +        "[RESPONSE]\r\ncode=200\r\ndescription=Command completed successfully\r\npending=1\r\nEOF\r\n"
    +      );
    +      expect(tpl.isPending()).to.be.true;
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/responsetemplatemanager.html b/docs/docco/src/responsetemplatemanager.html index 15c43fba..04a8065a 100644 --- a/docs/docco/src/responsetemplatemanager.html +++ b/docs/docco/src/responsetemplatemanager.html @@ -20,11 +20,21 @@ -
import { ResponseParser } from "./responseparser";
-import { ResponseTemplate } from "./responsetemplate";
+            
import { ResponseParser } from "./responseparser.js";
+import { ResponseTemplate } from "./responsetemplate.js";
 
 /**
  * ResponseTemplateManager Singleton Class
diff --git a/docs/docco/src/responsetemplatemanager.spec.html b/docs/docco/src/responsetemplatemanager.spec.html
new file mode 100644
index 00000000..991c1dc3
--- /dev/null
+++ b/docs/docco/src/responsetemplatemanager.spec.html
@@ -0,0 +1,205 @@
+
+
+
+
+  responsetemplatemanager.spec.ts
+  
+  
+  
+
+
+  
+
+ + + +
    + +
  • +
    +

    responsetemplatemanager.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { ResponseTemplate } from "./responsetemplate.js";
    +import { ResponseTemplateManager } from "./responsetemplatemanager.js";
    +
    +const expect = chai.expect;
    +let rtm: ResponseTemplateManager;
    +
    +before(() => {
    +  rtm = ResponseTemplateManager.getInstance();
    +});
    +
    +describe("ResponseTemplateManager class", function () {
    +  this.slow(1000);
    +
    +  describe("#.getTemplate", () => {
    +    it("check return value [template not found]", () => {
    +      const tpl = rtm.getTemplate("IwontExist");
    +      expect(tpl.getCode()).to.equal(500);
    +      expect(tpl.getDescription()).to.equal("Response Template not found");
    +    });
    +  });
    +
    +  describe("#.getTemplates", () => {
    +    it("check return value", () => {
    +      const defaultones = [
    +        "404",
    +        "500",
    +        "error",
    +        "httperror",
    +        "invalid",
    +        "empty",
    +        "unauthorized",
    +        "expired",
    +      ];
    +      expect(rtm.getTemplates()).to.include.all.keys(defaultones);
    +    });
    +  });
    +
    +  describe("#.isTemplateMatchHash", () => {
    +    it("check return value [matched]", () => {
    +      const tpl = new ResponseTemplate("");
    +      expect(rtm.isTemplateMatchHash(tpl.getHash(), "empty")).to.be.true;
    +    });
    +  });
    +
    +  describe("#.isTemplateMatchPlain", () => {
    +    it("check return value [matched]", () => {
    +      const tpl = new ResponseTemplate("");
    +      expect(rtm.isTemplateMatchPlain(tpl.getPlain(), "empty")).to.be.true;
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/docco/src/socketconfig.html b/docs/docco/src/socketconfig.html index 2fe8a4bc..20aff14a 100644 --- a/docs/docco/src/socketconfig.html +++ b/docs/docco/src/socketconfig.html @@ -20,11 +20,21 @@
+ + src/apiclient.spec.ts + + + src/apiclient.ts + + src/column.spec.ts + + + src/column.ts @@ -35,6 +45,11 @@ + + src/index.spec.ts + + + src/index.ts @@ -45,31 +60,61 @@ + + src/record.spec.ts + + + src/record.ts + + src/response.spec.ts + + + src/response.ts + + src/responseparser.spec.ts + + + src/responseparser.ts + + src/responsetemplate.spec.ts + + + src/responsetemplate.ts + + src/responsetemplatemanager.spec.ts + + + src/responsetemplatemanager.ts + + src/socketconfig.spec.ts + + + src/socketconfig.ts diff --git a/docs/docco/src/socketconfig.spec.html b/docs/docco/src/socketconfig.spec.html new file mode 100644 index 00000000..77c40073 --- /dev/null +++ b/docs/docco/src/socketconfig.spec.html @@ -0,0 +1,167 @@ + + + + + socketconfig.spec.ts + + + + + +
+
+ + + +
    + +
  • +
    +

    socketconfig.spec.ts

    +
    +
  • + + + +
  • +
    + +
    + § +
    + +
    + +
    import chai from "chai";
    +import "mocha";
    +import { SocketConfig } from "./socketconfig.js";
    +const expect = chai.expect;
    +
    +describe("SocketConfig class", function () {
    +  this.slow(1000);
    +
    +  describe("#.getPOSTData", () => {
    +    it("check return value [no settings made]", () => {
    +      const d = new SocketConfig().getPOSTData();
    +      expect(d).to.be.empty;
    +    });
    +  });
    +});
    + +
  • + +
+
+ + diff --git a/docs/typedoc/assets/highlight.css b/docs/typedoc/assets/highlight.css index 6dd4eef7..5674cf39 100644 --- a/docs/typedoc/assets/highlight.css +++ b/docs/typedoc/assets/highlight.css @@ -1,5 +1,5 @@ :root { - --light-code-background: #F5F5F5; + --light-code-background: #FFFFFF; --dark-code-background: #1E1E1E; } @@ -11,11 +11,11 @@ --code-background: var(--dark-code-background); } } -body.light { +:root[data-theme='light'] { --code-background: var(--light-code-background); } -body.dark { +:root[data-theme='dark'] { --code-background: var(--dark-code-background); } diff --git a/docs/typedoc/assets/icons.css b/docs/typedoc/assets/icons.css deleted file mode 100644 index 776a3562..00000000 --- a/docs/typedoc/assets/icons.css +++ /dev/null @@ -1,1043 +0,0 @@ -.tsd-kind-icon { - display: block; - position: relative; - padding-left: 20px; - text-indent: -20px; -} -.tsd-kind-icon:before { - content: ""; - display: inline-block; - vertical-align: middle; - width: 17px; - height: 17px; - margin: 0 3px 2px 0; - background-image: url(./icons.png); -} -@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { - .tsd-kind-icon:before { - background-image: url(./icons@2x.png); - background-size: 238px 204px; - } -} - -.tsd-signature.tsd-kind-icon:before { - background-position: 0 -153px; -} - -.tsd-kind-object-literal > .tsd-kind-icon:before { - background-position: 0px -17px; -} -.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -17px; -} -.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -17px; -} - -.tsd-kind-class > .tsd-kind-icon:before { - background-position: 0px -34px; -} -.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -34px; -} -.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -34px; -} - -.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -51px; -} -.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -17px -51px; -} -.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -51px; -} - -.tsd-kind-interface > .tsd-kind-icon:before { - background-position: 0px -68px; -} -.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -68px; -} -.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -68px; -} - -.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -85px; -} -.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -17px -85px; -} -.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private - > .tsd-kind-icon:before { - background-position: -34px -85px; -} - -.tsd-kind-namespace > .tsd-kind-icon:before { - background-position: 0px -102px; -} -.tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -102px; -} -.tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -102px; -} - -.tsd-kind-module > .tsd-kind-icon:before { - background-position: 0px -102px; -} -.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -102px; -} -.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -102px; -} - -.tsd-kind-enum > .tsd-kind-icon:before { - background-position: 0px -119px; -} -.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -119px; -} -.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -119px; -} - -.tsd-kind-enum-member > .tsd-kind-icon:before { - background-position: 0px -136px; -} -.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -136px; -} -.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -136px; -} - -.tsd-kind-signature > .tsd-kind-icon:before { - background-position: 0px -153px; -} -.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -153px; -} -.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -153px; -} - -.tsd-kind-type-alias > .tsd-kind-icon:before { - background-position: 0px -170px; -} -.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -170px; -} -.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -170px; -} - -.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -187px; -} -.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -17px -187px; -} -.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private - > .tsd-kind-icon:before { - background-position: -34px -187px; -} - -.tsd-kind-variable > .tsd-kind-icon:before { - background-position: -136px -0px; -} -.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -0px; -} -.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -0px; -} -.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -0px; -} -.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -0px; -} -.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -0px; -} - -.tsd-kind-property > .tsd-kind-icon:before { - background-position: -136px -0px; -} -.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -0px; -} -.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -0px; -} -.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -0px; -} -.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -0px; -} -.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -0px; -} - -.tsd-kind-get-signature > .tsd-kind-icon:before { - background-position: -136px -17px; -} -.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -17px; -} -.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -17px; -} - -.tsd-kind-set-signature > .tsd-kind-icon:before { - background-position: -136px -34px; -} -.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -34px; -} -.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -34px; -} - -.tsd-kind-accessor > .tsd-kind-icon:before { - background-position: -136px -51px; -} -.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -51px; -} -.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -51px; -} - -.tsd-kind-function > .tsd-kind-icon:before { - background-position: -136px -68px; -} -.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; -} -.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; -} -.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -68px; -} -.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; -} -.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -68px; -} - -.tsd-kind-method > .tsd-kind-icon:before { - background-position: -136px -68px; -} -.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; -} -.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; -} -.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -68px; -} -.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; -} -.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -68px; -} - -.tsd-kind-call-signature > .tsd-kind-icon:before { - background-position: -136px -68px; -} -.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; -} -.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -68px; -} - -.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: -136px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -153px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class - > .tsd-kind-icon:before { - background-position: -51px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum - > .tsd-kind-icon:before { - background-position: -170px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -85px; -} - -.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: -136px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -153px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class - > .tsd-kind-icon:before { - background-position: -51px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum - > .tsd-kind-icon:before { - background-position: -170px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -85px; -} - -.tsd-kind-constructor > .tsd-kind-icon:before { - background-position: -136px -102px; -} -.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -102px; -} -.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -102px; -} - -.tsd-kind-constructor-signature > .tsd-kind-icon:before { - background-position: -136px -102px; -} -.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -102px; -} -.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -102px; -} - -.tsd-kind-index-signature > .tsd-kind-icon:before { - background-position: -136px -119px; -} -.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -119px; -} -.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -119px; -} - -.tsd-kind-event > .tsd-kind-icon:before { - background-position: -136px -136px; -} -.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -136px; -} -.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; -} -.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; -} -.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -136px; -} -.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -136px; -} -.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; -} -.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -136px; -} -.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -136px; -} - -.tsd-is-static > .tsd-kind-icon:before { - background-position: -136px -153px; -} -.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -153px; -} -.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; -} -.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; -} -.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -153px; -} -.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -153px; -} -.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; -} -.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -153px; -} -.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -153px; -} - -.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { - background-position: -136px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -170px; -} - -.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { - background-position: -136px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -170px; -} - -.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { - background-position: -136px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -153px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class - > .tsd-kind-icon:before { - background-position: -51px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum - > .tsd-kind-icon:before { - background-position: -170px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -170px; -} - -.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { - background-position: -136px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -187px; -} diff --git a/docs/typedoc/assets/icons.png b/docs/typedoc/assets/icons.png deleted file mode 100644 index 3836d5fe..00000000 Binary files a/docs/typedoc/assets/icons.png and /dev/null differ diff --git a/docs/typedoc/assets/icons@2x.png b/docs/typedoc/assets/icons@2x.png deleted file mode 100644 index 5a209e2f..00000000 Binary files a/docs/typedoc/assets/icons@2x.png and /dev/null differ diff --git a/docs/typedoc/assets/main.js b/docs/typedoc/assets/main.js index bd45452d..c815b334 100644 --- a/docs/typedoc/assets/main.js +++ b/docs/typedoc/assets/main.js @@ -1,5 +1,7 @@ -(()=>{var Ce=Object.create;var ue=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!_e.call(t,i)&&i!==r&&ue(t,i,{get:()=>e[i],enumerable:!(n=Pe(e,i))||n.enumerable});return t};var Fe=(t,e,r)=>(r=t!=null?Ce(Re(t)):{},De(e||!t||!t.__esModule?ue(r,"default",{value:t,enumerable:!0}):r,t));var pe=Me((de,fe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,u],h.index=s.length,s.push(new t.Token(n.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,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?h+=2:a==l&&(r+=n[u+1]*i[h+1],u+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof de=="object"?fe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ce=[];function N(t,e){ce.push({selector:e,constructor:t})}var Y=class{constructor(){this.createComponents(document.body)}createComponents(e){ce.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var k=class{constructor(e){this.el=e.el}};var J=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ie=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.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onScroll(){this.scrollTop=window.scrollY||0;let r=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(r),this.hideShowToolbar()}hideShowToolbar(){var n;let r=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,r!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(n=this.secondaryNav)==null||n.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},Q=ie;Q.instance=new ie;var X=class extends k{constructor(r){super(r);this.anchors=[];this.index=-1;Q.instance.addEventListener("resize",()=>this.onResize()),Q.instance.addEventListener("scroll",n=>this.onScroll(n)),this.createAnchors()}createAnchors(){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substr(0,r.indexOf("#"))),this.el.querySelectorAll("a").forEach(n=>{let i=n.href;if(i.indexOf("#")==-1||i.substr(0,r.length)!=r)return;let s=i.substr(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=n.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let r;for(let i=0,s=this.anchors.length;ii.position-s.position);let n=new CustomEvent("scroll",{detail:{scrollTop:Q.instance.scrollTop}});this.onScroll(n)}onScroll(r){let n=r.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>n;)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 he=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var ge=Fe(pe());function ye(){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 r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ae(t,n,r,s)}function Ae(t,e,r,n){r.addEventListener("input",he(()=>{He(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?ze(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function Ve(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ge.Index.load(window.searchData.index))}function He(t,e,r,n){var o,a;if(Ve(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let l=0;lu.score-l.score);for(let l=0,u=Math.min(10,s.length);l${ve(h.parent,i)}.${f}`);let p=document.createElement("li");p.classList.value=(a=h.classes)!=null?a:"";let E=document.createElement("a");E.href=n.base+h.url,E.classList.add("tsd-kind-icon"),E.innerHTML=f,p.append(E),e.appendChild(p)}}function me(t,e){var n,i;let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let s=r;if(e===1)do s=(n=s.nextElementSibling)!=null?n:void 0;while(s instanceof HTMLElement&&s.offsetParent==null);else do s=(i=s.previousElementSibling)!=null?i:void 0;while(s instanceof HTMLElement&&s.offsetParent==null);s&&(r.classList.remove("current"),s.classList.add("current"))}}function ze(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(se(t.substring(s,o)),`${se(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(se(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function se(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var oe=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},Z=class extends k{constructor(r){super(r);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(n=>{n.addEventListener("touchstart",i=>this.onClick(i)),n.addEventListener("click",i=>this.onClick(i))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(r){if(r<0&&(r=0),r>this.groups.length-1&&(r=this.groups.length-1),this.index==r)return;let n=this.groups[r];if(this.index>-1){let i=this.groups[this.index];i.removeClass("current").addClass("fade-out"),n.addClass("current"),n.addClass("fade-in"),Q.instance.triggerResize(),setTimeout(()=>{i.removeClass("fade-out"),n.removeClass("fade-in")},300)}else n.addClass("current"),Q.instance.triggerResize();this.index=r}createGroups(){let r=this.el.children;if(r.length<2)return;this.container=this.el.nextElementSibling;let n=this.container.children;this.groups=[];for(let i=0;i{n.signature===r.currentTarget&&this.setIndex(i)})}};var C="mousedown",Le="mousemove",_="mouseup",K={x:0,y:0},xe=!1,ae=!1,je=!1,A=!1,Ee=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Ee?"is-mobile":"not-mobile");Ee&&"ontouchstart"in document.documentElement&&(je=!0,C="touchstart",Le="touchmove",_="touchend");document.addEventListener(C,t=>{ae=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;K.y=e.pageY||0,K.x=e.pageX||0});document.addEventListener(Le,t=>{if(!!ae&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=K.x-(e.pageX||0),n=K.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ae=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var ee=class extends k{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(C,n=>this.onDocumentPointerDown(n)),document.addEventListener(_,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){A||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!A&&this.active&&r.target.closest(".col-menu")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substr(0,i.indexOf("#"))),n.href.substr(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},re=class extends te{initialize(){let r=document.querySelector("#tsd-filter-"+this.key);!r||(this.checkbox=r,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(r,n){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(r){return r=="true"}toLocalStorage(r){return r?"true":"false"}},le=class extends te{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let r=document.querySelector("#tsd-filter-"+this.key);if(!r)return;this.select=r;let n=()=>{this.select.classList.add("active")},i=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,n),this.select.addEventListener("mouseover",n),this.select.addEventListener("mouseleave",i),this.select.querySelectorAll("li").forEach(s=>{s.addEventListener(_,o=>{r.classList.remove("active"),this.setValue(o.target.dataset.value||"")})}),document.addEventListener(C,s=>{this.select.contains(s.target)||this.select.classList.remove("active")})}handleValueChange(r,n){this.select.querySelectorAll("li.selected").forEach(o=>{o.classList.remove("selected")});let i=this.select.querySelector('li[data-value="'+n+'"]'),s=this.select.querySelector(".tsd-select-label");i&&s&&(i.classList.add("selected"),s.textContent=i.textContent),document.documentElement.classList.remove("toggle-"+r),document.documentElement.classList.add("toggle-"+n)}fromLocalStorage(r){return r}toLocalStorage(r){return r}},j=class extends k{constructor(r){super(r);this.optionVisibility=new le("visibility","private"),this.optionInherited=new re("inherited",!0),this.optionExternals=new re("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function we(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,be(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),be(t.value)})}function be(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}ye();N(X,".menu-highlight");N(Z,".tsd-signatures");N(ee,"a[data-toggle]");j.isSupported()?N(j,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&we(Te);var Be=new Y;Object.defineProperty(window,"app",{value:Be});})(); +"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 j(t,e){le.push({selector:e,constructor:t})}var Y=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r}),r.dataset.hasInstance=String(!0))})})}};var k=class{constructor(e){this.el=e.el}};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 k{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(...r)=>{clearTimeout(n),n=setTimeout(()=>t(r),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(()=>{Ae(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"?fe(e,-1):s.key==="ArrowDown"?fe(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 He(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 Ae(t,e,n,r){if(He(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${pe(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 fe(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 pe(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",B="mouseup",Z={x:0,y:0},ge=!1,se=!1,je=!1,H=!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&&(je=!0,F="touchstart",ye="touchmove",B="touchend");document.addEventListener(F,t=>{se=!0,H=!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&&!H){let e=F=="touchstart"?t.targetTouches[0]:t,n=Z.x-(e.pageX||0),r=Z.y-(e.pageY||0);H=Math.sqrt(n*n+r*r)>10}});document.addEventListener(B,()=>{se=!1});document.addEventListener("click",t=>{ge&&(t.preventDefault(),t.stopImmediatePropagation(),ge=!1)});var K=class extends k{constructor(n){super(n);this.className=this.el.dataset.toggle||"",this.el.addEventListener(B,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(F,r=>this.onDocumentPointerDown(r)),document.addEventListener(B,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){H||(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(!H&&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 k{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),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 k{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();j(X,".menu-highlight");j(K,"a[data-toggle]");j(te,".tsd-index-accordion");j(ee,".tsd-filter-item input[type=checkbox]");var Se=document.getElementById("theme");Se&&be(Se);var Be=new Y;Object.defineProperty(window,"app",{value:Be});})(); /*! * lunr.Builder * Copyright (C) 2020 Oliver Nightingale diff --git a/docs/typedoc/assets/search.js b/docs/typedoc/assets/search.js index 9c7f290d..c2a49b4f 100644 --- a/docs/typedoc/assets/search.js +++ b/docs/typedoc/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":2,\"name\":\"apiclient\",\"url\":\"modules/apiclient.html\",\"classes\":\"tsd-kind-module\"},{\"id\":1,\"kind\":32,\"name\":\"ISPAPI_CONNECTION_URL_PROXY\",\"url\":\"modules/apiclient.html#ISPAPI_CONNECTION_URL_PROXY\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"id\":2,\"kind\":32,\"name\":\"ISPAPI_CONNECTION_URL_LIVE\",\"url\":\"modules/apiclient.html#ISPAPI_CONNECTION_URL_LIVE\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"id\":3,\"kind\":32,\"name\":\"ISPAPI_CONNECTION_URL_OTE\",\"url\":\"modules/apiclient.html#ISPAPI_CONNECTION_URL_OTE\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"id\":4,\"kind\":128,\"name\":\"APIClient\",\"url\":\"classes/apiclient.APIClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"id\":5,\"kind\":1024,\"name\":\"socketTimeout\",\"url\":\"classes/apiclient.APIClient.html#socketTimeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"apiclient.APIClient\"},{\"id\":6,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/apiclient.APIClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":7,\"kind\":1024,\"name\":\"ua\",\"url\":\"classes/apiclient.APIClient.html#ua\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":8,\"kind\":1024,\"name\":\"socketURL\",\"url\":\"classes/apiclient.APIClient.html#socketURL\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":9,\"kind\":1024,\"name\":\"socketConfig\",\"url\":\"classes/apiclient.APIClient.html#socketConfig\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":10,\"kind\":1024,\"name\":\"debugMode\",\"url\":\"classes/apiclient.APIClient.html#debugMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":11,\"kind\":1024,\"name\":\"curlopts\",\"url\":\"classes/apiclient.APIClient.html#curlopts\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":12,\"kind\":1024,\"name\":\"logger\",\"url\":\"classes/apiclient.APIClient.html#logger\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":13,\"kind\":2048,\"name\":\"setCustomLogger\",\"url\":\"classes/apiclient.APIClient.html#setCustomLogger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":14,\"kind\":2048,\"name\":\"setDefaultLogger\",\"url\":\"classes/apiclient.APIClient.html#setDefaultLogger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":15,\"kind\":2048,\"name\":\"enableDebugMode\",\"url\":\"classes/apiclient.APIClient.html#enableDebugMode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":16,\"kind\":2048,\"name\":\"disableDebugMode\",\"url\":\"classes/apiclient.APIClient.html#disableDebugMode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":17,\"kind\":2048,\"name\":\"getSession\",\"url\":\"classes/apiclient.APIClient.html#getSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":18,\"kind\":2048,\"name\":\"getURL\",\"url\":\"classes/apiclient.APIClient.html#getURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":19,\"kind\":2048,\"name\":\"setUserAgent\",\"url\":\"classes/apiclient.APIClient.html#setUserAgent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":20,\"kind\":2048,\"name\":\"getUserAgent\",\"url\":\"classes/apiclient.APIClient.html#getUserAgent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":21,\"kind\":2048,\"name\":\"setProxy\",\"url\":\"classes/apiclient.APIClient.html#setProxy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":22,\"kind\":2048,\"name\":\"getProxy\",\"url\":\"classes/apiclient.APIClient.html#getProxy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":23,\"kind\":2048,\"name\":\"setReferer\",\"url\":\"classes/apiclient.APIClient.html#setReferer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":24,\"kind\":2048,\"name\":\"getReferer\",\"url\":\"classes/apiclient.APIClient.html#getReferer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":25,\"kind\":2048,\"name\":\"getVersion\",\"url\":\"classes/apiclient.APIClient.html#getVersion\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":26,\"kind\":2048,\"name\":\"saveSession\",\"url\":\"classes/apiclient.APIClient.html#saveSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":27,\"kind\":2048,\"name\":\"reuseSession\",\"url\":\"classes/apiclient.APIClient.html#reuseSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":28,\"kind\":2048,\"name\":\"setURL\",\"url\":\"classes/apiclient.APIClient.html#setURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":29,\"kind\":2048,\"name\":\"setOTP\",\"url\":\"classes/apiclient.APIClient.html#setOTP\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":30,\"kind\":2048,\"name\":\"setSession\",\"url\":\"classes/apiclient.APIClient.html#setSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":31,\"kind\":2048,\"name\":\"setRemoteIPAddress\",\"url\":\"classes/apiclient.APIClient.html#setRemoteIPAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":32,\"kind\":2048,\"name\":\"setCredentials\",\"url\":\"classes/apiclient.APIClient.html#setCredentials\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":33,\"kind\":2048,\"name\":\"setRoleCredentials\",\"url\":\"classes/apiclient.APIClient.html#setRoleCredentials\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":34,\"kind\":2048,\"name\":\"login\",\"url\":\"classes/apiclient.APIClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":35,\"kind\":2048,\"name\":\"loginExtended\",\"url\":\"classes/apiclient.APIClient.html#loginExtended\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":36,\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/apiclient.APIClient.html#logout\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":37,\"kind\":2048,\"name\":\"request\",\"url\":\"classes/apiclient.APIClient.html#request\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":38,\"kind\":2048,\"name\":\"requestNextResponsePage\",\"url\":\"classes/apiclient.APIClient.html#requestNextResponsePage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":39,\"kind\":2048,\"name\":\"requestAllResponsePages\",\"url\":\"classes/apiclient.APIClient.html#requestAllResponsePages\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":40,\"kind\":2048,\"name\":\"setUserView\",\"url\":\"classes/apiclient.APIClient.html#setUserView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":41,\"kind\":2048,\"name\":\"resetUserView\",\"url\":\"classes/apiclient.APIClient.html#resetUserView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":42,\"kind\":2048,\"name\":\"useHighPerformanceConnectionSetup\",\"url\":\"classes/apiclient.APIClient.html#useHighPerformanceConnectionSetup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":43,\"kind\":2048,\"name\":\"useDefaultConnectionSetup\",\"url\":\"classes/apiclient.APIClient.html#useDefaultConnectionSetup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":44,\"kind\":2048,\"name\":\"useOTESystem\",\"url\":\"classes/apiclient.APIClient.html#useOTESystem\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":45,\"kind\":2048,\"name\":\"useLIVESystem\",\"url\":\"classes/apiclient.APIClient.html#useLIVESystem\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":46,\"kind\":2048,\"name\":\"getPOSTData\",\"url\":\"classes/apiclient.APIClient.html#getPOSTData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"id\":47,\"kind\":2048,\"name\":\"flattenCommand\",\"url\":\"classes/apiclient.APIClient.html#flattenCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":48,\"kind\":2048,\"name\":\"autoIDNConvert\",\"url\":\"classes/apiclient.APIClient.html#autoIDNConvert\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"id\":49,\"kind\":2,\"name\":\"column\",\"url\":\"modules/column.html\",\"classes\":\"tsd-kind-module\"},{\"id\":50,\"kind\":128,\"name\":\"Column\",\"url\":\"classes/column.Column.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"column\"},{\"id\":51,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/column.Column.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"id\":52,\"kind\":1024,\"name\":\"length\",\"url\":\"classes/column.Column.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"id\":53,\"kind\":1024,\"name\":\"key\",\"url\":\"classes/column.Column.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"column.Column\"},{\"id\":54,\"kind\":1024,\"name\":\"data\",\"url\":\"classes/column.Column.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"column.Column\"},{\"id\":55,\"kind\":2048,\"name\":\"getKey\",\"url\":\"classes/column.Column.html#getKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"id\":56,\"kind\":2048,\"name\":\"getData\",\"url\":\"classes/column.Column.html#getData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"id\":57,\"kind\":2048,\"name\":\"getDataByIndex\",\"url\":\"classes/column.Column.html#getDataByIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"id\":58,\"kind\":2048,\"name\":\"hasDataIndex\",\"url\":\"classes/column.Column.html#hasDataIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"column.Column\"},{\"id\":59,\"kind\":2,\"name\":\"customlogger\",\"url\":\"modules/customlogger.html\",\"classes\":\"tsd-kind-module\"},{\"id\":60,\"kind\":128,\"name\":\"CustomLogger\",\"url\":\"classes/customlogger.CustomLogger.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"customlogger\"},{\"id\":61,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/customlogger.CustomLogger.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"customlogger.CustomLogger\"},{\"id\":62,\"kind\":2048,\"name\":\"log\",\"url\":\"classes/customlogger.CustomLogger.html#log\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"customlogger.CustomLogger\"},{\"id\":63,\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"id\":64,\"kind\":2,\"name\":\"logger\",\"url\":\"modules/logger.html\",\"classes\":\"tsd-kind-module\"},{\"id\":65,\"kind\":128,\"name\":\"Logger\",\"url\":\"classes/logger.Logger.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"logger\"},{\"id\":66,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/logger.Logger.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"logger.Logger\"},{\"id\":67,\"kind\":2048,\"name\":\"log\",\"url\":\"classes/logger.Logger.html#log\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"logger.Logger\"},{\"id\":68,\"kind\":2,\"name\":\"record\",\"url\":\"modules/record.html\",\"classes\":\"tsd-kind-module\"},{\"id\":69,\"kind\":128,\"name\":\"Record\",\"url\":\"classes/record.Record.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"record\"},{\"id\":70,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/record.Record.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"record.Record\"},{\"id\":71,\"kind\":1024,\"name\":\"data\",\"url\":\"classes/record.Record.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"record.Record\"},{\"id\":72,\"kind\":2048,\"name\":\"getData\",\"url\":\"classes/record.Record.html#getData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"record.Record\"},{\"id\":73,\"kind\":2048,\"name\":\"getDataByKey\",\"url\":\"classes/record.Record.html#getDataByKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"record.Record\"},{\"id\":74,\"kind\":2048,\"name\":\"hasData\",\"url\":\"classes/record.Record.html#hasData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"record.Record\"},{\"id\":75,\"kind\":2,\"name\":\"response\",\"url\":\"modules/response.html\",\"classes\":\"tsd-kind-module\"},{\"id\":76,\"kind\":128,\"name\":\"Response\",\"url\":\"classes/response.Response.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"response\"},{\"id\":77,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/response.Response.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"response.Response\"},{\"id\":78,\"kind\":1024,\"name\":\"command\",\"url\":\"classes/response.Response.html#command\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":79,\"kind\":1024,\"name\":\"columnkeys\",\"url\":\"classes/response.Response.html#columnkeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":80,\"kind\":1024,\"name\":\"columns\",\"url\":\"classes/response.Response.html#columns\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":81,\"kind\":1024,\"name\":\"recordIndex\",\"url\":\"classes/response.Response.html#recordIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":82,\"kind\":1024,\"name\":\"records\",\"url\":\"classes/response.Response.html#records\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":83,\"kind\":2048,\"name\":\"addColumn\",\"url\":\"classes/response.Response.html#addColumn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":84,\"kind\":2048,\"name\":\"addRecord\",\"url\":\"classes/response.Response.html#addRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":85,\"kind\":2048,\"name\":\"getColumn\",\"url\":\"classes/response.Response.html#getColumn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":86,\"kind\":2048,\"name\":\"getColumnIndex\",\"url\":\"classes/response.Response.html#getColumnIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":87,\"kind\":2048,\"name\":\"getColumnKeys\",\"url\":\"classes/response.Response.html#getColumnKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":88,\"kind\":2048,\"name\":\"getColumns\",\"url\":\"classes/response.Response.html#getColumns\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":89,\"kind\":2048,\"name\":\"getCommand\",\"url\":\"classes/response.Response.html#getCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":90,\"kind\":2048,\"name\":\"getCommandPlain\",\"url\":\"classes/response.Response.html#getCommandPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":91,\"kind\":2048,\"name\":\"getCurrentPageNumber\",\"url\":\"classes/response.Response.html#getCurrentPageNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":92,\"kind\":2048,\"name\":\"getCurrentRecord\",\"url\":\"classes/response.Response.html#getCurrentRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":93,\"kind\":2048,\"name\":\"getFirstRecordIndex\",\"url\":\"classes/response.Response.html#getFirstRecordIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":94,\"kind\":2048,\"name\":\"getLastRecordIndex\",\"url\":\"classes/response.Response.html#getLastRecordIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":95,\"kind\":2048,\"name\":\"getListHash\",\"url\":\"classes/response.Response.html#getListHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":96,\"kind\":2048,\"name\":\"getNextRecord\",\"url\":\"classes/response.Response.html#getNextRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":97,\"kind\":2048,\"name\":\"getNextPageNumber\",\"url\":\"classes/response.Response.html#getNextPageNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":98,\"kind\":2048,\"name\":\"getNumberOfPages\",\"url\":\"classes/response.Response.html#getNumberOfPages\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":99,\"kind\":2048,\"name\":\"getPagination\",\"url\":\"classes/response.Response.html#getPagination\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":100,\"kind\":2048,\"name\":\"getPreviousPageNumber\",\"url\":\"classes/response.Response.html#getPreviousPageNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":101,\"kind\":2048,\"name\":\"getPreviousRecord\",\"url\":\"classes/response.Response.html#getPreviousRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":102,\"kind\":2048,\"name\":\"getRecord\",\"url\":\"classes/response.Response.html#getRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":103,\"kind\":2048,\"name\":\"getRecords\",\"url\":\"classes/response.Response.html#getRecords\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":104,\"kind\":2048,\"name\":\"getRecordsCount\",\"url\":\"classes/response.Response.html#getRecordsCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":105,\"kind\":2048,\"name\":\"getRecordsTotalCount\",\"url\":\"classes/response.Response.html#getRecordsTotalCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":106,\"kind\":2048,\"name\":\"getRecordsLimitation\",\"url\":\"classes/response.Response.html#getRecordsLimitation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":107,\"kind\":2048,\"name\":\"hasNextPage\",\"url\":\"classes/response.Response.html#hasNextPage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":108,\"kind\":2048,\"name\":\"hasPreviousPage\",\"url\":\"classes/response.Response.html#hasPreviousPage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":109,\"kind\":2048,\"name\":\"rewindRecordList\",\"url\":\"classes/response.Response.html#rewindRecordList\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"id\":110,\"kind\":2048,\"name\":\"hasColumn\",\"url\":\"classes/response.Response.html#hasColumn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":111,\"kind\":2048,\"name\":\"hasCurrentRecord\",\"url\":\"classes/response.Response.html#hasCurrentRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":112,\"kind\":2048,\"name\":\"hasNextRecord\",\"url\":\"classes/response.Response.html#hasNextRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":113,\"kind\":2048,\"name\":\"hasPreviousRecord\",\"url\":\"classes/response.Response.html#hasPreviousRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"id\":114,\"kind\":1024,\"name\":\"raw\",\"url\":\"classes/response.Response.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"response.Response\"},{\"id\":115,\"kind\":1024,\"name\":\"hash\",\"url\":\"classes/response.Response.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"response.Response\"},{\"id\":116,\"kind\":2048,\"name\":\"getCode\",\"url\":\"classes/response.Response.html#getCode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":117,\"kind\":2048,\"name\":\"getDescription\",\"url\":\"classes/response.Response.html#getDescription\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":118,\"kind\":2048,\"name\":\"getPlain\",\"url\":\"classes/response.Response.html#getPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":119,\"kind\":2048,\"name\":\"getQueuetime\",\"url\":\"classes/response.Response.html#getQueuetime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":120,\"kind\":2048,\"name\":\"getHash\",\"url\":\"classes/response.Response.html#getHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":121,\"kind\":2048,\"name\":\"getRuntime\",\"url\":\"classes/response.Response.html#getRuntime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":122,\"kind\":2048,\"name\":\"isError\",\"url\":\"classes/response.Response.html#isError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":123,\"kind\":2048,\"name\":\"isSuccess\",\"url\":\"classes/response.Response.html#isSuccess\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":124,\"kind\":2048,\"name\":\"isTmpError\",\"url\":\"classes/response.Response.html#isTmpError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":125,\"kind\":2048,\"name\":\"isPending\",\"url\":\"classes/response.Response.html#isPending\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"id\":126,\"kind\":2,\"name\":\"responseparser\",\"url\":\"modules/responseparser.html\",\"classes\":\"tsd-kind-module\"},{\"id\":127,\"kind\":32,\"name\":\"ResponseParser\",\"url\":\"modules/responseparser.html#ResponseParser\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"responseparser\"},{\"id\":128,\"kind\":2,\"name\":\"responsetemplate\",\"url\":\"modules/responsetemplate.html\",\"classes\":\"tsd-kind-module\"},{\"id\":129,\"kind\":128,\"name\":\"ResponseTemplate\",\"url\":\"classes/responsetemplate.ResponseTemplate.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"responsetemplate\"},{\"id\":130,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":131,\"kind\":1024,\"name\":\"raw\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":132,\"kind\":1024,\"name\":\"hash\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":133,\"kind\":2048,\"name\":\"getCode\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getCode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":134,\"kind\":2048,\"name\":\"getDescription\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getDescription\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":135,\"kind\":2048,\"name\":\"getPlain\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":136,\"kind\":2048,\"name\":\"getQueuetime\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getQueuetime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":137,\"kind\":2048,\"name\":\"getHash\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":138,\"kind\":2048,\"name\":\"getRuntime\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getRuntime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":139,\"kind\":2048,\"name\":\"isError\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":140,\"kind\":2048,\"name\":\"isSuccess\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isSuccess\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":141,\"kind\":2048,\"name\":\"isTmpError\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isTmpError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":142,\"kind\":2048,\"name\":\"isPending\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isPending\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"id\":143,\"kind\":2,\"name\":\"responsetemplatemanager\",\"url\":\"modules/responsetemplatemanager.html\",\"classes\":\"tsd-kind-module\"},{\"id\":144,\"kind\":128,\"name\":\"ResponseTemplateManager\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"responsetemplatemanager\"},{\"id\":145,\"kind\":2048,\"name\":\"getInstance\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#getInstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":146,\"kind\":1024,\"name\":\"instance\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#instance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":147,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-private\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":148,\"kind\":1024,\"name\":\"templates\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#templates\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":149,\"kind\":2048,\"name\":\"generateTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#generateTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":150,\"kind\":2048,\"name\":\"addTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#addTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":151,\"kind\":2048,\"name\":\"getTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#getTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":152,\"kind\":2048,\"name\":\"getTemplates\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#getTemplates\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":153,\"kind\":2048,\"name\":\"hasTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#hasTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":154,\"kind\":2048,\"name\":\"isTemplateMatchHash\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#isTemplateMatchHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":155,\"kind\":2048,\"name\":\"isTemplateMatchPlain\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#isTemplateMatchPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"id\":156,\"kind\":2,\"name\":\"socketconfig\",\"url\":\"modules/socketconfig.html\",\"classes\":\"tsd-kind-module\"},{\"id\":157,\"kind\":64,\"name\":\"fixedURLEnc\",\"url\":\"modules/socketconfig.html#fixedURLEnc\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"socketconfig\"},{\"id\":158,\"kind\":128,\"name\":\"SocketConfig\",\"url\":\"classes/socketconfig.SocketConfig.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"socketconfig\"},{\"id\":159,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/socketconfig.SocketConfig.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":160,\"kind\":1024,\"name\":\"entity\",\"url\":\"classes/socketconfig.SocketConfig.html#entity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":161,\"kind\":1024,\"name\":\"login\",\"url\":\"classes/socketconfig.SocketConfig.html#login\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":162,\"kind\":1024,\"name\":\"otp\",\"url\":\"classes/socketconfig.SocketConfig.html#otp\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":163,\"kind\":1024,\"name\":\"pw\",\"url\":\"classes/socketconfig.SocketConfig.html#pw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":164,\"kind\":1024,\"name\":\"remoteaddr\",\"url\":\"classes/socketconfig.SocketConfig.html#remoteaddr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":165,\"kind\":1024,\"name\":\"session\",\"url\":\"classes/socketconfig.SocketConfig.html#session\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":166,\"kind\":1024,\"name\":\"user\",\"url\":\"classes/socketconfig.SocketConfig.html#user\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":167,\"kind\":2048,\"name\":\"getPOSTData\",\"url\":\"classes/socketconfig.SocketConfig.html#getPOSTData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":168,\"kind\":2048,\"name\":\"getSession\",\"url\":\"classes/socketconfig.SocketConfig.html#getSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":169,\"kind\":2048,\"name\":\"getSystemEntity\",\"url\":\"classes/socketconfig.SocketConfig.html#getSystemEntity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":170,\"kind\":2048,\"name\":\"setLogin\",\"url\":\"classes/socketconfig.SocketConfig.html#setLogin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":171,\"kind\":2048,\"name\":\"setOTP\",\"url\":\"classes/socketconfig.SocketConfig.html#setOTP\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":172,\"kind\":2048,\"name\":\"setPassword\",\"url\":\"classes/socketconfig.SocketConfig.html#setPassword\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":173,\"kind\":2048,\"name\":\"setRemoteAddress\",\"url\":\"classes/socketconfig.SocketConfig.html#setRemoteAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":174,\"kind\":2048,\"name\":\"setSession\",\"url\":\"classes/socketconfig.SocketConfig.html#setSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":175,\"kind\":2048,\"name\":\"setSystemEntity\",\"url\":\"classes/socketconfig.SocketConfig.html#setSystemEntity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":176,\"kind\":2048,\"name\":\"setUser\",\"url\":\"classes/socketconfig.SocketConfig.html#setUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"id\":177,\"kind\":16777216,\"name\":\"APIClient\",\"url\":\"modules/index.html#APIClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":178,\"kind\":16777216,\"name\":\"Response\",\"url\":\"modules/index.html#Response\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":179,\"kind\":16777216,\"name\":\"ResponseTemplateManager\",\"url\":\"modules/index.html#ResponseTemplateManager\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,31.836]],[\"parent/0\",[]],[\"name/1\",[1,47.93]],[\"parent/1\",[0,3.101]],[\"name/2\",[2,47.93]],[\"parent/2\",[0,3.101]],[\"name/3\",[3,47.93]],[\"parent/3\",[0,3.101]],[\"name/4\",[0,31.836]],[\"parent/4\",[0,3.101]],[\"name/5\",[4,47.93]],[\"parent/5\",[5,1.367]],[\"name/6\",[6,29.472]],[\"parent/6\",[5,1.367]],[\"name/7\",[7,47.93]],[\"parent/7\",[5,1.367]],[\"name/8\",[8,47.93]],[\"parent/8\",[5,1.367]],[\"name/9\",[9,34.937]],[\"parent/9\",[5,1.367]],[\"name/10\",[10,47.93]],[\"parent/10\",[5,1.367]],[\"name/11\",[11,47.93]],[\"parent/11\",[5,1.367]],[\"name/12\",[12,36.944]],[\"parent/12\",[5,1.367]],[\"name/13\",[13,47.93]],[\"parent/13\",[5,1.367]],[\"name/14\",[14,47.93]],[\"parent/14\",[5,1.367]],[\"name/15\",[15,47.93]],[\"parent/15\",[5,1.367]],[\"name/16\",[16,47.93]],[\"parent/16\",[5,1.367]],[\"name/17\",[17,42.822]],[\"parent/17\",[5,1.367]],[\"name/18\",[18,47.93]],[\"parent/18\",[5,1.367]],[\"name/19\",[19,47.93]],[\"parent/19\",[5,1.367]],[\"name/20\",[20,47.93]],[\"parent/20\",[5,1.367]],[\"name/21\",[21,47.93]],[\"parent/21\",[5,1.367]],[\"name/22\",[22,47.93]],[\"parent/22\",[5,1.367]],[\"name/23\",[23,47.93]],[\"parent/23\",[5,1.367]],[\"name/24\",[24,47.93]],[\"parent/24\",[5,1.367]],[\"name/25\",[25,47.93]],[\"parent/25\",[5,1.367]],[\"name/26\",[26,47.93]],[\"parent/26\",[5,1.367]],[\"name/27\",[27,47.93]],[\"parent/27\",[5,1.367]],[\"name/28\",[28,47.93]],[\"parent/28\",[5,1.367]],[\"name/29\",[29,42.822]],[\"parent/29\",[5,1.367]],[\"name/30\",[30,42.822]],[\"parent/30\",[5,1.367]],[\"name/31\",[31,47.93]],[\"parent/31\",[5,1.367]],[\"name/32\",[32,47.93]],[\"parent/32\",[5,1.367]],[\"name/33\",[33,47.93]],[\"parent/33\",[5,1.367]],[\"name/34\",[34,42.822]],[\"parent/34\",[5,1.367]],[\"name/35\",[35,47.93]],[\"parent/35\",[5,1.367]],[\"name/36\",[36,47.93]],[\"parent/36\",[5,1.367]],[\"name/37\",[37,47.93]],[\"parent/37\",[5,1.367]],[\"name/38\",[38,47.93]],[\"parent/38\",[5,1.367]],[\"name/39\",[39,47.93]],[\"parent/39\",[5,1.367]],[\"name/40\",[40,47.93]],[\"parent/40\",[5,1.367]],[\"name/41\",[41,47.93]],[\"parent/41\",[5,1.367]],[\"name/42\",[42,47.93]],[\"parent/42\",[5,1.367]],[\"name/43\",[43,47.93]],[\"parent/43\",[5,1.367]],[\"name/44\",[44,47.93]],[\"parent/44\",[5,1.367]],[\"name/45\",[45,47.93]],[\"parent/45\",[5,1.367]],[\"name/46\",[46,42.822]],[\"parent/46\",[5,1.367]],[\"name/47\",[47,47.93]],[\"parent/47\",[5,1.367]],[\"name/48\",[48,47.93]],[\"parent/48\",[5,1.367]],[\"name/49\",[49,39.457]],[\"parent/49\",[]],[\"name/50\",[49,39.457]],[\"parent/50\",[49,3.843]],[\"name/51\",[6,29.472]],[\"parent/51\",[50,2.979]],[\"name/52\",[51,47.93]],[\"parent/52\",[50,2.979]],[\"name/53\",[52,47.93]],[\"parent/53\",[50,2.979]],[\"name/54\",[53,42.822]],[\"parent/54\",[50,2.979]],[\"name/55\",[54,47.93]],[\"parent/55\",[50,2.979]],[\"name/56\",[55,42.822]],[\"parent/56\",[50,2.979]],[\"name/57\",[56,47.93]],[\"parent/57\",[50,2.979]],[\"name/58\",[57,47.93]],[\"parent/58\",[50,2.979]],[\"name/59\",[58,39.457]],[\"parent/59\",[]],[\"name/60\",[58,39.457]],[\"parent/60\",[58,3.843]],[\"name/61\",[6,29.472]],[\"parent/61\",[59,4.171]],[\"name/62\",[60,42.822]],[\"parent/62\",[59,4.171]],[\"name/63\",[61,36.944]],[\"parent/63\",[]],[\"name/64\",[12,36.944]],[\"parent/64\",[]],[\"name/65\",[12,36.944]],[\"parent/65\",[12,3.599]],[\"name/66\",[6,29.472]],[\"parent/66\",[62,4.171]],[\"name/67\",[60,42.822]],[\"parent/67\",[62,4.171]],[\"name/68\",[63,39.457]],[\"parent/68\",[]],[\"name/69\",[63,39.457]],[\"parent/69\",[63,3.843]],[\"name/70\",[6,29.472]],[\"parent/70\",[64,3.403]],[\"name/71\",[53,42.822]],[\"parent/71\",[64,3.403]],[\"name/72\",[55,42.822]],[\"parent/72\",[64,3.403]],[\"name/73\",[65,47.93]],[\"parent/73\",[64,3.403]],[\"name/74\",[66,47.93]],[\"parent/74\",[64,3.403]],[\"name/75\",[67,36.944]],[\"parent/75\",[]],[\"name/76\",[67,36.944]],[\"parent/76\",[67,3.599]],[\"name/77\",[6,29.472]],[\"parent/77\",[68,1.263]],[\"name/78\",[69,47.93]],[\"parent/78\",[68,1.263]],[\"name/79\",[70,47.93]],[\"parent/79\",[68,1.263]],[\"name/80\",[71,47.93]],[\"parent/80\",[68,1.263]],[\"name/81\",[72,47.93]],[\"parent/81\",[68,1.263]],[\"name/82\",[73,47.93]],[\"parent/82\",[68,1.263]],[\"name/83\",[74,47.93]],[\"parent/83\",[68,1.263]],[\"name/84\",[75,47.93]],[\"parent/84\",[68,1.263]],[\"name/85\",[76,47.93]],[\"parent/85\",[68,1.263]],[\"name/86\",[77,47.93]],[\"parent/86\",[68,1.263]],[\"name/87\",[78,47.93]],[\"parent/87\",[68,1.263]],[\"name/88\",[79,47.93]],[\"parent/88\",[68,1.263]],[\"name/89\",[80,47.93]],[\"parent/89\",[68,1.263]],[\"name/90\",[81,47.93]],[\"parent/90\",[68,1.263]],[\"name/91\",[82,47.93]],[\"parent/91\",[68,1.263]],[\"name/92\",[83,47.93]],[\"parent/92\",[68,1.263]],[\"name/93\",[84,47.93]],[\"parent/93\",[68,1.263]],[\"name/94\",[85,47.93]],[\"parent/94\",[68,1.263]],[\"name/95\",[86,47.93]],[\"parent/95\",[68,1.263]],[\"name/96\",[87,47.93]],[\"parent/96\",[68,1.263]],[\"name/97\",[88,47.93]],[\"parent/97\",[68,1.263]],[\"name/98\",[89,47.93]],[\"parent/98\",[68,1.263]],[\"name/99\",[90,47.93]],[\"parent/99\",[68,1.263]],[\"name/100\",[91,47.93]],[\"parent/100\",[68,1.263]],[\"name/101\",[92,47.93]],[\"parent/101\",[68,1.263]],[\"name/102\",[93,47.93]],[\"parent/102\",[68,1.263]],[\"name/103\",[94,47.93]],[\"parent/103\",[68,1.263]],[\"name/104\",[95,47.93]],[\"parent/104\",[68,1.263]],[\"name/105\",[96,47.93]],[\"parent/105\",[68,1.263]],[\"name/106\",[97,47.93]],[\"parent/106\",[68,1.263]],[\"name/107\",[98,47.93]],[\"parent/107\",[68,1.263]],[\"name/108\",[99,47.93]],[\"parent/108\",[68,1.263]],[\"name/109\",[100,47.93]],[\"parent/109\",[68,1.263]],[\"name/110\",[101,47.93]],[\"parent/110\",[68,1.263]],[\"name/111\",[102,47.93]],[\"parent/111\",[68,1.263]],[\"name/112\",[103,47.93]],[\"parent/112\",[68,1.263]],[\"name/113\",[104,47.93]],[\"parent/113\",[68,1.263]],[\"name/114\",[105,42.822]],[\"parent/114\",[68,1.263]],[\"name/115\",[106,42.822]],[\"parent/115\",[68,1.263]],[\"name/116\",[107,42.822]],[\"parent/116\",[68,1.263]],[\"name/117\",[108,42.822]],[\"parent/117\",[68,1.263]],[\"name/118\",[109,42.822]],[\"parent/118\",[68,1.263]],[\"name/119\",[110,42.822]],[\"parent/119\",[68,1.263]],[\"name/120\",[111,42.822]],[\"parent/120\",[68,1.263]],[\"name/121\",[112,42.822]],[\"parent/121\",[68,1.263]],[\"name/122\",[113,42.822]],[\"parent/122\",[68,1.263]],[\"name/123\",[114,42.822]],[\"parent/123\",[68,1.263]],[\"name/124\",[115,42.822]],[\"parent/124\",[68,1.263]],[\"name/125\",[116,42.822]],[\"parent/125\",[68,1.263]],[\"name/126\",[117,39.457]],[\"parent/126\",[]],[\"name/127\",[117,39.457]],[\"parent/127\",[117,3.843]],[\"name/128\",[118,39.457]],[\"parent/128\",[]],[\"name/129\",[118,39.457]],[\"parent/129\",[118,3.843]],[\"name/130\",[6,29.472]],[\"parent/130\",[119,2.528]],[\"name/131\",[105,42.822]],[\"parent/131\",[119,2.528]],[\"name/132\",[106,42.822]],[\"parent/132\",[119,2.528]],[\"name/133\",[107,42.822]],[\"parent/133\",[119,2.528]],[\"name/134\",[108,42.822]],[\"parent/134\",[119,2.528]],[\"name/135\",[109,42.822]],[\"parent/135\",[119,2.528]],[\"name/136\",[110,42.822]],[\"parent/136\",[119,2.528]],[\"name/137\",[111,42.822]],[\"parent/137\",[119,2.528]],[\"name/138\",[112,42.822]],[\"parent/138\",[119,2.528]],[\"name/139\",[113,42.822]],[\"parent/139\",[119,2.528]],[\"name/140\",[114,42.822]],[\"parent/140\",[119,2.528]],[\"name/141\",[115,42.822]],[\"parent/141\",[119,2.528]],[\"name/142\",[116,42.822]],[\"parent/142\",[119,2.528]],[\"name/143\",[120,36.944]],[\"parent/143\",[]],[\"name/144\",[120,36.944]],[\"parent/144\",[120,3.599]],[\"name/145\",[121,47.93]],[\"parent/145\",[122,2.685]],[\"name/146\",[123,47.93]],[\"parent/146\",[122,2.685]],[\"name/147\",[6,29.472]],[\"parent/147\",[122,2.685]],[\"name/148\",[124,47.93]],[\"parent/148\",[122,2.685]],[\"name/149\",[125,47.93]],[\"parent/149\",[122,2.685]],[\"name/150\",[126,47.93]],[\"parent/150\",[122,2.685]],[\"name/151\",[127,47.93]],[\"parent/151\",[122,2.685]],[\"name/152\",[128,47.93]],[\"parent/152\",[122,2.685]],[\"name/153\",[129,47.93]],[\"parent/153\",[122,2.685]],[\"name/154\",[130,47.93]],[\"parent/154\",[122,2.685]],[\"name/155\",[131,47.93]],[\"parent/155\",[122,2.685]],[\"name/156\",[9,34.937]],[\"parent/156\",[]],[\"name/157\",[132,47.93]],[\"parent/157\",[9,3.403]],[\"name/158\",[9,34.937]],[\"parent/158\",[9,3.403]],[\"name/159\",[6,29.472]],[\"parent/159\",[133,2.222]],[\"name/160\",[134,47.93]],[\"parent/160\",[133,2.222]],[\"name/161\",[34,42.822]],[\"parent/161\",[133,2.222]],[\"name/162\",[135,47.93]],[\"parent/162\",[133,2.222]],[\"name/163\",[136,47.93]],[\"parent/163\",[133,2.222]],[\"name/164\",[137,47.93]],[\"parent/164\",[133,2.222]],[\"name/165\",[138,47.93]],[\"parent/165\",[133,2.222]],[\"name/166\",[139,47.93]],[\"parent/166\",[133,2.222]],[\"name/167\",[46,42.822]],[\"parent/167\",[133,2.222]],[\"name/168\",[17,42.822]],[\"parent/168\",[133,2.222]],[\"name/169\",[140,47.93]],[\"parent/169\",[133,2.222]],[\"name/170\",[141,47.93]],[\"parent/170\",[133,2.222]],[\"name/171\",[29,42.822]],[\"parent/171\",[133,2.222]],[\"name/172\",[142,47.93]],[\"parent/172\",[133,2.222]],[\"name/173\",[143,47.93]],[\"parent/173\",[133,2.222]],[\"name/174\",[30,42.822]],[\"parent/174\",[133,2.222]],[\"name/175\",[144,47.93]],[\"parent/175\",[133,2.222]],[\"name/176\",[145,47.93]],[\"parent/176\",[133,2.222]],[\"name/177\",[0,31.836]],[\"parent/177\",[61,3.599]],[\"name/178\",[67,36.944]],[\"parent/178\",[61,3.599]],[\"name/179\",[120,36.944]],[\"parent/179\",[61,3.599]]],\"invertedIndex\":[[\"addcolumn\",{\"_index\":74,\"name\":{\"83\":{}},\"parent\":{}}],[\"addrecord\",{\"_index\":75,\"name\":{\"84\":{}},\"parent\":{}}],[\"addtemplate\",{\"_index\":126,\"name\":{\"150\":{}},\"parent\":{}}],[\"apiclient\",{\"_index\":0,\"name\":{\"0\":{},\"4\":{},\"177\":{}},\"parent\":{\"1\":{},\"2\":{},\"3\":{},\"4\":{}}}],[\"apiclient.apiclient\",{\"_index\":5,\"name\":{},\"parent\":{\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{}}}],[\"autoidnconvert\",{\"_index\":48,\"name\":{\"48\":{}},\"parent\":{}}],[\"column\",{\"_index\":49,\"name\":{\"49\":{},\"50\":{}},\"parent\":{\"50\":{}}}],[\"column.column\",{\"_index\":50,\"name\":{},\"parent\":{\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{}}}],[\"columnkeys\",{\"_index\":70,\"name\":{\"79\":{}},\"parent\":{}}],[\"columns\",{\"_index\":71,\"name\":{\"80\":{}},\"parent\":{}}],[\"command\",{\"_index\":69,\"name\":{\"78\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":6,\"name\":{\"6\":{},\"51\":{},\"61\":{},\"66\":{},\"70\":{},\"77\":{},\"130\":{},\"147\":{},\"159\":{}},\"parent\":{}}],[\"curlopts\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"customlogger\",{\"_index\":58,\"name\":{\"59\":{},\"60\":{}},\"parent\":{\"60\":{}}}],[\"customlogger.customlogger\",{\"_index\":59,\"name\":{},\"parent\":{\"61\":{},\"62\":{}}}],[\"data\",{\"_index\":53,\"name\":{\"54\":{},\"71\":{}},\"parent\":{}}],[\"debugmode\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"disabledebugmode\",{\"_index\":16,\"name\":{\"16\":{}},\"parent\":{}}],[\"enabledebugmode\",{\"_index\":15,\"name\":{\"15\":{}},\"parent\":{}}],[\"entity\",{\"_index\":134,\"name\":{\"160\":{}},\"parent\":{}}],[\"fixedurlenc\",{\"_index\":132,\"name\":{\"157\":{}},\"parent\":{}}],[\"flattencommand\",{\"_index\":47,\"name\":{\"47\":{}},\"parent\":{}}],[\"generatetemplate\",{\"_index\":125,\"name\":{\"149\":{}},\"parent\":{}}],[\"getcode\",{\"_index\":107,\"name\":{\"116\":{},\"133\":{}},\"parent\":{}}],[\"getcolumn\",{\"_index\":76,\"name\":{\"85\":{}},\"parent\":{}}],[\"getcolumnindex\",{\"_index\":77,\"name\":{\"86\":{}},\"parent\":{}}],[\"getcolumnkeys\",{\"_index\":78,\"name\":{\"87\":{}},\"parent\":{}}],[\"getcolumns\",{\"_index\":79,\"name\":{\"88\":{}},\"parent\":{}}],[\"getcommand\",{\"_index\":80,\"name\":{\"89\":{}},\"parent\":{}}],[\"getcommandplain\",{\"_index\":81,\"name\":{\"90\":{}},\"parent\":{}}],[\"getcurrentpagenumber\",{\"_index\":82,\"name\":{\"91\":{}},\"parent\":{}}],[\"getcurrentrecord\",{\"_index\":83,\"name\":{\"92\":{}},\"parent\":{}}],[\"getdata\",{\"_index\":55,\"name\":{\"56\":{},\"72\":{}},\"parent\":{}}],[\"getdatabyindex\",{\"_index\":56,\"name\":{\"57\":{}},\"parent\":{}}],[\"getdatabykey\",{\"_index\":65,\"name\":{\"73\":{}},\"parent\":{}}],[\"getdescription\",{\"_index\":108,\"name\":{\"117\":{},\"134\":{}},\"parent\":{}}],[\"getfirstrecordindex\",{\"_index\":84,\"name\":{\"93\":{}},\"parent\":{}}],[\"gethash\",{\"_index\":111,\"name\":{\"120\":{},\"137\":{}},\"parent\":{}}],[\"getinstance\",{\"_index\":121,\"name\":{\"145\":{}},\"parent\":{}}],[\"getkey\",{\"_index\":54,\"name\":{\"55\":{}},\"parent\":{}}],[\"getlastrecordindex\",{\"_index\":85,\"name\":{\"94\":{}},\"parent\":{}}],[\"getlisthash\",{\"_index\":86,\"name\":{\"95\":{}},\"parent\":{}}],[\"getnextpagenumber\",{\"_index\":88,\"name\":{\"97\":{}},\"parent\":{}}],[\"getnextrecord\",{\"_index\":87,\"name\":{\"96\":{}},\"parent\":{}}],[\"getnumberofpages\",{\"_index\":89,\"name\":{\"98\":{}},\"parent\":{}}],[\"getpagination\",{\"_index\":90,\"name\":{\"99\":{}},\"parent\":{}}],[\"getplain\",{\"_index\":109,\"name\":{\"118\":{},\"135\":{}},\"parent\":{}}],[\"getpostdata\",{\"_index\":46,\"name\":{\"46\":{},\"167\":{}},\"parent\":{}}],[\"getpreviouspagenumber\",{\"_index\":91,\"name\":{\"100\":{}},\"parent\":{}}],[\"getpreviousrecord\",{\"_index\":92,\"name\":{\"101\":{}},\"parent\":{}}],[\"getproxy\",{\"_index\":22,\"name\":{\"22\":{}},\"parent\":{}}],[\"getqueuetime\",{\"_index\":110,\"name\":{\"119\":{},\"136\":{}},\"parent\":{}}],[\"getrecord\",{\"_index\":93,\"name\":{\"102\":{}},\"parent\":{}}],[\"getrecords\",{\"_index\":94,\"name\":{\"103\":{}},\"parent\":{}}],[\"getrecordscount\",{\"_index\":95,\"name\":{\"104\":{}},\"parent\":{}}],[\"getrecordslimitation\",{\"_index\":97,\"name\":{\"106\":{}},\"parent\":{}}],[\"getrecordstotalcount\",{\"_index\":96,\"name\":{\"105\":{}},\"parent\":{}}],[\"getreferer\",{\"_index\":24,\"name\":{\"24\":{}},\"parent\":{}}],[\"getruntime\",{\"_index\":112,\"name\":{\"121\":{},\"138\":{}},\"parent\":{}}],[\"getsession\",{\"_index\":17,\"name\":{\"17\":{},\"168\":{}},\"parent\":{}}],[\"getsystementity\",{\"_index\":140,\"name\":{\"169\":{}},\"parent\":{}}],[\"gettemplate\",{\"_index\":127,\"name\":{\"151\":{}},\"parent\":{}}],[\"gettemplates\",{\"_index\":128,\"name\":{\"152\":{}},\"parent\":{}}],[\"geturl\",{\"_index\":18,\"name\":{\"18\":{}},\"parent\":{}}],[\"getuseragent\",{\"_index\":20,\"name\":{\"20\":{}},\"parent\":{}}],[\"getversion\",{\"_index\":25,\"name\":{\"25\":{}},\"parent\":{}}],[\"hascolumn\",{\"_index\":101,\"name\":{\"110\":{}},\"parent\":{}}],[\"hascurrentrecord\",{\"_index\":102,\"name\":{\"111\":{}},\"parent\":{}}],[\"hasdata\",{\"_index\":66,\"name\":{\"74\":{}},\"parent\":{}}],[\"hasdataindex\",{\"_index\":57,\"name\":{\"58\":{}},\"parent\":{}}],[\"hash\",{\"_index\":106,\"name\":{\"115\":{},\"132\":{}},\"parent\":{}}],[\"hasnextpage\",{\"_index\":98,\"name\":{\"107\":{}},\"parent\":{}}],[\"hasnextrecord\",{\"_index\":103,\"name\":{\"112\":{}},\"parent\":{}}],[\"haspreviouspage\",{\"_index\":99,\"name\":{\"108\":{}},\"parent\":{}}],[\"haspreviousrecord\",{\"_index\":104,\"name\":{\"113\":{}},\"parent\":{}}],[\"hastemplate\",{\"_index\":129,\"name\":{\"153\":{}},\"parent\":{}}],[\"index\",{\"_index\":61,\"name\":{\"63\":{}},\"parent\":{\"177\":{},\"178\":{},\"179\":{}}}],[\"instance\",{\"_index\":123,\"name\":{\"146\":{}},\"parent\":{}}],[\"iserror\",{\"_index\":113,\"name\":{\"122\":{},\"139\":{}},\"parent\":{}}],[\"ispapi_connection_url_live\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{}}],[\"ispapi_connection_url_ote\",{\"_index\":3,\"name\":{\"3\":{}},\"parent\":{}}],[\"ispapi_connection_url_proxy\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"ispending\",{\"_index\":116,\"name\":{\"125\":{},\"142\":{}},\"parent\":{}}],[\"issuccess\",{\"_index\":114,\"name\":{\"123\":{},\"140\":{}},\"parent\":{}}],[\"istemplatematchhash\",{\"_index\":130,\"name\":{\"154\":{}},\"parent\":{}}],[\"istemplatematchplain\",{\"_index\":131,\"name\":{\"155\":{}},\"parent\":{}}],[\"istmperror\",{\"_index\":115,\"name\":{\"124\":{},\"141\":{}},\"parent\":{}}],[\"key\",{\"_index\":52,\"name\":{\"53\":{}},\"parent\":{}}],[\"length\",{\"_index\":51,\"name\":{\"52\":{}},\"parent\":{}}],[\"log\",{\"_index\":60,\"name\":{\"62\":{},\"67\":{}},\"parent\":{}}],[\"logger\",{\"_index\":12,\"name\":{\"12\":{},\"64\":{},\"65\":{}},\"parent\":{\"65\":{}}}],[\"logger.logger\",{\"_index\":62,\"name\":{},\"parent\":{\"66\":{},\"67\":{}}}],[\"login\",{\"_index\":34,\"name\":{\"34\":{},\"161\":{}},\"parent\":{}}],[\"loginextended\",{\"_index\":35,\"name\":{\"35\":{}},\"parent\":{}}],[\"logout\",{\"_index\":36,\"name\":{\"36\":{}},\"parent\":{}}],[\"otp\",{\"_index\":135,\"name\":{\"162\":{}},\"parent\":{}}],[\"pw\",{\"_index\":136,\"name\":{\"163\":{}},\"parent\":{}}],[\"raw\",{\"_index\":105,\"name\":{\"114\":{},\"131\":{}},\"parent\":{}}],[\"record\",{\"_index\":63,\"name\":{\"68\":{},\"69\":{}},\"parent\":{\"69\":{}}}],[\"record.record\",{\"_index\":64,\"name\":{},\"parent\":{\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{}}}],[\"recordindex\",{\"_index\":72,\"name\":{\"81\":{}},\"parent\":{}}],[\"records\",{\"_index\":73,\"name\":{\"82\":{}},\"parent\":{}}],[\"remoteaddr\",{\"_index\":137,\"name\":{\"164\":{}},\"parent\":{}}],[\"request\",{\"_index\":37,\"name\":{\"37\":{}},\"parent\":{}}],[\"requestallresponsepages\",{\"_index\":39,\"name\":{\"39\":{}},\"parent\":{}}],[\"requestnextresponsepage\",{\"_index\":38,\"name\":{\"38\":{}},\"parent\":{}}],[\"resetuserview\",{\"_index\":41,\"name\":{\"41\":{}},\"parent\":{}}],[\"response\",{\"_index\":67,\"name\":{\"75\":{},\"76\":{},\"178\":{}},\"parent\":{\"76\":{}}}],[\"response.response\",{\"_index\":68,\"name\":{},\"parent\":{\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{}}}],[\"responseparser\",{\"_index\":117,\"name\":{\"126\":{},\"127\":{}},\"parent\":{\"127\":{}}}],[\"responsetemplate\",{\"_index\":118,\"name\":{\"128\":{},\"129\":{}},\"parent\":{\"129\":{}}}],[\"responsetemplate.responsetemplate\",{\"_index\":119,\"name\":{},\"parent\":{\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{}}}],[\"responsetemplatemanager\",{\"_index\":120,\"name\":{\"143\":{},\"144\":{},\"179\":{}},\"parent\":{\"144\":{}}}],[\"responsetemplatemanager.responsetemplatemanager\",{\"_index\":122,\"name\":{},\"parent\":{\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{}}}],[\"reusesession\",{\"_index\":27,\"name\":{\"27\":{}},\"parent\":{}}],[\"rewindrecordlist\",{\"_index\":100,\"name\":{\"109\":{}},\"parent\":{}}],[\"savesession\",{\"_index\":26,\"name\":{\"26\":{}},\"parent\":{}}],[\"session\",{\"_index\":138,\"name\":{\"165\":{}},\"parent\":{}}],[\"setcredentials\",{\"_index\":32,\"name\":{\"32\":{}},\"parent\":{}}],[\"setcustomlogger\",{\"_index\":13,\"name\":{\"13\":{}},\"parent\":{}}],[\"setdefaultlogger\",{\"_index\":14,\"name\":{\"14\":{}},\"parent\":{}}],[\"setlogin\",{\"_index\":141,\"name\":{\"170\":{}},\"parent\":{}}],[\"setotp\",{\"_index\":29,\"name\":{\"29\":{},\"171\":{}},\"parent\":{}}],[\"setpassword\",{\"_index\":142,\"name\":{\"172\":{}},\"parent\":{}}],[\"setproxy\",{\"_index\":21,\"name\":{\"21\":{}},\"parent\":{}}],[\"setreferer\",{\"_index\":23,\"name\":{\"23\":{}},\"parent\":{}}],[\"setremoteaddress\",{\"_index\":143,\"name\":{\"173\":{}},\"parent\":{}}],[\"setremoteipaddress\",{\"_index\":31,\"name\":{\"31\":{}},\"parent\":{}}],[\"setrolecredentials\",{\"_index\":33,\"name\":{\"33\":{}},\"parent\":{}}],[\"setsession\",{\"_index\":30,\"name\":{\"30\":{},\"174\":{}},\"parent\":{}}],[\"setsystementity\",{\"_index\":144,\"name\":{\"175\":{}},\"parent\":{}}],[\"seturl\",{\"_index\":28,\"name\":{\"28\":{}},\"parent\":{}}],[\"setuser\",{\"_index\":145,\"name\":{\"176\":{}},\"parent\":{}}],[\"setuseragent\",{\"_index\":19,\"name\":{\"19\":{}},\"parent\":{}}],[\"setuserview\",{\"_index\":40,\"name\":{\"40\":{}},\"parent\":{}}],[\"socketconfig\",{\"_index\":9,\"name\":{\"9\":{},\"156\":{},\"158\":{}},\"parent\":{\"157\":{},\"158\":{}}}],[\"socketconfig.socketconfig\",{\"_index\":133,\"name\":{},\"parent\":{\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{},\"171\":{},\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{}}}],[\"sockettimeout\",{\"_index\":4,\"name\":{\"5\":{}},\"parent\":{}}],[\"socketurl\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{}}],[\"templates\",{\"_index\":124,\"name\":{\"148\":{}},\"parent\":{}}],[\"ua\",{\"_index\":7,\"name\":{\"7\":{}},\"parent\":{}}],[\"usedefaultconnectionsetup\",{\"_index\":43,\"name\":{\"43\":{}},\"parent\":{}}],[\"usehighperformanceconnectionsetup\",{\"_index\":42,\"name\":{\"42\":{}},\"parent\":{}}],[\"uselivesystem\",{\"_index\":45,\"name\":{\"45\":{}},\"parent\":{}}],[\"useotesystem\",{\"_index\":44,\"name\":{\"44\":{}},\"parent\":{}}],[\"user\",{\"_index\":139,\"name\":{\"166\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"8388608\":\"Reference\"},\"rows\":[{\"kind\":2,\"name\":\"apiclient.spec\",\"url\":\"modules/apiclient_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"apiclient\",\"url\":\"modules/apiclient.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"ISPAPI_CONNECTION_URL_PROXY\",\"url\":\"variables/apiclient.ISPAPI_CONNECTION_URL_PROXY.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"kind\":32,\"name\":\"ISPAPI_CONNECTION_URL_LIVE\",\"url\":\"variables/apiclient.ISPAPI_CONNECTION_URL_LIVE.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"kind\":32,\"name\":\"ISPAPI_CONNECTION_URL_OTE\",\"url\":\"variables/apiclient.ISPAPI_CONNECTION_URL_OTE.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"kind\":128,\"name\":\"APIClient\",\"url\":\"classes/apiclient.APIClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"apiclient\"},{\"kind\":1024,\"name\":\"socketTimeout\",\"url\":\"classes/apiclient.APIClient.html#socketTimeout\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/apiclient.APIClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":1024,\"name\":\"ua\",\"url\":\"classes/apiclient.APIClient.html#ua\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":1024,\"name\":\"socketURL\",\"url\":\"classes/apiclient.APIClient.html#socketURL\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":1024,\"name\":\"socketConfig\",\"url\":\"classes/apiclient.APIClient.html#socketConfig\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":1024,\"name\":\"debugMode\",\"url\":\"classes/apiclient.APIClient.html#debugMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":1024,\"name\":\"curlopts\",\"url\":\"classes/apiclient.APIClient.html#curlopts\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":1024,\"name\":\"logger\",\"url\":\"classes/apiclient.APIClient.html#logger\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setCustomLogger\",\"url\":\"classes/apiclient.APIClient.html#setCustomLogger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setDefaultLogger\",\"url\":\"classes/apiclient.APIClient.html#setDefaultLogger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"enableDebugMode\",\"url\":\"classes/apiclient.APIClient.html#enableDebugMode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"disableDebugMode\",\"url\":\"classes/apiclient.APIClient.html#disableDebugMode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getSession\",\"url\":\"classes/apiclient.APIClient.html#getSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getURL\",\"url\":\"classes/apiclient.APIClient.html#getURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setUserAgent\",\"url\":\"classes/apiclient.APIClient.html#setUserAgent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getUserAgent\",\"url\":\"classes/apiclient.APIClient.html#getUserAgent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setProxy\",\"url\":\"classes/apiclient.APIClient.html#setProxy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getProxy\",\"url\":\"classes/apiclient.APIClient.html#getProxy\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setReferer\",\"url\":\"classes/apiclient.APIClient.html#setReferer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getReferer\",\"url\":\"classes/apiclient.APIClient.html#getReferer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getVersion\",\"url\":\"classes/apiclient.APIClient.html#getVersion\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"saveSession\",\"url\":\"classes/apiclient.APIClient.html#saveSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"reuseSession\",\"url\":\"classes/apiclient.APIClient.html#reuseSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setURL\",\"url\":\"classes/apiclient.APIClient.html#setURL\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setOTP\",\"url\":\"classes/apiclient.APIClient.html#setOTP\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setSession\",\"url\":\"classes/apiclient.APIClient.html#setSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setRemoteIPAddress\",\"url\":\"classes/apiclient.APIClient.html#setRemoteIPAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setCredentials\",\"url\":\"classes/apiclient.APIClient.html#setCredentials\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setRoleCredentials\",\"url\":\"classes/apiclient.APIClient.html#setRoleCredentials\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"login\",\"url\":\"classes/apiclient.APIClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"loginExtended\",\"url\":\"classes/apiclient.APIClient.html#loginExtended\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"logout\",\"url\":\"classes/apiclient.APIClient.html#logout\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"request\",\"url\":\"classes/apiclient.APIClient.html#request\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"requestNextResponsePage\",\"url\":\"classes/apiclient.APIClient.html#requestNextResponsePage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"requestAllResponsePages\",\"url\":\"classes/apiclient.APIClient.html#requestAllResponsePages\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"setUserView\",\"url\":\"classes/apiclient.APIClient.html#setUserView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"resetUserView\",\"url\":\"classes/apiclient.APIClient.html#resetUserView\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"useHighPerformanceConnectionSetup\",\"url\":\"classes/apiclient.APIClient.html#useHighPerformanceConnectionSetup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"useDefaultConnectionSetup\",\"url\":\"classes/apiclient.APIClient.html#useDefaultConnectionSetup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"useOTESystem\",\"url\":\"classes/apiclient.APIClient.html#useOTESystem\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"useLIVESystem\",\"url\":\"classes/apiclient.APIClient.html#useLIVESystem\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"getPOSTData\",\"url\":\"classes/apiclient.APIClient.html#getPOSTData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"flattenCommand\",\"url\":\"classes/apiclient.APIClient.html#flattenCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2048,\"name\":\"autoIDNConvert\",\"url\":\"classes/apiclient.APIClient.html#autoIDNConvert\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"apiclient.APIClient\"},{\"kind\":2,\"name\":\"column.spec\",\"url\":\"modules/column_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"column\",\"url\":\"modules/column.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Column\",\"url\":\"classes/column.Column.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"column\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/column.Column.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"kind\":1024,\"name\":\"length\",\"url\":\"classes/column.Column.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"kind\":1024,\"name\":\"key\",\"url\":\"classes/column.Column.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"column.Column\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/column.Column.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"column.Column\"},{\"kind\":2048,\"name\":\"getKey\",\"url\":\"classes/column.Column.html#getKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"kind\":2048,\"name\":\"getData\",\"url\":\"classes/column.Column.html#getData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"kind\":2048,\"name\":\"getDataByIndex\",\"url\":\"classes/column.Column.html#getDataByIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"column.Column\"},{\"kind\":2048,\"name\":\"hasDataIndex\",\"url\":\"classes/column.Column.html#hasDataIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"column.Column\"},{\"kind\":2,\"name\":\"customlogger\",\"url\":\"modules/customlogger.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"CustomLogger\",\"url\":\"classes/customlogger.CustomLogger.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"customlogger\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/customlogger.CustomLogger.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"customlogger.CustomLogger\"},{\"kind\":2048,\"name\":\"log\",\"url\":\"classes/customlogger.CustomLogger.html#log\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"customlogger.CustomLogger\"},{\"kind\":2,\"name\":\"index.spec\",\"url\":\"modules/index_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"logger\",\"url\":\"modules/logger.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Logger\",\"url\":\"classes/logger.Logger.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"logger\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/logger.Logger.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"logger.Logger\"},{\"kind\":2048,\"name\":\"log\",\"url\":\"classes/logger.Logger.html#log\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"logger.Logger\"},{\"kind\":2,\"name\":\"record.spec\",\"url\":\"modules/record_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"record\",\"url\":\"modules/record.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Record\",\"url\":\"classes/record.Record.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"record\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/record.Record.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"record.Record\"},{\"kind\":1024,\"name\":\"data\",\"url\":\"classes/record.Record.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"record.Record\"},{\"kind\":2048,\"name\":\"getData\",\"url\":\"classes/record.Record.html#getData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"record.Record\"},{\"kind\":2048,\"name\":\"getDataByKey\",\"url\":\"classes/record.Record.html#getDataByKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"record.Record\"},{\"kind\":2048,\"name\":\"hasData\",\"url\":\"classes/record.Record.html#hasData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"record.Record\"},{\"kind\":2,\"name\":\"response.spec\",\"url\":\"modules/response_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"response\",\"url\":\"modules/response.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"Response\",\"url\":\"classes/response.Response.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"response\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/response.Response.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"command\",\"url\":\"classes/response.Response.html#command\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"columnkeys\",\"url\":\"classes/response.Response.html#columnkeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"columns\",\"url\":\"classes/response.Response.html#columns\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"recordIndex\",\"url\":\"classes/response.Response.html#recordIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"records\",\"url\":\"classes/response.Response.html#records\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"addColumn\",\"url\":\"classes/response.Response.html#addColumn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"addRecord\",\"url\":\"classes/response.Response.html#addRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getColumn\",\"url\":\"classes/response.Response.html#getColumn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getColumnIndex\",\"url\":\"classes/response.Response.html#getColumnIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getColumnKeys\",\"url\":\"classes/response.Response.html#getColumnKeys\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getColumns\",\"url\":\"classes/response.Response.html#getColumns\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getCommand\",\"url\":\"classes/response.Response.html#getCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getCommandPlain\",\"url\":\"classes/response.Response.html#getCommandPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getCurrentPageNumber\",\"url\":\"classes/response.Response.html#getCurrentPageNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getCurrentRecord\",\"url\":\"classes/response.Response.html#getCurrentRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getFirstRecordIndex\",\"url\":\"classes/response.Response.html#getFirstRecordIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getLastRecordIndex\",\"url\":\"classes/response.Response.html#getLastRecordIndex\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getListHash\",\"url\":\"classes/response.Response.html#getListHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getNextRecord\",\"url\":\"classes/response.Response.html#getNextRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getNextPageNumber\",\"url\":\"classes/response.Response.html#getNextPageNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getNumberOfPages\",\"url\":\"classes/response.Response.html#getNumberOfPages\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getPagination\",\"url\":\"classes/response.Response.html#getPagination\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getPreviousPageNumber\",\"url\":\"classes/response.Response.html#getPreviousPageNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getPreviousRecord\",\"url\":\"classes/response.Response.html#getPreviousRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getRecord\",\"url\":\"classes/response.Response.html#getRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getRecords\",\"url\":\"classes/response.Response.html#getRecords\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getRecordsCount\",\"url\":\"classes/response.Response.html#getRecordsCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getRecordsTotalCount\",\"url\":\"classes/response.Response.html#getRecordsTotalCount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getRecordsLimitation\",\"url\":\"classes/response.Response.html#getRecordsLimitation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"hasNextPage\",\"url\":\"classes/response.Response.html#hasNextPage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"hasPreviousPage\",\"url\":\"classes/response.Response.html#hasPreviousPage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"rewindRecordList\",\"url\":\"classes/response.Response.html#rewindRecordList\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"hasColumn\",\"url\":\"classes/response.Response.html#hasColumn\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"hasCurrentRecord\",\"url\":\"classes/response.Response.html#hasCurrentRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"hasNextRecord\",\"url\":\"classes/response.Response.html#hasNextRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"hasPreviousRecord\",\"url\":\"classes/response.Response.html#hasPreviousRecord\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-private\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"classes/response.Response.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"classes/response.Response.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getCode\",\"url\":\"classes/response.Response.html#getCode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getDescription\",\"url\":\"classes/response.Response.html#getDescription\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getPlain\",\"url\":\"classes/response.Response.html#getPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getQueuetime\",\"url\":\"classes/response.Response.html#getQueuetime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getHash\",\"url\":\"classes/response.Response.html#getHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"getRuntime\",\"url\":\"classes/response.Response.html#getRuntime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"isError\",\"url\":\"classes/response.Response.html#isError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"isSuccess\",\"url\":\"classes/response.Response.html#isSuccess\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"isTmpError\",\"url\":\"classes/response.Response.html#isTmpError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2048,\"name\":\"isPending\",\"url\":\"classes/response.Response.html#isPending\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"response.Response\"},{\"kind\":2,\"name\":\"responseparser.spec\",\"url\":\"modules/responseparser_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"responseparser\",\"url\":\"modules/responseparser.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":32,\"name\":\"ResponseParser\",\"url\":\"variables/responseparser.ResponseParser.html\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"responseparser\"},{\"kind\":2,\"name\":\"responsetemplate.spec\",\"url\":\"modules/responsetemplate_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"responsetemplate\",\"url\":\"modules/responsetemplate.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"ResponseTemplate\",\"url\":\"classes/responsetemplate.ResponseTemplate.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"responsetemplate\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":1024,\"name\":\"raw\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#hash\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"getCode\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getCode\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"getDescription\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getDescription\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"getPlain\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"getQueuetime\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getQueuetime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"getHash\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"getRuntime\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#getRuntime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"isError\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"isSuccess\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isSuccess\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"isTmpError\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isTmpError\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2048,\"name\":\"isPending\",\"url\":\"classes/responsetemplate.ResponseTemplate.html#isPending\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplate.ResponseTemplate\"},{\"kind\":2,\"name\":\"responsetemplatemanager.spec\",\"url\":\"modules/responsetemplatemanager_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"responsetemplatemanager\",\"url\":\"modules/responsetemplatemanager.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":128,\"name\":\"ResponseTemplateManager\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"responsetemplatemanager\"},{\"kind\":2048,\"name\":\"getInstance\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#getInstance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":1024,\"name\":\"instance\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#instance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-private\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":1024,\"name\":\"templates\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#templates\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"generateTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#generateTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"addTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#addTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"getTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#getTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"getTemplates\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#getTemplates\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"hasTemplate\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#hasTemplate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"isTemplateMatchHash\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#isTemplateMatchHash\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2048,\"name\":\"isTemplateMatchPlain\",\"url\":\"classes/responsetemplatemanager.ResponseTemplateManager.html#isTemplateMatchPlain\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"responsetemplatemanager.ResponseTemplateManager\"},{\"kind\":2,\"name\":\"socketconfig.spec\",\"url\":\"modules/socketconfig_spec.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":2,\"name\":\"socketconfig\",\"url\":\"modules/socketconfig.html\",\"classes\":\"tsd-kind-module\"},{\"kind\":64,\"name\":\"fixedURLEnc\",\"url\":\"functions/socketconfig.fixedURLEnc.html\",\"classes\":\"tsd-kind-function tsd-parent-kind-module\",\"parent\":\"socketconfig\"},{\"kind\":128,\"name\":\"SocketConfig\",\"url\":\"classes/socketconfig.SocketConfig.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"socketconfig\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/socketconfig.SocketConfig.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"entity\",\"url\":\"classes/socketconfig.SocketConfig.html#entity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"login\",\"url\":\"classes/socketconfig.SocketConfig.html#login\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"otp\",\"url\":\"classes/socketconfig.SocketConfig.html#otp\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"pw\",\"url\":\"classes/socketconfig.SocketConfig.html#pw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"remoteaddr\",\"url\":\"classes/socketconfig.SocketConfig.html#remoteaddr\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"session\",\"url\":\"classes/socketconfig.SocketConfig.html#session\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":1024,\"name\":\"user\",\"url\":\"classes/socketconfig.SocketConfig.html#user\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"getPOSTData\",\"url\":\"classes/socketconfig.SocketConfig.html#getPOSTData\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"getSession\",\"url\":\"classes/socketconfig.SocketConfig.html#getSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"getSystemEntity\",\"url\":\"classes/socketconfig.SocketConfig.html#getSystemEntity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setLogin\",\"url\":\"classes/socketconfig.SocketConfig.html#setLogin\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setOTP\",\"url\":\"classes/socketconfig.SocketConfig.html#setOTP\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setPassword\",\"url\":\"classes/socketconfig.SocketConfig.html#setPassword\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setRemoteAddress\",\"url\":\"classes/socketconfig.SocketConfig.html#setRemoteAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setSession\",\"url\":\"classes/socketconfig.SocketConfig.html#setSession\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setSystemEntity\",\"url\":\"classes/socketconfig.SocketConfig.html#setSystemEntity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":2048,\"name\":\"setUser\",\"url\":\"classes/socketconfig.SocketConfig.html#setUser\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"socketconfig.SocketConfig\"},{\"kind\":8388608,\"name\":\"APIClient\",\"url\":\"modules/index.html#APIClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"Response\",\"url\":\"modules/index.html#Response\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"kind\":8388608,\"name\":\"ResponseTemplateManager\",\"url\":\"modules/index.html#ResponseTemplateManager\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,48.416]],[\"comment/0\",[]],[\"name/1\",[1,39.943]],[\"comment/1\",[]],[\"name/2\",[2,48.416]],[\"comment/2\",[]],[\"name/3\",[3,48.416]],[\"comment/3\",[]],[\"name/4\",[4,48.416]],[\"comment/4\",[]],[\"name/5\",[1,39.943]],[\"comment/5\",[]],[\"name/6\",[5,48.416]],[\"comment/6\",[]],[\"name/7\",[6,29.957]],[\"comment/7\",[]],[\"name/8\",[7,48.416]],[\"comment/8\",[]],[\"name/9\",[8,48.416]],[\"comment/9\",[]],[\"name/10\",[9,39.943]],[\"comment/10\",[]],[\"name/11\",[10,48.416]],[\"comment/11\",[]],[\"name/12\",[11,48.416]],[\"comment/12\",[]],[\"name/13\",[12,39.943]],[\"comment/13\",[]],[\"name/14\",[13,48.416]],[\"comment/14\",[]],[\"name/15\",[14,48.416]],[\"comment/15\",[]],[\"name/16\",[15,48.416]],[\"comment/16\",[]],[\"name/17\",[16,48.416]],[\"comment/17\",[]],[\"name/18\",[17,43.307]],[\"comment/18\",[]],[\"name/19\",[18,48.416]],[\"comment/19\",[]],[\"name/20\",[19,48.416]],[\"comment/20\",[]],[\"name/21\",[20,48.416]],[\"comment/21\",[]],[\"name/22\",[21,48.416]],[\"comment/22\",[]],[\"name/23\",[22,48.416]],[\"comment/23\",[]],[\"name/24\",[23,48.416]],[\"comment/24\",[]],[\"name/25\",[24,48.416]],[\"comment/25\",[]],[\"name/26\",[25,48.416]],[\"comment/26\",[]],[\"name/27\",[26,48.416]],[\"comment/27\",[]],[\"name/28\",[27,48.416]],[\"comment/28\",[]],[\"name/29\",[28,48.416]],[\"comment/29\",[]],[\"name/30\",[29,43.307]],[\"comment/30\",[]],[\"name/31\",[30,43.307]],[\"comment/31\",[]],[\"name/32\",[31,48.416]],[\"comment/32\",[]],[\"name/33\",[32,48.416]],[\"comment/33\",[]],[\"name/34\",[33,48.416]],[\"comment/34\",[]],[\"name/35\",[34,43.307]],[\"comment/35\",[]],[\"name/36\",[35,48.416]],[\"comment/36\",[]],[\"name/37\",[36,48.416]],[\"comment/37\",[]],[\"name/38\",[37,48.416]],[\"comment/38\",[]],[\"name/39\",[38,48.416]],[\"comment/39\",[]],[\"name/40\",[39,48.416]],[\"comment/40\",[]],[\"name/41\",[40,48.416]],[\"comment/41\",[]],[\"name/42\",[41,48.416]],[\"comment/42\",[]],[\"name/43\",[42,48.416]],[\"comment/43\",[]],[\"name/44\",[43,48.416]],[\"comment/44\",[]],[\"name/45\",[44,48.416]],[\"comment/45\",[]],[\"name/46\",[45,48.416]],[\"comment/46\",[]],[\"name/47\",[46,43.307]],[\"comment/47\",[]],[\"name/48\",[47,48.416]],[\"comment/48\",[]],[\"name/49\",[48,48.416]],[\"comment/49\",[]],[\"name/50\",[49,48.416]],[\"comment/50\",[]],[\"name/51\",[50,43.307]],[\"comment/51\",[]],[\"name/52\",[50,43.307]],[\"comment/52\",[]],[\"name/53\",[6,29.957]],[\"comment/53\",[]],[\"name/54\",[51,48.416]],[\"comment/54\",[]],[\"name/55\",[52,48.416]],[\"comment/55\",[]],[\"name/56\",[53,43.307]],[\"comment/56\",[]],[\"name/57\",[54,48.416]],[\"comment/57\",[]],[\"name/58\",[55,43.307]],[\"comment/58\",[]],[\"name/59\",[56,48.416]],[\"comment/59\",[]],[\"name/60\",[57,48.416]],[\"comment/60\",[]],[\"name/61\",[58,43.307]],[\"comment/61\",[]],[\"name/62\",[58,43.307]],[\"comment/62\",[]],[\"name/63\",[6,29.957]],[\"comment/63\",[]],[\"name/64\",[59,43.307]],[\"comment/64\",[]],[\"name/65\",[60,48.416]],[\"comment/65\",[]],[\"name/66\",[61,48.416]],[\"comment/66\",[]],[\"name/67\",[12,39.943]],[\"comment/67\",[]],[\"name/68\",[12,39.943]],[\"comment/68\",[]],[\"name/69\",[6,29.957]],[\"comment/69\",[]],[\"name/70\",[59,43.307]],[\"comment/70\",[]],[\"name/71\",[62,48.416]],[\"comment/71\",[]],[\"name/72\",[63,43.307]],[\"comment/72\",[]],[\"name/73\",[63,43.307]],[\"comment/73\",[]],[\"name/74\",[6,29.957]],[\"comment/74\",[]],[\"name/75\",[53,43.307]],[\"comment/75\",[]],[\"name/76\",[55,43.307]],[\"comment/76\",[]],[\"name/77\",[64,48.416]],[\"comment/77\",[]],[\"name/78\",[65,48.416]],[\"comment/78\",[]],[\"name/79\",[66,48.416]],[\"comment/79\",[]],[\"name/80\",[67,39.943]],[\"comment/80\",[]],[\"name/81\",[67,39.943]],[\"comment/81\",[]],[\"name/82\",[6,29.957]],[\"comment/82\",[]],[\"name/83\",[68,48.416]],[\"comment/83\",[]],[\"name/84\",[69,48.416]],[\"comment/84\",[]],[\"name/85\",[70,48.416]],[\"comment/85\",[]],[\"name/86\",[71,48.416]],[\"comment/86\",[]],[\"name/87\",[72,48.416]],[\"comment/87\",[]],[\"name/88\",[73,48.416]],[\"comment/88\",[]],[\"name/89\",[74,48.416]],[\"comment/89\",[]],[\"name/90\",[75,48.416]],[\"comment/90\",[]],[\"name/91\",[76,48.416]],[\"comment/91\",[]],[\"name/92\",[77,48.416]],[\"comment/92\",[]],[\"name/93\",[78,48.416]],[\"comment/93\",[]],[\"name/94\",[79,48.416]],[\"comment/94\",[]],[\"name/95\",[80,48.416]],[\"comment/95\",[]],[\"name/96\",[81,48.416]],[\"comment/96\",[]],[\"name/97\",[82,48.416]],[\"comment/97\",[]],[\"name/98\",[83,48.416]],[\"comment/98\",[]],[\"name/99\",[84,48.416]],[\"comment/99\",[]],[\"name/100\",[85,48.416]],[\"comment/100\",[]],[\"name/101\",[86,48.416]],[\"comment/101\",[]],[\"name/102\",[87,48.416]],[\"comment/102\",[]],[\"name/103\",[88,48.416]],[\"comment/103\",[]],[\"name/104\",[89,48.416]],[\"comment/104\",[]],[\"name/105\",[90,48.416]],[\"comment/105\",[]],[\"name/106\",[91,48.416]],[\"comment/106\",[]],[\"name/107\",[92,48.416]],[\"comment/107\",[]],[\"name/108\",[93,48.416]],[\"comment/108\",[]],[\"name/109\",[94,48.416]],[\"comment/109\",[]],[\"name/110\",[95,48.416]],[\"comment/110\",[]],[\"name/111\",[96,48.416]],[\"comment/111\",[]],[\"name/112\",[97,48.416]],[\"comment/112\",[]],[\"name/113\",[98,48.416]],[\"comment/113\",[]],[\"name/114\",[99,48.416]],[\"comment/114\",[]],[\"name/115\",[100,48.416]],[\"comment/115\",[]],[\"name/116\",[101,48.416]],[\"comment/116\",[]],[\"name/117\",[102,48.416]],[\"comment/117\",[]],[\"name/118\",[103,48.416]],[\"comment/118\",[]],[\"name/119\",[104,43.307]],[\"comment/119\",[]],[\"name/120\",[105,43.307]],[\"comment/120\",[]],[\"name/121\",[106,43.307]],[\"comment/121\",[]],[\"name/122\",[107,43.307]],[\"comment/122\",[]],[\"name/123\",[108,43.307]],[\"comment/123\",[]],[\"name/124\",[109,43.307]],[\"comment/124\",[]],[\"name/125\",[110,43.307]],[\"comment/125\",[]],[\"name/126\",[111,43.307]],[\"comment/126\",[]],[\"name/127\",[112,43.307]],[\"comment/127\",[]],[\"name/128\",[113,43.307]],[\"comment/128\",[]],[\"name/129\",[114,43.307]],[\"comment/129\",[]],[\"name/130\",[115,43.307]],[\"comment/130\",[]],[\"name/131\",[116,48.416]],[\"comment/131\",[]],[\"name/132\",[117,43.307]],[\"comment/132\",[]],[\"name/133\",[117,43.307]],[\"comment/133\",[]],[\"name/134\",[118,48.416]],[\"comment/134\",[]],[\"name/135\",[119,43.307]],[\"comment/135\",[]],[\"name/136\",[119,43.307]],[\"comment/136\",[]],[\"name/137\",[6,29.957]],[\"comment/137\",[]],[\"name/138\",[104,43.307]],[\"comment/138\",[]],[\"name/139\",[105,43.307]],[\"comment/139\",[]],[\"name/140\",[106,43.307]],[\"comment/140\",[]],[\"name/141\",[107,43.307]],[\"comment/141\",[]],[\"name/142\",[108,43.307]],[\"comment/142\",[]],[\"name/143\",[109,43.307]],[\"comment/143\",[]],[\"name/144\",[110,43.307]],[\"comment/144\",[]],[\"name/145\",[111,43.307]],[\"comment/145\",[]],[\"name/146\",[112,43.307]],[\"comment/146\",[]],[\"name/147\",[113,43.307]],[\"comment/147\",[]],[\"name/148\",[114,43.307]],[\"comment/148\",[]],[\"name/149\",[115,43.307]],[\"comment/149\",[]],[\"name/150\",[120,48.416]],[\"comment/150\",[]],[\"name/151\",[121,39.943]],[\"comment/151\",[]],[\"name/152\",[121,39.943]],[\"comment/152\",[]],[\"name/153\",[122,48.416]],[\"comment/153\",[]],[\"name/154\",[123,48.416]],[\"comment/154\",[]],[\"name/155\",[6,29.957]],[\"comment/155\",[]],[\"name/156\",[124,48.416]],[\"comment/156\",[]],[\"name/157\",[125,48.416]],[\"comment/157\",[]],[\"name/158\",[126,48.416]],[\"comment/158\",[]],[\"name/159\",[127,48.416]],[\"comment/159\",[]],[\"name/160\",[128,48.416]],[\"comment/160\",[]],[\"name/161\",[129,48.416]],[\"comment/161\",[]],[\"name/162\",[130,48.416]],[\"comment/162\",[]],[\"name/163\",[131,48.416]],[\"comment/163\",[]],[\"name/164\",[132,48.416]],[\"comment/164\",[]],[\"name/165\",[9,39.943]],[\"comment/165\",[]],[\"name/166\",[133,48.416]],[\"comment/166\",[]],[\"name/167\",[9,39.943]],[\"comment/167\",[]],[\"name/168\",[6,29.957]],[\"comment/168\",[]],[\"name/169\",[134,48.416]],[\"comment/169\",[]],[\"name/170\",[34,43.307]],[\"comment/170\",[]],[\"name/171\",[135,48.416]],[\"comment/171\",[]],[\"name/172\",[136,48.416]],[\"comment/172\",[]],[\"name/173\",[137,48.416]],[\"comment/173\",[]],[\"name/174\",[138,48.416]],[\"comment/174\",[]],[\"name/175\",[139,48.416]],[\"comment/175\",[]],[\"name/176\",[46,43.307]],[\"comment/176\",[]],[\"name/177\",[17,43.307]],[\"comment/177\",[]],[\"name/178\",[140,48.416]],[\"comment/178\",[]],[\"name/179\",[141,48.416]],[\"comment/179\",[]],[\"name/180\",[29,43.307]],[\"comment/180\",[]],[\"name/181\",[142,48.416]],[\"comment/181\",[]],[\"name/182\",[143,48.416]],[\"comment/182\",[]],[\"name/183\",[30,43.307]],[\"comment/183\",[]],[\"name/184\",[144,48.416]],[\"comment/184\",[]],[\"name/185\",[145,48.416]],[\"comment/185\",[]],[\"name/186\",[1,39.943]],[\"comment/186\",[]],[\"name/187\",[67,39.943]],[\"comment/187\",[]],[\"name/188\",[121,39.943]],[\"comment/188\",[]]],\"invertedIndex\":[[\"addcolumn\",{\"_index\":73,\"name\":{\"88\":{}},\"comment\":{}}],[\"addrecord\",{\"_index\":74,\"name\":{\"89\":{}},\"comment\":{}}],[\"addtemplate\",{\"_index\":126,\"name\":{\"158\":{}},\"comment\":{}}],[\"apiclient\",{\"_index\":1,\"name\":{\"1\":{},\"5\":{},\"186\":{}},\"comment\":{}}],[\"apiclient.spec\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"autoidnconvert\",{\"_index\":48,\"name\":{\"49\":{}},\"comment\":{}}],[\"column\",{\"_index\":50,\"name\":{\"51\":{},\"52\":{}},\"comment\":{}}],[\"column.spec\",{\"_index\":49,\"name\":{\"50\":{}},\"comment\":{}}],[\"columnkeys\",{\"_index\":69,\"name\":{\"84\":{}},\"comment\":{}}],[\"columns\",{\"_index\":70,\"name\":{\"85\":{}},\"comment\":{}}],[\"command\",{\"_index\":68,\"name\":{\"83\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":6,\"name\":{\"7\":{},\"53\":{},\"63\":{},\"69\":{},\"74\":{},\"82\":{},\"137\":{},\"155\":{},\"168\":{}},\"comment\":{}}],[\"curlopts\",{\"_index\":11,\"name\":{\"12\":{}},\"comment\":{}}],[\"customlogger\",{\"_index\":58,\"name\":{\"61\":{},\"62\":{}},\"comment\":{}}],[\"data\",{\"_index\":53,\"name\":{\"56\":{},\"75\":{}},\"comment\":{}}],[\"debugmode\",{\"_index\":10,\"name\":{\"11\":{}},\"comment\":{}}],[\"disabledebugmode\",{\"_index\":16,\"name\":{\"17\":{}},\"comment\":{}}],[\"enabledebugmode\",{\"_index\":15,\"name\":{\"16\":{}},\"comment\":{}}],[\"entity\",{\"_index\":134,\"name\":{\"169\":{}},\"comment\":{}}],[\"fixedurlenc\",{\"_index\":133,\"name\":{\"166\":{}},\"comment\":{}}],[\"flattencommand\",{\"_index\":47,\"name\":{\"48\":{}},\"comment\":{}}],[\"generatetemplate\",{\"_index\":125,\"name\":{\"157\":{}},\"comment\":{}}],[\"getcode\",{\"_index\":106,\"name\":{\"121\":{},\"140\":{}},\"comment\":{}}],[\"getcolumn\",{\"_index\":75,\"name\":{\"90\":{}},\"comment\":{}}],[\"getcolumnindex\",{\"_index\":76,\"name\":{\"91\":{}},\"comment\":{}}],[\"getcolumnkeys\",{\"_index\":77,\"name\":{\"92\":{}},\"comment\":{}}],[\"getcolumns\",{\"_index\":78,\"name\":{\"93\":{}},\"comment\":{}}],[\"getcommand\",{\"_index\":79,\"name\":{\"94\":{}},\"comment\":{}}],[\"getcommandplain\",{\"_index\":80,\"name\":{\"95\":{}},\"comment\":{}}],[\"getcurrentpagenumber\",{\"_index\":81,\"name\":{\"96\":{}},\"comment\":{}}],[\"getcurrentrecord\",{\"_index\":82,\"name\":{\"97\":{}},\"comment\":{}}],[\"getdata\",{\"_index\":55,\"name\":{\"58\":{},\"76\":{}},\"comment\":{}}],[\"getdatabyindex\",{\"_index\":56,\"name\":{\"59\":{}},\"comment\":{}}],[\"getdatabykey\",{\"_index\":64,\"name\":{\"77\":{}},\"comment\":{}}],[\"getdescription\",{\"_index\":107,\"name\":{\"122\":{},\"141\":{}},\"comment\":{}}],[\"getfirstrecordindex\",{\"_index\":83,\"name\":{\"98\":{}},\"comment\":{}}],[\"gethash\",{\"_index\":110,\"name\":{\"125\":{},\"144\":{}},\"comment\":{}}],[\"getinstance\",{\"_index\":122,\"name\":{\"153\":{}},\"comment\":{}}],[\"getkey\",{\"_index\":54,\"name\":{\"57\":{}},\"comment\":{}}],[\"getlastrecordindex\",{\"_index\":84,\"name\":{\"99\":{}},\"comment\":{}}],[\"getlisthash\",{\"_index\":85,\"name\":{\"100\":{}},\"comment\":{}}],[\"getnextpagenumber\",{\"_index\":87,\"name\":{\"102\":{}},\"comment\":{}}],[\"getnextrecord\",{\"_index\":86,\"name\":{\"101\":{}},\"comment\":{}}],[\"getnumberofpages\",{\"_index\":88,\"name\":{\"103\":{}},\"comment\":{}}],[\"getpagination\",{\"_index\":89,\"name\":{\"104\":{}},\"comment\":{}}],[\"getplain\",{\"_index\":108,\"name\":{\"123\":{},\"142\":{}},\"comment\":{}}],[\"getpostdata\",{\"_index\":46,\"name\":{\"47\":{},\"176\":{}},\"comment\":{}}],[\"getpreviouspagenumber\",{\"_index\":90,\"name\":{\"105\":{}},\"comment\":{}}],[\"getpreviousrecord\",{\"_index\":91,\"name\":{\"106\":{}},\"comment\":{}}],[\"getproxy\",{\"_index\":22,\"name\":{\"23\":{}},\"comment\":{}}],[\"getqueuetime\",{\"_index\":109,\"name\":{\"124\":{},\"143\":{}},\"comment\":{}}],[\"getrecord\",{\"_index\":92,\"name\":{\"107\":{}},\"comment\":{}}],[\"getrecords\",{\"_index\":93,\"name\":{\"108\":{}},\"comment\":{}}],[\"getrecordscount\",{\"_index\":94,\"name\":{\"109\":{}},\"comment\":{}}],[\"getrecordslimitation\",{\"_index\":96,\"name\":{\"111\":{}},\"comment\":{}}],[\"getrecordstotalcount\",{\"_index\":95,\"name\":{\"110\":{}},\"comment\":{}}],[\"getreferer\",{\"_index\":24,\"name\":{\"25\":{}},\"comment\":{}}],[\"getruntime\",{\"_index\":111,\"name\":{\"126\":{},\"145\":{}},\"comment\":{}}],[\"getsession\",{\"_index\":17,\"name\":{\"18\":{},\"177\":{}},\"comment\":{}}],[\"getsystementity\",{\"_index\":140,\"name\":{\"178\":{}},\"comment\":{}}],[\"gettemplate\",{\"_index\":127,\"name\":{\"159\":{}},\"comment\":{}}],[\"gettemplates\",{\"_index\":128,\"name\":{\"160\":{}},\"comment\":{}}],[\"geturl\",{\"_index\":18,\"name\":{\"19\":{}},\"comment\":{}}],[\"getuseragent\",{\"_index\":20,\"name\":{\"21\":{}},\"comment\":{}}],[\"getversion\",{\"_index\":25,\"name\":{\"26\":{}},\"comment\":{}}],[\"hascolumn\",{\"_index\":100,\"name\":{\"115\":{}},\"comment\":{}}],[\"hascurrentrecord\",{\"_index\":101,\"name\":{\"116\":{}},\"comment\":{}}],[\"hasdata\",{\"_index\":65,\"name\":{\"78\":{}},\"comment\":{}}],[\"hasdataindex\",{\"_index\":57,\"name\":{\"60\":{}},\"comment\":{}}],[\"hash\",{\"_index\":105,\"name\":{\"120\":{},\"139\":{}},\"comment\":{}}],[\"hasnextpage\",{\"_index\":97,\"name\":{\"112\":{}},\"comment\":{}}],[\"hasnextrecord\",{\"_index\":102,\"name\":{\"117\":{}},\"comment\":{}}],[\"haspreviouspage\",{\"_index\":98,\"name\":{\"113\":{}},\"comment\":{}}],[\"haspreviousrecord\",{\"_index\":103,\"name\":{\"118\":{}},\"comment\":{}}],[\"hastemplate\",{\"_index\":129,\"name\":{\"161\":{}},\"comment\":{}}],[\"index\",{\"_index\":61,\"name\":{\"66\":{}},\"comment\":{}}],[\"index.spec\",{\"_index\":60,\"name\":{\"65\":{}},\"comment\":{}}],[\"instance\",{\"_index\":123,\"name\":{\"154\":{}},\"comment\":{}}],[\"iserror\",{\"_index\":112,\"name\":{\"127\":{},\"146\":{}},\"comment\":{}}],[\"ispapi_connection_url_live\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"ispapi_connection_url_ote\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"ispapi_connection_url_proxy\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"ispending\",{\"_index\":115,\"name\":{\"130\":{},\"149\":{}},\"comment\":{}}],[\"issuccess\",{\"_index\":113,\"name\":{\"128\":{},\"147\":{}},\"comment\":{}}],[\"istemplatematchhash\",{\"_index\":130,\"name\":{\"162\":{}},\"comment\":{}}],[\"istemplatematchplain\",{\"_index\":131,\"name\":{\"163\":{}},\"comment\":{}}],[\"istmperror\",{\"_index\":114,\"name\":{\"129\":{},\"148\":{}},\"comment\":{}}],[\"key\",{\"_index\":52,\"name\":{\"55\":{}},\"comment\":{}}],[\"length\",{\"_index\":51,\"name\":{\"54\":{}},\"comment\":{}}],[\"log\",{\"_index\":59,\"name\":{\"64\":{},\"70\":{}},\"comment\":{}}],[\"logger\",{\"_index\":12,\"name\":{\"13\":{},\"67\":{},\"68\":{}},\"comment\":{}}],[\"login\",{\"_index\":34,\"name\":{\"35\":{},\"170\":{}},\"comment\":{}}],[\"loginextended\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"logout\",{\"_index\":36,\"name\":{\"37\":{}},\"comment\":{}}],[\"otp\",{\"_index\":135,\"name\":{\"171\":{}},\"comment\":{}}],[\"pw\",{\"_index\":136,\"name\":{\"172\":{}},\"comment\":{}}],[\"raw\",{\"_index\":104,\"name\":{\"119\":{},\"138\":{}},\"comment\":{}}],[\"record\",{\"_index\":63,\"name\":{\"72\":{},\"73\":{}},\"comment\":{}}],[\"record.spec\",{\"_index\":62,\"name\":{\"71\":{}},\"comment\":{}}],[\"recordindex\",{\"_index\":71,\"name\":{\"86\":{}},\"comment\":{}}],[\"records\",{\"_index\":72,\"name\":{\"87\":{}},\"comment\":{}}],[\"remoteaddr\",{\"_index\":137,\"name\":{\"173\":{}},\"comment\":{}}],[\"request\",{\"_index\":37,\"name\":{\"38\":{}},\"comment\":{}}],[\"requestallresponsepages\",{\"_index\":39,\"name\":{\"40\":{}},\"comment\":{}}],[\"requestnextresponsepage\",{\"_index\":38,\"name\":{\"39\":{}},\"comment\":{}}],[\"resetuserview\",{\"_index\":41,\"name\":{\"42\":{}},\"comment\":{}}],[\"response\",{\"_index\":67,\"name\":{\"80\":{},\"81\":{},\"187\":{}},\"comment\":{}}],[\"response.spec\",{\"_index\":66,\"name\":{\"79\":{}},\"comment\":{}}],[\"responseparser\",{\"_index\":117,\"name\":{\"132\":{},\"133\":{}},\"comment\":{}}],[\"responseparser.spec\",{\"_index\":116,\"name\":{\"131\":{}},\"comment\":{}}],[\"responsetemplate\",{\"_index\":119,\"name\":{\"135\":{},\"136\":{}},\"comment\":{}}],[\"responsetemplate.spec\",{\"_index\":118,\"name\":{\"134\":{}},\"comment\":{}}],[\"responsetemplatemanager\",{\"_index\":121,\"name\":{\"151\":{},\"152\":{},\"188\":{}},\"comment\":{}}],[\"responsetemplatemanager.spec\",{\"_index\":120,\"name\":{\"150\":{}},\"comment\":{}}],[\"reusesession\",{\"_index\":27,\"name\":{\"28\":{}},\"comment\":{}}],[\"rewindrecordlist\",{\"_index\":99,\"name\":{\"114\":{}},\"comment\":{}}],[\"savesession\",{\"_index\":26,\"name\":{\"27\":{}},\"comment\":{}}],[\"session\",{\"_index\":138,\"name\":{\"174\":{}},\"comment\":{}}],[\"setcredentials\",{\"_index\":32,\"name\":{\"33\":{}},\"comment\":{}}],[\"setcustomlogger\",{\"_index\":13,\"name\":{\"14\":{}},\"comment\":{}}],[\"setdefaultlogger\",{\"_index\":14,\"name\":{\"15\":{}},\"comment\":{}}],[\"setlogin\",{\"_index\":141,\"name\":{\"179\":{}},\"comment\":{}}],[\"setotp\",{\"_index\":29,\"name\":{\"30\":{},\"180\":{}},\"comment\":{}}],[\"setpassword\",{\"_index\":142,\"name\":{\"181\":{}},\"comment\":{}}],[\"setproxy\",{\"_index\":21,\"name\":{\"22\":{}},\"comment\":{}}],[\"setreferer\",{\"_index\":23,\"name\":{\"24\":{}},\"comment\":{}}],[\"setremoteaddress\",{\"_index\":143,\"name\":{\"182\":{}},\"comment\":{}}],[\"setremoteipaddress\",{\"_index\":31,\"name\":{\"32\":{}},\"comment\":{}}],[\"setrolecredentials\",{\"_index\":33,\"name\":{\"34\":{}},\"comment\":{}}],[\"setsession\",{\"_index\":30,\"name\":{\"31\":{},\"183\":{}},\"comment\":{}}],[\"setsystementity\",{\"_index\":144,\"name\":{\"184\":{}},\"comment\":{}}],[\"seturl\",{\"_index\":28,\"name\":{\"29\":{}},\"comment\":{}}],[\"setuser\",{\"_index\":145,\"name\":{\"185\":{}},\"comment\":{}}],[\"setuseragent\",{\"_index\":19,\"name\":{\"20\":{}},\"comment\":{}}],[\"setuserview\",{\"_index\":40,\"name\":{\"41\":{}},\"comment\":{}}],[\"socketconfig\",{\"_index\":9,\"name\":{\"10\":{},\"165\":{},\"167\":{}},\"comment\":{}}],[\"socketconfig.spec\",{\"_index\":132,\"name\":{\"164\":{}},\"comment\":{}}],[\"sockettimeout\",{\"_index\":5,\"name\":{\"6\":{}},\"comment\":{}}],[\"socketurl\",{\"_index\":8,\"name\":{\"9\":{}},\"comment\":{}}],[\"templates\",{\"_index\":124,\"name\":{\"156\":{}},\"comment\":{}}],[\"ua\",{\"_index\":7,\"name\":{\"8\":{}},\"comment\":{}}],[\"usedefaultconnectionsetup\",{\"_index\":43,\"name\":{\"44\":{}},\"comment\":{}}],[\"usehighperformanceconnectionsetup\",{\"_index\":42,\"name\":{\"43\":{}},\"comment\":{}}],[\"uselivesystem\",{\"_index\":45,\"name\":{\"46\":{}},\"comment\":{}}],[\"useotesystem\",{\"_index\":44,\"name\":{\"45\":{}},\"comment\":{}}],[\"user\",{\"_index\":139,\"name\":{\"175\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/typedoc/assets/style.css b/docs/typedoc/assets/style.css index 6127b27c..8f6ed2c4 100644 --- a/docs/typedoc/assets/style.css +++ b/docs/typedoc/assets/style.css @@ -1,155 +1,133 @@ -@import url("./icons.css"); - :root { /* Light */ - --light-color-background: #fcfcfc; - --light-color-secondary-background: #fff; + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --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-menu-divider: #eee; - --light-color-menu-divider-focus: #000; - --light-color-menu-label: #707070; - --light-color-panel: var(--light-color-secondary-background); - --light-color-panel-divider: #eee; - --light-color-comment-tag: #707070; - --light-color-comment-tag-text: #fff; - --light-color-ts: #9600ff; - --light-color-ts-interface: #647f1b; - --light-color-ts-enum: #937210; - --light-color-ts-class: #0672de; + --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-toolbar: #fff; - --light-color-toolbar-text: #333; - --light-icon-filter: invert(0); + --light-color-ts-variable: #4d68ff; --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; /* Dark */ - --dark-color-background: #36393f; - --dark-color-secondary-background: #2f3136; - --dark-color-text: #ffffff; - --dark-color-text-aside: #e6e4e4; + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --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-menu-divider: #eee; - --dark-color-menu-divider-focus: #000; - --dark-color-menu-label: #707070; - --dark-color-panel: var(--dark-color-secondary-background); - --dark-color-panel-divider: #818181; - --dark-color-comment-tag: #dcddde; - --dark-color-comment-tag-text: #2f3136; - --dark-color-ts: #c97dff; - --dark-color-ts-interface: #9cbe3c; - --dark-color-ts-enum: #d6ab29; - --dark-color-ts-class: #3695f3; + --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-toolbar: #34373c; - --dark-color-toolbar-text: #ffffff; - --dark-icon-filter: invert(1); + --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-secondary-background: var(--light-color-secondary-background); + --color-background-secondary: var(--light-color-background-secondary); + --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-menu-divider: var(--light-color-menu-divider); - --color-menu-divider-focus: var(--light-color-menu-divider-focus); - --color-menu-label: var(--light-color-menu-label); - --color-panel: var(--light-color-panel); - --color-panel-divider: var(--light-color-panel-divider); - --color-comment-tag: var(--light-color-comment-tag); - --color-comment-tag-text: var(--light-color-comment-tag-text); --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-toolbar: var(--light-color-toolbar); - --color-toolbar-text: var(--light-color-toolbar-text); - --icon-filter: var(--light-icon-filter); + --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-secondary-background: var(--dark-color-secondary-background); + --color-background-secondary: var(--dark-color-background-secondary); + --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-menu-divider: var(--dark-color-menu-divider); - --color-menu-divider-focus: var(--dark-color-menu-divider-focus); - --color-menu-label: var(--dark-color-menu-label); - --color-panel: var(--dark-color-panel); - --color-panel-divider: var(--dark-color-panel-divider); - --color-comment-tag: var(--dark-color-comment-tag); - --color-comment-tag-text: var(--dark-color-comment-tag-text); --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-toolbar: var(--dark-color-toolbar); - --color-toolbar-text: var(--dark-color-toolbar-text); - --icon-filter: var(--dark-icon-filter); + --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; } -body.light { +:root[data-theme="light"] { --color-background: var(--light-color-background); - --color-secondary-background: var(--light-color-secondary-background); + --color-background-secondary: var(--light-color-background-secondary); + --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-menu-divider: var(--light-color-menu-divider); - --color-menu-divider-focus: var(--light-color-menu-divider-focus); - --color-menu-label: var(--light-color-menu-label); - --color-panel: var(--light-color-panel); - --color-panel-divider: var(--light-color-panel-divider); - --color-comment-tag: var(--light-color-comment-tag); - --color-comment-tag-text: var(--light-color-comment-tag-text); --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-toolbar: var(--light-color-toolbar); - --color-toolbar-text: var(--light-color-toolbar-text); - --icon-filter: var(--light-icon-filter); + --color-ts-variable: var(--light-color-ts-variable); --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); } -body.dark { +:root[data-theme="dark"] { --color-background: var(--dark-color-background); - --color-secondary-background: var(--dark-color-secondary-background); + --color-background-secondary: var(--dark-color-background-secondary); + --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-menu-divider: var(--dark-color-menu-divider); - --color-menu-divider-focus: var(--dark-color-menu-divider-focus); - --color-menu-label: var(--dark-color-menu-label); - --color-panel: var(--dark-color-panel); - --color-panel-divider: var(--dark-color-panel-divider); - --color-comment-tag: var(--dark-color-comment-tag); - --color-comment-tag-text: var(--dark-color-comment-tag-text); --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-toolbar: var(--dark-color-toolbar); - --color-toolbar-text: var(--dark-color-toolbar-text); - --icon-filter: var(--dark-icon-filter); + --color-ts-variable: var(--dark-color-ts-variable); --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); } h1, @@ -162,34 +140,37 @@ h6 { } h1 { - font-size: 2em; - margin: 0.67em 0; + font-size: 1.875rem; + margin: 0.67rem 0; } h2 { - font-size: 1.5em; - margin: 0.83em 0; + font-size: 1.5rem; + margin: 0.83rem 0; } h3 { - font-size: 1.17em; - margin: 1em 0; + font-size: 1.25rem; + margin: 1rem 0; } -h4, -.tsd-index-panel h3 { - font-size: 1em; - margin: 1.33em 0; +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; } h5 { - font-size: 0.83em; - margin: 1.67em 0; + font-size: 1rem; + margin: 1.5rem 0; } h6 { - font-size: 0.67em; - margin: 2.33em 0; + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; } pre { @@ -210,74 +191,61 @@ dd { } .container { - max-width: 1200px; - margin: 0 auto; - padding: 0 40px; + max-width: 1600px; + padding: 0 2rem; } -@media (max-width: 640px) { + +@media (min-width: 640px) { + .container { + padding: 0 4rem; + } +} +@media (min-width: 1200px) { .container { - padding: 0 20px; + padding: 0 8rem; + } +} +@media (min-width: 1600px) { + .container { + padding: 0 12rem; } } -.container-main { - padding-bottom: 200px; +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; } -.row { +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { display: flex; + justify-content: space-between; position: relative; - margin: 0 -10px; -} -.row:after { - visibility: hidden; - display: block; - content: ""; - clear: both; - height: 0; + margin: 0 auto; } .col-4, .col-8 { box-sizing: border-box; float: left; - padding: 0 10px; + padding: 2rem 1rem; } .col-4 { - width: 33.3333333333%; + flex: 0 0 25%; } .col-8 { - width: 66.6666666667%; -} - -ul.tsd-descriptions > li > :first-child, -.tsd-panel > :first-child, -.col-8 > :first-child, -.col-4 > :first-child, -ul.tsd-descriptions > li > :first-child > :first-child, -.tsd-panel > :first-child > :first-child, -.col-8 > :first-child > :first-child, -.col-4 > :first-child > :first-child, -ul.tsd-descriptions > li > :first-child > :first-child > :first-child, -.tsd-panel > :first-child > :first-child > :first-child, -.col-8 > :first-child > :first-child > :first-child, -.col-4 > :first-child > :first-child > :first-child { - margin-top: 0; -} -ul.tsd-descriptions > li > :last-child, -.tsd-panel > :last-child, -.col-8 > :last-child, -.col-4 > :last-child, -ul.tsd-descriptions > li > :last-child > :last-child, -.tsd-panel > :last-child > :last-child, -.col-8 > :last-child > :last-child, -.col-4 > :last-child > :last-child, -ul.tsd-descriptions > li > :last-child > :last-child > :last-child, -.tsd-panel > :last-child > :last-child > :last-child, -.col-8 > :last-child > :last-child > :last-child, -.col-4 > :last-child > :last-child > :last-child { - margin-bottom: 0; + flex: 1 0; + flex-wrap: wrap; + padding-left: 0; } @keyframes fade-in { @@ -379,11 +347,13 @@ pre { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; padding: 0.2em; margin: 0; - font-size: 14px; + font-size: 0.875rem; + border-radius: 0.8em; } pre { padding: 10px; + border: 0.1em solid var(--color-accent); } pre code { padding: 0; @@ -422,36 +392,26 @@ blockquote { margin: 1em 0; } -@media (min-width: 901px) and (max-width: 1024px) { - html .col-content { - width: 72%; - } - html .col-menu { - width: 28%; - } - html .tsd-navigation { - padding-left: 10px; - } -} -@media (max-width: 900px) { +@media (max-width: 1024px) { html .col-content { float: none; + max-width: 100%; width: 100%; + padding-top: 3rem; } html .col-menu { position: fixed !important; - overflow: auto; + overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 1024; top: 0 !important; bottom: 0 !important; left: auto !important; right: 0 !important; - width: 100%; - padding: 20px 20px 0 0; - max-width: 450px; + padding: 1.5rem 1.5rem 0 0; + max-width: 25rem; visibility: hidden; - background-color: var(--color-panel); + background-color: var(--color-background); transform: translate(100%, 0); } html .col-menu > *:last-child { @@ -507,24 +467,17 @@ blockquote { visibility: visible; transform: translate(0, 0); display: grid; + align-items: center; grid-template-rows: auto 1fr; + grid-gap: 1.5rem; max-height: 100vh; + padding: 1rem 2rem; } .has-menu .tsd-navigation { max-height: 100%; } } -.tsd-page-title { - padding: 70px 0 20px 0; - margin: 0 0 40px 0; - background: var(--color-panel); - box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); -} -.tsd-page-title h1 { - margin: 0; -} - .tsd-breadcrumb { margin: 0; padding: 0; @@ -544,32 +497,44 @@ blockquote { content: " / "; } -dl.tsd-comment-tags { +.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-tags dt { - float: left; - padding: 1px 5px; - margin: 0 10px 0 0; - border-radius: 4px; - border: 1px solid var(--color-comment-tag); - color: var(--color-comment-tag); - font-size: 0.8em; +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; font-weight: normal; } -dl.tsd-comment-tags dd { - margin: 0 0 10px 0; +dl.tsd-comment-tag-group dd { + margin: 0; } -dl.tsd-comment-tags dd:before, -dl.tsd-comment-tags dd:after { - display: table; +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-tags dd pre, -dl.tsd-comment-tags dd:after { +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { clear: both; } -dl.tsd-comment-tags p { +dl.tsd-comment-tag-group p { margin: 0; } @@ -582,153 +547,109 @@ dl.tsd-comment-tags p { margin-bottom: 0; } -.toggle-protected .tsd-is-private { - display: none; -} - -.toggle-public .tsd-is-private, -.toggle-public .tsd-is-protected, -.toggle-public .tsd-is-private-protected { - display: none; +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; } - -.toggle-inherited .tsd-is-inherited { - display: none; +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; } - -.toggle-externals .tsd-is-external { - display: none; +.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 { - position: relative; - display: inline-block; - height: 40px; - vertical-align: bottom; +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; } -.no-filter #tsd-filter { - display: none; +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; } -#tsd-filter .tsd-filter-group { - display: inline-block; - height: 40px; - vertical-align: bottom; - white-space: nowrap; +.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 { - display: none; +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); } -@media (max-width: 900px) { - #tsd-filter .tsd-filter-group { - display: block; - position: absolute; - top: 40px; - right: 20px; - height: auto; - background-color: var(--color-panel); - visibility: hidden; - transform: translate(50%, 0); - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); - } - .has-options #tsd-filter .tsd-filter-group { - visibility: visible; - } - .to-has-options #tsd-filter .tsd-filter-group { - animation: fade-in 0.2s; - } - .from-has-options #tsd-filter .tsd-filter-group { - animation: fade-out 0.2s; - } - #tsd-filter label, - #tsd-filter .tsd-select { - display: block; - padding-right: 20px; - } +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); } - -footer { - border-top: 1px solid var(--color-panel-divider); - background-color: var(--color-panel); +.tsd-checkbox-background { + fill: var(--color-accent); } -footer:after { - content: ""; - display: table; +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); } -footer.with-border-bottom { - border-bottom: 1px solid var(--color-panel-divider); +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; } -footer .tsd-legend-group { - font-size: 0; +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); } -footer .tsd-legend { - display: inline-block; - width: 25%; - padding: 0; - font-size: 16px; - list-style: none; - line-height: 1.333em; - vertical-align: top; + +.tsd-theme-toggle { + padding-top: 0.75rem; } -@media (max-width: 900px) { - footer .tsd-legend { - width: 50%; - } +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; } .tsd-hierarchy { list-style: square; - padding: 0 0 0 20px; margin: 0; } .tsd-hierarchy .target { font-weight: bold; } -.tsd-index-panel .tsd-index-content { - margin-bottom: -30px !important; -} -.tsd-index-panel .tsd-index-section { - margin-bottom: 30px !important; -} -.tsd-index-panel h3 { - margin: 0 -20px 10px -20px; - padding: 0 20px 10px 20px; - border-bottom: 1px solid var(--color-panel-divider); -} -.tsd-index-panel ul.tsd-index-list { - -webkit-column-count: 3; - -moz-column-count: 3; - -ms-column-count: 3; - -o-column-count: 3; - column-count: 3; - -webkit-column-gap: 20px; - -moz-column-gap: 20px; - -ms-column-gap: 20px; - -o-column-gap: 20px; - column-gap: 20px; - padding: 0; +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { list-style: none; line-height: 1.333em; -} -@media (max-width: 900px) { - .tsd-index-panel ul.tsd-index-list { - -webkit-column-count: 1; - -moz-column-count: 1; - -ms-column-count: 1; - -o-column-count: 1; - column-count: 1; + 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 (min-width: 901px) and (max-width: 1024px) { - .tsd-index-panel ul.tsd-index-list { - -webkit-column-count: 2; - -moz-column-count: 2; - -ms-column-count: 2; - -o-column-count: 2; - column-count: 2; +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); } } -.tsd-index-panel ul.tsd-index-list li { +.tsd-index-panel .tsd-index-list li { -webkit-page-break-inside: avoid; -moz-page-break-inside: avoid; -ms-page-break-inside: avoid; @@ -736,31 +657,40 @@ footer .tsd-legend { page-break-inside: avoid; } .tsd-index-panel a, -.tsd-index-panel .tsd-parent-kind-module a { +.tsd-index-panel a.tsd-parent-kind-module { color: var(--color-ts); } -.tsd-index-panel .tsd-parent-kind-interface a { +.tsd-index-panel a.tsd-parent-kind-interface { color: var(--color-ts-interface); } -.tsd-index-panel .tsd-parent-kind-enum a { +.tsd-index-panel a.tsd-parent-kind-enum { color: var(--color-ts-enum); } -.tsd-index-panel .tsd-parent-kind-class a { +.tsd-index-panel a.tsd-parent-kind-class { color: var(--color-ts-class); } -.tsd-index-panel .tsd-kind-module a { - color: var(--color-ts); +.tsd-index-panel a.tsd-kind-module { + color: var(--color-ts-namespace); } -.tsd-index-panel .tsd-kind-interface a { +.tsd-index-panel a.tsd-kind-interface { color: var(--color-ts-interface); } -.tsd-index-panel .tsd-kind-enum a { +.tsd-index-panel a.tsd-kind-enum { color: var(--color-ts-enum); } -.tsd-index-panel .tsd-kind-class a { +.tsd-index-panel a.tsd-kind-class { color: var(--color-ts-class); } -.tsd-index-panel .tsd-is-private a { +.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); } @@ -785,6 +715,8 @@ footer .tsd-legend { position: relative; } .tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; margin-top: 0; margin-bottom: 0; border-bottom: none; @@ -805,13 +737,9 @@ footer .tsd-legend { color: var(--color-ts-private); } -.tsd-navigation { - margin: 0 0 0 40px; -} .tsd-navigation a { display: block; - padding-top: 2px; - padding-bottom: 2px; + margin: 0.4rem 0; border-left: 2px solid transparent; color: var(--color-text); text-decoration: none; @@ -829,110 +757,167 @@ footer .tsd-legend { padding: 0; } -.tsd-navigation.primary { - padding-bottom: 40px; +.tsd-navigation.primary .tsd-accordion-details > ul { + margin-top: 0.75rem; } .tsd-navigation.primary a { - display: block; - padding-top: 6px; - padding-bottom: 6px; + padding: 0.75rem 0.5rem; + margin: 0; } .tsd-navigation.primary ul li a { - padding-left: 5px; + margin-left: 0.5rem; } .tsd-navigation.primary ul li li a { - padding-left: 25px; + margin-left: 1.5rem; } .tsd-navigation.primary ul li li li a { - padding-left: 45px; + margin-left: 2.5rem; } .tsd-navigation.primary ul li li li li a { - padding-left: 65px; + margin-left: 3.5rem; } .tsd-navigation.primary ul li li li li li a { - padding-left: 85px; + margin-left: 4.5rem; } .tsd-navigation.primary ul li li li li li li a { - padding-left: 105px; -} -.tsd-navigation.primary > ul { - border-bottom: 1px solid var(--color-panel-divider); -} -.tsd-navigation.primary li { - border-top: 1px solid var(--color-panel-divider); + 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 li.label span { - display: block; - padding: 20px 0 6px 5px; - color: var(--color-menu-label); +.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 { - max-height: calc(100vh - 1rem - 40px); - overflow: auto; - position: sticky; - top: calc(0.5rem + 40px); - transition: 0.3s; -} .tsd-navigation.secondary.tsd-navigation--toolbar-hide { max-height: calc(100vh - 1rem); top: 0.5rem; } -.tsd-navigation.secondary ul { +.tsd-navigation.secondary > ul { + display: inline; + padding-right: 0.5rem; transition: opacity 0.2s; } .tsd-navigation.secondary ul li a { - padding-left: 25px; + padding-left: 0; } .tsd-navigation.secondary ul li li a { - padding-left: 45px; + padding-left: 1.1rem; } .tsd-navigation.secondary ul li li li a { - padding-left: 65px; + padding-left: 2.2rem; } .tsd-navigation.secondary ul li li li li a { - padding-left: 85px; + padding-left: 3.3rem; } .tsd-navigation.secondary ul li li li li li a { - padding-left: 105px; + padding-left: 4.4rem; } .tsd-navigation.secondary ul li li li li li li a { - padding-left: 125px; + padding-left: 5.5rem; +} + +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-navigation.secondary ul.current a { - border-left-color: var(--color-panel-divider); +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; } -.tsd-navigation.secondary li.focus > a, -.tsd-navigation.secondary ul.current li.focus > a { - border-left-color: var(--color-menu-divider-focus); +.tsd-accordion-summary::-webkit-details-marker { + display: none; } -.tsd-navigation.secondary li.current { - margin-top: 20px; - margin-bottom: 20px; - border-left-color: var(--color-panel-divider); +.tsd-index-accordion .tsd-accordion-summary svg { + margin-right: 0.25rem; } -.tsd-navigation.secondary li.current > a { - font-weight: bold; +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; } -@media (min-width: 901px) { +.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: 1024px) { + .col-content { + margin: 2rem auto; + } + .menu-sticky-wrap { - position: static; + 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: 20px 0; - padding: 20px; - background-color: var(--color-panel); - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; } .tsd-panel:empty { display: none; @@ -940,48 +925,24 @@ footer .tsd-legend { .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { - margin: 1.5em -20px 10px -20px; - padding: 0 20px 10px 20px; - border-bottom: 1px solid var(--color-panel-divider); + 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: 0; -} -.tsd-panel table { - display: block; - width: 100%; - overflow: auto; - margin-top: 10px; - word-break: normal; - word-break: keep-all; - border-collapse: collapse; -} -.tsd-panel table th { - font-weight: bold; -} -.tsd-panel table th, -.tsd-panel table td { - padding: 6px 13px; - border: 1px solid var(--color-panel-divider); -} -.tsd-panel table tr { - background: var(--color-background); -} -.tsd-panel table tr:nth-child(even) { - background: var(--color-secondary-background); + border-bottom: none; } .tsd-panel-group { - margin: 60px 0; + margin: 4rem 0; } -.tsd-panel-group > h1, -.tsd-panel-group > h2, -.tsd-panel-group > h3 { - padding-left: 20px; - padding-right: 20px; +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; } #tsd-search { @@ -995,8 +956,8 @@ footer .tsd-legend { position: absolute; left: 0; top: 0; - right: 40px; - height: 40px; + right: 2.5rem; + height: 100%; } #tsd-search .field input { box-sizing: border-box; @@ -1035,14 +996,14 @@ footer .tsd-legend { background-color: var(--color-background); } #tsd-search .results li:nth-child(even) { - background-color: var(--color-panel); + 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-panel-divider); + background-color: var(--color-accent); } #tsd-search .results a { display: block; @@ -1055,7 +1016,7 @@ footer .tsd-legend { font-weight: normal; } #tsd-search.has-focus { - background-color: var(--color-panel-divider); + background-color: var(--color-accent); } #tsd-search.has-focus .field input { top: 0; @@ -1076,31 +1037,13 @@ footer .tsd-legend { } .tsd-signature { - margin: 0 0 1em 0; - padding: 10px; - border: 1px solid var(--color-panel-divider); + 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.tsd-kind-icon { - padding-left: 30px; -} -.tsd-signature.tsd-kind-icon:before { - top: 10px; - left: 10px; -} -.tsd-panel > .tsd-signature { - margin-left: -20px; - margin-right: -20px; - border-width: 1px 0; -} -.tsd-panel > .tsd-signature.tsd-kind-icon { - padding-left: 40px; -} -.tsd-panel > .tsd-signature.tsd-kind-icon:before { - left: 20px; -} .tsd-signature-symbol { color: var(--color-text-aside); @@ -1115,104 +1058,42 @@ footer .tsd-legend { .tsd-signatures { padding: 0; margin: 0 0 1em 0; - border: 1px solid var(--color-panel-divider); + list-style-type: none; } .tsd-signatures .tsd-signature { margin: 0; - border-width: 1px 0 0 0; - transition: background-color 0.1s; -} -.tsd-signatures .tsd-signature:first-child { - border-top-width: 0; -} -.tsd-signatures .tsd-signature.current { - background-color: var(--color-panel-divider); -} -.tsd-signatures.active > .tsd-signature { - cursor: pointer; -} -.tsd-panel > .tsd-signatures { - margin-left: -20px; - margin-right: -20px; + border-color: var(--color-accent); border-width: 1px 0; + transition: background-color 0.1s; } -.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { - padding-left: 40px; -} -.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { - left: 20px; -} -.tsd-panel > a.anchor + .tsd-signatures { - border-top-width: 0; - margin-top: -20px; -} - -ul.tsd-descriptions { - position: relative; - overflow: hidden; - padding: 0; - list-style: none; -} -ul.tsd-descriptions.active > .tsd-description { - display: none; -} -ul.tsd-descriptions.active > .tsd-description.current { - display: block; -} -ul.tsd-descriptions.active > .tsd-description.fade-in { - animation: fade-in-delayed 0.3s; -} -ul.tsd-descriptions.active > .tsd-description.fade-out { - animation: fade-out-delayed 0.3s; - position: absolute; - display: block; - top: 0; - left: 0; - right: 0; - opacity: 0; - visibility: hidden; -} -ul.tsd-descriptions h4, -ul.tsd-descriptions .tsd-index-panel h3, -.tsd-index-panel ul.tsd-descriptions h3 { - font-size: 16px; - margin: 1em 0 0.5em 0; +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; } -ul.tsd-parameters, -ul.tsd-type-parameters { +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { list-style: square; margin: 0; padding-left: 20px; } -ul.tsd-parameters > li.tsd-parameter-signature, -ul.tsd-type-parameters > li.tsd-parameter-signature { +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-parameters h5, -ul.tsd-type-parameters h5 { +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { font-size: 16px; margin: 1em 0 0.5em 0; } -ul.tsd-parameters .tsd-comment, -ul.tsd-type-parameters .tsd-comment { - margin-top: -0.5em; -} - .tsd-sources { - font-size: 14px; - color: var(--color-text-aside); - margin: 0 0 1em 0; + margin-top: 1rem; + font-size: 0.875em; } .tsd-sources a { color: var(--color-text-aside); text-decoration: underline; } -.tsd-sources ul, -.tsd-sources p { - margin: 0 !important; -} .tsd-sources ul { list-style: none; padding: 0; @@ -1224,14 +1105,13 @@ ul.tsd-type-parameters .tsd-comment { top: 0; left: 0; width: 100%; - height: 40px; - color: var(--color-toolbar-text); - background: var(--color-toolbar); - border-bottom: 1px solid var(--color-panel-divider); - transition: transform 0.3s linear; + 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-toolbar-text); + color: var(--color-text); text-decoration: none; } .tsd-page-toolbar a.title { @@ -1240,13 +1120,12 @@ ul.tsd-type-parameters .tsd-comment { .tsd-page-toolbar a.title:hover { text-decoration: underline; } -.tsd-page-toolbar .table-wrap { - display: table; - width: 100%; - height: 40px; +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; } .tsd-page-toolbar .table-cell { - display: table-cell; position: relative; white-space: nowrap; line-height: 40px; @@ -1259,29 +1138,6 @@ ul.tsd-type-parameters .tsd-comment { transform: translateY(-100%); } -.tsd-select .tsd-select-list li:before, -.tsd-select .tsd-select-label:before, -.tsd-widget:before { - content: ""; - display: inline-block; - width: 40px; - height: 40px; - margin: 0 -8px 0 0; - background-image: url(./widgets.png); - background-repeat: no-repeat; - text-indent: -1024px; - vertical-align: bottom; - filter: var(--icon-filter); -} -@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { - .tsd-select .tsd-select-list li:before, - .tsd-select .tsd-select-label:before, - .tsd-widget:before { - background-image: url(./widgets@2x.png); - background-size: 320px 40px; - } -} - .tsd-widget { display: inline-block; overflow: hidden; @@ -1296,7 +1152,7 @@ ul.tsd-type-parameters .tsd-comment { } .tsd-widget.active { opacity: 1; - background-color: var(--color-panel-divider); + background-color: var(--color-accent); } .tsd-widget.no-caption { width: 40px; @@ -1304,20 +1160,12 @@ ul.tsd-type-parameters .tsd-comment { .tsd-widget.no-caption:before { margin: 0; } -.tsd-widget.search:before { - background-position: 0 0; -} -.tsd-widget.menu:before { - background-position: -40px 0; -} -.tsd-widget.options:before { - background-position: -80px 0; -} + .tsd-widget.options, .tsd-widget.menu { display: none; } -@media (max-width: 900px) { +@media (max-width: 1024px) { .tsd-widget.options, .tsd-widget.menu { display: inline-block; @@ -1330,75 +1178,14 @@ input[type="checkbox"]:checked + .tsd-widget:before { background-position: -160px 0; } -.tsd-select { - position: relative; - display: inline-block; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; -} -.tsd-select .tsd-select-label { - opacity: 0.6; - transition: opacity 0.2s; -} -.tsd-select .tsd-select-label:before { - background-position: -240px 0; -} -.tsd-select.active .tsd-select-label { - opacity: 0.8; -} -.tsd-select.active .tsd-select-list { - visibility: visible; - opacity: 1; - transition-delay: 0s; -} -.tsd-select .tsd-select-list { - position: absolute; - visibility: hidden; - top: 40px; - left: 0; - margin: 0; - padding: 0; - opacity: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); - transition: visibility 0s 0.2s, opacity 0.2s; -} -.tsd-select .tsd-select-list li { - padding: 0 20px 0 0; - background-color: var(--color-background); -} -.tsd-select .tsd-select-list li:before { - background-position: 40px 0; -} -.tsd-select .tsd-select-list li:nth-child(even) { - background-color: var(--color-panel); -} -.tsd-select .tsd-select-list li:hover { - background-color: var(--color-panel-divider); -} -.tsd-select .tsd-select-list li.selected:before { - background-position: -200px 0; -} -@media (max-width: 900px) { - .tsd-select .tsd-select-list { - top: 0; - left: auto; - right: 100%; - margin-right: -5px; - } - .tsd-select .tsd-select-label:before { - background-position: -280px 0; - } -} - img { max-width: 100%; } .tsd-anchor-icon { - margin-left: 10px; + display: inline-flex; + align-items: center; + margin-left: 0.5rem; vertical-align: middle; color: var(--color-text); } @@ -1412,3 +1199,26 @@ img { .tsd-anchor-link:hover > .tsd-anchor-icon svg { visibility: visible; } + +.deprecated { + text-decoration: line-through; +} + +* { + 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/docs/typedoc/classes/apiclient.APIClient.html b/docs/typedoc/classes/apiclient.APIClient.html index 0e7c471a..b36a49d7 100644 --- a/docs/typedoc/classes/apiclient.APIClient.html +++ b/docs/typedoc/classes/apiclient.APIClient.html @@ -1,182 +1,846 @@ -APIClient | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

APIClient class

-

Hierarchy

  • APIClient

Index

Constructors

Properties

curlopts: any
-

additional connection settings

-
debugMode: boolean
-

activity flag for debug mode

-
logger: null | Logger
-

logger function for debug mode

-
socketConfig: SocketConfig
-

Object covering API connection data

-
socketURL: string
-

API connection url

-
ua: string
-

User Agent string

-
socketTimeout: number = 300000
-

API connection timeout setting

-

Methods

  • autoIDNConvert(cmd: any): Promise<any>
  • -

    Auto convert API command parameters to punycode, if necessary.

    -

    Parameters

    • cmd: any
      -

      api command

      -

    Returns Promise<any>

    Promise resolving with api command with IDN values replaced to punycode

    -
  • -

    Enable Debug Output to STDOUT

    -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • flattenCommand(cmd: any): any
  • -

    Flatten nested arrays in command

    -

    Parameters

    • cmd: any
      -

      api command

      -

    Returns any

    api command with flattended parameters

    -
  • getPOSTData(cmd: any, secured?: boolean): string
  • -

    Serialize given command for POST request including connection configuration data

    -

    Parameters

    • cmd: any
      -

      API command to encode

      -
    • secured: boolean = false

    Returns string

    encoded POST data string

    -
  • getProxy(): null | string
  • -

    Get the proxy server configuration

    -

    Returns null | string

    proxy server configuration value or null if not set

    -
  • getReferer(): null | string
  • -

    Get the referer configuration

    -

    Returns null | string

    referer configuration value or null if not set

    -
  • getSession(): null | string
  • -

    Get the API Session that is currently set

    -

    Returns null | string

    API Session or null

    -
  • getURL(): string
  • -

    Get the API connection url that is currently set

    -

    Returns string

    API connection url currently in use

    -
  • getUserAgent(): string
  • -

    Get the User Agent

    -

    Returns string

    User Agent string

    -
  • getVersion(): string
  • -

    Get the current module version

    -

    Returns string

    module version

    -
  • -

    Perform API login to start session-based communication

    -

    Parameters

    • otp: string = ""
      -

      optional one time password

      -

    Returns Promise<Response>

    Promise resolving with API Response

    -
  • loginExtended(params: any, otp?: string): Promise<Response>
  • -

    Perform API logout to close API session in use

    -

    Returns Promise<Response>

    Promise resolving with API Response

    -
  • -

    Perform API request using the given command

    -

    Parameters

    • cmd: any
      -

      API command to request

      -

    Returns Promise<Response>

    Promise resolving with API Response

    -
  • requestAllResponsePages(cmd: any): Promise<Response[]>
  • -

    Request all pages/entries for the given query command

    -

    Parameters

    • cmd: any
      -

      API list command to use

      -

    Returns Promise<Response[]>

    Promise resolving with array of API Responses

    -
  • -

    Request the next page of list entries for the current list query + +

    Returns

    Promise resolving with API Response

    +
    +
    +

    Parameters

    +
      +
    • +
      params: any
      +

      given specific command parameters

      +
    • +
    • +
      otp: string = ""
      +

      optional one time password

      +
    +

    Returns Promise<Response>

+
+ +
    + +
  • +

    Perform API logout to close API session in use

    + +

    Returns

    Promise resolving with API Response

    +
    +

    Returns Promise<Response>

+
+ +
    + +
  • +

    Perform API request using the given command

    + +

    Returns

    Promise resolving with API Response

    +
    +
    +

    Parameters

    +
      +
    • +
      cmd: any
      +

      API command to request

      +
    +

    Returns Promise<Response>

+
+ +
    + +
  • +

    Request all pages/entries for the given query command

    + +

    Returns

    Promise resolving with array of API Responses

    +
    +
    +

    Parameters

    +
      +
    • +
      cmd: any
      +

      API list command to use

      +
    +

    Returns Promise<Response[]>

+
+ +
    + +
  • +

    Request the next page of list entries for the current list query Useful for tables

    -

Parameters

  • rr: Response
    -

    API Response of current page

    -

Returns Promise<null | Response>

Promise resolving with API Response or null in case there are no further list entries

-
  • -

    Reset data view back from subuser to user

    -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Use existing configuration out of ClientRequest session + +

    Returns

    Promise resolving with API Response or null in case there are no further list entries

    +
    +
    +

    Parameters

    +
      +
    • +
      rr: Response
      +

      API Response of current page

      +
    +

    Returns Promise<null | Response>

+
+ +
    + +
  • +

    Reset data view back from subuser to user

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Use existing configuration out of ClientRequest session to rebuild and reuse connection settings

    -

Parameters

  • session: any
    -

    ClientRequest session instance

    -

Returns APIClient

Current APIClient instance for method chaining

-
  • -

    Apply session data (session id and system entity) to given client request session

    -

    Parameters

    • session: any
      -

      ClientRequest session instance

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • setCredentials(uid: string, pw: string): APIClient
  • -

    Set Credentials to be used for API communication

    -

    Parameters

    • uid: string
      -

      account name

      -
    • pw: string
      -

      account password

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    set custom logger to use instead of default one

    -

    Parameters

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    set default logger to use

    -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set one time password to be used for API communication

    -

    Parameters

    • value: string
      -

      one time password

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set the proxy server to use for API communication

    -

    Parameters

    • proxy: string
      -

      proxy server to use for communicatio

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set the referer to use for API communication

    -

    Parameters

    • referer: string
      -

      Referer

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set an Remote IP Address to be used for API communication + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      session: any
      +

      ClientRequest session instance

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Apply session data (session id and system entity) to given client request session

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      session: any
      +

      ClientRequest session instance

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set Credentials to be used for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      uid: string
      +

      account name

      +
    • +
    • +
      pw: string
      +

      account password

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    set custom logger to use instead of default one

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
    +

    Returns APIClient

+
+ +
    + +
  • +

    set default logger to use

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set one time password to be used for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      value: string
      +

      one time password

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set the proxy server to use for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      proxy: string
      +

      proxy server to use for communicatio

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set the referer to use for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      referer: string
      +

      Referer

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set an Remote IP Address to be used for API communication To be used in case you have an active ip filter setting.

    -

Parameters

  • value: string
    -

    Remote IP Address

    -

Returns APIClient

Current APIClient instance for method chaining

-
  • setRoleCredentials(uid: string, role: string, pw: string): APIClient
  • -

    Set Credentials to be used for API communication

    -

    Parameters

    • uid: string
      -

      account name

      -
    • role: string
      -

      role user id

      -
    • pw: string
      -

      role user password

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set an API session id to be used for API communication

    -

    Parameters

    • value: string
      -

      API session id

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set another connection url to be used for API communication

    -

    Parameters

    • value: string
      -

      API connection url to set

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • setUserAgent(str: string, rv: string, modules?: any): APIClient
  • -

    Possibility to customize default user agent to fit your needs

    -

    Parameters

    • str: string
      -

      user agent label

      -
    • rv: string
      -

      revision of user agent

      -
    • modules: any = []
      -

      further modules to add to user agent string, format: ["/", "/", ... ]

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set a data view to a given subuser

    -

    Parameters

    • uid: string
      -

      subuser account name

      -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Activate Default Connection Setup (the default)

    -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • useHighPerformanceConnectionSetup(): APIClient
  • -

    Set LIVE System for API communication (this is the default setting)

    -

    Returns APIClient

    Current APIClient instance for method chaining

    -
  • -

    Set OT&E System for API communication

    -

    Returns APIClient

    Current APIClient instance for method chaining

    -

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Function
  • Private property
  • Private method
  • Static property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file + +

Returns

Current APIClient instance for method chaining

+
+
+

Parameters

+
    +
  • +
    value: string
    +

    Remote IP Address

    +
+

Returns APIClient

+
+ +
    + +
  • +

    Set Credentials to be used for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      uid: string
      +

      account name

      +
    • +
    • +
      role: string
      +

      role user id

      +
    • +
    • +
      pw: string
      +

      role user password

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set an API session id to be used for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      value: string
      +

      API session id

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set another connection url to be used for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      value: string
      +

      API connection url to set

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Possibility to customize default user agent to fit your needs

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      str: string
      +

      user agent label

      +
    • +
    • +
      rv: string
      +

      revision of user agent

      +
    • +
    • +
      modules: any = []
      +

      further modules to add to user agent string, format: ["/", "/", ... ]

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set a data view to a given subuser

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      uid: string
      +

      subuser account name

      +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Activate Default Connection Setup (the default)

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +

    Returns APIClient

+
+ +
+
+ +
    + +
  • +

    Set LIVE System for API communication (this is the default setting)

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +

    Returns APIClient

+
+ +
    + +
  • +

    Set OT&E System for API communication

    + +

    Returns

    Current APIClient instance for method chaining

    +
    +

    Returns APIClient

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/column.Column.html b/docs/typedoc/classes/column.Column.html index 29e731ff..369ef44d 100644 --- a/docs/typedoc/classes/column.Column.html +++ b/docs/typedoc/classes/column.Column.html @@ -1,25 +1,206 @@ -Column | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

Column class

-

Hierarchy

  • Column

Index

Constructors

  • new Column(key: string, data: string[]): Column

Properties

data: string[]
-

column data container

-
key: string
-

column key name

-
length: number
-

count of column data entries

-

Methods

  • getData(): string[]
  • -

    Get column data

    -

    Returns string[]

    column data

    -
  • getDataByIndex(idx: number): null | string
  • -

    Get column data at given index

    -

    Parameters

    • idx: number
      -

      data index

      -

    Returns null | string

    data at given index

    -
  • getKey(): string
  • -

    Get column name

    -

    Returns string

    column name

    -
  • hasDataIndex(idx: number): boolean
  • -

    Check if column has a given data index

    -

    Parameters

    • idx: number
      -

      data index

      -

    Returns boolean

    boolean result

    -

Legend

  • Class
  • Constructor
  • Property
  • Method
  • Variable
  • Function
  • Private property
  • Private method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Column | @hexonet/ispapi-apiconnector
+
+ +
+
+
+ +
+

Column class

+
+
+

Hierarchy

+
    +
  • Column
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
    + +
  • +
    +

    Parameters

    +
      +
    • +
      key: string
    • +
    • +
      data: string[]
    +

    Returns Column

+
+

Properties

+
+ +
data: string[]
+

column data container

+
+
+ +
key: string
+

column key name

+
+
+ +
length: number
+

count of column data entries

+
+
+

Methods

+
+ +
    + +
  • +

    Get column data

    + +

    Returns

    column data

    +
    +

    Returns string[]

+
+ +
    + +
  • +

    Get column data at given index

    + +

    Returns

    data at given index

    +
    +
    +

    Parameters

    +
      +
    • +
      idx: number
      +

      data index

      +
    +

    Returns null | string

+
+ +
    + +
  • +

    Get column name

    + +

    Returns

    column name

    +
    +

    Returns string

+
+ +
    + +
  • +

    Check if column has a given data index

    + +

    Returns

    boolean result

    +
    +
    +

    Parameters

    +
      +
    • +
      idx: number
      +

      data index

      +
    +

    Returns boolean

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/customlogger.CustomLogger.html b/docs/typedoc/classes/customlogger.CustomLogger.html index 0aba97f9..e910c13e 100644 --- a/docs/typedoc/classes/customlogger.CustomLogger.html +++ b/docs/typedoc/classes/customlogger.CustomLogger.html @@ -1,12 +1,128 @@ -CustomLogger | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

Logger class

-

Hierarchy

Index

Constructors

Methods

Constructors

Methods

  • -

    output/log given data

    -

    Parameters

    • post: string
      -

      request string used

      -
    • r: Response
      -

      Response object

      -
    • error: null | string = null
      -

      error message or null

      -

    Returns CustomLogger

    current Logger instance for method chaining

    -

Legend

  • Variable
  • Function
  • Class
  • Method
  • Inherited constructor

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +CustomLogger | @hexonet/ispapi-apiconnector
+
+ +
+
+
+ +
+

Logger class

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Methods

+
log +
+
+

Constructors

+
+ +
+
+

Methods

+
+ +
    + +
  • +

    output/log given data

    + +

    Returns

    current Logger instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      post: string
      +

      request string used

      +
    • +
    • +
      r: Response
      +

      Response object

      +
    • +
    • +
      error: null | string = null
      +

      error message or null

      +
    +

    Returns CustomLogger

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/logger.Logger.html b/docs/typedoc/classes/logger.Logger.html index 7cee2cbd..abf2b9bf 100644 --- a/docs/typedoc/classes/logger.Logger.html +++ b/docs/typedoc/classes/logger.Logger.html @@ -1,12 +1,126 @@ -Logger | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

Logger class

-

Hierarchy

Index

Constructors

Methods

Constructors

Methods

  • -

    output/log given data

    -

    Parameters

    • post: string
      -

      request string used

      -
    • r: Response
      -

      Response object

      -
    • error: null | string = null
      -

      error message or null

      -

    Returns Logger

    current Logger instance for method chaining

    -

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Function

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Logger | @hexonet/ispapi-apiconnector
+
+ +
+
+
+ +
+

Logger class

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+
+

Methods

+
log +
+
+

Constructors

+
+ +
+
+

Methods

+
+ +
    + +
  • +

    output/log given data

    + +

    Returns

    current Logger instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      post: string
      +

      request string used

      +
    • +
    • +
      r: Response
      +

      Response object

      +
    • +
    • +
      error: null | string = null
      +

      error message or null

      +
    +

    Returns Logger

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/record.Record.html b/docs/typedoc/classes/record.Record.html index 18cca4da..18b3847e 100644 --- a/docs/typedoc/classes/record.Record.html +++ b/docs/typedoc/classes/record.Record.html @@ -1,22 +1,176 @@ -Record | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

Record class

-

Hierarchy

  • Record

Index

Constructors

Properties

Methods

Constructors

  • -

    Constructor

    -

    Parameters

    • data: any
      -

      data object (use column names as object keys)

      -

    Returns Record

Properties

data: any
-

row data container

-

Methods

  • getData(): any
  • -

    get row data

    -

    Returns any

    row data

    -
  • getDataByKey(key: string): null | string
  • -

    get row data for given column

    -

    Parameters

    • key: string
      -

      column name

      -

    Returns null | string

    row data for given column or null if column does not exist

    -
  • hasData(key: string): boolean
  • -

    check if record has data for given column

    -

    Parameters

    • key: string
      -

      column name

      -

    Returns boolean

    boolean result

    -

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Function
  • Private property
  • Private method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Record | @hexonet/ispapi-apiconnector
+
+ +
+
+
+ +
+

Record class

+
+
+

Hierarchy

+
    +
  • Record
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
    + +
  • +

    Constructor

    +
    +
    +

    Parameters

    +
      +
    • +
      data: any
      +

      data object (use column names as object keys)

      +
    +

    Returns Record

+
+

Properties

+
+ +
data: any
+

row data container

+
+
+

Methods

+
+ +
    + +
  • +

    get row data

    + +

    Returns

    row data

    +
    +

    Returns any

+
+ +
    + +
  • +

    get row data for given column

    + +

    Returns

    row data for given column or null if column does not exist

    +
    +
    +

    Parameters

    +
      +
    • +
      key: string
      +

      column name

      +
    +

    Returns null | string

+
+ +
    + +
  • +

    check if record has data for given column

    + +

    Returns

    boolean result

    +
    +
    +

    Parameters

    +
      +
    • +
      key: string
      +

      column name

      +
    +

    Returns boolean

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/response.Response.html b/docs/typedoc/classes/response.Response.html index 031ec4c6..7617057d 100644 --- a/docs/typedoc/classes/response.Response.html +++ b/docs/typedoc/classes/response.Response.html @@ -1,171 +1,828 @@ -Response | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

Response Class inheriting from ResponseTemplate Class

-

Hierarchy

Index

Constructors

  • new Response(raw: string, cmd: any, ph?: any): Response

Properties

columnkeys: string[]
-

Column names available in this responsse +Response | @hexonet/ispapi-apiconnector

+
+ +
+
+
+ +
+

Response Class inheriting from ResponseTemplate Class

+
+
+

Hierarchy

+
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
columnkeys: string[]
+

Column names available in this responsse NOTE: this includes also FIRST, LAST, LIMIT, COUNT, TOTAL and maybe further specific columns in case of a list query

-
columns: Column[]
-

Container of Column Instances

-
command: any
-

The API Command used within this request

-
hash: any
-

hash representation of plain API response

-
raw: string
-

plain API response

-
recordIndex: number
-

Record Index we currently point to in record list

-
records: Record[]
-

Record List (List of rows)

-

Methods

  • addColumn(key: string, data: string[]): Response
  • -

    Add a column to the column list

    -

    Parameters

    • key: string
      -

      column name

      -
    • data: string[]
      -

      array of column data

      -

    Returns Response

    Current Response Instance for method chaining

    -
  • -

    Add a record to the record list

    -

    Parameters

    • h: any
      -

      row hash data

      -

    Returns Response

    Current Response Instance for method chaining

    -
  • getCode(): number
  • getColumn(key: string): null | Column
  • -

    Get column by column name

    -

    Parameters

    • key: string
      -

      column name

      -

    Returns null | Column

    column instance or null if column does not exist

    -
  • getColumnIndex(colkey: string, index: number): null | string
  • -

    Get Data by Column Name and Index

    -

    Parameters

    • colkey: string
      -

      column name

      -
    • index: number
      -

      column data index

      -

    Returns null | string

    column data at index or null if not found

    -
  • getColumnKeys(): string[]
  • -

    Get Column Names

    -

    Returns string[]

    Array of Column Names

    -
  • getCommand(): any
  • -

    Get Command used in this request

    -

    Returns any

    command

    -
  • getCommandPlain(): string
  • -

    Get Command used in this request in plain text format

    -

    Returns string

    command as plain text

    -
  • getCurrentPageNumber(): null | number
  • -

    Get Page Number of current List Query

    -

    Returns null | number

    page number or null in case of a non-list response

    -
  • getCurrentRecord(): null | Record
  • -

    Get Record of current record index

    -

    Returns null | Record

    Record or null in case of a non-list response

    -
  • getDescription(): string
  • getFirstRecordIndex(): null | number
  • -

    Get Index of first row in this response

    -

    Returns null | number

    first row index

    -
  • getHash(): any
  • getLastRecordIndex(): null | number
  • -

    Get last record index of the current list query

    -

    Returns null | number

    record index or null for a non-list response

    -
  • getListHash(): any
  • -

    Get Response as List Hash including useful meta data for tables

    -

    Returns any

    hash including list meta data and array of rows in hash notation

    -
  • getNextPageNumber(): null | number
  • -

    Get Page Number of next list query

    -

    Returns null | number

    page number or null if there's no next page

    -
  • getNextRecord(): null | Record
  • -

    Get next record in record list

    -

    Returns null | Record

    Record or null in case there's no further record

    -
  • getNumberOfPages(): number
  • -

    Get the number of pages available for this list query

    -

    Returns number

    number of pages

    -
  • getPagination(): any
  • -

    Get object containing all paging data

    -

    Returns any

    paginator data

    -
  • getPlain(): string
  • getPreviousPageNumber(): null | number
  • -

    Get Page Number of previous list query

    -

    Returns null | number

    page number or null if there's no previous page

    -
  • getPreviousRecord(): null | Record
  • -

    Get previous record in record list

    -

    Returns null | Record

    Record or null if there's no previous record

    -
  • getQueuetime(): number
  • getRecord(idx: number): null | Record
  • -

    Get Record at given index

    -

    Parameters

    • idx: number
      -

      record index

      -

    Returns null | Record

    Record or null if index does not exist

    -
  • getRecordsCount(): number
  • -

    Get count of rows in this response

    -

    Returns number

    count of rows

    -
  • getRecordsLimitation(): number
+
+ +
columns: Column[]
+

Container of Column Instances

+
+
+ +
command: any
+

The API Command used within this request

+
+
+ +
hash: any
+

hash representation of plain API response

+
+
+ +
raw: string
+

plain API response

+
+
+ +
recordIndex: number
+

Record Index we currently point to in record list

+
+
+ +
records: Record[]
+

Record List (List of rows)

+
+
+

Methods

+
+ +
    + +
  • +

    Add a column to the column list

    + +

    Returns

    Current Response Instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      key: string
      +

      column name

      +
    • +
    • +
      data: string[]
      +

      array of column data

      +
    +

    Returns Response

+
+ +
    + +
  • +

    Add a record to the record list

    + +

    Returns

    Current Response Instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      h: any
      +

      row hash data

      +
    +

    Returns Response

+
+ +
+
+ +
    + +
  • +

    Get column by column name

    + +

    Returns

    column instance or null if column does not exist

    +
    +
    +

    Parameters

    +
      +
    • +
      key: string
      +

      column name

      +
    +

    Returns null | Column

+
+ +
    + +
  • +

    Get Data by Column Name and Index

    + +

    Returns

    column data at index or null if not found

    +
    +
    +

    Parameters

    +
      +
    • +
      colkey: string
      +

      column name

      +
    • +
    • +
      index: number
      +

      column data index

      +
    +

    Returns null | string

+
+ +
    + +
  • +

    Get Column Names

    + +

    Returns

    Array of Column Names

    +
    +

    Returns string[]

+
+ +
+
+ +
    + +
  • +

    Get Command used in this request

    + +

    Returns

    command

    +
    +

    Returns any

+
+ +
    + +
  • +

    Get Command used in this request in plain text format

    + +

    Returns

    command as plain text

    +
    +

    Returns string

+
+ +
    + +
  • +

    Get Page Number of current List Query

    + +

    Returns

    page number or null in case of a non-list response

    +
    +

    Returns null | number

+
+ +
    + +
  • +

    Get Record of current record index

    + +

    Returns

    Record or null in case of a non-list response

    +
    +

    Returns null | Record

+
+ +
+
+ +
    + +
  • +

    Get Index of first row in this response

    + +

    Returns

    first row index

    +
    +

    Returns null | number

+
+ +
+
+ +
    + +
  • +

    Get last record index of the current list query

    + +

    Returns

    record index or null for a non-list response

    +
    +

    Returns null | number

+
+ +
    + +
  • +

    Get Response as List Hash including useful meta data for tables

    + +

    Returns

    hash including list meta data and array of rows in hash notation

    +
    +

    Returns any

+
+ +
    + +
  • +

    Get Page Number of next list query

    + +

    Returns

    page number or null if there's no next page

    +
    +

    Returns null | number

+
+ +
    + +
  • +

    Get next record in record list

    + +

    Returns

    Record or null in case there's no further record

    +
    +

    Returns null | Record

+
+ +
    + +
  • +

    Get the number of pages available for this list query

    + +

    Returns

    number of pages

    +
    +

    Returns number

+
+ +
    + +
  • +

    Get object containing all paging data

    + +

    Returns

    paginator data

    +
    +

    Returns any

+
+ +
+
+ +
    + +
  • +

    Get Page Number of previous list query

    + +

    Returns

    page number or null if there's no previous page

    +
    +

    Returns null | number

+
+ +
    + +
  • +

    Get previous record in record list

    + +

    Returns

    Record or null if there's no previous record

    +
    +

    Returns null | Record

+
+ +
+
+ +
    + +
  • +

    Get Record at given index

    + +

    Returns

    Record or null if index does not exist

    +
    +
    +

    Parameters

    +
      +
    • +
      idx: number
      +

      record index

      +
    +

    Returns null | Record

+
+ +
+
+ +
    + +
  • +

    Get count of rows in this response

    + +

    Returns

    count of rows

    +
    +

    Returns number

+
+ +
    + +
  • +

    Get limit(ation) setting of the current list query This is the count of requested rows

    -

Returns number

limit setting or count requested rows

-
  • getRecordsTotalCount(): number
  • -

    Get total count of records available for the list query

    -

    Returns number

    total count of records or count of records for a non-list response

    -
  • getRuntime(): number
  • hasColumn(key: string): boolean
  • -

    Check if column exists in response

    -

    Parameters

    • key: string
      -

      column name

      -

    Returns boolean

    boolean result

    -
  • hasCurrentRecord(): boolean
  • -

    Check if the record list contains a record for the + +

    Returns

    limit setting or count requested rows

    +
    +

    Returns number

+
+ +
    + +
  • +

    Get total count of records available for the list query

    + +

    Returns

    total count of records or count of records for a non-list response

    +
    +

    Returns number

+
+ +
+
+ +
    + +
  • +

    Check if column exists in response

    + +

    Returns

    boolean result

    +
    +
    +

    Parameters

    +
      +
    • +
      key: string
      +

      column name

      +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if the record list contains a record for the current record index in use

    -

Returns boolean

boolean result

-
  • hasNextPage(): boolean
  • -

    Check if this list query has a next page

    -

    Returns boolean

    boolean result

    -
  • hasNextRecord(): boolean
  • -

    Check if the record list contains a next record for the + +

    Returns

    boolean result

    +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if this list query has a next page

    + +

    Returns

    boolean result

    +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if the record list contains a next record for the current record index in use

    -

Returns boolean

boolean result

-
  • hasPreviousPage(): boolean
  • -

    Check if this list query has a previous page

    -

    Returns boolean

    boolean result

    -
  • hasPreviousRecord(): boolean
  • -

    Check if the record list contains a previous record for the + +

    Returns

    boolean result

    +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if this list query has a previous page

    + +

    Returns

    boolean result

    +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if the record list contains a previous record for the current record index in use

    -

Returns boolean

boolean result

-
  • isError(): boolean
+
+ +
    + +
  • +

    Check if current API response represents an error case API response code is an 5xx code

    -

Returns boolean

boolean result

-
  • isPending(): boolean
  • isSuccess(): boolean
+
+ +
+
+ +
    + +
  • +

    Check if current API response represents a success case API response code is an 2xx code

    -

Returns boolean

boolean result

-
  • isTmpError(): boolean
+
+ +
    + +
  • +

    Check if current API response represents a temporary error case API response code is an 4xx code

    -

Returns boolean

boolean result

-
  • -

    Reset index in record list back to zero

    -

    Returns Response

    Current Response Instance for method chaining

    -

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Function
  • Private property
  • Private method
  • Inherited method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file + +

Returns

boolean result

+
+

Returns boolean

+
+ +
    + +
  • +

    Reset index in record list back to zero

    + +

    Returns

    Current Response Instance for method chaining

    +
    +

    Returns Response

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/responsetemplate.ResponseTemplate.html b/docs/typedoc/classes/responsetemplate.ResponseTemplate.html index e0a9e660..ead859f0 100644 --- a/docs/typedoc/classes/responsetemplate.ResponseTemplate.html +++ b/docs/typedoc/classes/responsetemplate.ResponseTemplate.html @@ -1,44 +1,274 @@ -ResponseTemplate | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

ResponseTemplate class

-

Hierarchy

Index

Constructors

Properties

hash: any
-

hash representation of plain API response

-
raw: string
-

plain API response

-

Methods

  • getCode(): number
  • getDescription(): string
  • getHash(): any
  • getPlain(): string
  • getQueuetime(): number
  • getRuntime(): number
  • isError(): boolean
  • isPending(): boolean
  • -

    Check if current operation is returned as pending

    -

    Returns boolean

    boolean result

    -
  • isSuccess(): boolean
+
+ +
    + +
  • +

    Check if current operation is returned as pending

    + +

    Returns

    boolean result

    +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if current API response represents a success case API response code is an 2xx code

    -

Returns boolean

boolean result

-
  • isTmpError(): boolean
+
+ +
    + +
  • +

    Check if current API response represents a temporary error case API response code is an 4xx code

    -

Returns boolean

boolean result

-

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Function
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file + +

Returns

boolean result

+
+

Returns boolean

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html b/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html index 853d69b2..2dec48a1 100644 --- a/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html +++ b/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html @@ -1,51 +1,290 @@ -ResponseTemplateManager | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

ResponseTemplateManager Singleton Class

-

Hierarchy

  • ResponseTemplateManager

Index

Constructors

Properties

templates: any
-

template container

-
-

ResponseTemplateManager Instance

-

Methods

  • generateTemplate(code: string, description: string): string
  • -

    Generate API response template string for given code and description

    -

    Parameters

    • code: string
      -

      API response code

      -
    • description: string
      -

      API response description

      -

    Returns string

    generate response template string

    -
  • getTemplates(): any
  • hasTemplate(id: string): boolean
  • -

    Check if given template exists in template container

    -

    Parameters

    • id: string
      -

      template id

      -

    Returns boolean

    boolean result

    -
  • isTemplateMatchHash(tpl2: any, id: string): boolean
  • -

    Check if given API response hash matches a given template by code and description

    -

    Parameters

    • tpl2: any
      -

      api response hash

      -
    • id: string
      -

      template id

      -

    Returns boolean

    boolean result

    -
  • isTemplateMatchPlain(plain: string, id: string): boolean
  • -

    Check if given API plain response matches a given template by code and description

    -

    Parameters

    • plain: string
      -

      API plain response

      -
    • id: string
      -

      template id

      -

    Returns boolean

    boolean result

    -

Legend

  • Variable
  • Function
  • Class
  • Method
  • Private property
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ResponseTemplateManager | @hexonet/ispapi-apiconnector
+
+ +
+
+
+ +
+

ResponseTemplateManager Singleton Class

+
+
+

Hierarchy

+
    +
  • ResponseTemplateManager
+
+
+
+ +
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
templates: any
+

template container

+
+
+ + +

ResponseTemplateManager Instance

+
+
+

Methods

+
+ +
+
+ +
    + +
  • +

    Generate API response template string for given code and description

    + +

    Returns

    generate response template string

    +
    +
    +

    Parameters

    +
      +
    • +
      code: string
      +

      API response code

      +
    • +
    • +
      description: string
      +

      API response description

      +
    +

    Returns string

+
+ +
+
+ +
    + +
  • +

    Return all available response templates

    + +

    Returns

    all available response template instances

    +
    +

    Returns any

+
+ +
    + +
  • +

    Check if given template exists in template container

    + +

    Returns

    boolean result

    +
    +
    +

    Parameters

    +
      +
    • +
      id: string
      +

      template id

      +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if given API response hash matches a given template by code and description

    + +

    Returns

    boolean result

    +
    +
    +

    Parameters

    +
      +
    • +
      tpl2: any
      +

      api response hash

      +
    • +
    • +
      id: string
      +

      template id

      +
    +

    Returns boolean

+
+ +
    + +
  • +

    Check if given API plain response matches a given template by code and description

    + +

    Returns

    boolean result

    +
    +
    +

    Parameters

    +
      +
    • +
      plain: string
      +

      API plain response

      +
    • +
    • +
      id: string
      +

      template id

      +
    +

    Returns boolean

+
+ +
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/classes/socketconfig.SocketConfig.html b/docs/typedoc/classes/socketconfig.SocketConfig.html index aa7d7ad6..052676ef 100644 --- a/docs/typedoc/classes/socketconfig.SocketConfig.html +++ b/docs/typedoc/classes/socketconfig.SocketConfig.html @@ -1,62 +1,355 @@ -SocketConfig | @hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

SocketConfig Class

-

Hierarchy

  • SocketConfig

Index

Constructors

Properties

entity: string
-

API system entity. "54cd" for LIVE system; "1234" for OT&E system

-
login: string
-

account name

-
otp: string
-

one time password (2FA)

-
pw: string
-

account password

-
remoteaddr: string
-

remote ip address (ip filter)

-
session: string
-

API session id

-
user: string
-

subuser account name (subuser specific data view)

-

Methods

  • getPOSTData(): string
  • -

    Create POST data string out of connection data

    -

    Returns string

    POST data string

    -
  • getSession(): string
  • getSystemEntity(): string
  • -

    Get API System Entity in use

    -

    Returns string

    API System Entity

    -
  • -

    Set account name to use

    -

    Parameters

    • value: string
      -

      account name

      -

    Returns SocketConfig

    Current SocketConfig instance for method chaining

    -
  • -

    Set one time password to use

    -

    Parameters

    • value: string
      -

      one time password

      -

    Returns SocketConfig

    Current SocketConfig instance for method chaining

    -
  • -

    Set account password to use

    -

    Parameters

    • value: string
      -

      account password

      -

    Returns SocketConfig

    Current SocketConfig instance for method chaining

    -
  • -

    Set Remote IP Address to use

    -

    Parameters

    • value: string
      -

      remote ip address

      -

    Returns SocketConfig

    Current SocketConfig instance for method chaining

    -
  • -

    Set API Session ID to use

    -

    Parameters

    • value: string
      -

      API Session ID

      -

    Returns SocketConfig

    Current SocketConfig instance for method chaining

    -
  • -

    Set subuser account name (for subuser data view)

    -

    Parameters

    • value: string
      -

      subuser account name

      -

    Returns SocketConfig

    Current SocketConfig instance for method chaining

    -

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Function
  • Private property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file + +

Returns

Current SocketConfig instance for method chaining

+
+
+

Parameters

+
    +
  • +
    value: string
    +

    API System Entity

    +
+

Returns SocketConfig

+
+ +
    + +
  • +

    Set subuser account name (for subuser data view)

    + +

    Returns

    Current SocketConfig instance for method chaining

    +
    +
    +

    Parameters

    +
      +
    • +
      value: string
      +

      subuser account name

      +
    +

    Returns SocketConfig

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/functions/socketconfig.fixedURLEnc.html b/docs/typedoc/functions/socketconfig.fixedURLEnc.html new file mode 100644 index 00000000..f91f15f0 --- /dev/null +++ b/docs/typedoc/functions/socketconfig.fixedURLEnc.html @@ -0,0 +1,75 @@ +fixedURLEnc | @hexonet/ispapi-apiconnector
+
+ +
+
+
+ +
+
    + +
  • +
    +

    Parameters

    +
      +
    • +
      str: string
    +

    Returns string

+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/docs/typedoc/index.html b/docs/typedoc/index.html index c1f01a47..314025ec 100644 --- a/docs/typedoc/index.html +++ b/docs/typedoc/index.html @@ -1,4 +1,16 @@ -@hexonet/ispapi-apiconnector
Options
All
  • Public
  • Public/Protected
  • All
Menu

@hexonet/ispapi-apiconnector

+@hexonet/ispapi-apiconnector
+
+ +
+
+
+
+

@hexonet/ispapi-apiconnector

+

node-sdk

@@ -25,8 +37,56 @@

Authors

  • Kai Schwarz - lead development - PapaKai
  • + +

    FAQ / Notes

    +
    +

    ESM/CJS Support: We followed the ESM-NODE Guide of TypeScript.

    +

    License

    MIT

    -

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules.html b/docs/typedoc/modules.html index 0c28b31f..ace14a58 100644 --- a/docs/typedoc/modules.html +++ b/docs/typedoc/modules.html @@ -1 +1,81 @@ -@hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    @hexonet/ispapi-apiconnector

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +@hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/apiclient.html b/docs/typedoc/modules/apiclient.html index 74dbcfe9..16828073 100644 --- a/docs/typedoc/modules/apiclient.html +++ b/docs/typedoc/modules/apiclient.html @@ -1 +1,81 @@ -apiclient | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Index

    Variables

    ISPAPI_CONNECTION_URL_LIVE: "https://api.ispapi.net/api/call.cgi" = "https://api.ispapi.net/api/call.cgi"
    ISPAPI_CONNECTION_URL_OTE: "https://api-ote.ispapi.net/api/call.cgi" = "https://api-ote.ispapi.net/api/call.cgi"
    ISPAPI_CONNECTION_URL_PROXY: "http://127.0.0.1/api/call.cgi" = "http://127.0.0.1/api/call.cgi"

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +apiclient | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/apiclient_spec.html b/docs/typedoc/modules/apiclient_spec.html new file mode 100644 index 00000000..1464b578 --- /dev/null +++ b/docs/typedoc/modules/apiclient_spec.html @@ -0,0 +1,61 @@ +apiclient.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/column.html b/docs/typedoc/modules/column.html index 04b20ad1..579a13de 100644 --- a/docs/typedoc/modules/column.html +++ b/docs/typedoc/modules/column.html @@ -1 +1,72 @@ -column | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +column | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    + +
    +
    +
    +
    +

    Index

    +
    +

    Classes

    +
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/column_spec.html b/docs/typedoc/modules/column_spec.html new file mode 100644 index 00000000..4775df55 --- /dev/null +++ b/docs/typedoc/modules/column_spec.html @@ -0,0 +1,61 @@ +column.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/customlogger.html b/docs/typedoc/modules/customlogger.html index 008c72d1..7f5a52f3 100644 --- a/docs/typedoc/modules/customlogger.html +++ b/docs/typedoc/modules/customlogger.html @@ -1 +1,72 @@ -customlogger | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +customlogger | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/index.html b/docs/typedoc/modules/index.html index 60659135..0adbdba6 100644 --- a/docs/typedoc/modules/index.html +++ b/docs/typedoc/modules/index.html @@ -1 +1,86 @@ -index | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +index | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    + +
    +
    +

    References

    +
    +Re-exports APIClient
    +
    +Re-exports Response
    +
    +Re-exports ResponseTemplateManager
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/index_spec.html b/docs/typedoc/modules/index_spec.html new file mode 100644 index 00000000..2012d99f --- /dev/null +++ b/docs/typedoc/modules/index_spec.html @@ -0,0 +1,61 @@ +index.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/logger.html b/docs/typedoc/modules/logger.html index 52cd12b0..6821289f 100644 --- a/docs/typedoc/modules/logger.html +++ b/docs/typedoc/modules/logger.html @@ -1 +1,72 @@ -logger | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +logger | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    + +
    +
    +
    +
    +

    Index

    +
    +

    Classes

    +
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/record.html b/docs/typedoc/modules/record.html index 406887e1..bf254c2b 100644 --- a/docs/typedoc/modules/record.html +++ b/docs/typedoc/modules/record.html @@ -1 +1,72 @@ -record | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +record | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    + +
    +
    +
    +
    +

    Index

    +
    +

    Classes

    +
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/record_spec.html b/docs/typedoc/modules/record_spec.html new file mode 100644 index 00000000..5c7091e6 --- /dev/null +++ b/docs/typedoc/modules/record_spec.html @@ -0,0 +1,61 @@ +record.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/response.html b/docs/typedoc/modules/response.html index 7dc35d64..e9dd8768 100644 --- a/docs/typedoc/modules/response.html +++ b/docs/typedoc/modules/response.html @@ -1 +1,72 @@ -response | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +response | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/response_spec.html b/docs/typedoc/modules/response_spec.html new file mode 100644 index 00000000..a2229a19 --- /dev/null +++ b/docs/typedoc/modules/response_spec.html @@ -0,0 +1,61 @@ +response.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/responseparser.html b/docs/typedoc/modules/responseparser.html index 26948371..da62ef1f 100644 --- a/docs/typedoc/modules/responseparser.html +++ b/docs/typedoc/modules/responseparser.html @@ -1 +1,72 @@ -responseparser | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +responseparser | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/responseparser_spec.html b/docs/typedoc/modules/responseparser_spec.html new file mode 100644 index 00000000..7732ad6f --- /dev/null +++ b/docs/typedoc/modules/responseparser_spec.html @@ -0,0 +1,61 @@ +responseparser.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/responsetemplate.html b/docs/typedoc/modules/responsetemplate.html index 00e8d5e6..68ec3f9b 100644 --- a/docs/typedoc/modules/responsetemplate.html +++ b/docs/typedoc/modules/responsetemplate.html @@ -1 +1,72 @@ -responsetemplate | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +responsetemplate | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/responsetemplate_spec.html b/docs/typedoc/modules/responsetemplate_spec.html new file mode 100644 index 00000000..70502dd1 --- /dev/null +++ b/docs/typedoc/modules/responsetemplate_spec.html @@ -0,0 +1,61 @@ +responsetemplate.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/responsetemplatemanager.html b/docs/typedoc/modules/responsetemplatemanager.html index ac37a1de..1d743791 100644 --- a/docs/typedoc/modules/responsetemplatemanager.html +++ b/docs/typedoc/modules/responsetemplatemanager.html @@ -1 +1,72 @@ -responsetemplatemanager | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +responsetemplatemanager | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/responsetemplatemanager_spec.html b/docs/typedoc/modules/responsetemplatemanager_spec.html new file mode 100644 index 00000000..8a378d29 --- /dev/null +++ b/docs/typedoc/modules/responsetemplatemanager_spec.html @@ -0,0 +1,61 @@ +responsetemplatemanager.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/socketconfig.html b/docs/typedoc/modules/socketconfig.html index 768fc749..88a3518a 100644 --- a/docs/typedoc/modules/socketconfig.html +++ b/docs/typedoc/modules/socketconfig.html @@ -1 +1,77 @@ -socketconfig | @hexonet/ispapi-apiconnector
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Variable
    • Function
    • Class

    Settings

    Theme

    Generated using TypeDoc

    \ No newline at end of file +socketconfig | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/modules/socketconfig_spec.html b/docs/typedoc/modules/socketconfig_spec.html new file mode 100644 index 00000000..8ca02956 --- /dev/null +++ b/docs/typedoc/modules/socketconfig_spec.html @@ -0,0 +1,61 @@ +socketconfig.spec | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_LIVE.html b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_LIVE.html new file mode 100644 index 00000000..ccbca49c --- /dev/null +++ b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_LIVE.html @@ -0,0 +1,68 @@ +ISPAPI_CONNECTION_URL_LIVE | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    +
    + +

    Variable ISPAPI_CONNECTION_URL_LIVEConst

    +
    ISPAPI_CONNECTION_URL_LIVE: "https://api.ispapi.net/api/call.cgi" = "https://api.ispapi.net/api/call.cgi"
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_OTE.html b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_OTE.html new file mode 100644 index 00000000..2cb821ec --- /dev/null +++ b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_OTE.html @@ -0,0 +1,68 @@ +ISPAPI_CONNECTION_URL_OTE | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    +
    + +

    Variable ISPAPI_CONNECTION_URL_OTEConst

    +
    ISPAPI_CONNECTION_URL_OTE: "https://api-ote.ispapi.net/api/call.cgi" = "https://api-ote.ispapi.net/api/call.cgi"
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_PROXY.html b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_PROXY.html new file mode 100644 index 00000000..1fac69d5 --- /dev/null +++ b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_PROXY.html @@ -0,0 +1,68 @@ +ISPAPI_CONNECTION_URL_PROXY | @hexonet/ispapi-apiconnector
    +
    + +
    +
    +
    +
    + +

    Variable ISPAPI_CONNECTION_URL_PROXYConst

    +
    ISPAPI_CONNECTION_URL_PROXY: "http://127.0.0.1/api/call.cgi" = "http://127.0.0.1/api/call.cgi"
    +
    +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/docs/typedoc/variables/responseparser.ResponseParser.html b/docs/typedoc/variables/responseparser.ResponseParser.html new file mode 100644 index 00000000..eb720264 --- /dev/null +++ b/docs/typedoc/variables/responseparser.ResponseParser.html @@ -0,0 +1,65 @@ +ResponseParser | @hexonet/ispapi-apiconnector
    +
    + +
    + +
    +

    Generated using TypeDoc

    +
    \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index d4403648..6b693963 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hexonet/ispapi-apiconnector", - "version": "8.0.2", + "version": "9.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@hexonet/ispapi-apiconnector", - "version": "8.0.2", + "version": "9.0.0", "license": "MIT", "dependencies": { "cross-fetch": "^3.1.5" diff --git a/package.json b/package.json index 35ad5605..e35b740c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@hexonet/ispapi-apiconnector", "description": "Node.js SDK for the insanely fast HEXONET API", - "version": "8.0.2", + "version": "9.0.0", "private": false, "author": { "name": "Kai Schwarz",