@freelog/tools-lib 0.1.91 → 0.1.92
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/service-API/activities.d.ts +12 -0
- package/dist/tools-lib.cjs.development.js +281 -675
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +281 -675
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/activities.ts +60 -28
|
@@ -7,4 +7,16 @@ interface Find4ClientParamsType {
|
|
|
7
7
|
_id: string;
|
|
8
8
|
}
|
|
9
9
|
export declare function find4Client(params: Find4ClientParamsType): Promise<any>;
|
|
10
|
+
interface AdsListParamsType {
|
|
11
|
+
skip?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
place: 1 | 2 | 3 | 4;
|
|
14
|
+
}
|
|
15
|
+
export declare function adsList(params: AdsListParamsType): Promise<any>;
|
|
16
|
+
interface AdsDetailsParamsType {
|
|
17
|
+
skip?: number;
|
|
18
|
+
limit?: number;
|
|
19
|
+
place: 1 | 2 | 3 | 4;
|
|
20
|
+
}
|
|
21
|
+
export declare function adsDetails(params: AdsDetailsParamsType): Promise<any>;
|
|
10
22
|
export {};
|