dochub-sdk 0.1.132 → 0.1.133

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,11 +18,11 @@ export interface IProtocolResponseOptions {
18
18
  timeout?: number;
19
19
  }
20
20
 
21
- export type IDocHubProtocolResponseDecoder = (response: AxiosResponse, options?: IProtocolResponseOptions) => Promise<AxiosResponse>;
21
+ export type FDocHubProtocolResponseDecoder = (response: AxiosResponse, options?: IProtocolResponseOptions) => Promise<AxiosResponse>;
22
22
 
23
23
  // Прослойка интерфейсов Axios для последующей кастомизации и поддержания совместимости
24
24
  export interface IDocHubProtocolRequestConfig extends AxiosRequestConfig {
25
- decoder?: IDocHubProtocolResponseDecoder; // Декодировщик ответа
25
+ decoder?: FDocHubProtocolResponseDecoder; // Декодировщик ответа
26
26
  };
27
27
 
28
28
  export interface IDocHubProtocolResponse extends AxiosResponse {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.132",
3
+ "version": "0.1.133",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",