@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.
|
|
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,
|
package/dist/core/OpenAPI.js
CHANGED
|
@@ -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:
|
|
49
|
+
termIds: Array<string>;
|
|
50
50
|
total: number;
|
|
51
|
-
updatedCount:
|
|
51
|
+
updatedCount: number;
|
|
52
52
|
createdCount: number;
|
|
53
53
|
}>;
|
|
54
54
|
/**
|