elcrm 0.5.8 → 0.6.0
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 +2 -1
- package/dist/Api/index.d.ts +2 -1
- package/dist/index.es.js +1329 -1325
- package/dist/index.umd.js +10 -10
- package/package.json +1 -1
package/dist/Api/Api.d.ts
CHANGED
|
@@ -4,8 +4,9 @@ export declare function url(): {
|
|
|
4
4
|
};
|
|
5
5
|
export declare function audio(link: string): string;
|
|
6
6
|
export declare function fetch(link: string, data?: {}, ssid?: string | boolean): Promise<unknown>;
|
|
7
|
+
export declare function modules(link: string, data?: {}, ssid?: string | boolean): Promise<unknown>;
|
|
8
|
+
export declare function db(type: string, query: string, data?: {}): Promise<any>;
|
|
7
9
|
export declare function remoute(url: string, link: string, data?: {}): Promise<any>;
|
|
8
10
|
export declare function telegram(type: string, data?: {}): Promise<any>;
|
|
9
11
|
export declare function yandex(type: string, data?: {}): Promise<any>;
|
|
10
12
|
export declare function backup(type: string, data?: {}): Promise<any>;
|
|
11
|
-
export declare function db(type: string, query: string, data?: {}): Promise<any>;
|
package/dist/Api/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { audio, url, fetch, remoute, telegram } from './Api';
|
|
1
|
+
import { audio, url, fetch, remoute, telegram, modules } from './Api';
|
|
2
2
|
|
|
3
3
|
declare const _default: {
|
|
4
4
|
audio: typeof audio;
|
|
5
5
|
fetch: typeof fetch;
|
|
6
|
+
modules: typeof modules;
|
|
6
7
|
remoute: typeof remoute;
|
|
7
8
|
url: typeof url;
|
|
8
9
|
telegram: typeof telegram;
|