@virusis/api-client 0.1.16 → 0.1.19
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 +12 -1
- package/dist/base.js +174 -1
- package/dist/container.d.ts +15 -3
- package/dist/generated/clients/diagnostics-service.d.ts +2 -0
- package/dist/generated/clients/diagnostics-service.js +2 -0
- 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 +5 -1
- package/dist/generated/clients/index.js +5 -1
- package/dist/generated/clients/portal-service.d.ts +2 -0
- package/dist/generated/clients/portal-service.js +2 -0
- package/dist/generated/clients/risk-service.d.ts +2 -0
- package/dist/generated/clients/risk-service.js +2 -0
- package/dist/generated/clients-rx/diagnostics-service-rx.d.ts +16 -0
- package/dist/generated/clients-rx/diagnostics-service-rx.js +12 -0
- 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 +5 -1
- package/dist/generated/clients-rx/index.js +5 -1
- package/dist/generated/clients-rx/portal-service-rx.d.ts +16 -0
- package/dist/generated/clients-rx/portal-service-rx.js +12 -0
- package/dist/generated/clients-rx/risk-service-rx.d.ts +16 -0
- package/dist/generated/clients-rx/risk-service-rx.js +12 -0
- package/dist/generated/index.d.ts +398 -67
- package/dist/generated/index.js +811 -138
- package/dist/generated/models/access-token-i-data-result.d.ts +4 -0
- package/dist/generated/models/access-token-i-data-result.js +1 -0
- package/dist/generated/models/access-token.d.ts +4 -0
- package/dist/generated/models/access-token.js +1 -0
- package/dist/generated/models/application-click-event-batch-dto.d.ts +4 -0
- package/dist/generated/models/application-click-event-batch-dto.js +1 -0
- package/dist/generated/models/application-click-event-create-dto.d.ts +4 -0
- package/dist/generated/models/application-click-event-create-dto.js +1 -0
- package/dist/generated/models/feedback-category-dto-list-i-data-result.d.ts +4 -0
- package/dist/generated/models/feedback-category-dto-list-i-data-result.js +1 -0
- package/dist/generated/models/feedback-category-dto.d.ts +4 -0
- package/dist/generated/models/feedback-category-dto.js +1 -0
- package/dist/generated/models/index.d.ts +17 -0
- package/dist/generated/models/index.js +17 -0
- package/dist/generated/models/otp-generate-result.d.ts +4 -0
- package/dist/generated/models/otp-generate-result.js +1 -0
- package/dist/generated/models/queue-monitor-workers-response.d.ts +4 -0
- package/dist/generated/models/queue-monitor-workers-response.js +1 -0
- package/dist/generated/models/risk-flag-request-dto.d.ts +4 -0
- package/dist/generated/models/risk-flag-request-dto.js +1 -0
- package/dist/generated/models/risk-signal-avg-dto.d.ts +4 -0
- package/dist/generated/models/risk-signal-avg-dto.js +1 -0
- package/dist/generated/models/risk-signal-client-dto.d.ts +4 -0
- package/dist/generated/models/risk-signal-client-dto.js +1 -0
- package/dist/generated/models/risk-signal-counts-dto.d.ts +4 -0
- package/dist/generated/models/risk-signal-counts-dto.js +1 -0
- package/dist/generated/models/risk-signals-dto.d.ts +4 -0
- package/dist/generated/models/risk-signals-dto.js +1 -0
- package/dist/generated/models/risk-state-dto.d.ts +4 -0
- package/dist/generated/models/risk-state-dto.js +1 -0
- package/dist/generated/models/risk-verify-dto.d.ts +4 -0
- package/dist/generated/models/risk-verify-dto.js +1 -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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/rx.d.ts +30 -6
- package/dist/security/index.d.ts +4 -0
- package/dist/security/index.js +2 -0
- package/dist/security/input-security-policy.d.ts +23 -0
- package/dist/security/input-security-policy.js +5 -0
- package/dist/security/input-security-service.d.ts +3 -0
- package/dist/security/input-security-service.js +153 -0
- package/dist/security/request-sanitizer.d.ts +18 -0
- package/dist/security/request-sanitizer.js +242 -0
- package/package.json +9 -4
|
@@ -251,32 +251,32 @@ export interface IAuthClient extends IEntity {
|
|
|
251
251
|
* @param body (optional)
|
|
252
252
|
* @return OK
|
|
253
253
|
*/
|
|
254
|
-
login(body?: UserForLoginDto | undefined, signal?: AbortSignal): Promise<
|
|
254
|
+
login(body?: UserForLoginDto | undefined, signal?: AbortSignal): Promise<AccessTokenIDataResult>;
|
|
255
255
|
/**
|
|
256
256
|
* @param body (optional)
|
|
257
257
|
* @return OK
|
|
258
258
|
*/
|
|
259
|
-
register(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<
|
|
259
|
+
register(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<AccessTokenIDataResult>;
|
|
260
260
|
/**
|
|
261
261
|
* @param emailVerifCode (optional)
|
|
262
262
|
* @return OK
|
|
263
263
|
*/
|
|
264
|
-
isEmailVerif(emailVerifCode?: string | undefined, signal?: AbortSignal): Promise<
|
|
264
|
+
isEmailVerif(emailVerifCode?: string | undefined, signal?: AbortSignal): Promise<BooleanIDataResult>;
|
|
265
265
|
/**
|
|
266
266
|
* @param body (optional)
|
|
267
267
|
* @return OK
|
|
268
268
|
*/
|
|
269
|
-
userExists(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<
|
|
269
|
+
userExists(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
270
270
|
/**
|
|
271
271
|
* @param body (optional)
|
|
272
272
|
* @return OK
|
|
273
273
|
*/
|
|
274
|
-
passwordChange(body?: UserForPasswordResetDto | undefined, signal?: AbortSignal): Promise<
|
|
274
|
+
passwordChange(body?: UserForPasswordResetDto | undefined, signal?: AbortSignal): Promise<AccessTokenIDataResult>;
|
|
275
275
|
/**
|
|
276
276
|
* @param email (optional)
|
|
277
277
|
* @return OK
|
|
278
278
|
*/
|
|
279
|
-
forgotPassword(email?: string | undefined, signal?: AbortSignal): Promise<
|
|
279
|
+
forgotPassword(email?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
280
280
|
/**
|
|
281
281
|
* @return OK
|
|
282
282
|
*/
|
|
@@ -293,38 +293,38 @@ export declare class AuthClient extends BaseApiClient implements IAuthClient {
|
|
|
293
293
|
* @param body (optional)
|
|
294
294
|
* @return OK
|
|
295
295
|
*/
|
|
296
|
-
login(body?: UserForLoginDto | undefined, signal?: AbortSignal): Promise<
|
|
297
|
-
protected processLogin(response: Response): Promise<
|
|
296
|
+
login(body?: UserForLoginDto | undefined, signal?: AbortSignal): Promise<AccessTokenIDataResult>;
|
|
297
|
+
protected processLogin(response: Response): Promise<AccessTokenIDataResult>;
|
|
298
298
|
/**
|
|
299
299
|
* @param body (optional)
|
|
300
300
|
* @return OK
|
|
301
301
|
*/
|
|
302
|
-
register(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<
|
|
303
|
-
protected processRegister(response: Response): Promise<
|
|
302
|
+
register(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<AccessTokenIDataResult>;
|
|
303
|
+
protected processRegister(response: Response): Promise<AccessTokenIDataResult>;
|
|
304
304
|
/**
|
|
305
305
|
* @param emailVerifCode (optional)
|
|
306
306
|
* @return OK
|
|
307
307
|
*/
|
|
308
|
-
isEmailVerif(emailVerifCode?: string | undefined, signal?: AbortSignal): Promise<
|
|
309
|
-
protected processIsEmailVerif(response: Response): Promise<
|
|
308
|
+
isEmailVerif(emailVerifCode?: string | undefined, signal?: AbortSignal): Promise<BooleanIDataResult>;
|
|
309
|
+
protected processIsEmailVerif(response: Response): Promise<BooleanIDataResult>;
|
|
310
310
|
/**
|
|
311
311
|
* @param body (optional)
|
|
312
312
|
* @return OK
|
|
313
313
|
*/
|
|
314
|
-
userExists(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<
|
|
315
|
-
protected processUserExists(response: Response): Promise<
|
|
314
|
+
userExists(body?: UserForRegisterDto | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
315
|
+
protected processUserExists(response: Response): Promise<IResult>;
|
|
316
316
|
/**
|
|
317
317
|
* @param body (optional)
|
|
318
318
|
* @return OK
|
|
319
319
|
*/
|
|
320
|
-
passwordChange(body?: UserForPasswordResetDto | undefined, signal?: AbortSignal): Promise<
|
|
321
|
-
protected processPasswordChange(response: Response): Promise<
|
|
320
|
+
passwordChange(body?: UserForPasswordResetDto | undefined, signal?: AbortSignal): Promise<AccessTokenIDataResult>;
|
|
321
|
+
protected processPasswordChange(response: Response): Promise<AccessTokenIDataResult>;
|
|
322
322
|
/**
|
|
323
323
|
* @param email (optional)
|
|
324
324
|
* @return OK
|
|
325
325
|
*/
|
|
326
|
-
forgotPassword(email?: string | undefined, signal?: AbortSignal): Promise<
|
|
327
|
-
protected processForgotPassword(response: Response): Promise<
|
|
326
|
+
forgotPassword(email?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
327
|
+
protected processForgotPassword(response: Response): Promise<IResult>;
|
|
328
328
|
/**
|
|
329
329
|
* @return OK
|
|
330
330
|
*/
|
|
@@ -684,6 +684,91 @@ 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 IDiagnosticsClient extends IEntity {
|
|
688
|
+
/**
|
|
689
|
+
* @return OK
|
|
690
|
+
*/
|
|
691
|
+
testAspectLog(signal?: AbortSignal): Promise<any>;
|
|
692
|
+
}
|
|
693
|
+
export declare class DiagnosticsClient extends BaseApiClient implements IDiagnosticsClient {
|
|
694
|
+
private http;
|
|
695
|
+
private baseUrl;
|
|
696
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
697
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
698
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
699
|
+
});
|
|
700
|
+
/**
|
|
701
|
+
* @return OK
|
|
702
|
+
*/
|
|
703
|
+
testAspectLog(signal?: AbortSignal): Promise<any>;
|
|
704
|
+
protected processTestAspectLog(response: Response): Promise<any>;
|
|
705
|
+
}
|
|
706
|
+
export interface IFeedbacksClient extends IEntity {
|
|
707
|
+
/**
|
|
708
|
+
* @param feedbackTypeId (optional)
|
|
709
|
+
* @return OK
|
|
710
|
+
*/
|
|
711
|
+
categories(feedbackTypeId?: number | undefined, signal?: AbortSignal): Promise<FeedbackCategoryDtoListIDataResult>;
|
|
712
|
+
}
|
|
713
|
+
export declare class FeedbacksClient extends BaseApiClient implements IFeedbacksClient {
|
|
714
|
+
private http;
|
|
715
|
+
private baseUrl;
|
|
716
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
717
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
718
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
719
|
+
});
|
|
720
|
+
/**
|
|
721
|
+
* @param feedbackTypeId (optional)
|
|
722
|
+
* @return OK
|
|
723
|
+
*/
|
|
724
|
+
categories(feedbackTypeId?: number | undefined, signal?: AbortSignal): Promise<FeedbackCategoryDtoListIDataResult>;
|
|
725
|
+
protected processCategories(response: Response): Promise<FeedbackCategoryDtoListIDataResult>;
|
|
726
|
+
}
|
|
727
|
+
export interface IApiClient extends IEntity {
|
|
728
|
+
/**
|
|
729
|
+
* @param dto (optional)
|
|
730
|
+
* @param screenshot (optional)
|
|
731
|
+
* @param networkSnapshot (optional)
|
|
732
|
+
* @return OK
|
|
733
|
+
*/
|
|
734
|
+
feedbacks(dto?: string | undefined, screenshot?: FileParameter | undefined, networkSnapshot?: FileParameter | undefined, signal?: AbortSignal): Promise<any>;
|
|
735
|
+
/**
|
|
736
|
+
* @param body (optional)
|
|
737
|
+
* @return OK
|
|
738
|
+
*/
|
|
739
|
+
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
740
|
+
/**
|
|
741
|
+
* @return OK
|
|
742
|
+
*/
|
|
743
|
+
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
744
|
+
}
|
|
745
|
+
export declare class ApiClient extends BaseApiClient implements IApiClient {
|
|
746
|
+
private http;
|
|
747
|
+
private baseUrl;
|
|
748
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
749
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
750
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
751
|
+
});
|
|
752
|
+
/**
|
|
753
|
+
* @param dto (optional)
|
|
754
|
+
* @param screenshot (optional)
|
|
755
|
+
* @param networkSnapshot (optional)
|
|
756
|
+
* @return OK
|
|
757
|
+
*/
|
|
758
|
+
feedbacks(dto?: string | undefined, screenshot?: FileParameter | undefined, networkSnapshot?: FileParameter | undefined, signal?: AbortSignal): Promise<any>;
|
|
759
|
+
protected processFeedbacks(response: Response): Promise<any>;
|
|
760
|
+
/**
|
|
761
|
+
* @param body (optional)
|
|
762
|
+
* @return OK
|
|
763
|
+
*/
|
|
764
|
+
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
765
|
+
protected processShareLinksPost(response: Response): Promise<any>;
|
|
766
|
+
/**
|
|
767
|
+
* @return OK
|
|
768
|
+
*/
|
|
769
|
+
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
770
|
+
protected processShareLinksGet(response: Response): Promise<any>;
|
|
771
|
+
}
|
|
687
772
|
export interface IInteractionTrackersClient extends IEntity {
|
|
688
773
|
/**
|
|
689
774
|
* @param body (optional)
|
|
@@ -1191,12 +1276,12 @@ export interface INotificationsClient extends IEntity {
|
|
|
1191
1276
|
* @param body (optional)
|
|
1192
1277
|
* @return OK
|
|
1193
1278
|
*/
|
|
1194
|
-
trialMarkAsRead(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<
|
|
1279
|
+
trialMarkAsRead(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
1195
1280
|
/**
|
|
1196
1281
|
* @param body (optional)
|
|
1197
1282
|
* @return OK
|
|
1198
1283
|
*/
|
|
1199
|
-
trialDelete(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<
|
|
1284
|
+
trialDelete(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
1200
1285
|
/**
|
|
1201
1286
|
* @param body (optional)
|
|
1202
1287
|
* @return OK
|
|
@@ -1254,14 +1339,14 @@ export declare class NotificationsClient extends BaseApiClient implements INotif
|
|
|
1254
1339
|
* @param body (optional)
|
|
1255
1340
|
* @return OK
|
|
1256
1341
|
*/
|
|
1257
|
-
trialMarkAsRead(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<
|
|
1258
|
-
protected processTrialMarkAsRead(response: Response): Promise<
|
|
1342
|
+
trialMarkAsRead(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
1343
|
+
protected processTrialMarkAsRead(response: Response): Promise<IResult>;
|
|
1259
1344
|
/**
|
|
1260
1345
|
* @param body (optional)
|
|
1261
1346
|
* @return OK
|
|
1262
1347
|
*/
|
|
1263
|
-
trialDelete(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<
|
|
1264
|
-
protected processTrialDelete(response: Response): Promise<
|
|
1348
|
+
trialDelete(body?: TrialNotificationMutationRequest | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
1349
|
+
protected processTrialDelete(response: Response): Promise<IResult>;
|
|
1265
1350
|
/**
|
|
1266
1351
|
* @param body (optional)
|
|
1267
1352
|
* @return OK
|
|
@@ -1426,6 +1511,51 @@ export declare class OperationClaimsClient extends BaseApiClient implements IOpe
|
|
|
1426
1511
|
getFiltersBase(body?: OperationClaimForTableFilterDataTableQuery | undefined, signal?: AbortSignal): Promise<OperationClaimForTableDtoListResultFilterIDataResult>;
|
|
1427
1512
|
protected processGetFiltersBase(response: Response): Promise<OperationClaimForTableDtoListResultFilterIDataResult>;
|
|
1428
1513
|
}
|
|
1514
|
+
export interface IPortalClient extends IEntity {
|
|
1515
|
+
/**
|
|
1516
|
+
* @param category (optional)
|
|
1517
|
+
* @param featuredOnly (optional)
|
|
1518
|
+
* @param search (optional)
|
|
1519
|
+
* @return OK
|
|
1520
|
+
*/
|
|
1521
|
+
catalog(category?: string | undefined, featuredOnly?: boolean | undefined, search?: string | undefined, signal?: AbortSignal): Promise<any>;
|
|
1522
|
+
/**
|
|
1523
|
+
* @return OK
|
|
1524
|
+
*/
|
|
1525
|
+
application(appKey: string, signal?: AbortSignal): Promise<any>;
|
|
1526
|
+
/**
|
|
1527
|
+
* @param body (optional)
|
|
1528
|
+
* @return OK
|
|
1529
|
+
*/
|
|
1530
|
+
track(body?: ApplicationClickEventBatchDto | undefined, signal?: AbortSignal): Promise<any>;
|
|
1531
|
+
}
|
|
1532
|
+
export declare class PortalClient extends BaseApiClient implements IPortalClient {
|
|
1533
|
+
private http;
|
|
1534
|
+
private baseUrl;
|
|
1535
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1536
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
1537
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1538
|
+
});
|
|
1539
|
+
/**
|
|
1540
|
+
* @param category (optional)
|
|
1541
|
+
* @param featuredOnly (optional)
|
|
1542
|
+
* @param search (optional)
|
|
1543
|
+
* @return OK
|
|
1544
|
+
*/
|
|
1545
|
+
catalog(category?: string | undefined, featuredOnly?: boolean | undefined, search?: string | undefined, signal?: AbortSignal): Promise<any>;
|
|
1546
|
+
protected processCatalog(response: Response): Promise<any>;
|
|
1547
|
+
/**
|
|
1548
|
+
* @return OK
|
|
1549
|
+
*/
|
|
1550
|
+
application(appKey: string, signal?: AbortSignal): Promise<any>;
|
|
1551
|
+
protected processApplication(response: Response): Promise<any>;
|
|
1552
|
+
/**
|
|
1553
|
+
* @param body (optional)
|
|
1554
|
+
* @return OK
|
|
1555
|
+
*/
|
|
1556
|
+
track(body?: ApplicationClickEventBatchDto | undefined, signal?: AbortSignal): Promise<any>;
|
|
1557
|
+
protected processTrack(response: Response): Promise<any>;
|
|
1558
|
+
}
|
|
1429
1559
|
export interface IQueueMonitorClient extends IEntity {
|
|
1430
1560
|
/**
|
|
1431
1561
|
* @return OK
|
|
@@ -1434,7 +1564,7 @@ export interface IQueueMonitorClient extends IEntity {
|
|
|
1434
1564
|
/**
|
|
1435
1565
|
* @return OK
|
|
1436
1566
|
*/
|
|
1437
|
-
workers(signal?: AbortSignal): Promise<
|
|
1567
|
+
workers(signal?: AbortSignal): Promise<QueueMonitorWorkersResponse>;
|
|
1438
1568
|
/**
|
|
1439
1569
|
* @return OK
|
|
1440
1570
|
*/
|
|
@@ -1455,8 +1585,8 @@ export declare class QueueMonitorClient extends BaseApiClient implements IQueueM
|
|
|
1455
1585
|
/**
|
|
1456
1586
|
* @return OK
|
|
1457
1587
|
*/
|
|
1458
|
-
workers(signal?: AbortSignal): Promise<
|
|
1459
|
-
protected processWorkers(response: Response): Promise<
|
|
1588
|
+
workers(signal?: AbortSignal): Promise<QueueMonitorWorkersResponse>;
|
|
1589
|
+
protected processWorkers(response: Response): Promise<QueueMonitorWorkersResponse>;
|
|
1460
1590
|
/**
|
|
1461
1591
|
* @return OK
|
|
1462
1592
|
*/
|
|
@@ -1501,6 +1631,64 @@ export declare class HealthClient extends BaseApiClient implements IHealthClient
|
|
|
1501
1631
|
live(signal?: AbortSignal): Promise<any>;
|
|
1502
1632
|
protected processLive(response: Response): Promise<any>;
|
|
1503
1633
|
}
|
|
1634
|
+
export interface IRiskClient extends IEntity {
|
|
1635
|
+
/**
|
|
1636
|
+
* @param body (optional)
|
|
1637
|
+
* @return OK
|
|
1638
|
+
*/
|
|
1639
|
+
flag(body?: RiskFlagRequestDto | undefined, signal?: AbortSignal): Promise<RiskStateDto>;
|
|
1640
|
+
/**
|
|
1641
|
+
* @param body (optional)
|
|
1642
|
+
* @return OK
|
|
1643
|
+
*/
|
|
1644
|
+
verify(body?: RiskVerifyDto | undefined, signal?: AbortSignal): Promise<RiskStateDto>;
|
|
1645
|
+
/**
|
|
1646
|
+
* @return OK
|
|
1647
|
+
*/
|
|
1648
|
+
otp(signal?: AbortSignal): Promise<OtpGenerateResult>;
|
|
1649
|
+
/**
|
|
1650
|
+
* @param email (optional)
|
|
1651
|
+
* @param subject (optional)
|
|
1652
|
+
* @param message (optional)
|
|
1653
|
+
* @param files (optional)
|
|
1654
|
+
* @return OK
|
|
1655
|
+
*/
|
|
1656
|
+
appeal(email?: string | undefined, subject?: string | undefined, message?: string | undefined, files?: FileParameter[] | undefined, signal?: AbortSignal): Promise<any>;
|
|
1657
|
+
}
|
|
1658
|
+
export declare class RiskClient extends BaseApiClient implements IRiskClient {
|
|
1659
|
+
private http;
|
|
1660
|
+
private baseUrl;
|
|
1661
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1662
|
+
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
1663
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1664
|
+
});
|
|
1665
|
+
/**
|
|
1666
|
+
* @param body (optional)
|
|
1667
|
+
* @return OK
|
|
1668
|
+
*/
|
|
1669
|
+
flag(body?: RiskFlagRequestDto | undefined, signal?: AbortSignal): Promise<RiskStateDto>;
|
|
1670
|
+
protected processFlag(response: Response): Promise<RiskStateDto>;
|
|
1671
|
+
/**
|
|
1672
|
+
* @param body (optional)
|
|
1673
|
+
* @return OK
|
|
1674
|
+
*/
|
|
1675
|
+
verify(body?: RiskVerifyDto | undefined, signal?: AbortSignal): Promise<RiskStateDto>;
|
|
1676
|
+
protected processVerify(response: Response): Promise<RiskStateDto>;
|
|
1677
|
+
/**
|
|
1678
|
+
* @return OK
|
|
1679
|
+
*/
|
|
1680
|
+
otp(signal?: AbortSignal): Promise<OtpGenerateResult>;
|
|
1681
|
+
protected processOtp(response: Response): Promise<OtpGenerateResult>;
|
|
1682
|
+
/**
|
|
1683
|
+
* @param email (optional)
|
|
1684
|
+
* @param subject (optional)
|
|
1685
|
+
* @param message (optional)
|
|
1686
|
+
* @param files (optional)
|
|
1687
|
+
* @return OK
|
|
1688
|
+
*/
|
|
1689
|
+
appeal(email?: string | undefined, subject?: string | undefined, message?: string | undefined, files?: FileParameter[] | undefined, signal?: AbortSignal): Promise<any>;
|
|
1690
|
+
protected processAppeal(response: Response): Promise<any>;
|
|
1691
|
+
}
|
|
1504
1692
|
export interface IScanApiBusSourcesClient extends IEntity {
|
|
1505
1693
|
/**
|
|
1506
1694
|
* @return OK
|
|
@@ -3494,9 +3682,10 @@ export interface IScanDatasClient extends IEntity {
|
|
|
3494
3682
|
getScanDataForAlgorithmAnalysisDtoByGuid(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3495
3683
|
/**
|
|
3496
3684
|
* @param scanGuid (optional)
|
|
3685
|
+
* @param x_Internal_Api_Key (optional)
|
|
3497
3686
|
* @return OK
|
|
3498
3687
|
*/
|
|
3499
|
-
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3688
|
+
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid?: string | undefined, x_Internal_Api_Key?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3500
3689
|
/**
|
|
3501
3690
|
* @param scanGuid (optional)
|
|
3502
3691
|
* @return OK
|
|
@@ -3606,9 +3795,10 @@ export declare class ScanDatasClient extends BaseApiClient implements IScanDatas
|
|
|
3606
3795
|
protected processGetScanDataForAlgorithmAnalysisDtoByGuid(response: Response): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3607
3796
|
/**
|
|
3608
3797
|
* @param scanGuid (optional)
|
|
3798
|
+
* @param x_Internal_Api_Key (optional)
|
|
3609
3799
|
* @return OK
|
|
3610
3800
|
*/
|
|
3611
|
-
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3801
|
+
getScanDataForAlgorithmAnalysisDtoByGuidInternal(scanGuid?: string | undefined, x_Internal_Api_Key?: string | undefined, signal?: AbortSignal): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3612
3802
|
protected processGetScanDataForAlgorithmAnalysisDtoByGuidInternal(response: Response): Promise<ScanDataForAlgorithmAnalysisDtoIDataResult>;
|
|
3613
3803
|
/**
|
|
3614
3804
|
* @param scanGuid (optional)
|
|
@@ -3823,9 +4013,10 @@ export interface IScanEngineImagesClient extends IEntity {
|
|
|
3823
4013
|
*/
|
|
3824
4014
|
saveImageBySearch(imageName?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3825
4015
|
/**
|
|
4016
|
+
* @param force (optional)
|
|
3826
4017
|
* @return OK
|
|
3827
4018
|
*/
|
|
3828
|
-
saveImagesBySearch(signal?: AbortSignal): Promise<IResult>;
|
|
4019
|
+
saveImagesBySearch(force?: boolean | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3829
4020
|
/**
|
|
3830
4021
|
* @param id (optional)
|
|
3831
4022
|
* @param scanEngineId (optional)
|
|
@@ -3912,9 +4103,10 @@ export declare class ScanEngineImagesClient extends BaseApiClient implements ISc
|
|
|
3912
4103
|
saveImageBySearch(imageName?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3913
4104
|
protected processSaveImageBySearch(response: Response): Promise<IResult>;
|
|
3914
4105
|
/**
|
|
4106
|
+
* @param force (optional)
|
|
3915
4107
|
* @return OK
|
|
3916
4108
|
*/
|
|
3917
|
-
saveImagesBySearch(signal?: AbortSignal): Promise<IResult>;
|
|
4109
|
+
saveImagesBySearch(force?: boolean | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
3918
4110
|
protected processSaveImagesBySearch(response: Response): Promise<IResult>;
|
|
3919
4111
|
/**
|
|
3920
4112
|
* @param id (optional)
|
|
@@ -4258,18 +4450,21 @@ export declare class Scan_ingestionClient extends BaseApiClient implements IScan
|
|
|
4258
4450
|
}
|
|
4259
4451
|
export interface IScanClient extends IEntity {
|
|
4260
4452
|
/**
|
|
4453
|
+
* @param x_session_token (optional)
|
|
4261
4454
|
* @return OK
|
|
4262
4455
|
*/
|
|
4263
|
-
proxyGet(serviceName: string, path: string, signal?: AbortSignal): Promise<any>;
|
|
4456
|
+
proxyGet(serviceName: string, path: string, x_session_token?: string | undefined, signal?: AbortSignal): Promise<any>;
|
|
4264
4457
|
/**
|
|
4458
|
+
* @param x_session_token (optional)
|
|
4265
4459
|
* @return OK
|
|
4266
4460
|
*/
|
|
4267
|
-
proxyPost(serviceName: string, path: string, signal?: AbortSignal): Promise<any>;
|
|
4461
|
+
proxyPost(serviceName: string, path: string, x_session_token?: string | undefined, signal?: AbortSignal): Promise<any>;
|
|
4268
4462
|
/**
|
|
4463
|
+
* @param x_session_token (optional)
|
|
4269
4464
|
* @param body (optional)
|
|
4270
4465
|
* @return OK
|
|
4271
4466
|
*/
|
|
4272
|
-
execute(taskName: string, body?: ScanProxyRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
4467
|
+
execute(taskName: string, x_session_token?: string | undefined, body?: ScanProxyRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
4273
4468
|
/**
|
|
4274
4469
|
* @return OK
|
|
4275
4470
|
*/
|
|
@@ -4283,20 +4478,23 @@ export declare class ScanClient extends BaseApiClient implements IScanClient {
|
|
|
4283
4478
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
4284
4479
|
});
|
|
4285
4480
|
/**
|
|
4481
|
+
* @param x_session_token (optional)
|
|
4286
4482
|
* @return OK
|
|
4287
4483
|
*/
|
|
4288
|
-
proxyGet(serviceName: string, path: string, signal?: AbortSignal): Promise<any>;
|
|
4484
|
+
proxyGet(serviceName: string, path: string, x_session_token?: string | undefined, signal?: AbortSignal): Promise<any>;
|
|
4289
4485
|
protected processProxyGet(response: Response): Promise<any>;
|
|
4290
4486
|
/**
|
|
4487
|
+
* @param x_session_token (optional)
|
|
4291
4488
|
* @return OK
|
|
4292
4489
|
*/
|
|
4293
|
-
proxyPost(serviceName: string, path: string, signal?: AbortSignal): Promise<any>;
|
|
4490
|
+
proxyPost(serviceName: string, path: string, x_session_token?: string | undefined, signal?: AbortSignal): Promise<any>;
|
|
4294
4491
|
protected processProxyPost(response: Response): Promise<any>;
|
|
4295
4492
|
/**
|
|
4493
|
+
* @param x_session_token (optional)
|
|
4296
4494
|
* @param body (optional)
|
|
4297
4495
|
* @return OK
|
|
4298
4496
|
*/
|
|
4299
|
-
execute(taskName: string, body?: ScanProxyRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
4497
|
+
execute(taskName: string, x_session_token?: string | undefined, body?: ScanProxyRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
4300
4498
|
protected processExecute(response: Response): Promise<any>;
|
|
4301
4499
|
/**
|
|
4302
4500
|
* @return OK
|
|
@@ -4355,6 +4553,10 @@ export interface IScansClient extends IEntity {
|
|
|
4355
4553
|
* @return OK
|
|
4356
4554
|
*/
|
|
4357
4555
|
completeScan(guid?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
4556
|
+
/**
|
|
4557
|
+
* @return OK
|
|
4558
|
+
*/
|
|
4559
|
+
status(guid: string, signal?: AbortSignal): Promise<ScanStatusDtoIDataResult>;
|
|
4358
4560
|
/**
|
|
4359
4561
|
* @param body (optional)
|
|
4360
4562
|
* @return OK
|
|
@@ -4468,6 +4670,11 @@ export declare class ScansClient extends BaseApiClient implements IScansClient {
|
|
|
4468
4670
|
*/
|
|
4469
4671
|
completeScan(guid?: string | undefined, signal?: AbortSignal): Promise<IResult>;
|
|
4470
4672
|
protected processCompleteScan(response: Response): Promise<IResult>;
|
|
4673
|
+
/**
|
|
4674
|
+
* @return OK
|
|
4675
|
+
*/
|
|
4676
|
+
status(guid: string, signal?: AbortSignal): Promise<ScanStatusDtoIDataResult>;
|
|
4677
|
+
protected processStatus(response: Response): Promise<ScanStatusDtoIDataResult>;
|
|
4471
4678
|
/**
|
|
4472
4679
|
* @param body (optional)
|
|
4473
4680
|
* @return OK
|
|
@@ -6294,36 +6501,6 @@ export declare class ScanVisibilityTypesClient extends BaseApiClient implements
|
|
|
6294
6501
|
getFiltersBase(body?: ScanVisibilityTypeForTableFilterDataTableQuery | undefined, signal?: AbortSignal): Promise<ScanVisibilityTypeForTableDtoListResultFilterIDataResult>;
|
|
6295
6502
|
protected processGetFiltersBase(response: Response): Promise<ScanVisibilityTypeForTableDtoListResultFilterIDataResult>;
|
|
6296
6503
|
}
|
|
6297
|
-
export interface IApiClient extends IEntity {
|
|
6298
|
-
/**
|
|
6299
|
-
* @param body (optional)
|
|
6300
|
-
* @return OK
|
|
6301
|
-
*/
|
|
6302
|
-
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
6303
|
-
/**
|
|
6304
|
-
* @return OK
|
|
6305
|
-
*/
|
|
6306
|
-
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
6307
|
-
}
|
|
6308
|
-
export declare class ApiClient extends BaseApiClient implements IApiClient {
|
|
6309
|
-
private http;
|
|
6310
|
-
private baseUrl;
|
|
6311
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
6312
|
-
constructor(configuration: ApiClientConfig, baseUrl?: string, http?: {
|
|
6313
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
6314
|
-
});
|
|
6315
|
-
/**
|
|
6316
|
-
* @param body (optional)
|
|
6317
|
-
* @return OK
|
|
6318
|
-
*/
|
|
6319
|
-
shareLinksPost(body?: CreateShareLinkRequest | undefined, signal?: AbortSignal): Promise<any>;
|
|
6320
|
-
protected processShareLinksPost(response: Response): Promise<any>;
|
|
6321
|
-
/**
|
|
6322
|
-
* @return OK
|
|
6323
|
-
*/
|
|
6324
|
-
shareLinksGet(code: string, signal?: AbortSignal): Promise<any>;
|
|
6325
|
-
protected processShareLinksGet(response: Response): Promise<any>;
|
|
6326
|
-
}
|
|
6327
6504
|
export interface IInternalClient extends IEntity {
|
|
6328
6505
|
/**
|
|
6329
6506
|
* @return OK
|
|
@@ -6930,6 +7107,10 @@ export interface ITrialAuthClient extends IEntity {
|
|
|
6930
7107
|
* @return OK
|
|
6931
7108
|
*/
|
|
6932
7109
|
me(signal?: AbortSignal): Promise<any>;
|
|
7110
|
+
/**
|
|
7111
|
+
* @return OK
|
|
7112
|
+
*/
|
|
7113
|
+
shareToken(signal?: AbortSignal): Promise<any>;
|
|
6933
7114
|
/**
|
|
6934
7115
|
* @return OK
|
|
6935
7116
|
*/
|
|
@@ -6961,6 +7142,11 @@ export declare class TrialAuthClient extends BaseApiClient implements ITrialAuth
|
|
|
6961
7142
|
*/
|
|
6962
7143
|
me(signal?: AbortSignal): Promise<any>;
|
|
6963
7144
|
protected processMe(response: Response): Promise<any>;
|
|
7145
|
+
/**
|
|
7146
|
+
* @return OK
|
|
7147
|
+
*/
|
|
7148
|
+
shareToken(signal?: AbortSignal): Promise<any>;
|
|
7149
|
+
protected processShareToken(response: Response): Promise<any>;
|
|
6964
7150
|
/**
|
|
6965
7151
|
* @return OK
|
|
6966
7152
|
*/
|
|
@@ -7111,6 +7297,10 @@ export interface ITrialUsersClient extends IEntity {
|
|
|
7111
7297
|
* @return OK
|
|
7112
7298
|
*/
|
|
7113
7299
|
getByMail(mail?: string | undefined, signal?: AbortSignal): Promise<TrialUserIDataResult>;
|
|
7300
|
+
/**
|
|
7301
|
+
* @return OK
|
|
7302
|
+
*/
|
|
7303
|
+
markFirstFeedbackShown(signal?: AbortSignal): Promise<IResult>;
|
|
7114
7304
|
/**
|
|
7115
7305
|
* @param body (optional)
|
|
7116
7306
|
* @return OK
|
|
@@ -7170,6 +7360,11 @@ export declare class TrialUsersClient extends BaseApiClient implements ITrialUse
|
|
|
7170
7360
|
*/
|
|
7171
7361
|
getByMail(mail?: string | undefined, signal?: AbortSignal): Promise<TrialUserIDataResult>;
|
|
7172
7362
|
protected processGetByMail(response: Response): Promise<TrialUserIDataResult>;
|
|
7363
|
+
/**
|
|
7364
|
+
* @return OK
|
|
7365
|
+
*/
|
|
7366
|
+
markFirstFeedbackShown(signal?: AbortSignal): Promise<IResult>;
|
|
7367
|
+
protected processMarkFirstFeedbackShown(response: Response): Promise<IResult>;
|
|
7173
7368
|
/**
|
|
7174
7369
|
* @param body (optional)
|
|
7175
7370
|
* @return OK
|
|
@@ -7711,6 +7906,15 @@ export declare class UserViewsClient extends BaseApiClient implements IUserViews
|
|
|
7711
7906
|
hasUserVisitedBefore(signal?: AbortSignal): Promise<BooleanIDataResult>;
|
|
7712
7907
|
protected processHasUserVisitedBefore(response: Response): Promise<BooleanIDataResult>;
|
|
7713
7908
|
}
|
|
7909
|
+
export interface AccessToken extends IEntity {
|
|
7910
|
+
token?: string | undefined;
|
|
7911
|
+
expiration?: Date;
|
|
7912
|
+
}
|
|
7913
|
+
export interface AccessTokenIDataResult extends IEntity {
|
|
7914
|
+
readonly success?: boolean;
|
|
7915
|
+
readonly message?: string | undefined;
|
|
7916
|
+
data?: AccessToken;
|
|
7917
|
+
}
|
|
7714
7918
|
export interface AggregateException extends IEntity {
|
|
7715
7919
|
targetSite?: MethodBase;
|
|
7716
7920
|
readonly data?: {
|
|
@@ -7837,6 +8041,35 @@ export interface Application extends IEntity {
|
|
|
7837
8041
|
isActive?: boolean;
|
|
7838
8042
|
updateTime?: Date;
|
|
7839
8043
|
status?: boolean | undefined;
|
|
8044
|
+
displayName?: string | undefined;
|
|
8045
|
+
shortDescription?: string | undefined;
|
|
8046
|
+
longDescription?: string | undefined;
|
|
8047
|
+
iconUrl?: string | undefined;
|
|
8048
|
+
coverImageUrl?: string | undefined;
|
|
8049
|
+
category?: string | undefined;
|
|
8050
|
+
tags?: string | undefined;
|
|
8051
|
+
currentVersion?: string | undefined;
|
|
8052
|
+
documentationUrl?: string | undefined;
|
|
8053
|
+
downloadUrl?: string | undefined;
|
|
8054
|
+
repositoryUrl?: string | undefined;
|
|
8055
|
+
changelogUrl?: string | undefined;
|
|
8056
|
+
supportEmail?: string | undefined;
|
|
8057
|
+
displayOrder?: number;
|
|
8058
|
+
isFeatured?: boolean;
|
|
8059
|
+
isPublic?: boolean;
|
|
8060
|
+
requiredScopes?: string | undefined;
|
|
8061
|
+
minPlatformVersion?: string | undefined;
|
|
8062
|
+
createTime?: Date;
|
|
8063
|
+
}
|
|
8064
|
+
export interface ApplicationClickEventBatchDto extends IDto {
|
|
8065
|
+
events?: ApplicationClickEventCreateDto[] | undefined;
|
|
8066
|
+
}
|
|
8067
|
+
export interface ApplicationClickEventCreateDto extends IDto {
|
|
8068
|
+
clientEventId?: string;
|
|
8069
|
+
appKey?: string | undefined;
|
|
8070
|
+
eventType?: string | undefined;
|
|
8071
|
+
occurredAt?: Date;
|
|
8072
|
+
wasOffline?: boolean;
|
|
7840
8073
|
}
|
|
7841
8074
|
export interface ApplicationForTableDto extends IDto {
|
|
7842
8075
|
id?: number;
|
|
@@ -8189,6 +8422,20 @@ export interface Exception extends IEntity {
|
|
|
8189
8422
|
hResult?: number;
|
|
8190
8423
|
readonly stackTrace?: string | undefined;
|
|
8191
8424
|
}
|
|
8425
|
+
export interface FeedbackCategoryDto extends IDto {
|
|
8426
|
+
id?: number;
|
|
8427
|
+
feedbackTypeId?: number;
|
|
8428
|
+
code?: string | undefined;
|
|
8429
|
+
name?: string | undefined;
|
|
8430
|
+
nameEn?: string | undefined;
|
|
8431
|
+
description?: string | undefined;
|
|
8432
|
+
sortOrder?: number;
|
|
8433
|
+
}
|
|
8434
|
+
export interface FeedbackCategoryDtoListIDataResult extends IEntity {
|
|
8435
|
+
readonly success?: boolean;
|
|
8436
|
+
readonly message?: string | undefined;
|
|
8437
|
+
readonly data?: FeedbackCategoryDto[] | undefined;
|
|
8438
|
+
}
|
|
8192
8439
|
export declare enum FieldAttributes {
|
|
8193
8440
|
_0 = 0,
|
|
8194
8441
|
_1 = 1,
|
|
@@ -8285,6 +8532,16 @@ export interface InteractionTracker extends IEntity {
|
|
|
8285
8532
|
threatTime?: Date;
|
|
8286
8533
|
updateTime?: Date | undefined;
|
|
8287
8534
|
status?: boolean | undefined;
|
|
8535
|
+
riskLevel?: string | undefined;
|
|
8536
|
+
windowMs?: number | undefined;
|
|
8537
|
+
mouseMoves?: number | undefined;
|
|
8538
|
+
scrollSteps?: number | undefined;
|
|
8539
|
+
keyPresses?: number | undefined;
|
|
8540
|
+
clientUa?: string | undefined;
|
|
8541
|
+
clientLang?: string | undefined;
|
|
8542
|
+
clientTz?: string | undefined;
|
|
8543
|
+
ipAddress?: string | undefined;
|
|
8544
|
+
sessionKey?: string | undefined;
|
|
8288
8545
|
}
|
|
8289
8546
|
export interface InteractionTrackerForTableDto extends IDto {
|
|
8290
8547
|
id?: number;
|
|
@@ -8853,6 +9110,11 @@ export interface OperationClaimListIDataResult extends IEntity {
|
|
|
8853
9110
|
readonly message?: string | undefined;
|
|
8854
9111
|
readonly data?: OperationClaim[] | undefined;
|
|
8855
9112
|
}
|
|
9113
|
+
export interface OtpGenerateResult extends IEntity {
|
|
9114
|
+
sessionKey?: string | undefined;
|
|
9115
|
+
expiresInSeconds?: number;
|
|
9116
|
+
otp?: string | undefined;
|
|
9117
|
+
}
|
|
8856
9118
|
export declare enum ParameterAttributes {
|
|
8857
9119
|
_0 = 0,
|
|
8858
9120
|
_1 = 1,
|
|
@@ -8883,6 +9145,14 @@ export interface ParameterInfo extends IEntity {
|
|
|
8883
9145
|
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
8884
9146
|
readonly metadataToken?: number;
|
|
8885
9147
|
}
|
|
9148
|
+
export interface ProblemDetails extends IEntity {
|
|
9149
|
+
type?: string | undefined;
|
|
9150
|
+
title?: string | undefined;
|
|
9151
|
+
status?: number | undefined;
|
|
9152
|
+
detail?: string | undefined;
|
|
9153
|
+
instance?: string | undefined;
|
|
9154
|
+
[key: string]: any;
|
|
9155
|
+
}
|
|
8886
9156
|
export interface ProcessScanScoresRequest extends IEntity {
|
|
8887
9157
|
guid?: string;
|
|
8888
9158
|
}
|
|
@@ -8916,6 +9186,54 @@ export interface PropertyInfo extends IEntity {
|
|
|
8916
9186
|
getMethod?: MethodInfo;
|
|
8917
9187
|
setMethod?: MethodInfo;
|
|
8918
9188
|
}
|
|
9189
|
+
export interface QueueMonitorWorkersResponse extends IEntity {
|
|
9190
|
+
onlineWorkers?: number;
|
|
9191
|
+
lastWorkerRegisteredAt?: Date | undefined;
|
|
9192
|
+
workerConnectionIds?: string[] | undefined;
|
|
9193
|
+
instanceId?: string | undefined;
|
|
9194
|
+
machineName?: string | undefined;
|
|
9195
|
+
processStartTime?: Date;
|
|
9196
|
+
environmentName?: string | undefined;
|
|
9197
|
+
}
|
|
9198
|
+
export interface RiskFlagRequestDto extends IDto {
|
|
9199
|
+
signals?: RiskSignalsDto;
|
|
9200
|
+
}
|
|
9201
|
+
export interface RiskSignalAvgDto extends IDto {
|
|
9202
|
+
mouseTimeMs?: number;
|
|
9203
|
+
keyIntervalMs?: number;
|
|
9204
|
+
}
|
|
9205
|
+
export interface RiskSignalClientDto extends IDto {
|
|
9206
|
+
ua?: string | undefined;
|
|
9207
|
+
lang?: string | undefined;
|
|
9208
|
+
tz?: string | undefined;
|
|
9209
|
+
}
|
|
9210
|
+
export interface RiskSignalCountsDto extends IDto {
|
|
9211
|
+
mouseMoves?: number;
|
|
9212
|
+
scrollSteps?: number;
|
|
9213
|
+
keyPresses?: number;
|
|
9214
|
+
}
|
|
9215
|
+
export interface RiskSignalsDto extends IDto {
|
|
9216
|
+
windowMs?: number;
|
|
9217
|
+
score?: number;
|
|
9218
|
+
counts?: RiskSignalCountsDto;
|
|
9219
|
+
avg?: RiskSignalAvgDto;
|
|
9220
|
+
client?: RiskSignalClientDto;
|
|
9221
|
+
ts?: number;
|
|
9222
|
+
}
|
|
9223
|
+
export interface RiskStateDto extends IDto {
|
|
9224
|
+
level?: string | undefined;
|
|
9225
|
+
action?: string | undefined;
|
|
9226
|
+
throttleMs?: number;
|
|
9227
|
+
features?: {
|
|
9228
|
+
[key: string]: boolean;
|
|
9229
|
+
} | undefined;
|
|
9230
|
+
updatedAt?: number;
|
|
9231
|
+
}
|
|
9232
|
+
export interface RiskVerifyDto extends IDto {
|
|
9233
|
+
otp?: string | undefined;
|
|
9234
|
+
captchaToken?: string | undefined;
|
|
9235
|
+
verifyType?: string | undefined;
|
|
9236
|
+
}
|
|
8919
9237
|
export interface RuntimeFieldHandle extends IEntity {
|
|
8920
9238
|
value?: IntPtr;
|
|
8921
9239
|
}
|
|
@@ -11245,6 +11563,18 @@ export interface ScanStaticSectionListIDataResult extends IEntity {
|
|
|
11245
11563
|
readonly message?: string | undefined;
|
|
11246
11564
|
readonly data?: ScanStaticSection[] | undefined;
|
|
11247
11565
|
}
|
|
11566
|
+
export interface ScanStatusDto extends IDto {
|
|
11567
|
+
id?: number;
|
|
11568
|
+
guid?: string | undefined;
|
|
11569
|
+
processingState?: string | undefined;
|
|
11570
|
+
isTerminal?: boolean;
|
|
11571
|
+
updateTime?: Date | undefined;
|
|
11572
|
+
}
|
|
11573
|
+
export interface ScanStatusDtoIDataResult extends IEntity {
|
|
11574
|
+
readonly success?: boolean;
|
|
11575
|
+
readonly message?: string | undefined;
|
|
11576
|
+
data?: ScanStatusDto;
|
|
11577
|
+
}
|
|
11248
11578
|
export interface ScanSummaryDto extends IDto {
|
|
11249
11579
|
scanGuid?: string | undefined;
|
|
11250
11580
|
submissionName?: string | undefined;
|
|
@@ -12015,6 +12345,7 @@ export interface TrialUser extends IEntity {
|
|
|
12015
12345
|
id?: number;
|
|
12016
12346
|
baseUserId?: number;
|
|
12017
12347
|
viewKey?: string;
|
|
12348
|
+
firstScanFeedbackShownAt?: Date | undefined;
|
|
12018
12349
|
updateTime?: Date | undefined;
|
|
12019
12350
|
status?: boolean | undefined;
|
|
12020
12351
|
}
|