@thomas-labs/scrape-service-lib 1.1.29 → 1.1.30

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
@@ -20,7 +20,7 @@ class AppClient {
20
20
  constructor(config, HttpRequest = FetchHttpRequest_1.FetchHttpRequest) {
21
21
  this.request = new HttpRequest({
22
22
  BASE: config?.BASE ?? '/api',
23
- VERSION: config?.VERSION ?? '1.0.30',
23
+ VERSION: config?.VERSION ?? '1.0.31',
24
24
  WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
25
25
  CREDENTIALS: config?.CREDENTIALS ?? 'include',
26
26
  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.30',
6
+ VERSION: '1.0.31',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -10,7 +10,11 @@ export declare class CollectionTestService {
10
10
  * @returns any Ok
11
11
  * @throws ApiError
12
12
  */
13
- create(requestBody: CreateCollectionTestSessionDto): CancelablePromise<any>;
13
+ create(requestBody: CreateCollectionTestSessionDto): CancelablePromise<{
14
+ message: string;
15
+ status: any;
16
+ sessionId: any;
17
+ }>;
14
18
  /**
15
19
  * @param sessionId
16
20
  * @returns any Ok
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thomas-labs/scrape-service-lib",
3
- "version": "1.1.29",
3
+ "version": "1.1.30",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",