@thomas-labs/scrape-service-lib 1.1.68 → 1.1.69

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.76',
25
+ VERSION: config?.VERSION ?? '1.0.77',
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.76',
6
+ VERSION: '1.0.77',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -13,7 +13,18 @@ export declare class TaskRequestsService {
13
13
  * @returns any Ok
14
14
  * @throws ApiError
15
15
  */
16
- createTermsRequest(requestBody: CreateTermImportRequestDto): CancelablePromise<any>;
16
+ createTermsRequest(requestBody: CreateTermImportRequestDto): CancelablePromise<{
17
+ updatedAt: string;
18
+ createdAt: string;
19
+ processedAt: string;
20
+ result: any;
21
+ provider: 'ADMIN' | 'AI' | 'UNKNOWN';
22
+ note: string;
23
+ title: string;
24
+ status: string;
25
+ type: string;
26
+ id: string;
27
+ }>;
17
28
  /**
18
29
  * @param page
19
30
  * @param limit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thomas-labs/scrape-service-lib",
3
- "version": "1.1.68",
3
+ "version": "1.1.69",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",