From 58a1036fe91d285f40c8f9b47fe727c104913b34 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 23 Apr 2024 13:24:14 +0000 Subject: [PATCH] chore(release): 9.0.3 [skip ci] ## [9.0.3](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v9.0.2...v9.0.3) (2024-04-23) ### Bug Fixes * **response class:** avoid multiple constructor calls; regenerate docs and tests ([7e9d0d3](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/commit/7e9d0d3198db9b98b33415bc464f5e7b8973df38)) --- HISTORY.md | 7 ++ docs/typedoc/classes/apiclient.APIClient.html | 90 ++++++++-------- docs/typedoc/classes/column.Column.html | 18 ++-- .../classes/customlogger.CustomLogger.html | 4 +- docs/typedoc/classes/logger.Logger.html | 4 +- docs/typedoc/classes/record.Record.html | 12 +-- docs/typedoc/classes/response.Response.html | 100 +++++++++--------- ...mplatemanager.ResponseTemplateManager.html | 24 ++--- ...responsetranslator.ResponseTranslator.html | 8 +- .../classes/socketconfig.SocketConfig.html | 38 +++---- .../functions/socketconfig.fixedURLEnc.html | 2 +- docs/typedoc/modules/apiclient.html | 2 +- docs/typedoc/modules/column.html | 2 +- docs/typedoc/modules/customlogger.html | 2 +- docs/typedoc/modules/index.html | 2 +- docs/typedoc/modules/logger.html | 2 +- docs/typedoc/modules/record.html | 2 +- docs/typedoc/modules/response.html | 2 +- docs/typedoc/modules/responseparser.html | 2 +- .../modules/responsetemplatemanager.html | 2 +- docs/typedoc/modules/responsetranslator.html | 2 +- docs/typedoc/modules/socketconfig.html | 2 +- .../apiclient.ISPAPI_CONNECTION_URL_LIVE.html | 2 +- .../apiclient.ISPAPI_CONNECTION_URL_OTE.html | 2 +- ...apiclient.ISPAPI_CONNECTION_URL_PROXY.html | 2 +- .../responseparser.ResponseParser.html | 2 +- package-lock.json | 4 +- package.json | 2 +- 28 files changed, 175 insertions(+), 168 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index be865810..e21d4595 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,10 @@ +## [9.0.3](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v9.0.2...v9.0.3) (2024-04-23) + + +### Bug Fixes + +* **response class:** avoid multiple constructor calls; regenerate docs and tests ([7e9d0d3](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/commit/7e9d0d3198db9b98b33415bc464f5e7b8973df38)) + ## [9.0.2](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v9.0.1...v9.0.2) (2024-04-19) ### Bug Fixes diff --git a/docs/typedoc/classes/apiclient.APIClient.html b/docs/typedoc/classes/apiclient.APIClient.html index c0c9d088..a4da2c9e 100644 --- a/docs/typedoc/classes/apiclient.APIClient.html +++ b/docs/typedoc/classes/apiclient.APIClient.html @@ -1,5 +1,5 @@ APIClient | @hexonet/ispapi-apiconnector

APIClient class

-

Constructors

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

  • Auto convert API command parameters to punycode, if necessary.

    +

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

  • 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

    -
  • Flatten nested arrays in command

    +
  • Flatten nested arrays in command

    Parameters

    • cmd: any

      api command

    Returns any

    api command with flattended parameters

    -
  • Serialize given command for POST request including connection configuration data

    +
  • 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

    -
  • Get the proxy server configuration

    +
  • Get the proxy server configuration

    Returns null | string

    proxy server configuration value or null if not set

    -
  • Get the referer configuration

    +
  • Get the referer configuration

    Returns null | string

    referer configuration value or null if not set

    -
  • Get the API Session that is currently set

    +
  • Get the API Session that is currently set

    Returns null | string

    API Session or null

    -
  • Get the API connection url that is currently set

    +
  • Get the API connection url that is currently set

    Returns string

    API connection url currently in use

    -
  • Get the User Agent

    Returns string

    User Agent 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

    -
  • Perform API login to start session-based communication. +

  • Perform API login to start session-based communication. Use given specific command parameters.

    Parameters

    • params: any

      given specific command parameters

    • otp: string = ""

      optional one time password

    Returns Promise<Response>

    Promise resolving with API 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

    -
  • Request all pages/entries for the given query command

    +
  • 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 +

  • 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

    -
  • 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

    +
  • 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

    -
  • 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 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 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

    -
  • 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

    -
  • Possibility to customize default user agent to fit your needs

    +
  • 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

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

    Returns APIClient

    Current APIClient instance for method chaining

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/column.Column.html b/docs/typedoc/classes/column.Column.html index 8d629f31..00113758 100644 --- a/docs/typedoc/classes/column.Column.html +++ b/docs/typedoc/classes/column.Column.html @@ -1,5 +1,5 @@ Column | @hexonet/ispapi-apiconnector

Column class

-

Constructors

Constructors

Properties

Constructors

Properties

data: string[]

column data container

-
key: string

column key name

-
length: number

count of column data entries

-

Methods

  • Get column data

    +

Constructors

Properties

data: string[]

column data container

+
key: string

column key name

+
length: number

count of column data entries

+

Methods

  • Get column data

    Returns string[]

    column data

    -
  • Get column data at given index

    +
  • Get column data at given index

    Parameters

    • idx: number

      data index

    Returns null | string

    data at given index

    -
  • Get column name

    Returns string

    column name

    -
  • Check if column has a given data index

    +
  • Check if column has a given data index

    Parameters

    • idx: number

      data index

    Returns boolean

    boolean result

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/customlogger.CustomLogger.html b/docs/typedoc/classes/customlogger.CustomLogger.html index f64e4726..ffa4ede2 100644 --- a/docs/typedoc/classes/customlogger.CustomLogger.html +++ b/docs/typedoc/classes/customlogger.CustomLogger.html @@ -1,9 +1,9 @@ CustomLogger | @hexonet/ispapi-apiconnector

Logger class

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Methods

Constructors

Methods

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/logger.Logger.html b/docs/typedoc/classes/logger.Logger.html index 563fcfa6..a3784cfa 100644 --- a/docs/typedoc/classes/logger.Logger.html +++ b/docs/typedoc/classes/logger.Logger.html @@ -1,9 +1,9 @@ Logger | @hexonet/ispapi-apiconnector

Logger class

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

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

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/record.Record.html b/docs/typedoc/classes/record.Record.html index b48ed515..28519e3a 100644 --- a/docs/typedoc/classes/record.Record.html +++ b/docs/typedoc/classes/record.Record.html @@ -1,18 +1,18 @@ Record | @hexonet/ispapi-apiconnector

Record class

-

Constructors

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 Record

Properties

data: any

row data container

+

Methods

  • get row data

    Returns any

    row data

    -
  • get row data for given column

    +
  • 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

    -
  • check if record has data for given column

    +
  • check if record has data for given column

    Parameters

    • key: string

      column name

    Returns boolean

    boolean result

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/response.Response.html b/docs/typedoc/classes/response.Response.html index 57dde698..db1f1f4f 100644 --- a/docs/typedoc/classes/response.Response.html +++ b/docs/typedoc/classes/response.Response.html @@ -1,5 +1,5 @@ Response | @hexonet/ispapi-apiconnector

Response Class

-

Constructors

Constructors

Properties

columnkeys columns command @@ -52,110 +52,110 @@

Parameters

  • raw: string

    API plain response

  • cmd: any = {}

    API command used within this request

  • ph: any = {}

    placeholder array to get vars in response description dynamically replaced

    -

Returns Response

Properties

columnkeys: string[]

Column names available in this responsse +

Returns Response

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

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

    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

    -
  • Get API response code

    Returns number

    API response code

    -
  • Get column by column name

    Parameters

    • key: string

      column name

    Returns null | Column

    column instance or null if column does not exist

    -
  • Get Data by Column Name and Index

    +
  • 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

    -
  • Get Column Names

    Returns string[]

    Array of Column Names

    -
  • Get Command used in this request

    +
  • Get Command used in this request

    Returns any

    command

    -
  • Get Command used in this request in plain text format

    +
  • Get Command used in this request in plain text format

    Returns string

    command as plain text

    -
  • Get Page Number of current List Query

    +
  • Get Page Number of current List Query

    Returns null | number

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

    -
  • Get Record of current record index

    Returns null | Record

    Record or null in case of a non-list response

    -
  • Get API response description

    +
  • Get API response description

    Returns string

    API response description

    -
  • Get Index of first row in this response

    +
  • Get Index of first row in this response

    Returns null | number

    first row index

    -
  • Get API response as Hash

    Returns any

    API response hash

    -
  • Get last record index of the current list query

    +
  • Get last record index of the current list query

    Returns null | number

    record index or null for a non-list response

    -
  • Get Response as List Hash including useful meta data for tables

    +
  • 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

    -
  • Get Page Number of next list query

    +
  • Get Page Number of next list query

    Returns null | number

    page number or null if there's no next page

    -
  • Get next record in record list

    Returns null | Record

    Record or null in case there's no further record

    -
  • Get the number of pages available for this list query

    +
  • Get the number of pages available for this list query

    Returns number

    number of pages

    -
  • Get object containing all paging data

    +
  • Get object containing all paging data

    Returns any

    paginator data

    -
  • Get Plain API response

    Returns string

    Plain API response

    -
  • Get Page Number of previous list query

    +
  • Get Page Number of previous list query

    Returns null | number

    page number or null if there's no previous page

    -
  • Get previous record in record list

    Returns null | Record

    Record or null if there's no previous record

    -
  • Get Queuetime of API response

    +
  • Get Queuetime of API response

    Returns number

    Queuetime of API response

    -
  • Get Record at given index

    Parameters

    • idx: number

      record index

    Returns null | Record

    Record or null if index does not exist

    -
  • Get count of rows in this response

    +
  • Get count of rows in this response

    Returns number

    count of rows

    -
  • Get limit(ation) setting of the current list query +

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

    Returns number

    limit setting or count requested rows

    -
  • Get total count of records available for the list query

    +
  • 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

    -
  • Get Runtime of API response

    +
  • Get Runtime of API response

    Returns number

    Runtime of API response

    -
  • Check if column exists in response

    +
  • Check if column exists in response

    Parameters

    • key: string

      column name

    Returns boolean

    boolean result

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

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

    Returns boolean

    boolean result

    -
  • Check if this list query has a next page

    +
  • Check if this list query has a next page

    Returns boolean

    boolean result

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

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

    Returns boolean

    boolean result

    -
  • Check if this list query has a previous page

    +
  • Check if this list query has a previous page

    Returns boolean

    boolean result

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

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

    Returns boolean

    boolean result

    -
  • Check if current API response represents an error case +

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

    Returns boolean

    boolean result

    -
  • Check if current operation is returned as pending

    +
  • Check if current operation is returned as pending

    Returns boolean

    boolean result

    -
  • Check if current API response represents a success case +

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

    Returns boolean

    boolean result

    -
  • Check if current API response represents a temporary error case +

  • 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

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html b/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html index 33975b4a..9822c9f2 100644 --- a/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html +++ b/docs/typedoc/classes/responsetemplatemanager.ResponseTemplateManager.html @@ -1,5 +1,5 @@ ResponseTemplateManager | @hexonet/ispapi-apiconnector

ResponseTemplateManager Singleton Class

-

Constructors

Constructors

Properties

templates: any

template container

-

ResponseTemplateManager Instance

-

Methods

Constructors

Properties

templates: any

template container

+

ResponseTemplateManager Instance

+

Methods

  • Generate API response template string for given code and description

    +
  • 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

    -
  • Return all available response templates

    Returns any

    all available response template instances

    -
  • Check if given template exists in template container

    Parameters

    • id: string

      template id

    Returns boolean

    boolean result

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

    +
  • 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

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

    +
  • 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

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/responsetranslator.ResponseTranslator.html b/docs/typedoc/classes/responsetranslator.ResponseTranslator.html index 5e4f0686..5cd0d5f0 100644 --- a/docs/typedoc/classes/responsetranslator.ResponseTranslator.html +++ b/docs/typedoc/classes/responsetranslator.ResponseTranslator.html @@ -1,10 +1,10 @@ ResponseTranslator | @hexonet/ispapi-apiconnector

ResponseTranslator class

-

Constructors

Constructors

Properties

Methods

Constructors

Properties

descriptionRegexMap: Object = ...

Regular Expression Mapping for API DESCRIPTION Property translation

-

Methods

  • Finds a match in the given text and performs replacements based on patterns and placeholders.

    +

Methods

  • Finds a match in the given text and performs replacements based on patterns and placeholders.

    This function searches for a specified regular expression pattern in the provided text and performs replacements based on the matched pattern, command data, and placeholder values.

    Parameters

    • regex: string

      The regular expression pattern to search for.

      @@ -13,9 +13,9 @@
    • cmd: any = {}

      The command data containing replacements, if applicable.

    • ph: any = {}

      An array of placeholder values for further replacements.

    Returns string

    Returns non-empty string if replacements were performed, empty string otherwise.

    -
  • translate a raw api response

    Parameters

    • raw: string

      API raw response

    • cmd: any

      requested API command

    • ph: any = {}

      list of place holder vars

    Returns string

    new translated raw response

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/classes/socketconfig.SocketConfig.html b/docs/typedoc/classes/socketconfig.SocketConfig.html index 05946d94..bc1469bc 100644 --- a/docs/typedoc/classes/socketconfig.SocketConfig.html +++ b/docs/typedoc/classes/socketconfig.SocketConfig.html @@ -1,5 +1,5 @@ SocketConfig | @hexonet/ispapi-apiconnector

SocketConfig Class

-

Constructors

Constructors

Properties

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

  • Create POST data string out of connection data

    +

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

  • Create POST data string out of connection data

    Returns string

    POST data string

    -
  • Get API Session ID in use

    Returns string

    API Session ID

    -
  • Get API System Entity in use

    Returns string

    API System Entity

    -
  • Set API System Entity to use This is set to 54cd / LIVE System by default

    Parameters

    • value: string

      API System Entity

    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

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/typedoc/functions/socketconfig.fixedURLEnc.html b/docs/typedoc/functions/socketconfig.fixedURLEnc.html index d1968c29..89e67308 100644 --- a/docs/typedoc/functions/socketconfig.fixedURLEnc.html +++ b/docs/typedoc/functions/socketconfig.fixedURLEnc.html @@ -1 +1 @@ -fixedURLEnc | @hexonet/ispapi-apiconnector
  • Parameters

    • str: string

    Returns string

\ No newline at end of file +fixedURLEnc | @hexonet/ispapi-apiconnector
  • Parameters

    • str: string

    Returns string

\ No newline at end of file diff --git a/docs/typedoc/modules/apiclient.html b/docs/typedoc/modules/apiclient.html index 4336cf8d..9aa1f4a8 100644 --- a/docs/typedoc/modules/apiclient.html +++ b/docs/typedoc/modules/apiclient.html @@ -1,4 +1,4 @@ -apiclient | @hexonet/ispapi-apiconnector

Index

Classes

APIClient +apiclient | @hexonet/ispapi-apiconnector

Index

Classes

Variables

ISPAPI_CONNECTION_URL_LIVE ISPAPI_CONNECTION_URL_OTE ISPAPI_CONNECTION_URL_PROXY diff --git a/docs/typedoc/modules/column.html b/docs/typedoc/modules/column.html index d068e871..b78a68b4 100644 --- a/docs/typedoc/modules/column.html +++ b/docs/typedoc/modules/column.html @@ -1,2 +1,2 @@ -column | @hexonet/ispapi-apiconnector

Index

Classes

Column +column | @hexonet/ispapi-apiconnector

Index

Classes

\ No newline at end of file diff --git a/docs/typedoc/modules/customlogger.html b/docs/typedoc/modules/customlogger.html index adbd0548..90c34914 100644 --- a/docs/typedoc/modules/customlogger.html +++ b/docs/typedoc/modules/customlogger.html @@ -1,2 +1,2 @@ -customlogger | @hexonet/ispapi-apiconnector

Index

Classes

CustomLogger +customlogger | @hexonet/ispapi-apiconnector
\ No newline at end of file diff --git a/docs/typedoc/modules/index.html b/docs/typedoc/modules/index.html index d026d4a5..eb79805b 100644 --- a/docs/typedoc/modules/index.html +++ b/docs/typedoc/modules/index.html @@ -1,4 +1,4 @@ -index | @hexonet/ispapi-apiconnector

References

APIClient +index | @hexonet/ispapi-apiconnector

References

Re-exports APIClient
Re-exports Response
Re-exports ResponseTemplateManager
\ No newline at end of file diff --git a/docs/typedoc/modules/logger.html b/docs/typedoc/modules/logger.html index 72e2a8b3..3626cd7d 100644 --- a/docs/typedoc/modules/logger.html +++ b/docs/typedoc/modules/logger.html @@ -1,2 +1,2 @@ -logger | @hexonet/ispapi-apiconnector

Index

Classes

Logger +logger | @hexonet/ispapi-apiconnector

Index

Classes

\ No newline at end of file diff --git a/docs/typedoc/modules/record.html b/docs/typedoc/modules/record.html index 9013805a..a1ba63b9 100644 --- a/docs/typedoc/modules/record.html +++ b/docs/typedoc/modules/record.html @@ -1,2 +1,2 @@ -record | @hexonet/ispapi-apiconnector

Index

Classes

Record +record | @hexonet/ispapi-apiconnector

Index

Classes

\ No newline at end of file diff --git a/docs/typedoc/modules/response.html b/docs/typedoc/modules/response.html index 04cb969d..3bed658c 100644 --- a/docs/typedoc/modules/response.html +++ b/docs/typedoc/modules/response.html @@ -1,2 +1,2 @@ -response | @hexonet/ispapi-apiconnector

Index

Classes

Response +response | @hexonet/ispapi-apiconnector

Index

Classes

\ No newline at end of file diff --git a/docs/typedoc/modules/responseparser.html b/docs/typedoc/modules/responseparser.html index fcaba2fa..9a9d8ec3 100644 --- a/docs/typedoc/modules/responseparser.html +++ b/docs/typedoc/modules/responseparser.html @@ -1,2 +1,2 @@ -responseparser | @hexonet/ispapi-apiconnector

Index

Variables

ResponseParser +responseparser | @hexonet/ispapi-apiconnector
\ No newline at end of file diff --git a/docs/typedoc/modules/responsetemplatemanager.html b/docs/typedoc/modules/responsetemplatemanager.html index cda956cd..75f56987 100644 --- a/docs/typedoc/modules/responsetemplatemanager.html +++ b/docs/typedoc/modules/responsetemplatemanager.html @@ -1,2 +1,2 @@ -responsetemplatemanager | @hexonet/ispapi-apiconnector

Index

Classes

ResponseTemplateManager +responsetemplatemanager | @hexonet/ispapi-apiconnector
\ No newline at end of file diff --git a/docs/typedoc/modules/responsetranslator.html b/docs/typedoc/modules/responsetranslator.html index 96a05ce5..233332de 100644 --- a/docs/typedoc/modules/responsetranslator.html +++ b/docs/typedoc/modules/responsetranslator.html @@ -1,2 +1,2 @@ -responsetranslator | @hexonet/ispapi-apiconnector

Index

Classes

ResponseTranslator +responsetranslator | @hexonet/ispapi-apiconnector
\ No newline at end of file diff --git a/docs/typedoc/modules/socketconfig.html b/docs/typedoc/modules/socketconfig.html index a30969ec..40c792d7 100644 --- a/docs/typedoc/modules/socketconfig.html +++ b/docs/typedoc/modules/socketconfig.html @@ -1,3 +1,3 @@ -socketconfig | @hexonet/ispapi-apiconnector

Index

Classes

SocketConfig +socketconfig | @hexonet/ispapi-apiconnector
\ 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 index edd21cf7..07f44314 100644 --- a/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_LIVE.html +++ b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_LIVE.html @@ -1 +1 @@ -ISPAPI_CONNECTION_URL_LIVE | @hexonet/ispapi-apiconnector
ISPAPI_CONNECTION_URL_LIVE: "https://api.ispapi.net/api/call.cgi" = "https://api.ispapi.net/api/call.cgi"
\ No newline at end of file +ISPAPI_CONNECTION_URL_LIVE | @hexonet/ispapi-apiconnector
ISPAPI_CONNECTION_URL_LIVE: "https://api.ispapi.net/api/call.cgi" = "https://api.ispapi.net/api/call.cgi"
\ 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 index 29734216..6d6a5c00 100644 --- a/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_OTE.html +++ b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_OTE.html @@ -1 +1 @@ -ISPAPI_CONNECTION_URL_OTE | @hexonet/ispapi-apiconnector
ISPAPI_CONNECTION_URL_OTE: "https://api-ote.ispapi.net/api/call.cgi" = "https://api-ote.ispapi.net/api/call.cgi"
\ No newline at end of file +ISPAPI_CONNECTION_URL_OTE | @hexonet/ispapi-apiconnector
ISPAPI_CONNECTION_URL_OTE: "https://api-ote.ispapi.net/api/call.cgi" = "https://api-ote.ispapi.net/api/call.cgi"
\ 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 index 0d0fd9f6..cb628aa2 100644 --- a/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_PROXY.html +++ b/docs/typedoc/variables/apiclient.ISPAPI_CONNECTION_URL_PROXY.html @@ -1 +1 @@ -ISPAPI_CONNECTION_URL_PROXY | @hexonet/ispapi-apiconnector
ISPAPI_CONNECTION_URL_PROXY: "http://127.0.0.1/api/call.cgi" = "http://127.0.0.1/api/call.cgi"
\ No newline at end of file +ISPAPI_CONNECTION_URL_PROXY | @hexonet/ispapi-apiconnector
ISPAPI_CONNECTION_URL_PROXY: "http://127.0.0.1/api/call.cgi" = "http://127.0.0.1/api/call.cgi"
\ No newline at end of file diff --git a/docs/typedoc/variables/responseparser.ResponseParser.html b/docs/typedoc/variables/responseparser.ResponseParser.html index 31fb2d27..6ba28c0d 100644 --- a/docs/typedoc/variables/responseparser.ResponseParser.html +++ b/docs/typedoc/variables/responseparser.ResponseParser.html @@ -1 +1 @@ -ResponseParser | @hexonet/ispapi-apiconnector
ResponseParser: any = ...
\ No newline at end of file +ResponseParser | @hexonet/ispapi-apiconnector
ResponseParser: any = ...
\ No newline at end of file diff --git a/package-lock.json b/package-lock.json index d7c34c0c..83414651 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hexonet/ispapi-apiconnector", - "version": "9.0.2", + "version": "9.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@hexonet/ispapi-apiconnector", - "version": "9.0.2", + "version": "9.0.3", "license": "MIT", "dependencies": { "cross-fetch": "^4.0.0" diff --git a/package.json b/package.json index 6de7bd26..c6c5b842 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": "9.0.2", + "version": "9.0.3", "private": false, "author": { "name": "Kai Schwarz",