@thomas-labs/scrape-service-lib 1.1.81 → 1.1.83

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.91',
25
+ VERSION: config?.VERSION ?? '1.0.93',
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.91',
6
+ VERSION: '1.0.93',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -87,10 +87,7 @@ export declare class CollectionTemplatesService {
87
87
  * @returns any Ok
88
88
  * @throws ApiError
89
89
  */
90
- adminCreateQueueJob(requestBody: CreateCollectionTemplateQueueJobDto): CancelablePromise<{
91
- job: any;
92
- reused: boolean;
93
- }>;
90
+ adminCreateQueueJob(requestBody: CreateCollectionTemplateQueueJobDto): CancelablePromise<any>;
94
91
  /**
95
92
  * @param page
96
93
  * @param limit
@@ -113,24 +110,17 @@ export declare class CollectionTemplatesService {
113
110
  * @returns any Ok
114
111
  * @throws ApiError
115
112
  */
116
- adminRetryQueueJob(jobId: string): CancelablePromise<{
117
- ok: boolean;
118
- }>;
113
+ adminRetryQueueJob(jobId: string): CancelablePromise<any>;
119
114
  /**
120
115
  * @param jobId
121
116
  * @returns any Ok
122
117
  * @throws ApiError
123
118
  */
124
- adminCancelQueueJob(jobId: string): CancelablePromise<{
125
- ok: boolean;
126
- }>;
119
+ adminCancelQueueJob(jobId: string): CancelablePromise<any>;
127
120
  /**
128
121
  * @param jobId
129
122
  * @returns any Ok
130
123
  * @throws ApiError
131
124
  */
132
- adminApproveQueueJob(jobId: string): CancelablePromise<{
133
- templateId: any;
134
- ok: boolean;
135
- }>;
125
+ adminApproveQueueJob(jobId: string): CancelablePromise<any>;
136
126
  }
@@ -46,9 +46,9 @@ export declare class TermsService {
46
46
  * @throws ApiError
47
47
  */
48
48
  adminImportAiJson(requestBody: ImportRootAiJsonDto): CancelablePromise<{
49
- termIds: any;
49
+ termIds: Array<string>;
50
50
  total: number;
51
- updatedCount: any;
51
+ updatedCount: number;
52
52
  createdCount: number;
53
53
  }>;
54
54
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thomas-labs/scrape-service-lib",
3
- "version": "1.1.81",
3
+ "version": "1.1.83",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",