@thomas-labs/scrape-service-lib 1.1.37 → 1.1.38
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.
|
|
23
|
+
VERSION: config?.VERSION ?? '1.0.39',
|
|
24
24
|
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
25
25
|
CREDENTIALS: config?.CREDENTIALS ?? 'include',
|
|
26
26
|
TOKEN: config?.TOKEN,
|
package/dist/core/OpenAPI.js
CHANGED
|
@@ -6,6 +6,12 @@ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
|
6
6
|
export declare class CollectionTestService {
|
|
7
7
|
readonly httpRequest: BaseHttpRequest;
|
|
8
8
|
constructor(httpRequest: BaseHttpRequest);
|
|
9
|
+
/**
|
|
10
|
+
* @param collectionId
|
|
11
|
+
* @returns any Ok
|
|
12
|
+
* @throws ApiError
|
|
13
|
+
*/
|
|
14
|
+
autoJoin(collectionId?: string): CancelablePromise<any>;
|
|
9
15
|
/**
|
|
10
16
|
* @param page
|
|
11
17
|
* @param limit
|
|
@@ -5,6 +5,20 @@ class CollectionTestService {
|
|
|
5
5
|
constructor(httpRequest) {
|
|
6
6
|
this.httpRequest = httpRequest;
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* @param collectionId
|
|
10
|
+
* @returns any Ok
|
|
11
|
+
* @throws ApiError
|
|
12
|
+
*/
|
|
13
|
+
autoJoin(collectionId) {
|
|
14
|
+
return this.httpRequest.request({
|
|
15
|
+
method: 'POST',
|
|
16
|
+
url: '/test/collection/sessions/auto-join',
|
|
17
|
+
query: {
|
|
18
|
+
'collectionId': collectionId,
|
|
19
|
+
},
|
|
20
|
+
});
|
|
21
|
+
}
|
|
8
22
|
/**
|
|
9
23
|
* @param page
|
|
10
24
|
* @param limit
|