elcrm 0.8.49 → 0.8.50

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
@@ -4,6 +4,7 @@ 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): Promise<unknown>;
7
+ export declare function formData(link: string, data?: {}, ssid?: string): Promise<any>;
7
8
  export declare function modules(link: string, data?: {}, ssid?: string): Promise<unknown>;
8
9
  export declare function use(link: string, body: {} | undefined, ssid: string): any[];
9
10
  export declare function db(type: string, query: string, data?: {}): Promise<any>;
@@ -1,4 +1,4 @@
1
- import { audio, url, fetch, remoute, telegram, modules, use } from './Api';
1
+ import { audio, url, fetch, remoute, telegram, modules, use, formData } from './Api';
2
2
 
3
3
  declare const _default: {
4
4
  audio: typeof audio;
@@ -8,5 +8,6 @@ declare const _default: {
8
8
  url: typeof url;
9
9
  telegram: typeof telegram;
10
10
  use: typeof use;
11
+ formData: typeof formData;
11
12
  };
12
13
  export default _default;