elcrm 0.8.57 → 0.8.58

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.
package/dist/Api/Api.d.ts CHANGED
@@ -13,3 +13,4 @@ export declare function telegram(type: string, data?: {}): Promise<any>;
13
13
  export declare function yandex(type: string, data?: {}): Promise<any>;
14
14
  export declare function backup(type: string, data?: {}): Promise<any>;
15
15
  export declare function token(s?: any): string;
16
+ export declare function test(time: number, data?: {}): Promise<unknown>;
@@ -1,4 +1,4 @@
1
- import { audio, url, fetch, remoute, telegram, modules, use, token, formData } from './Api';
1
+ import { audio, url, fetch, test, remoute, telegram, modules, use, token, formData } from './Api';
2
2
 
3
3
  declare const _default: {
4
4
  audio: typeof audio;
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  modules: typeof modules;
7
7
  remoute: typeof remoute;
8
8
  url: typeof url;
9
+ test: typeof test;
9
10
  telegram: typeof telegram;
10
11
  use: typeof use;
11
12
  token: typeof token;