@virusis/api-client 0.1.15 → 0.1.17
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/base.d.ts +3 -1
- package/dist/base.js +28 -1
- package/dist/container.d.ts +6 -3
- package/dist/generated/clients/feedbacks-service.d.ts +2 -0
- package/dist/generated/clients/feedbacks-service.js +2 -0
- package/dist/generated/clients/index.d.ts +2 -1
- package/dist/generated/clients/index.js +2 -1
- package/dist/generated/clients-rx/feedbacks-service-rx.d.ts +16 -0
- package/dist/generated/clients-rx/feedbacks-service-rx.js +12 -0
- package/dist/generated/clients-rx/index.d.ts +2 -1
- package/dist/generated/clients-rx/index.js +2 -1
- package/dist/generated/index.d.ts +138 -32
- package/dist/generated/index.js +350 -88
- package/dist/generated/models/index.d.ts +4 -0
- package/dist/generated/models/index.js +4 -0
- package/dist/generated/models/scan-status-dto-i-data-result.d.ts +4 -0
- package/dist/generated/models/scan-status-dto-i-data-result.js +1 -0
- package/dist/generated/models/scan-status-dto.d.ts +4 -0
- package/dist/generated/models/scan-status-dto.js +1 -0
- package/dist/generated/models/user-scan-stats-dto-i-data-result.d.ts +4 -0
- package/dist/generated/models/user-scan-stats-dto-i-data-result.js +1 -0
- package/dist/generated/models/user-scan-stats-dto.d.ts +4 -0
- package/dist/generated/models/user-scan-stats-dto.js +1 -0
- package/dist/rx.d.ts +12 -6
- package/package.json +1 -1
package/dist/base.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export declare class ApiClientConfig {
|
|
2
2
|
baseUrl: string;
|
|
3
3
|
getToken?: (() => string | null | Promise<string | null>) | undefined;
|
|
4
|
-
|
|
4
|
+
getAppKey?: (() => string | null | Promise<string | null>) | undefined;
|
|
5
|
+
appKeyHeaderName: string;
|
|
6
|
+
constructor(baseUrl: string, getToken?: (() => string | null | Promise<string | null>) | undefined, getAppKey?: (() => string | null | Promise<string | null>) | undefined, appKeyHeaderName?: string);
|
|
5
7
|
}
|
|
6
8
|
export declare class BaseApiClient {
|
|
7
9
|
protected readonly configuration: ApiClientConfig;
|
package/dist/base.js
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
export class ApiClientConfig {
|
|
2
|
-
constructor(baseUrl, getToken
|
|
2
|
+
constructor(baseUrl, getToken,
|
|
3
|
+
// CREDENTIAL-GROUPING-2026-04-23: Her istege X-App-Key header'i eklemek icin.
|
|
4
|
+
// WebAPI ApplicationIdentityMiddleware bu header'i JWT'deki (iss, azp) ile karsilastirir.
|
|
5
|
+
// Deger AppKey (ornek: "0101000" trial UI, "0201000" private API backend).
|
|
6
|
+
getAppKey,
|
|
7
|
+
// Header adi configurable — default "X-App-Key".
|
|
8
|
+
appKeyHeaderName = "X-App-Key") {
|
|
3
9
|
this.baseUrl = baseUrl;
|
|
4
10
|
this.getToken = getToken;
|
|
11
|
+
this.getAppKey = getAppKey;
|
|
12
|
+
this.appKeyHeaderName = appKeyHeaderName;
|
|
5
13
|
}
|
|
6
14
|
}
|
|
7
15
|
export class BaseApiClient {
|
|
@@ -25,6 +33,8 @@ export async function doFetch(cfg, path, init) {
|
|
|
25
33
|
const token = cfg.getToken ? await cfg.getToken() : null;
|
|
26
34
|
if (token)
|
|
27
35
|
headers.set("Authorization", `Bearer ${token}`);
|
|
36
|
+
// CREDENTIAL-GROUPING-2026-04-23
|
|
37
|
+
await applyAppKeyHeader(headers, cfg);
|
|
28
38
|
const url = buildUrl(cfg.baseUrl, path);
|
|
29
39
|
const res = await fetch(url, { ...init, headers });
|
|
30
40
|
if (!res.ok) {
|
|
@@ -46,6 +56,8 @@ export async function doFetchAbsolute(cfg, url, init) {
|
|
|
46
56
|
const token = cfg.getToken ? await cfg.getToken() : null;
|
|
47
57
|
if (token)
|
|
48
58
|
headers.set("Authorization", `Bearer ${token}`);
|
|
59
|
+
// CREDENTIAL-GROUPING-2026-04-23
|
|
60
|
+
await applyAppKeyHeader(headers, cfg);
|
|
49
61
|
const res = await fetch(url, { ...init, headers });
|
|
50
62
|
if (!res.ok) {
|
|
51
63
|
const text = await res.text().catch(() => "");
|
|
@@ -77,11 +89,26 @@ export function buildAuthFetch(cfg) {
|
|
|
77
89
|
const token = cfg.getToken ? await cfg.getToken() : null;
|
|
78
90
|
if (token)
|
|
79
91
|
headers.set("Authorization", `Bearer ${token}`);
|
|
92
|
+
// CREDENTIAL-GROUPING-2026-04-23
|
|
93
|
+
await applyAppKeyHeader(headers, cfg);
|
|
80
94
|
const headersInit = {};
|
|
81
95
|
headers.forEach((v, k) => (headersInit[k] = v));
|
|
82
96
|
return fetch(url, { ...init, headers: headersInit });
|
|
83
97
|
};
|
|
84
98
|
}
|
|
99
|
+
// CREDENTIAL-GROUPING-2026-04-23
|
|
100
|
+
// Uc fetch helper icin ortak X-App-Key uygulayicisi.
|
|
101
|
+
// cfg.getAppKey varsa async olarak cagirir ve header'i set eder (call-site override varsa dokunmaz).
|
|
102
|
+
async function applyAppKeyHeader(headers, cfg) {
|
|
103
|
+
if (!cfg.getAppKey)
|
|
104
|
+
return;
|
|
105
|
+
const headerName = cfg.appKeyHeaderName || "X-App-Key";
|
|
106
|
+
if (headers.has(headerName))
|
|
107
|
+
return; // call-site override ONCELIK
|
|
108
|
+
const appKey = await cfg.getAppKey();
|
|
109
|
+
if (appKey)
|
|
110
|
+
headers.set(headerName, appKey);
|
|
111
|
+
}
|
|
85
112
|
// Build an http object with defaults (credentials, extra headers etc.) applied on top of auth fetch
|
|
86
113
|
export function buildHttpWithDefaults(cfg, defaults) {
|
|
87
114
|
const authFetch = buildAuthFetch(cfg);
|
package/dist/container.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ export declare function getServices(): {
|
|
|
18
18
|
baseUserDevicesService: import("./index.js").BaseUserDevicesClient;
|
|
19
19
|
curlTasksService: import("./index.js").CurlTasksClient;
|
|
20
20
|
devicesService: import("./index.js").DevicesClient;
|
|
21
|
+
feedbacksService: import("./index.js").FeedbacksClient;
|
|
22
|
+
apiService: import("./index.js").ApiClient;
|
|
21
23
|
interactionTrackersService: import("./index.js").InteractionTrackersClient;
|
|
22
24
|
menuGroupsService: import("./index.js").MenuGroupsClient;
|
|
23
25
|
menuOperationClaimsService: import("./index.js").MenuOperationClaimsClient;
|
|
@@ -67,7 +69,6 @@ export declare function getServices(): {
|
|
|
67
69
|
scanTimingRunsService: import("./index.js").ScanTimingRunsClient;
|
|
68
70
|
scanTypesService: import("./index.js").ScanTypesClient;
|
|
69
71
|
scanVisibilityTypesService: import("./index.js").ScanVisibilityTypesClient;
|
|
70
|
-
apiService: import("./index.js").ApiClient;
|
|
71
72
|
internalService: import("./index.js").InternalClient;
|
|
72
73
|
threatConceptsService: import("./index.js").ThreatConceptsClient;
|
|
73
74
|
threatFrameworksService: import("./index.js").ThreatFrameworksClient;
|
|
@@ -95,6 +96,8 @@ export declare function getServicesRx(): {
|
|
|
95
96
|
baseUserDevicesService: import("./index.js").BaseUserDevicesClient;
|
|
96
97
|
curlTasksService: import("./index.js").CurlTasksClient;
|
|
97
98
|
devicesService: import("./index.js").DevicesClient;
|
|
99
|
+
feedbacksService: import("./index.js").FeedbacksClient;
|
|
100
|
+
apiService: import("./index.js").ApiClient;
|
|
98
101
|
interactionTrackersService: import("./index.js").InteractionTrackersClient;
|
|
99
102
|
menuGroupsService: import("./index.js").MenuGroupsClient;
|
|
100
103
|
menuOperationClaimsService: import("./index.js").MenuOperationClaimsClient;
|
|
@@ -144,7 +147,6 @@ export declare function getServicesRx(): {
|
|
|
144
147
|
scanTimingRunsService: import("./index.js").ScanTimingRunsClient;
|
|
145
148
|
scanTypesService: import("./index.js").ScanTypesClient;
|
|
146
149
|
scanVisibilityTypesService: import("./index.js").ScanVisibilityTypesClient;
|
|
147
|
-
apiService: import("./index.js").ApiClient;
|
|
148
150
|
internalService: import("./index.js").InternalClient;
|
|
149
151
|
threatConceptsService: import("./index.js").ThreatConceptsClient;
|
|
150
152
|
threatFrameworksService: import("./index.js").ThreatFrameworksClient;
|
|
@@ -173,6 +175,8 @@ export declare function getServicesByMode(mode?: ClientMode): {
|
|
|
173
175
|
baseUserDevicesService: import("./index.js").BaseUserDevicesClient;
|
|
174
176
|
curlTasksService: import("./index.js").CurlTasksClient;
|
|
175
177
|
devicesService: import("./index.js").DevicesClient;
|
|
178
|
+
feedbacksService: import("./index.js").FeedbacksClient;
|
|
179
|
+
apiService: import("./index.js").ApiClient;
|
|
176
180
|
interactionTrackersService: import("./index.js").InteractionTrackersClient;
|
|
177
181
|
menuGroupsService: import("./index.js").MenuGroupsClient;
|
|
178
182
|
menuOperationClaimsService: import("./index.js").MenuOperationClaimsClient;
|
|
@@ -222,7 +226,6 @@ export declare function getServicesByMode(mode?: ClientMode): {
|
|
|
222
226
|
scanTimingRunsService: import("./index.js").ScanTimingRunsClient;
|
|
223
227
|
scanTypesService: import("./index.js").ScanTypesClient;
|
|
224
228
|
scanVisibilityTypesService: import("./index.js").ScanVisibilityTypesClient;
|
|
225
|
-
apiService: import("./index.js").ApiClient;
|
|
226
229
|
internalService: import("./index.js").InternalClient;
|
|
227
230
|
threatConceptsService: import("./index.js").ThreatConceptsClient;
|
|
228
231
|
threatFrameworksService: import("./index.js").ThreatFrameworksClient;
|
|
@@ -5,6 +5,8 @@ export * from "./auth-service.js";
|
|
|
5
5
|
export * from "./base-user-devices-service.js";
|
|
6
6
|
export * from "./curl-tasks-service.js";
|
|
7
7
|
export * from "./devices-service.js";
|
|
8
|
+
export * from "./feedbacks-service.js";
|
|
9
|
+
export * from "./api-service.js";
|
|
8
10
|
export * from "./interaction-trackers-service.js";
|
|
9
11
|
export * from "./menu-groups-service.js";
|
|
10
12
|
export * from "./menu-operation-claims-service.js";
|
|
@@ -54,7 +56,6 @@ export * from "./scan-timing-events-service.js";
|
|
|
54
56
|
export * from "./scan-timing-runs-service.js";
|
|
55
57
|
export * from "./scan-types-service.js";
|
|
56
58
|
export * from "./scan-visibility-types-service.js";
|
|
57
|
-
export * from "./api-service.js";
|
|
58
59
|
export * from "./internal-service.js";
|
|
59
60
|
export * from "./threat-concepts-service.js";
|
|
60
61
|
export * from "./threat-frameworks-service.js";
|
|
@@ -5,6 +5,8 @@ export * from "./auth-service.js";
|
|
|
5
5
|
export * from "./base-user-devices-service.js";
|
|
6
6
|
export * from "./curl-tasks-service.js";
|
|
7
7
|
export * from "./devices-service.js";
|
|
8
|
+
export * from "./feedbacks-service.js";
|
|
9
|
+
export * from "./api-service.js";
|
|
8
10
|
export * from "./interaction-trackers-service.js";
|
|
9
11
|
export * from "./menu-groups-service.js";
|
|
10
12
|
export * from "./menu-operation-claims-service.js";
|
|
@@ -54,7 +56,6 @@ export * from "./scan-timing-events-service.js";
|
|
|
54
56
|
export * from "./scan-timing-runs-service.js";
|
|
55
57
|
export * from "./scan-types-service.js";
|
|
56
58
|
export * from "./scan-visibility-types-service.js";
|
|
57
|
-
export * from "./api-service.js";
|
|
58
59
|
export * from "./internal-service.js";
|
|
59
60
|
export * from "./threat-concepts-service.js";
|
|
60
61
|
export * from "./threat-frameworks-service.js";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { FeedbacksClient } from "../index.js";
|
|
2
|
+
import type { ApiClientConfig } from "../../base.js";
|
|
3
|
+
export declare function createFeedbacksServiceRx(config: ApiClientConfig, baseUrl?: string, http?: {
|
|
4
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
5
|
+
}): import("../../rx.js").Rxified<FeedbacksClient>;
|
|
6
|
+
export type FeedbacksServiceRx = ReturnType<typeof createFeedbacksServiceRx>;
|
|
7
|
+
export declare const feedbacksServiceRx: (config: ApiClientConfig, baseUrl?: string, http?: {
|
|
8
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
9
|
+
}) => import("../../rx.js").Rxified<FeedbacksClient>;
|
|
10
|
+
export declare class FeedbacksServiceRxClass {
|
|
11
|
+
constructor(config: ApiClientConfig, baseUrl?: string, http?: {
|
|
12
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export interface FeedbacksServiceRxClass extends FeedbacksServiceRx {
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FeedbacksClient } from "../index.js";
|
|
2
|
+
import { rxifyClient } from "../../rx.js";
|
|
3
|
+
export function createFeedbacksServiceRx(config, baseUrl, http) {
|
|
4
|
+
return rxifyClient(new FeedbacksClient(config, baseUrl, http));
|
|
5
|
+
}
|
|
6
|
+
export const feedbacksServiceRx = (config, baseUrl, http) => createFeedbacksServiceRx(config, baseUrl, http);
|
|
7
|
+
// Angular DI icin: class token kullandiginda Observable donen wrapper
|
|
8
|
+
export class FeedbacksServiceRxClass {
|
|
9
|
+
constructor(config, baseUrl, http) {
|
|
10
|
+
return createFeedbacksServiceRx(config, baseUrl, http);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -5,6 +5,8 @@ export * from "./auth-service-rx.js";
|
|
|
5
5
|
export * from "./base-user-devices-service-rx.js";
|
|
6
6
|
export * from "./curl-tasks-service-rx.js";
|
|
7
7
|
export * from "./devices-service-rx.js";
|
|
8
|
+
export * from "./feedbacks-service-rx.js";
|
|
9
|
+
export * from "./api-service-rx.js";
|
|
8
10
|
export * from "./interaction-trackers-service-rx.js";
|
|
9
11
|
export * from "./menu-groups-service-rx.js";
|
|
10
12
|
export * from "./menu-operation-claims-service-rx.js";
|
|
@@ -54,7 +56,6 @@ export * from "./scan-timing-events-service-rx.js";
|
|
|
54
56
|
export * from "./scan-timing-runs-service-rx.js";
|
|
55
57
|
export * from "./scan-types-service-rx.js";
|
|
56
58
|
export * from "./scan-visibility-types-service-rx.js";
|
|
57
|
-
export * from "./api-service-rx.js";
|
|
58
59
|
export * from "./internal-service-rx.js";
|
|
59
60
|
export * from "./threat-concepts-service-rx.js";
|
|
60
61
|
export * from "./threat-frameworks-service-rx.js";
|
|
@@ -5,6 +5,8 @@ export * from "./auth-service-rx.js";
|
|
|
5
5
|
export * from "./base-user-devices-service-rx.js";
|
|
6
6
|
export * from "./curl-tasks-service-rx.js";
|
|
7
7
|
export * from "./devices-service-rx.js";
|
|
8
|
+
export * from "./feedbacks-service-rx.js";
|
|
9
|
+
export * from "./api-service-rx.js";
|
|
8
10
|
export * from "./interaction-trackers-service-rx.js";
|
|
9
11
|
export * from "./menu-groups-service-rx.js";
|
|
10
12
|
export * from "./menu-operation-claims-service-rx.js";
|
|
@@ -54,7 +56,6 @@ export * from "./scan-timing-events-service-rx.js";
|
|
|
54
56
|
export * from "./scan-timing-runs-service-rx.js";
|
|
55
57
|
export * from "./scan-types-service-rx.js";
|
|
56
58
|
export * from "./scan-visibility-types-service-rx.js";
|
|
57
|
-
export * from "./api-service-rx.js";
|
|
58
59
|
export * from "./internal-service-rx.js";
|
|
59
60
|
export * from "./threat-concepts-service-rx.js";
|
|
60
61
|
export * from "./threat-frameworks-service-rx.js";
|
|
@@ -684,6 +684,72 @@ export declare class DevicesClient extends BaseApiClient implements IDevicesClie
|
|
|
684
684
|
getFiltersBase(body?: DeviceForTableFilterDataTableQuery | undefined, signal?: AbortSignal): Promise<DeviceForTableDtoListResultFilterIDataResult>;
|
|
685
685
|
protected processGetFiltersBase(response: Response): Promise<DeviceForTableDtoListResultFilterIDataResult>;
|
|
686
686
|
}
|
|
687
|
+
export interface IFeedbacksClient extends IEntity {
|
|
688
|
+
/**
|
|
689
|
+
* @param feedbackTypeId (optional)
|
|
690
|
+
* @return OK
|
|
691
|
+
*/
|
|
692
|
+
categories(feedbackTypeId?: number | undefined, signal?: AbortSignal): Promise<any>;
|
|
693
|
+
}
|
|
694
|
+
export declare class FeedbacksClient extends BaseApiClient implements IFeedbacksClient {
|
|
695
|
+
private http;
|
|
696
|
+
private baseUrl;
|
|
697
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
698
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
699
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
700
|
+
});
|
|
701
|
+
/**
|
|
702
|
+
* @param feedbackTypeId (optional)
|
|
703
|
+
* @return OK
|
|
704
|
+
*/
|
|
705
|
+
categories(feedbackTypeId?: number | undefined, signal?: AbortSignal): Promise<any>;
|
|
706
|
+
protected processCategories(response: Response): Promise<any>;
|
|
707
|
+
}
|
|
708
|
+
export interface IApiClient extends IEntity {
|
|
709
|
+
/**
|
|
710
|
+
* @param dto (optional)
|
|
711
|
+
* @param screenshot (optional)
|
|
712
|
+
* @param networkSnapshot (optional)
|
|
713
|
+
* @return OK
|
|
714
|
+
*/
|
|
715
|
+
feedbacks(dto?: string | undefined, screenshot?: FileParameter | undefined, networkSnapshot?: FileParameter | undefined, signal?: AbortSignal): Promise<any>;
|
|
716
|
+
/**
|
|
717
|
+
* @param body (optional)
|
|
718
|
+
* @return OK
|
|
719
|
+
*/
|
|
720
|
+
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
721
|
+
/**
|
|
722
|
+
* @return OK
|
|
723
|
+
*/
|
|
724
|
+
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
725
|
+
}
|
|
726
|
+
export declare class ApiClient extends BaseApiClient implements IApiClient {
|
|
727
|
+
private http;
|
|
728
|
+
private baseUrl;
|
|
729
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
730
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
731
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
732
|
+
});
|
|
733
|
+
/**
|
|
734
|
+
* @param dto (optional)
|
|
735
|
+
* @param screenshot (optional)
|
|
736
|
+
* @param networkSnapshot (optional)
|
|
737
|
+
* @return OK
|
|
738
|
+
*/
|
|
739
|
+
feedbacks(dto?: string | undefined, screenshot?: FileParameter | undefined, networkSnapshot?: FileParameter | undefined, signal?: AbortSignal): Promise<any>;
|
|
740
|
+
protected processFeedbacks(response: Response): Promise<any>;
|
|
741
|
+
/**
|
|
742
|
+
* @param body (optional)
|
|
743
|
+
* @return OK
|
|
744
|
+
*/
|
|
745
|
+
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
746
|
+
protected processShareLinksPost(response: Response): Promise<any>;
|
|
747
|
+
/**
|
|
748
|
+
* @return OK
|
|
749
|
+
*/
|
|
750
|
+
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
751
|
+
protected processShareLinksGet(response: Response): Promise<any>;
|
|
752
|
+
}
|
|
687
753
|
export interface IInteractionTrackersClient extends IEntity {
|
|
688
754
|
/**
|
|
689
755
|
* @param body (optional)
|
|
@@ -3492,6 +3558,11 @@ export interface IScanDatasClient extends IEntity {
|
|
|
3492
3558
|
* @return OK
|
|
3493
3559
|
*/
|
|
3494
3560
|
getScanDataForAlgorithmAnalysisDtoByGuid(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3561
|
+
/**
|
|
3562
|
+
* @param scanGuid (optional)
|
|
3563
|
+
* @return OK
|
|
3564
|
+
*/
|
|
3565
|
+
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3495
3566
|
/**
|
|
3496
3567
|
* @param scanGuid (optional)
|
|
3497
3568
|
* @return OK
|
|
@@ -3599,6 +3670,12 @@ export declare class ScanDatasClient extends BaseApiClient implements IScanDatas
|
|
|
3599
3670
|
*/
|
|
3600
3671
|
getScanDataForAlgorithmAnalysisDtoByGuid(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3601
3672
|
protected processGetScanDataForAlgorithmAnalysisDtoByGuid(response: Response): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3673
|
+
/**
|
|
3674
|
+
* @param scanGuid (optional)
|
|
3675
|
+
* @return OK
|
|
3676
|
+
*/
|
|
3677
|
+
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3678
|
+
protected processGetScanDataForAlgorithmAnalysisDtoByGuidInternal(response: Response): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3602
3679
|
/**
|
|
3603
3680
|
* @param scanGuid (optional)
|
|
3604
3681
|
* @return OK
|
|
@@ -3812,9 +3889,10 @@ export interface IScanEngineImagesClient extends IEntity {
|
|
|
3812
3889
|
*/
|
|
3813
3890
|
saveImageBySearch(imageName?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3814
3891
|
/**
|
|
3892
|
+
* @param force (optional)
|
|
3815
3893
|
* @return OK
|
|
3816
3894
|
*/
|
|
3817
|
-
saveImagesBySearch(signal?: AbortSignal): Promise<IResult>;
|
|
3895
|
+
saveImagesBySearch(force?: boolean | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3818
3896
|
/**
|
|
3819
3897
|
* @param id (optional)
|
|
3820
3898
|
* @param scanEngineId (optional)
|
|
@@ -3901,9 +3979,10 @@ export declare class ScanEngineImagesClient extends BaseApiClient implements ISc
|
|
|
3901
3979
|
saveImageBySearch(imageName?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3902
3980
|
protected processSaveImageBySearch(response: Response): Promise<IResult>;
|
|
3903
3981
|
/**
|
|
3982
|
+
* @param force (optional)
|
|
3904
3983
|
* @return OK
|
|
3905
3984
|
*/
|
|
3906
|
-
saveImagesBySearch(signal?: AbortSignal): Promise<IResult>;
|
|
3985
|
+
saveImagesBySearch(force?: boolean | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3907
3986
|
protected processSaveImagesBySearch(response: Response): Promise<IResult>;
|
|
3908
3987
|
/**
|
|
3909
3988
|
* @param id (optional)
|
|
@@ -4335,11 +4414,19 @@ export interface IScansClient extends IEntity {
|
|
|
4335
4414
|
* @return OK
|
|
4336
4415
|
*/
|
|
4337
4416
|
getScansByDateRangeUser(start?: Date | undefined, end?: Date | undefined, nickName?: string | undefined, signal?: AbortSignal): Promise<ScanListIDataResult>;
|
|
4417
|
+
/**
|
|
4418
|
+
* @return OK
|
|
4419
|
+
*/
|
|
4420
|
+
getUserScanStats(signal?: AbortSignal): Promise<UserScanStatsDtoIDataResult>;
|
|
4338
4421
|
/**
|
|
4339
4422
|
* @param guid (optional)
|
|
4340
4423
|
* @return OK
|
|
4341
4424
|
*/
|
|
4342
4425
|
completeScan(guid?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
4426
|
+
/**
|
|
4427
|
+
* @return OK
|
|
4428
|
+
*/
|
|
4429
|
+
status(guid: string, signal?: AbortSignal): Promise<ScanStatusDtoIDataResult>;
|
|
4343
4430
|
/**
|
|
4344
4431
|
* @param body (optional)
|
|
4345
4432
|
* @return OK
|
|
@@ -4442,12 +4529,22 @@ export declare class ScansClient extends BaseApiClient implements IScansClient {
|
|
|
4442
4529
|
*/
|
|
4443
4530
|
getScansByDateRangeUser(start?: Date | undefined, end?: Date | undefined, nickName?: string | undefined, signal?: AbortSignal): Promise<ScanListIDataResult>;
|
|
4444
4531
|
protected processGetScansByDateRangeUser(response: Response): Promise<ScanListIDataResult>;
|
|
4532
|
+
/**
|
|
4533
|
+
* @return OK
|
|
4534
|
+
*/
|
|
4535
|
+
getUserScanStats(signal?: AbortSignal): Promise<UserScanStatsDtoIDataResult>;
|
|
4536
|
+
protected processGetUserScanStats(response: Response): Promise<UserScanStatsDtoIDataResult>;
|
|
4445
4537
|
/**
|
|
4446
4538
|
* @param guid (optional)
|
|
4447
4539
|
* @return OK
|
|
4448
4540
|
*/
|
|
4449
4541
|
completeScan(guid?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
4450
4542
|
protected processCompleteScan(response: Response): Promise<IResult>;
|
|
4543
|
+
/**
|
|
4544
|
+
* @return OK
|
|
4545
|
+
*/
|
|
4546
|
+
status(guid: string, signal?: AbortSignal): Promise<ScanStatusDtoIDataResult>;
|
|
4547
|
+
protected processStatus(response: Response): Promise<ScanStatusDtoIDataResult>;
|
|
4451
4548
|
/**
|
|
4452
4549
|
* @param body (optional)
|
|
4453
4550
|
* @return OK
|
|
@@ -6274,36 +6371,6 @@ export declare class ScanVisibilityTypesClient extends BaseApiClient implements
|
|
|
6274
6371
|
getFiltersBase(body?: ScanVisibilityTypeForTableFilterDataTableQuery | undefined, signal?: AbortSignal): Promise<ScanVisibilityTypeForTableDtoListResultFilterIDataResult>;
|
|
6275
6372
|
protected processGetFiltersBase(response: Response): Promise<ScanVisibilityTypeForTableDtoListResultFilterIDataResult>;
|
|
6276
6373
|
}
|
|
6277
|
-
export interface IApiClient extends IEntity {
|
|
6278
|
-
/**
|
|
6279
|
-
* @param body (optional)
|
|
6280
|
-
* @return OK
|
|
6281
|
-
*/
|
|
6282
|
-
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
6283
|
-
/**
|
|
6284
|
-
* @return OK
|
|
6285
|
-
*/
|
|
6286
|
-
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
6287
|
-
}
|
|
6288
|
-
export declare class ApiClient extends BaseApiClient implements IApiClient {
|
|
6289
|
-
private http;
|
|
6290
|
-
private baseUrl;
|
|
6291
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
6292
|
-
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
6293
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
6294
|
-
});
|
|
6295
|
-
/**
|
|
6296
|
-
* @param body (optional)
|
|
6297
|
-
* @return OK
|
|
6298
|
-
*/
|
|
6299
|
-
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
6300
|
-
protected processShareLinksPost(response: Response): Promise<any>;
|
|
6301
|
-
/**
|
|
6302
|
-
* @return OK
|
|
6303
|
-
*/
|
|
6304
|
-
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
6305
|
-
protected processShareLinksGet(response: Response): Promise<any>;
|
|
6306
|
-
}
|
|
6307
6374
|
export interface IInternalClient extends IEntity {
|
|
6308
6375
|
/**
|
|
6309
6376
|
* @return OK
|
|
@@ -7091,6 +7158,10 @@ export interface ITrialUsersClient extends IEntity {
|
|
|
7091
7158
|
* @return OK
|
|
7092
7159
|
*/
|
|
7093
7160
|
getByMail(mail?: string | undefined, signal?: AbortSignal): Promise<TrialUserIDataResult>;
|
|
7161
|
+
/**
|
|
7162
|
+
* @return OK
|
|
7163
|
+
*/
|
|
7164
|
+
markFirstFeedbackShown(signal?: AbortSignal): Promise<any>;
|
|
7094
7165
|
/**
|
|
7095
7166
|
* @param body (optional)
|
|
7096
7167
|
* @return OK
|
|
@@ -7150,6 +7221,11 @@ export declare class TrialUsersClient extends BaseApiClient implements ITrialUse
|
|
|
7150
7221
|
*/
|
|
7151
7222
|
getByMail(mail?: string | undefined, signal?: AbortSignal): Promise<TrialUserIDataResult>;
|
|
7152
7223
|
protected processGetByMail(response: Response): Promise<TrialUserIDataResult>;
|
|
7224
|
+
/**
|
|
7225
|
+
* @return OK
|
|
7226
|
+
*/
|
|
7227
|
+
markFirstFeedbackShown(signal?: AbortSignal): Promise<any>;
|
|
7228
|
+
protected processMarkFirstFeedbackShown(response: Response): Promise<any>;
|
|
7153
7229
|
/**
|
|
7154
7230
|
* @param body (optional)
|
|
7155
7231
|
* @return OK
|
|
@@ -11225,6 +11301,18 @@ export interface ScanStaticSectionListIDataResult extends IEntity {
|
|
|
11225
11301
|
readonly message?: string | undefined;
|
|
11226
11302
|
readonly data?: ScanStaticSection[] | undefined;
|
|
11227
11303
|
}
|
|
11304
|
+
export interface ScanStatusDto extends IDto {
|
|
11305
|
+
id?: number;
|
|
11306
|
+
guid?: string | undefined;
|
|
11307
|
+
processingState?: string | undefined;
|
|
11308
|
+
isTerminal?: boolean;
|
|
11309
|
+
updateTime?: Date | undefined;
|
|
11310
|
+
}
|
|
11311
|
+
export interface ScanStatusDtoIDataResult extends IEntity {
|
|
11312
|
+
readonly success?: boolean;
|
|
11313
|
+
readonly message?: string | undefined;
|
|
11314
|
+
data?: ScanStatusDto;
|
|
11315
|
+
}
|
|
11228
11316
|
export interface ScanSummaryDto extends IDto {
|
|
11229
11317
|
scanGuid?: string | undefined;
|
|
11230
11318
|
submissionName?: string | undefined;
|
|
@@ -11995,6 +12083,7 @@ export interface TrialUser extends IEntity {
|
|
|
11995
12083
|
id?: number;
|
|
11996
12084
|
baseUserId?: number;
|
|
11997
12085
|
viewKey?: string;
|
|
12086
|
+
firstScanFeedbackShownAt?: Date | undefined;
|
|
11998
12087
|
updateTime?: Date | undefined;
|
|
11999
12088
|
status?: boolean | undefined;
|
|
12000
12089
|
}
|
|
@@ -12489,6 +12578,20 @@ export interface UserOperationClaimListIDataResult extends IEntity {
|
|
|
12489
12578
|
readonly message?: string | undefined;
|
|
12490
12579
|
readonly data?: UserOperationClaim[] | undefined;
|
|
12491
12580
|
}
|
|
12581
|
+
export interface UserScanStatsDto extends IDto {
|
|
12582
|
+
totalScans?: number;
|
|
12583
|
+
completedScans?: number;
|
|
12584
|
+
completedWithWarningsScans?: number;
|
|
12585
|
+
failedScans?: number;
|
|
12586
|
+
cancelledScans?: number;
|
|
12587
|
+
queuedScans?: number;
|
|
12588
|
+
runningScans?: number;
|
|
12589
|
+
}
|
|
12590
|
+
export interface UserScanStatsDtoIDataResult extends IEntity {
|
|
12591
|
+
readonly success?: boolean;
|
|
12592
|
+
readonly message?: string | undefined;
|
|
12593
|
+
data?: UserScanStatsDto;
|
|
12594
|
+
}
|
|
12492
12595
|
export interface WorkerEngineResultDto extends IDto {
|
|
12493
12596
|
scanApiId?: number;
|
|
12494
12597
|
engineName?: string | undefined;
|
|
@@ -12506,10 +12609,12 @@ export interface WorkerScanCompletedPayload extends IEntity {
|
|
|
12506
12609
|
targetMd5?: string | undefined;
|
|
12507
12610
|
scanType?: string | undefined;
|
|
12508
12611
|
userId?: number | undefined;
|
|
12612
|
+
deviceHash?: string | undefined;
|
|
12509
12613
|
results?: WorkerEngineResultDto[] | undefined;
|
|
12510
12614
|
basicScore?: number | undefined;
|
|
12511
12615
|
basicGrade?: string | undefined;
|
|
12512
12616
|
detectionCount?: number | undefined;
|
|
12617
|
+
scanMode?: string | undefined;
|
|
12513
12618
|
}
|
|
12514
12619
|
export interface WorkerSingleEngineResultPayload extends IEntity {
|
|
12515
12620
|
scanGuid?: string | undefined;
|
|
@@ -12519,6 +12624,7 @@ export interface WorkerSingleEngineResultPayload extends IEntity {
|
|
|
12519
12624
|
targetMd5?: string | undefined;
|
|
12520
12625
|
scanType?: string | undefined;
|
|
12521
12626
|
userId?: number | undefined;
|
|
12627
|
+
scanMode?: string | undefined;
|
|
12522
12628
|
result?: WorkerEngineResultDto;
|
|
12523
12629
|
}
|
|
12524
12630
|
export interface FileParameter extends IEntity {
|
package/dist/generated/index.js
CHANGED
|
@@ -2407,6 +2407,192 @@ export class DevicesClient extends BaseApiClient {
|
|
|
2407
2407
|
return Promise.resolve(null);
|
|
2408
2408
|
}
|
|
2409
2409
|
}
|
|
2410
|
+
export class FeedbacksClient extends BaseApiClient {
|
|
2411
|
+
constructor(configuration, baseUrl, http) {
|
|
2412
|
+
super(configuration);
|
|
2413
|
+
this.jsonParseReviver = undefined;
|
|
2414
|
+
this.http = http ? http : { fetch: buildAuthFetch(configuration) };
|
|
2415
|
+
this.baseUrl = (baseUrl ?? configuration.baseUrl ?? "").replace(/\/+$/, "").replace(/\/api$/, "");
|
|
2416
|
+
}
|
|
2417
|
+
/**
|
|
2418
|
+
* @param feedbackTypeId (optional)
|
|
2419
|
+
* @return OK
|
|
2420
|
+
*/
|
|
2421
|
+
categories(feedbackTypeId, signal) {
|
|
2422
|
+
let url_ = this.baseUrl + "/api/Feedbacks/categories?";
|
|
2423
|
+
if (feedbackTypeId === null)
|
|
2424
|
+
throw new globalThis.Error("The parameter 'feedbackTypeId' cannot be null.");
|
|
2425
|
+
else if (feedbackTypeId !== undefined)
|
|
2426
|
+
url_ += "feedbackTypeId=" + encodeURIComponent("" + feedbackTypeId) + "&";
|
|
2427
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
2428
|
+
let options_ = {
|
|
2429
|
+
method: "GET",
|
|
2430
|
+
signal,
|
|
2431
|
+
headers: {}
|
|
2432
|
+
};
|
|
2433
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
2434
|
+
return this.processCategories(_response);
|
|
2435
|
+
});
|
|
2436
|
+
}
|
|
2437
|
+
processCategories(response) {
|
|
2438
|
+
const status = response.status;
|
|
2439
|
+
let _headers = {};
|
|
2440
|
+
if (response.headers && response.headers.forEach) {
|
|
2441
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
2442
|
+
}
|
|
2443
|
+
;
|
|
2444
|
+
if (status === 200) {
|
|
2445
|
+
return response.text().then((_responseText) => {
|
|
2446
|
+
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
2447
|
+
return result200;
|
|
2448
|
+
});
|
|
2449
|
+
}
|
|
2450
|
+
else if (status !== 200 && status !== 204) {
|
|
2451
|
+
return response.text().then((_responseText) => {
|
|
2452
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
2453
|
+
});
|
|
2454
|
+
}
|
|
2455
|
+
return Promise.resolve(null);
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2458
|
+
export class ApiClient extends BaseApiClient {
|
|
2459
|
+
constructor(configuration, baseUrl, http) {
|
|
2460
|
+
super(configuration);
|
|
2461
|
+
this.jsonParseReviver = undefined;
|
|
2462
|
+
this.http = http ? http : { fetch: buildAuthFetch(configuration) };
|
|
2463
|
+
this.baseUrl = (baseUrl ?? configuration.baseUrl ?? "").replace(/\/+$/, "").replace(/\/api$/, "");
|
|
2464
|
+
}
|
|
2465
|
+
/**
|
|
2466
|
+
* @param dto (optional)
|
|
2467
|
+
* @param screenshot (optional)
|
|
2468
|
+
* @param networkSnapshot (optional)
|
|
2469
|
+
* @return OK
|
|
2470
|
+
*/
|
|
2471
|
+
feedbacks(dto, screenshot, networkSnapshot, signal) {
|
|
2472
|
+
let url_ = this.baseUrl + "/api/Feedbacks";
|
|
2473
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
2474
|
+
const content_ = new FormData();
|
|
2475
|
+
if (dto === null || dto === undefined)
|
|
2476
|
+
throw new globalThis.Error("The parameter 'dto' cannot be null.");
|
|
2477
|
+
else
|
|
2478
|
+
content_.append("Dto", dto.toString());
|
|
2479
|
+
if (screenshot === null || screenshot === undefined)
|
|
2480
|
+
throw new globalThis.Error("The parameter 'screenshot' cannot be null.");
|
|
2481
|
+
else
|
|
2482
|
+
content_.append("Screenshot", screenshot.data, screenshot.fileName ? screenshot.fileName : "Screenshot");
|
|
2483
|
+
if (networkSnapshot === null || networkSnapshot === undefined)
|
|
2484
|
+
throw new globalThis.Error("The parameter 'networkSnapshot' cannot be null.");
|
|
2485
|
+
else
|
|
2486
|
+
content_.append("NetworkSnapshot", networkSnapshot.data, networkSnapshot.fileName ? networkSnapshot.fileName : "NetworkSnapshot");
|
|
2487
|
+
let options_ = {
|
|
2488
|
+
body: content_,
|
|
2489
|
+
method: "POST",
|
|
2490
|
+
signal,
|
|
2491
|
+
headers: {}
|
|
2492
|
+
};
|
|
2493
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
2494
|
+
return this.processFeedbacks(_response);
|
|
2495
|
+
});
|
|
2496
|
+
}
|
|
2497
|
+
processFeedbacks(response) {
|
|
2498
|
+
const status = response.status;
|
|
2499
|
+
let _headers = {};
|
|
2500
|
+
if (response.headers && response.headers.forEach) {
|
|
2501
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
2502
|
+
}
|
|
2503
|
+
;
|
|
2504
|
+
if (status === 200) {
|
|
2505
|
+
return response.text().then((_responseText) => {
|
|
2506
|
+
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
2507
|
+
return result200;
|
|
2508
|
+
});
|
|
2509
|
+
}
|
|
2510
|
+
else if (status !== 200 && status !== 204) {
|
|
2511
|
+
return response.text().then((_responseText) => {
|
|
2512
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
2513
|
+
});
|
|
2514
|
+
}
|
|
2515
|
+
return Promise.resolve(null);
|
|
2516
|
+
}
|
|
2517
|
+
/**
|
|
2518
|
+
* @param body (optional)
|
|
2519
|
+
* @return OK
|
|
2520
|
+
*/
|
|
2521
|
+
shareLinksPost(body, signal) {
|
|
2522
|
+
let url_ = this.baseUrl + "/api/share-links";
|
|
2523
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
2524
|
+
const content_ = JSON.stringify(body);
|
|
2525
|
+
let options_ = {
|
|
2526
|
+
body: content_,
|
|
2527
|
+
method: "POST",
|
|
2528
|
+
signal,
|
|
2529
|
+
headers: {
|
|
2530
|
+
"Content-Type": "application/json",
|
|
2531
|
+
}
|
|
2532
|
+
};
|
|
2533
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
2534
|
+
return this.processShareLinksPost(_response);
|
|
2535
|
+
});
|
|
2536
|
+
}
|
|
2537
|
+
processShareLinksPost(response) {
|
|
2538
|
+
const status = response.status;
|
|
2539
|
+
let _headers = {};
|
|
2540
|
+
if (response.headers && response.headers.forEach) {
|
|
2541
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
2542
|
+
}
|
|
2543
|
+
;
|
|
2544
|
+
if (status === 200) {
|
|
2545
|
+
return response.text().then((_responseText) => {
|
|
2546
|
+
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
2547
|
+
return result200;
|
|
2548
|
+
});
|
|
2549
|
+
}
|
|
2550
|
+
else if (status !== 200 && status !== 204) {
|
|
2551
|
+
return response.text().then((_responseText) => {
|
|
2552
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
2553
|
+
});
|
|
2554
|
+
}
|
|
2555
|
+
return Promise.resolve(null);
|
|
2556
|
+
}
|
|
2557
|
+
/**
|
|
2558
|
+
* @return OK
|
|
2559
|
+
*/
|
|
2560
|
+
shareLinksGet(code, signal) {
|
|
2561
|
+
let url_ = this.baseUrl + "/api/share-links/{code}";
|
|
2562
|
+
if (code === undefined || code === null)
|
|
2563
|
+
throw new globalThis.Error("The parameter 'code' must be defined.");
|
|
2564
|
+
url_ = url_.replace("{code}", encodeURIComponent("" + code));
|
|
2565
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
2566
|
+
let options_ = {
|
|
2567
|
+
method: "GET",
|
|
2568
|
+
signal,
|
|
2569
|
+
headers: {}
|
|
2570
|
+
};
|
|
2571
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
2572
|
+
return this.processShareLinksGet(_response);
|
|
2573
|
+
});
|
|
2574
|
+
}
|
|
2575
|
+
processShareLinksGet(response) {
|
|
2576
|
+
const status = response.status;
|
|
2577
|
+
let _headers = {};
|
|
2578
|
+
if (response.headers && response.headers.forEach) {
|
|
2579
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
2580
|
+
}
|
|
2581
|
+
;
|
|
2582
|
+
if (status === 200) {
|
|
2583
|
+
return response.text().then((_responseText) => {
|
|
2584
|
+
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
2585
|
+
return result200;
|
|
2586
|
+
});
|
|
2587
|
+
}
|
|
2588
|
+
else if (status !== 200 && status !== 204) {
|
|
2589
|
+
return response.text().then((_responseText) => {
|
|
2590
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
2591
|
+
});
|
|
2592
|
+
}
|
|
2593
|
+
return Promise.resolve(null);
|
|
2594
|
+
}
|
|
2595
|
+
}
|
|
2410
2596
|
export class InteractionTrackersClient extends BaseApiClient {
|
|
2411
2597
|
constructor(configuration, baseUrl, http) {
|
|
2412
2598
|
super(configuration);
|
|
@@ -12535,6 +12721,49 @@ export class ScanDatasClient extends BaseApiClient {
|
|
|
12535
12721
|
}
|
|
12536
12722
|
return Promise.resolve(null);
|
|
12537
12723
|
}
|
|
12724
|
+
/**
|
|
12725
|
+
* @param scanGuid (optional)
|
|
12726
|
+
* @return OK
|
|
12727
|
+
*/
|
|
12728
|
+
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid, signal) {
|
|
12729
|
+
let url_ = this.baseUrl + "/api/ScanDatas/GetScanDataForAlgorithmAnalysisDtoByGuidInternal?";
|
|
12730
|
+
if (scanGuid === null)
|
|
12731
|
+
throw new globalThis.Error("The parameter 'scanGuid' cannot be null.");
|
|
12732
|
+
else if (scanGuid !== undefined)
|
|
12733
|
+
url_ += "scanGuid=" + encodeURIComponent("" + scanGuid) + "&";
|
|
12734
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
12735
|
+
let options_ = {
|
|
12736
|
+
method: "GET",
|
|
12737
|
+
signal,
|
|
12738
|
+
headers: {
|
|
12739
|
+
"Accept": "application/json"
|
|
12740
|
+
}
|
|
12741
|
+
};
|
|
12742
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
12743
|
+
return this.processGetScanDataForAlgorithmAnalysisDtoByGuidInternal(_response);
|
|
12744
|
+
});
|
|
12745
|
+
}
|
|
12746
|
+
processGetScanDataForAlgorithmAnalysisDtoByGuidInternal(response) {
|
|
12747
|
+
const status = response.status;
|
|
12748
|
+
let _headers = {};
|
|
12749
|
+
if (response.headers && response.headers.forEach) {
|
|
12750
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
12751
|
+
}
|
|
12752
|
+
;
|
|
12753
|
+
if (status === 200) {
|
|
12754
|
+
return response.text().then((_responseText) => {
|
|
12755
|
+
let result200 = null;
|
|
12756
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
12757
|
+
return result200;
|
|
12758
|
+
});
|
|
12759
|
+
}
|
|
12760
|
+
else if (status !== 200 && status !== 204) {
|
|
12761
|
+
return response.text().then((_responseText) => {
|
|
12762
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
12763
|
+
});
|
|
12764
|
+
}
|
|
12765
|
+
return Promise.resolve(null);
|
|
12766
|
+
}
|
|
12538
12767
|
/**
|
|
12539
12768
|
* @param scanGuid (optional)
|
|
12540
12769
|
* @return OK
|
|
@@ -13667,10 +13896,15 @@ export class ScanEngineImagesClient extends BaseApiClient {
|
|
|
13667
13896
|
return Promise.resolve(null);
|
|
13668
13897
|
}
|
|
13669
13898
|
/**
|
|
13899
|
+
* @param force (optional)
|
|
13670
13900
|
* @return OK
|
|
13671
13901
|
*/
|
|
13672
|
-
saveImagesBySearch(signal) {
|
|
13673
|
-
let url_ = this.baseUrl + "/api/ScanEngineImages/SaveImagesBySearch";
|
|
13902
|
+
saveImagesBySearch(force, signal) {
|
|
13903
|
+
let url_ = this.baseUrl + "/api/ScanEngineImages/SaveImagesBySearch?";
|
|
13904
|
+
if (force === null)
|
|
13905
|
+
throw new globalThis.Error("The parameter 'force' cannot be null.");
|
|
13906
|
+
else if (force !== undefined)
|
|
13907
|
+
url_ += "force=" + encodeURIComponent("" + force) + "&";
|
|
13674
13908
|
url_ = url_.replace(/[?&]$/, "");
|
|
13675
13909
|
let options_ = {
|
|
13676
13910
|
method: "GET",
|
|
@@ -15638,6 +15872,44 @@ export class ScansClient extends BaseApiClient {
|
|
|
15638
15872
|
}
|
|
15639
15873
|
return Promise.resolve(null);
|
|
15640
15874
|
}
|
|
15875
|
+
/**
|
|
15876
|
+
* @return OK
|
|
15877
|
+
*/
|
|
15878
|
+
getUserScanStats(signal) {
|
|
15879
|
+
let url_ = this.baseUrl + "/api/Scans/GetUserScanStats";
|
|
15880
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
15881
|
+
let options_ = {
|
|
15882
|
+
method: "GET",
|
|
15883
|
+
signal,
|
|
15884
|
+
headers: {
|
|
15885
|
+
"Accept": "application/json"
|
|
15886
|
+
}
|
|
15887
|
+
};
|
|
15888
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
15889
|
+
return this.processGetUserScanStats(_response);
|
|
15890
|
+
});
|
|
15891
|
+
}
|
|
15892
|
+
processGetUserScanStats(response) {
|
|
15893
|
+
const status = response.status;
|
|
15894
|
+
let _headers = {};
|
|
15895
|
+
if (response.headers && response.headers.forEach) {
|
|
15896
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
15897
|
+
}
|
|
15898
|
+
;
|
|
15899
|
+
if (status === 200) {
|
|
15900
|
+
return response.text().then((_responseText) => {
|
|
15901
|
+
let result200 = null;
|
|
15902
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15903
|
+
return result200;
|
|
15904
|
+
});
|
|
15905
|
+
}
|
|
15906
|
+
else if (status !== 200 && status !== 204) {
|
|
15907
|
+
return response.text().then((_responseText) => {
|
|
15908
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
15909
|
+
});
|
|
15910
|
+
}
|
|
15911
|
+
return Promise.resolve(null);
|
|
15912
|
+
}
|
|
15641
15913
|
/**
|
|
15642
15914
|
* @param guid (optional)
|
|
15643
15915
|
* @return OK
|
|
@@ -15681,6 +15953,47 @@ export class ScansClient extends BaseApiClient {
|
|
|
15681
15953
|
}
|
|
15682
15954
|
return Promise.resolve(null);
|
|
15683
15955
|
}
|
|
15956
|
+
/**
|
|
15957
|
+
* @return OK
|
|
15958
|
+
*/
|
|
15959
|
+
status(guid, signal) {
|
|
15960
|
+
let url_ = this.baseUrl + "/api/Scans/{guid}/status";
|
|
15961
|
+
if (guid === undefined || guid === null)
|
|
15962
|
+
throw new globalThis.Error("The parameter 'guid' must be defined.");
|
|
15963
|
+
url_ = url_.replace("{guid}", encodeURIComponent("" + guid));
|
|
15964
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
15965
|
+
let options_ = {
|
|
15966
|
+
method: "GET",
|
|
15967
|
+
signal,
|
|
15968
|
+
headers: {
|
|
15969
|
+
"Accept": "application/json"
|
|
15970
|
+
}
|
|
15971
|
+
};
|
|
15972
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
15973
|
+
return this.processStatus(_response);
|
|
15974
|
+
});
|
|
15975
|
+
}
|
|
15976
|
+
processStatus(response) {
|
|
15977
|
+
const status = response.status;
|
|
15978
|
+
let _headers = {};
|
|
15979
|
+
if (response.headers && response.headers.forEach) {
|
|
15980
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
15981
|
+
}
|
|
15982
|
+
;
|
|
15983
|
+
if (status === 200) {
|
|
15984
|
+
return response.text().then((_responseText) => {
|
|
15985
|
+
let result200 = null;
|
|
15986
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15987
|
+
return result200;
|
|
15988
|
+
});
|
|
15989
|
+
}
|
|
15990
|
+
else if (status !== 200 && status !== 204) {
|
|
15991
|
+
return response.text().then((_responseText) => {
|
|
15992
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
15993
|
+
});
|
|
15994
|
+
}
|
|
15995
|
+
return Promise.resolve(null);
|
|
15996
|
+
}
|
|
15684
15997
|
/**
|
|
15685
15998
|
* @param body (optional)
|
|
15686
15999
|
* @return OK
|
|
@@ -22419,92 +22732,6 @@ export class ScanVisibilityTypesClient extends BaseApiClient {
|
|
|
22419
22732
|
return Promise.resolve(null);
|
|
22420
22733
|
}
|
|
22421
22734
|
}
|
|
22422
|
-
export class ApiClient extends BaseApiClient {
|
|
22423
|
-
constructor(configuration, baseUrl, http) {
|
|
22424
|
-
super(configuration);
|
|
22425
|
-
this.jsonParseReviver = undefined;
|
|
22426
|
-
this.http = http ? http : { fetch: buildAuthFetch(configuration) };
|
|
22427
|
-
this.baseUrl = (baseUrl ?? configuration.baseUrl ?? "").replace(/\/+$/, "").replace(/\/api$/, "");
|
|
22428
|
-
}
|
|
22429
|
-
/**
|
|
22430
|
-
* @param body (optional)
|
|
22431
|
-
* @return OK
|
|
22432
|
-
*/
|
|
22433
|
-
shareLinksPost(body, signal) {
|
|
22434
|
-
let url_ = this.baseUrl + "/api/share-links";
|
|
22435
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22436
|
-
const content_ = JSON.stringify(body);
|
|
22437
|
-
let options_ = {
|
|
22438
|
-
body: content_,
|
|
22439
|
-
method: "POST",
|
|
22440
|
-
signal,
|
|
22441
|
-
headers: {
|
|
22442
|
-
"Content-Type": "application/json",
|
|
22443
|
-
}
|
|
22444
|
-
};
|
|
22445
|
-
return this.http.fetch(url_, options_).then((_response) => {
|
|
22446
|
-
return this.processShareLinksPost(_response);
|
|
22447
|
-
});
|
|
22448
|
-
}
|
|
22449
|
-
processShareLinksPost(response) {
|
|
22450
|
-
const status = response.status;
|
|
22451
|
-
let _headers = {};
|
|
22452
|
-
if (response.headers && response.headers.forEach) {
|
|
22453
|
-
response.headers.forEach((v, k) => _headers[k] = v);
|
|
22454
|
-
}
|
|
22455
|
-
;
|
|
22456
|
-
if (status === 200) {
|
|
22457
|
-
return response.text().then((_responseText) => {
|
|
22458
|
-
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
22459
|
-
return result200;
|
|
22460
|
-
});
|
|
22461
|
-
}
|
|
22462
|
-
else if (status !== 200 && status !== 204) {
|
|
22463
|
-
return response.text().then((_responseText) => {
|
|
22464
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22465
|
-
});
|
|
22466
|
-
}
|
|
22467
|
-
return Promise.resolve(null);
|
|
22468
|
-
}
|
|
22469
|
-
/**
|
|
22470
|
-
* @return OK
|
|
22471
|
-
*/
|
|
22472
|
-
shareLinksGet(code, signal) {
|
|
22473
|
-
let url_ = this.baseUrl + "/api/share-links/{code}";
|
|
22474
|
-
if (code === undefined || code === null)
|
|
22475
|
-
throw new globalThis.Error("The parameter 'code' must be defined.");
|
|
22476
|
-
url_ = url_.replace("{code}", encodeURIComponent("" + code));
|
|
22477
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22478
|
-
let options_ = {
|
|
22479
|
-
method: "GET",
|
|
22480
|
-
signal,
|
|
22481
|
-
headers: {}
|
|
22482
|
-
};
|
|
22483
|
-
return this.http.fetch(url_, options_).then((_response) => {
|
|
22484
|
-
return this.processShareLinksGet(_response);
|
|
22485
|
-
});
|
|
22486
|
-
}
|
|
22487
|
-
processShareLinksGet(response) {
|
|
22488
|
-
const status = response.status;
|
|
22489
|
-
let _headers = {};
|
|
22490
|
-
if (response.headers && response.headers.forEach) {
|
|
22491
|
-
response.headers.forEach((v, k) => _headers[k] = v);
|
|
22492
|
-
}
|
|
22493
|
-
;
|
|
22494
|
-
if (status === 200) {
|
|
22495
|
-
return response.text().then((_responseText) => {
|
|
22496
|
-
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
22497
|
-
return result200;
|
|
22498
|
-
});
|
|
22499
|
-
}
|
|
22500
|
-
else if (status !== 200 && status !== 204) {
|
|
22501
|
-
return response.text().then((_responseText) => {
|
|
22502
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22503
|
-
});
|
|
22504
|
-
}
|
|
22505
|
-
return Promise.resolve(null);
|
|
22506
|
-
}
|
|
22507
|
-
}
|
|
22508
22735
|
export class InternalClient extends BaseApiClient {
|
|
22509
22736
|
constructor(configuration, baseUrl, http) {
|
|
22510
22737
|
super(configuration);
|
|
@@ -25254,6 +25481,41 @@ export class TrialUsersClient extends BaseApiClient {
|
|
|
25254
25481
|
}
|
|
25255
25482
|
return Promise.resolve(null);
|
|
25256
25483
|
}
|
|
25484
|
+
/**
|
|
25485
|
+
* @return OK
|
|
25486
|
+
*/
|
|
25487
|
+
markFirstFeedbackShown(signal) {
|
|
25488
|
+
let url_ = this.baseUrl + "/api/TrialUsers/mark-first-feedback-shown";
|
|
25489
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
25490
|
+
let options_ = {
|
|
25491
|
+
method: "POST",
|
|
25492
|
+
signal,
|
|
25493
|
+
headers: {}
|
|
25494
|
+
};
|
|
25495
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
25496
|
+
return this.processMarkFirstFeedbackShown(_response);
|
|
25497
|
+
});
|
|
25498
|
+
}
|
|
25499
|
+
processMarkFirstFeedbackShown(response) {
|
|
25500
|
+
const status = response.status;
|
|
25501
|
+
let _headers = {};
|
|
25502
|
+
if (response.headers && response.headers.forEach) {
|
|
25503
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
25504
|
+
}
|
|
25505
|
+
;
|
|
25506
|
+
if (status === 200) {
|
|
25507
|
+
return response.text().then((_responseText) => {
|
|
25508
|
+
const result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
25509
|
+
return result200;
|
|
25510
|
+
});
|
|
25511
|
+
}
|
|
25512
|
+
else if (status !== 200 && status !== 204) {
|
|
25513
|
+
return response.text().then((_responseText) => {
|
|
25514
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
25515
|
+
});
|
|
25516
|
+
}
|
|
25517
|
+
return Promise.resolve(null);
|
|
25518
|
+
}
|
|
25257
25519
|
/**
|
|
25258
25520
|
* @param body (optional)
|
|
25259
25521
|
* @return OK
|
|
@@ -487,6 +487,8 @@ export * from "./scan-static-section-for-table-filter.js";
|
|
|
487
487
|
export * from "./scan-static-section-for-table-filter-data-table-query.js";
|
|
488
488
|
export * from "./scan-static-section-i-data-result.js";
|
|
489
489
|
export * from "./scan-static-section-list-i-data-result.js";
|
|
490
|
+
export * from "./scan-status-dto.js";
|
|
491
|
+
export * from "./scan-status-dto-i-data-result.js";
|
|
490
492
|
export * from "./scan-summary-dto.js";
|
|
491
493
|
export * from "./scan-summary-dto-i-data-result.js";
|
|
492
494
|
export * from "./scan-threat-detection.js";
|
|
@@ -649,6 +651,8 @@ export * from "./user-operation-claim-for-table-filter.js";
|
|
|
649
651
|
export * from "./user-operation-claim-for-table-filter-data-table-query.js";
|
|
650
652
|
export * from "./user-operation-claim-i-data-result.js";
|
|
651
653
|
export * from "./user-operation-claim-list-i-data-result.js";
|
|
654
|
+
export * from "./user-scan-stats-dto.js";
|
|
655
|
+
export * from "./user-scan-stats-dto-i-data-result.js";
|
|
652
656
|
export * from "./worker-engine-result-dto.js";
|
|
653
657
|
export * from "./worker-scan-completed-payload.js";
|
|
654
658
|
export * from "./worker-single-engine-result-payload.js";
|
|
@@ -487,6 +487,8 @@ export * from "./scan-static-section-for-table-filter.js";
|
|
|
487
487
|
export * from "./scan-static-section-for-table-filter-data-table-query.js";
|
|
488
488
|
export * from "./scan-static-section-i-data-result.js";
|
|
489
489
|
export * from "./scan-static-section-list-i-data-result.js";
|
|
490
|
+
export * from "./scan-status-dto.js";
|
|
491
|
+
export * from "./scan-status-dto-i-data-result.js";
|
|
490
492
|
export * from "./scan-summary-dto.js";
|
|
491
493
|
export * from "./scan-summary-dto-i-data-result.js";
|
|
492
494
|
export * from "./scan-threat-detection.js";
|
|
@@ -649,6 +651,8 @@ export * from "./user-operation-claim-for-table-filter.js";
|
|
|
649
651
|
export * from "./user-operation-claim-for-table-filter-data-table-query.js";
|
|
650
652
|
export * from "./user-operation-claim-i-data-result.js";
|
|
651
653
|
export * from "./user-operation-claim-list-i-data-result.js";
|
|
654
|
+
export * from "./user-scan-stats-dto.js";
|
|
655
|
+
export * from "./user-scan-stats-dto-i-data-result.js";
|
|
652
656
|
export * from "./worker-engine-result-dto.js";
|
|
653
657
|
export * from "./worker-scan-completed-payload.js";
|
|
654
658
|
export * from "./worker-single-engine-result-payload.js";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { ScanStatusDtoIDataResult as __ScanStatusDtoIDataResult } from "../index.js";
|
|
2
|
+
export declare const ScanStatusDtoIDataResult: __ScanStatusDtoIDataResult;
|
|
3
|
+
export type ScanStatusDtoIDataResult = __ScanStatusDtoIDataResult;
|
|
4
|
+
export type scanStatusDtoIDataResult = __ScanStatusDtoIDataResult;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const ScanStatusDtoIDataResult = {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const ScanStatusDto = {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { UserScanStatsDtoIDataResult as __UserScanStatsDtoIDataResult } from "../index.js";
|
|
2
|
+
export declare const UserScanStatsDtoIDataResult: __UserScanStatsDtoIDataResult;
|
|
3
|
+
export type UserScanStatsDtoIDataResult = __UserScanStatsDtoIDataResult;
|
|
4
|
+
export type userScanStatsDtoIDataResult = __UserScanStatsDtoIDataResult;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const UserScanStatsDtoIDataResult = {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const UserScanStatsDto = {};
|
package/dist/rx.d.ts
CHANGED
|
@@ -36,6 +36,12 @@ export declare function createAllClients(cfg: ApiClientConfig, baseUrl?: string,
|
|
|
36
36
|
DevicesClient: ClientCtors.DevicesClient;
|
|
37
37
|
DevicesService: ClientCtors.DevicesClient;
|
|
38
38
|
devicesService: ClientCtors.DevicesClient;
|
|
39
|
+
FeedbacksClient: ClientCtors.FeedbacksClient;
|
|
40
|
+
FeedbacksService: ClientCtors.FeedbacksClient;
|
|
41
|
+
feedbacksService: ClientCtors.FeedbacksClient;
|
|
42
|
+
ApiClient: ClientCtors.ApiClient;
|
|
43
|
+
ApiService: ClientCtors.ApiClient;
|
|
44
|
+
apiService: ClientCtors.ApiClient;
|
|
39
45
|
InteractionTrackersClient: ClientCtors.InteractionTrackersClient;
|
|
40
46
|
InteractionTrackersService: ClientCtors.InteractionTrackersClient;
|
|
41
47
|
interactionTrackersService: ClientCtors.InteractionTrackersClient;
|
|
@@ -183,9 +189,6 @@ export declare function createAllClients(cfg: ApiClientConfig, baseUrl?: string,
|
|
|
183
189
|
ScanVisibilityTypesClient: ClientCtors.ScanVisibilityTypesClient;
|
|
184
190
|
ScanVisibilityTypesService: ClientCtors.ScanVisibilityTypesClient;
|
|
185
191
|
scanVisibilityTypesService: ClientCtors.ScanVisibilityTypesClient;
|
|
186
|
-
ApiClient: ClientCtors.ApiClient;
|
|
187
|
-
ApiService: ClientCtors.ApiClient;
|
|
188
|
-
apiService: ClientCtors.ApiClient;
|
|
189
192
|
InternalClient: ClientCtors.InternalClient;
|
|
190
193
|
InternalService: ClientCtors.InternalClient;
|
|
191
194
|
internalService: ClientCtors.InternalClient;
|
|
@@ -263,6 +266,12 @@ export declare function createAllRxClients(cfg: ApiClientConfig, baseUrl?: strin
|
|
|
263
266
|
DevicesClient: Rxified<ClientCtors.DevicesClient>;
|
|
264
267
|
DevicesService: Rxified<ClientCtors.DevicesClient>;
|
|
265
268
|
devicesService: Rxified<ClientCtors.DevicesClient>;
|
|
269
|
+
FeedbacksClient: Rxified<ClientCtors.FeedbacksClient>;
|
|
270
|
+
FeedbacksService: Rxified<ClientCtors.FeedbacksClient>;
|
|
271
|
+
feedbacksService: Rxified<ClientCtors.FeedbacksClient>;
|
|
272
|
+
ApiClient: Rxified<ClientCtors.ApiClient>;
|
|
273
|
+
ApiService: Rxified<ClientCtors.ApiClient>;
|
|
274
|
+
apiService: Rxified<ClientCtors.ApiClient>;
|
|
266
275
|
InteractionTrackersClient: Rxified<ClientCtors.InteractionTrackersClient>;
|
|
267
276
|
InteractionTrackersService: Rxified<ClientCtors.InteractionTrackersClient>;
|
|
268
277
|
interactionTrackersService: Rxified<ClientCtors.InteractionTrackersClient>;
|
|
@@ -410,9 +419,6 @@ export declare function createAllRxClients(cfg: ApiClientConfig, baseUrl?: strin
|
|
|
410
419
|
ScanVisibilityTypesClient: Rxified<ClientCtors.ScanVisibilityTypesClient>;
|
|
411
420
|
ScanVisibilityTypesService: Rxified<ClientCtors.ScanVisibilityTypesClient>;
|
|
412
421
|
scanVisibilityTypesService: Rxified<ClientCtors.ScanVisibilityTypesClient>;
|
|
413
|
-
ApiClient: Rxified<ClientCtors.ApiClient>;
|
|
414
|
-
ApiService: Rxified<ClientCtors.ApiClient>;
|
|
415
|
-
apiService: Rxified<ClientCtors.ApiClient>;
|
|
416
422
|
InternalClient: Rxified<ClientCtors.InternalClient>;
|
|
417
423
|
InternalService: Rxified<ClientCtors.InternalClient>;
|
|
418
424
|
internalService: Rxified<ClientCtors.InternalClient>;
|