@thomas-labs/scrape-service-lib 1.1.76 → 1.1.78
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/AppClient.js
CHANGED
|
@@ -22,7 +22,7 @@ class AppClient {
|
|
|
22
22
|
constructor(config, HttpRequest = FetchHttpRequest_1.FetchHttpRequest) {
|
|
23
23
|
this.request = new HttpRequest({
|
|
24
24
|
BASE: config?.BASE ?? '/api',
|
|
25
|
-
VERSION: config?.VERSION ?? '1.0.
|
|
25
|
+
VERSION: config?.VERSION ?? '1.0.88',
|
|
26
26
|
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
27
27
|
CREDENTIALS: config?.CREDENTIALS ?? 'include',
|
|
28
28
|
TOKEN: config?.TOKEN,
|
package/dist/core/OpenAPI.js
CHANGED
|
@@ -15,6 +15,14 @@ export declare class UserService {
|
|
|
15
15
|
* @throws ApiError
|
|
16
16
|
*/
|
|
17
17
|
updateMe(requestBody: UpdateUserProfileDto): CancelablePromise<any>;
|
|
18
|
+
/**
|
|
19
|
+
* @returns any Ok
|
|
20
|
+
* @throws ApiError
|
|
21
|
+
*/
|
|
22
|
+
ackFirstLogin(): CancelablePromise<{
|
|
23
|
+
updated: boolean;
|
|
24
|
+
ok: boolean;
|
|
25
|
+
}>;
|
|
18
26
|
/**
|
|
19
27
|
* @param page
|
|
20
28
|
* @param limit
|
|
@@ -28,6 +28,16 @@ class UserService {
|
|
|
28
28
|
mediaType: 'application/json',
|
|
29
29
|
});
|
|
30
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* @returns any Ok
|
|
33
|
+
* @throws ApiError
|
|
34
|
+
*/
|
|
35
|
+
ackFirstLogin() {
|
|
36
|
+
return this.httpRequest.request({
|
|
37
|
+
method: 'POST',
|
|
38
|
+
url: '/user/first-login/ack',
|
|
39
|
+
});
|
|
40
|
+
}
|
|
31
41
|
/**
|
|
32
42
|
* @param page
|
|
33
43
|
* @param limit
|