@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.85',
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,
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.0.85',
6
+ VERSION: '1.0.88',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thomas-labs/scrape-service-lib",
3
- "version": "1.1.76",
3
+ "version": "1.1.78",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",