@harnessio/react-sei-panorama-service-client 0.25.11 → 0.25.13
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/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetAdoptionBreakdownQuery.d.ts +51 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetAdoptionBreakdownQuery.js +43 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetAdoptionMetricsQuery.d.ts +52 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetAdoptionMetricsQuery.js +44 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetAdoptionSummaryQuery.d.ts +51 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetAdoptionSummaryQuery.js +43 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetFeatureMetricsQuery.d.ts +27 -8
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetFeatureMetricsQuery.js +22 -2
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetRawMetricsQuery.d.ts +103 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetRawMetricsQuery.js +95 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTeamBreakdownQuery.d.ts +50 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTeamBreakdownQuery.js +42 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetToolUsersSummaryQuery.d.ts +44 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetToolUsersSummaryQuery.js +36 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTopLanguagesQuery.d.ts +30 -6
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTopLanguagesQuery.js +26 -2
- package/dist/sei-panorama-service/src/services/hooks/useHealthControllerCheckDbHealthQuery.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/hooks/useHealthControllerCheckDbHealthQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery.d.ts +33 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesQuery.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetMttrBreakdownQuery.d.ts +33 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetMttrBreakdownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetMttrQuery.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetMttrQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery.d.ts +33 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetOpenCloseRateQuery.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetOpenCloseRateQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery.d.ts +33 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetSecurityDrilldownQuery.d.ts +46 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetSecurityDrilldownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetSecurityFilterValuesQuery.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetSecurityFilterValuesQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +83 -18
- package/dist/sei-panorama-service/src/services/index.js +17 -2
- package/dist/sei-panorama-service/src/services/schemas/AdoptionDataPoint.d.ts +35 -0
- package/dist/sei-panorama-service/src/services/schemas/AdoptionPeriodData.d.ts +35 -0
- package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesBreakdownItemDto.d.ts +40 -0
- package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesBreakdownResponseDto.d.ts +27 -0
- package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesDataPointDto.d.ts +41 -0
- package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesResponseDto.d.ts +32 -0
- package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesSummaryDto.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionBreakdownRequestDto.d.ts +38 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionBreakdownResponseDto.d.ts +30 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionMetricsRequestDto.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionMetricsResponseDto.d.ts +35 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionSummaryRequestDto.d.ts +32 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionSummaryRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiAdoptionSummaryResponseDto.d.ts +30 -0
- package/dist/sei-panorama-service/src/services/schemas/AiCombinedInsightsRequestDto.d.ts +37 -0
- package/dist/sei-panorama-service/src/services/schemas/AiCombinedInsightsRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiMetrics.d.ts +40 -0
- package/dist/sei-panorama-service/src/services/schemas/AiMetrics.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiRawMetricsRequestDto.d.ts +66 -0
- package/dist/sei-panorama-service/src/services/schemas/AiRawMetricsResponseDto.d.ts +30 -0
- package/dist/sei-panorama-service/src/services/schemas/AiSummary.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/schemas/AiSummary.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTeamBreakdownDataPoint.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTeamBreakdownDataPoint.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTeamBreakdownRequestDto.d.ts +16 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTeamBreakdownRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTeamBreakdownResponseDto.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTeamBreakdownResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/AiToolUsersSummaryRequestDto.d.ts +28 -0
- package/dist/sei-panorama-service/src/services/schemas/AiToolUsersSummaryRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiToolUsersSummaryResponseDto.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/schemas/AiToolUsersSummaryResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTopLanguagesRequestDto.d.ts +28 -0
- package/dist/sei-panorama-service/src/services/schemas/AiTopLanguagesRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiError.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiError.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationAdoptionSummary.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationAdoptionSummary.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationRawMetrics.d.ts +15 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationRawMetrics.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/LanguageCount.d.ts +5 -1
- package/dist/sei-panorama-service/src/services/schemas/MttrBreakdownItemDto.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrBreakdownItemDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrBreakdownResponseDto.d.ts +27 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrBreakdownResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrDataPointDto.d.ts +23 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrDataPointDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrResponseDto.d.ts +32 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrSummaryDto.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrSummaryDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateBreakdownItemDto.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateBreakdownItemDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateBreakdownResponseDto.d.ts +27 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateBreakdownResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateDataPointDto.d.ts +35 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateDataPointDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateResponseDto.d.ts +32 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateSummaryDto.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenCloseRateSummaryDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesBreakdownItemDto.d.ts +46 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesBreakdownItemDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesBreakdownResponseDto.d.ts +27 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesBreakdownResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesDataPointDto.d.ts +47 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesDataPointDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesResponseDto.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesSummaryDto.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/schemas/OpenVulnerabilitiesSummaryDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/PaginationParams.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/schemas/PaginationParams.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/SecurityDrilldownResponseDto.d.ts +6 -0
- package/dist/sei-panorama-service/src/services/schemas/SecurityDrilldownResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamPeriodData.d.ts +46 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamPeriodData.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ToolSummary.d.ts +53 -0
- package/dist/sei-panorama-service/src/services/schemas/ToolSummary.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/UserMetrics.d.ts +25 -0
- package/dist/sei-panorama-service/src/services/schemas/UserMetrics.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/ValidationError.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/schemas/ValidationError.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/VulnerabilityDetail.d.ts +48 -0
- package/dist/sei-panorama-service/src/services/schemas/VulnerabilityDetail.js +4 -0
- package/package.json +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetDailyActiveUsersDrilldownQuery.d.ts +0 -22
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetDailyActiveUsersDrilldownQuery.js +0 -14
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTeamAdoptionQuery.d.ts +0 -22
- package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTeamAdoptionQuery.js +0 -14
- package/dist/sei-panorama-service/src/services/schemas/AiDailyActiveUsersDrilldownRequestDto.d.ts +0 -34
- package/dist/sei-panorama-service/src/services/schemas/AiDailyActiveUsersDrilldownResponseDto.d.ts +0 -58
- package/dist/sei-panorama-service/src/services/schemas/AiFeatureDataPoint.d.ts +0 -14
- package/dist/sei-panorama-service/src/services/schemas/AiFeatureDataResponseDto.d.ts +0 -22
- package/dist/sei-panorama-service/src/services/schemas/AiInsightsRequestDto.d.ts +0 -17
- package/dist/sei-panorama-service/src/services/schemas/AiTeamAdoptionRequestDto.d.ts +0 -34
- package/dist/sei-panorama-service/src/services/schemas/AiTeamAdoptionResponseDto.d.ts +0 -35
- package/dist/sei-panorama-service/src/services/schemas/AiTeamAdoptionUserDto.d.ts +0 -30
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownDataDto.d.ts +0 -27
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownOptions.d.ts +0 -12
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownUserDto.d.ts +0 -52
- package/dist/sei-panorama-service/src/services/schemas/WindsurfDrilldownDataDto.d.ts +0 -17
- package/dist/sei-panorama-service/src/services/schemas/WindsurfDrilldownOptions.d.ts +0 -12
- package/dist/sei-panorama-service/src/services/schemas/WindsurfDrilldownUserDto.d.ts +0 -60
- /package/dist/sei-panorama-service/src/services/schemas/{AiFeatureDataPoint.js → AdoptionDataPoint.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiInsightsRequestDto.js → AdoptionPeriodData.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiTeamAdoptionUserDto.js → AgedVulnerabilitiesBreakdownItemDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiDailyActiveUsersDrilldownRequestDto.js → AgedVulnerabilitiesBreakdownResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{CursorDrilldownOptions.js → AgedVulnerabilitiesDataPointDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiDailyActiveUsersDrilldownResponseDto.js → AgedVulnerabilitiesResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{CursorDrilldownUserDto.js → AgedVulnerabilitiesSummaryDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{WindsurfDrilldownOptions.js → AiAdoptionBreakdownRequestDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiFeatureDataResponseDto.js → AiAdoptionBreakdownResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{WindsurfDrilldownUserDto.js → AiAdoptionMetricsRequestDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiTeamAdoptionRequestDto.js → AiAdoptionMetricsResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{AiTeamAdoptionResponseDto.js → AiAdoptionSummaryResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{CursorDrilldownDataDto.js → AiRawMetricsRequestDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{WindsurfDrilldownDataDto.js → AiRawMetricsResponseDto.js} +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { SecurityDrilldownResponseDto } from '../schemas/SecurityDrilldownResponseDto';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface SecurityInsightsControllerGetSecurityDrilldownQueryQueryParams {
|
|
6
|
+
account: string;
|
|
7
|
+
projectIdentifier: string;
|
|
8
|
+
orgIdentifier: string;
|
|
9
|
+
/**
|
|
10
|
+
* @format int32
|
|
11
|
+
*/
|
|
12
|
+
teamRefId: number;
|
|
13
|
+
/**
|
|
14
|
+
* @format date-time
|
|
15
|
+
*/
|
|
16
|
+
startDate: string;
|
|
17
|
+
/**
|
|
18
|
+
* @format date-time
|
|
19
|
+
*/
|
|
20
|
+
endDate: string;
|
|
21
|
+
metricType: 'AGED_VULNERABILITIES' | 'MTTR' | 'OPEN_CLOSE_RATE' | 'TOTAL_OPEN_VULNERABILITIES';
|
|
22
|
+
severity?: 'ALL' | 'CRITICAL' | 'HIGH' | 'INFO' | 'LOW' | 'MEDIUM';
|
|
23
|
+
assetType?: 'ALL' | 'CLI' | 'CONTAINER' | 'INFRASTRUCTURE' | 'REPOSITORY';
|
|
24
|
+
/**
|
|
25
|
+
* @format int32
|
|
26
|
+
* @default 0
|
|
27
|
+
*/
|
|
28
|
+
page?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @format int32
|
|
31
|
+
* @default 20
|
|
32
|
+
*/
|
|
33
|
+
pageSize?: number;
|
|
34
|
+
sortBy?: string;
|
|
35
|
+
sortDirection?: string;
|
|
36
|
+
}
|
|
37
|
+
export type SecurityInsightsControllerGetSecurityDrilldownOkResponse = ResponseWithPagination<SecurityDrilldownResponseDto>;
|
|
38
|
+
export type SecurityInsightsControllerGetSecurityDrilldownErrorResponse = string;
|
|
39
|
+
export interface SecurityInsightsControllerGetSecurityDrilldownProps extends Omit<FetcherOptions<SecurityInsightsControllerGetSecurityDrilldownQueryQueryParams, unknown>, 'url'> {
|
|
40
|
+
queryParams: SecurityInsightsControllerGetSecurityDrilldownQueryQueryParams;
|
|
41
|
+
}
|
|
42
|
+
export declare function securityInsightsControllerGetSecurityDrilldown(props: SecurityInsightsControllerGetSecurityDrilldownProps): Promise<SecurityInsightsControllerGetSecurityDrilldownOkResponse>;
|
|
43
|
+
/**
|
|
44
|
+
* Retrieves detailed vulnerability records with pagination and filtering
|
|
45
|
+
*/
|
|
46
|
+
export declare function useSecurityInsightsControllerGetSecurityDrilldownQuery(props: SecurityInsightsControllerGetSecurityDrilldownProps, options?: Omit<UseQueryOptions<SecurityInsightsControllerGetSecurityDrilldownOkResponse, SecurityInsightsControllerGetSecurityDrilldownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SecurityInsightsControllerGetSecurityDrilldownOkResponse, string>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function securityInsightsControllerGetSecurityDrilldown(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/security/drilldown`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Retrieves detailed vulnerability records with pagination and filtering
|
|
11
|
+
*/
|
|
12
|
+
export function useSecurityInsightsControllerGetSecurityDrilldownQuery(props, options) {
|
|
13
|
+
return useQuery(['SecurityInsightsControllerGetSecurityDrilldown', props.queryParams], ({ signal }) => securityInsightsControllerGetSecurityDrilldown(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
4
|
+
export interface SecurityInsightsControllerGetSecurityFilterValuesQueryQueryParams {
|
|
5
|
+
filterKey: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SNYK_BRANCH' | 'SNYK_ENVIRONMENT' | 'SNYK_FILE_PATH' | 'SNYK_MONOREPO_PATH' | 'SNYK_ORG_ID' | 'SNYK_PROJECT_TAG' | 'SNYK_REPOSITORY' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM' | 'WIZ_CLOUD_ACCOUNT_ID' | 'WIZ_LANDING_ZONE_NAME' | 'WIZ_PROJECT_ID' | 'WIZ_REGION' | 'WIZ_RESOURCE_TAG' | 'WIZ_RESOURCE_TYPE';
|
|
6
|
+
account: string;
|
|
7
|
+
}
|
|
8
|
+
export type SecurityInsightsControllerGetSecurityFilterValuesOkResponse = ResponseWithPagination<string[]>;
|
|
9
|
+
export type SecurityInsightsControllerGetSecurityFilterValuesErrorResponse = string[];
|
|
10
|
+
export interface SecurityInsightsControllerGetSecurityFilterValuesProps extends Omit<FetcherOptions<SecurityInsightsControllerGetSecurityFilterValuesQueryQueryParams, unknown>, 'url'> {
|
|
11
|
+
queryParams: SecurityInsightsControllerGetSecurityFilterValuesQueryQueryParams;
|
|
12
|
+
}
|
|
13
|
+
export declare function securityInsightsControllerGetSecurityFilterValues(props: SecurityInsightsControllerGetSecurityFilterValuesProps): Promise<SecurityInsightsControllerGetSecurityFilterValuesOkResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* Returns a list of distinct values for a specific filter key (SNYK filters supported).
|
|
16
|
+
*/
|
|
17
|
+
export declare function useSecurityInsightsControllerGetSecurityFilterValuesQuery(props: SecurityInsightsControllerGetSecurityFilterValuesProps, options?: Omit<UseQueryOptions<SecurityInsightsControllerGetSecurityFilterValuesOkResponse, SecurityInsightsControllerGetSecurityFilterValuesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SecurityInsightsControllerGetSecurityFilterValuesOkResponse, SecurityInsightsControllerGetSecurityFilterValuesErrorResponse>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function securityInsightsControllerGetSecurityFilterValues(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/security/filter_values`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Returns a list of distinct values for a specific filter key (SNYK filters supported).
|
|
11
|
+
*/
|
|
12
|
+
export function useSecurityInsightsControllerGetSecurityFilterValuesQuery(props, options) {
|
|
13
|
+
return useQuery(['SecurityInsightsControllerGetSecurityFilterValues', props.queryParams], ({ signal }) => securityInsightsControllerGetSecurityFilterValues(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { OpenVulnerabilitiesResponseDto } from '../schemas/OpenVulnerabilitiesResponseDto';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface SecurityInsightsControllerGetTotalOpenVulnerabilitiesQueryQueryParams {
|
|
6
|
+
account: string;
|
|
7
|
+
projectIdentifier: string;
|
|
8
|
+
orgIdentifier: string;
|
|
9
|
+
/**
|
|
10
|
+
* @format int32
|
|
11
|
+
*/
|
|
12
|
+
teamRefId: number;
|
|
13
|
+
/**
|
|
14
|
+
* @format date-time
|
|
15
|
+
*/
|
|
16
|
+
startDate: string;
|
|
17
|
+
/**
|
|
18
|
+
* @format date-time
|
|
19
|
+
*/
|
|
20
|
+
endDate: string;
|
|
21
|
+
granularity: string;
|
|
22
|
+
severity?: 'ALL' | 'CRITICAL' | 'HIGH' | 'INFO' | 'LOW' | 'MEDIUM';
|
|
23
|
+
assetType?: 'ALL' | 'CLI' | 'CONTAINER' | 'INFRASTRUCTURE' | 'REPOSITORY';
|
|
24
|
+
}
|
|
25
|
+
export type SecurityInsightsControllerGetTotalOpenVulnerabilitiesOkResponse = ResponseWithPagination<OpenVulnerabilitiesResponseDto>;
|
|
26
|
+
export type SecurityInsightsControllerGetTotalOpenVulnerabilitiesErrorResponse = string;
|
|
27
|
+
export interface SecurityInsightsControllerGetTotalOpenVulnerabilitiesProps extends Omit<FetcherOptions<SecurityInsightsControllerGetTotalOpenVulnerabilitiesQueryQueryParams, unknown>, 'url'> {
|
|
28
|
+
queryParams: SecurityInsightsControllerGetTotalOpenVulnerabilitiesQueryQueryParams;
|
|
29
|
+
}
|
|
30
|
+
export declare function securityInsightsControllerGetTotalOpenVulnerabilities(props: SecurityInsightsControllerGetTotalOpenVulnerabilitiesProps): Promise<SecurityInsightsControllerGetTotalOpenVulnerabilitiesOkResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves total count of open vulnerabilities with platform and severity breakdowns
|
|
33
|
+
*/
|
|
34
|
+
export declare function useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery(props: SecurityInsightsControllerGetTotalOpenVulnerabilitiesProps, options?: Omit<UseQueryOptions<SecurityInsightsControllerGetTotalOpenVulnerabilitiesOkResponse, SecurityInsightsControllerGetTotalOpenVulnerabilitiesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SecurityInsightsControllerGetTotalOpenVulnerabilitiesOkResponse, string>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function securityInsightsControllerGetTotalOpenVulnerabilities(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/security/open-vulnerabilities`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Retrieves total count of open vulnerabilities with platform and severity breakdowns
|
|
11
|
+
*/
|
|
12
|
+
export function useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery(props, options) {
|
|
13
|
+
return useQuery(['SecurityInsightsControllerGetTotalOpenVulnerabilities', props.queryParams], ({ signal }) => securityInsightsControllerGetTotalOpenVulnerabilities(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
export type { GetPathParamsType, ResponseWithPagination } from './helpers';
|
|
2
|
-
export type {
|
|
3
|
-
export {
|
|
2
|
+
export type { AiInsightsControllerGetAdoptionBreakdownErrorResponse, AiInsightsControllerGetAdoptionBreakdownOkResponse, AiInsightsControllerGetAdoptionBreakdownProps, AiInsightsControllerGetAdoptionBreakdownQueryQueryParams, AiInsightsControllerGetAdoptionBreakdownRequestBody, } from './hooks/useAiInsightsControllerGetAdoptionBreakdownQuery';
|
|
3
|
+
export { aiInsightsControllerGetAdoptionBreakdown, useAiInsightsControllerGetAdoptionBreakdownQuery, } from './hooks/useAiInsightsControllerGetAdoptionBreakdownQuery';
|
|
4
|
+
export type { AiInsightsControllerGetAdoptionMetricsErrorResponse, AiInsightsControllerGetAdoptionMetricsOkResponse, AiInsightsControllerGetAdoptionMetricsProps, AiInsightsControllerGetAdoptionMetricsQueryQueryParams, AiInsightsControllerGetAdoptionMetricsRequestBody, } from './hooks/useAiInsightsControllerGetAdoptionMetricsQuery';
|
|
5
|
+
export { aiInsightsControllerGetAdoptionMetrics, useAiInsightsControllerGetAdoptionMetricsQuery, } from './hooks/useAiInsightsControllerGetAdoptionMetricsQuery';
|
|
6
|
+
export type { AiInsightsControllerGetAdoptionSummaryErrorResponse, AiInsightsControllerGetAdoptionSummaryOkResponse, AiInsightsControllerGetAdoptionSummaryProps, AiInsightsControllerGetAdoptionSummaryQueryQueryParams, AiInsightsControllerGetAdoptionSummaryRequestBody, } from './hooks/useAiInsightsControllerGetAdoptionSummaryQuery';
|
|
7
|
+
export { aiInsightsControllerGetAdoptionSummary, useAiInsightsControllerGetAdoptionSummaryQuery, } from './hooks/useAiInsightsControllerGetAdoptionSummaryQuery';
|
|
4
8
|
export type { AiInsightsControllerGetFeatureMetricsErrorResponse, AiInsightsControllerGetFeatureMetricsOkResponse, AiInsightsControllerGetFeatureMetricsProps, AiInsightsControllerGetFeatureMetricsQueryQueryParams, AiInsightsControllerGetFeatureMetricsRequestBody, } from './hooks/useAiInsightsControllerGetFeatureMetricsQuery';
|
|
5
9
|
export { aiInsightsControllerGetFeatureMetrics, useAiInsightsControllerGetFeatureMetricsQuery, } from './hooks/useAiInsightsControllerGetFeatureMetricsQuery';
|
|
6
|
-
export type {
|
|
7
|
-
export {
|
|
10
|
+
export type { AiInsightsControllerGetRawMetricsErrorResponse, AiInsightsControllerGetRawMetricsOkResponse, AiInsightsControllerGetRawMetricsProps, AiInsightsControllerGetRawMetricsQueryQueryParams, AiInsightsControllerGetRawMetricsRequestBody, } from './hooks/useAiInsightsControllerGetRawMetricsQuery';
|
|
11
|
+
export { aiInsightsControllerGetRawMetrics, useAiInsightsControllerGetRawMetricsQuery, } from './hooks/useAiInsightsControllerGetRawMetricsQuery';
|
|
12
|
+
export type { AiInsightsControllerGetTeamBreakdownErrorResponse, AiInsightsControllerGetTeamBreakdownOkResponse, AiInsightsControllerGetTeamBreakdownProps, AiInsightsControllerGetTeamBreakdownQueryQueryParams, AiInsightsControllerGetTeamBreakdownRequestBody, } from './hooks/useAiInsightsControllerGetTeamBreakdownQuery';
|
|
13
|
+
export { aiInsightsControllerGetTeamBreakdown, useAiInsightsControllerGetTeamBreakdownQuery, } from './hooks/useAiInsightsControllerGetTeamBreakdownQuery';
|
|
14
|
+
export type { AiInsightsControllerGetToolUsersSummaryErrorResponse, AiInsightsControllerGetToolUsersSummaryOkResponse, AiInsightsControllerGetToolUsersSummaryProps, AiInsightsControllerGetToolUsersSummaryQueryQueryParams, AiInsightsControllerGetToolUsersSummaryRequestBody, } from './hooks/useAiInsightsControllerGetToolUsersSummaryQuery';
|
|
15
|
+
export { aiInsightsControllerGetToolUsersSummary, useAiInsightsControllerGetToolUsersSummaryQuery, } from './hooks/useAiInsightsControllerGetToolUsersSummaryQuery';
|
|
8
16
|
export type { AiInsightsControllerGetTopLanguagesErrorResponse, AiInsightsControllerGetTopLanguagesOkResponse, AiInsightsControllerGetTopLanguagesProps, AiInsightsControllerGetTopLanguagesQueryQueryParams, AiInsightsControllerGetTopLanguagesRequestBody, } from './hooks/useAiInsightsControllerGetTopLanguagesQuery';
|
|
9
17
|
export { aiInsightsControllerGetTopLanguages, useAiInsightsControllerGetTopLanguagesQuery, } from './hooks/useAiInsightsControllerGetTopLanguagesQuery';
|
|
10
18
|
export type { AiSummaryControllerGenerateSummaryErrorResponse, AiSummaryControllerGenerateSummaryOkResponse, AiSummaryControllerGenerateSummaryProps, AiSummaryControllerGenerateSummaryQueryQueryParams, AiSummaryControllerGenerateSummaryRequestBody, } from './hooks/useAiSummaryControllerGenerateSummaryQuery';
|
|
@@ -179,6 +187,8 @@ export type { ExportControllerForCollectionsExportDataErrorResponse, ExportContr
|
|
|
179
187
|
export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
|
|
180
188
|
export type { ExportControllerForTeamsExportDataErrorResponse, ExportControllerForTeamsExportDataMutationQueryParams, ExportControllerForTeamsExportDataOkResponse, ExportControllerForTeamsExportDataProps, ExportControllerForTeamsExportDataRequestBody, } from './hooks/useExportControllerForTeamsExportDataMutation';
|
|
181
189
|
export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
|
|
190
|
+
export type { HealthControllerCheckDbHealthErrorResponse, HealthControllerCheckDbHealthOkResponse, HealthControllerCheckDbHealthProps, } from './hooks/useHealthControllerCheckDbHealthQuery';
|
|
191
|
+
export { healthControllerCheckDbHealth, useHealthControllerCheckDbHealthQuery, } from './hooks/useHealthControllerCheckDbHealthQuery';
|
|
182
192
|
export type { ImFieldsControllerListImFieldsErrorResponse, ImFieldsControllerListImFieldsOkResponse, ImFieldsControllerListImFieldsProps, ImFieldsControllerListImFieldsQueryQueryParams, ImFieldsControllerListImFieldsRequestBody, } from './hooks/useImFieldsControllerListImFieldsQuery';
|
|
183
193
|
export { imFieldsControllerListImFields, useImFieldsControllerListImFieldsQuery, } from './hooks/useImFieldsControllerListImFieldsQuery';
|
|
184
194
|
export type { IntegrationControllerGetFilterValuesErrorResponse, IntegrationControllerGetFilterValuesOkResponse, IntegrationControllerGetFilterValuesProps, IntegrationControllerGetFilterValuesQueryQueryParams, IntegrationControllerGetFilterValuesRequestBody, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
|
@@ -309,6 +319,26 @@ export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGet
|
|
|
309
319
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
310
320
|
export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
311
321
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
322
|
+
export type { SecurityInsightsControllerGetAgedVulnerabilitiesBreakdownErrorResponse, SecurityInsightsControllerGetAgedVulnerabilitiesBreakdownOkResponse, SecurityInsightsControllerGetAgedVulnerabilitiesBreakdownProps, SecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery';
|
|
323
|
+
export { securityInsightsControllerGetAgedVulnerabilitiesBreakdown, useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery';
|
|
324
|
+
export type { SecurityInsightsControllerGetAgedVulnerabilitiesErrorResponse, SecurityInsightsControllerGetAgedVulnerabilitiesOkResponse, SecurityInsightsControllerGetAgedVulnerabilitiesProps, SecurityInsightsControllerGetAgedVulnerabilitiesQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesQuery';
|
|
325
|
+
export { securityInsightsControllerGetAgedVulnerabilities, useSecurityInsightsControllerGetAgedVulnerabilitiesQuery, } from './hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesQuery';
|
|
326
|
+
export type { SecurityInsightsControllerGetMttrBreakdownErrorResponse, SecurityInsightsControllerGetMttrBreakdownOkResponse, SecurityInsightsControllerGetMttrBreakdownProps, SecurityInsightsControllerGetMttrBreakdownQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetMttrBreakdownQuery';
|
|
327
|
+
export { securityInsightsControllerGetMttrBreakdown, useSecurityInsightsControllerGetMttrBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetMttrBreakdownQuery';
|
|
328
|
+
export type { SecurityInsightsControllerGetMttrErrorResponse, SecurityInsightsControllerGetMttrOkResponse, SecurityInsightsControllerGetMttrProps, SecurityInsightsControllerGetMttrQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetMttrQuery';
|
|
329
|
+
export { securityInsightsControllerGetMttr, useSecurityInsightsControllerGetMttrQuery, } from './hooks/useSecurityInsightsControllerGetMttrQuery';
|
|
330
|
+
export type { SecurityInsightsControllerGetOpenCloseRateBreakdownErrorResponse, SecurityInsightsControllerGetOpenCloseRateBreakdownOkResponse, SecurityInsightsControllerGetOpenCloseRateBreakdownProps, SecurityInsightsControllerGetOpenCloseRateBreakdownQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery';
|
|
331
|
+
export { securityInsightsControllerGetOpenCloseRateBreakdown, useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery';
|
|
332
|
+
export type { SecurityInsightsControllerGetOpenCloseRateErrorResponse, SecurityInsightsControllerGetOpenCloseRateOkResponse, SecurityInsightsControllerGetOpenCloseRateProps, SecurityInsightsControllerGetOpenCloseRateQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetOpenCloseRateQuery';
|
|
333
|
+
export { securityInsightsControllerGetOpenCloseRate, useSecurityInsightsControllerGetOpenCloseRateQuery, } from './hooks/useSecurityInsightsControllerGetOpenCloseRateQuery';
|
|
334
|
+
export type { SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownErrorResponse, SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownOkResponse, SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownProps, SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery';
|
|
335
|
+
export { securityInsightsControllerGetOpenVulnerabilitiesBreakdown, useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery';
|
|
336
|
+
export type { SecurityInsightsControllerGetSecurityDrilldownErrorResponse, SecurityInsightsControllerGetSecurityDrilldownOkResponse, SecurityInsightsControllerGetSecurityDrilldownProps, SecurityInsightsControllerGetSecurityDrilldownQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetSecurityDrilldownQuery';
|
|
337
|
+
export { securityInsightsControllerGetSecurityDrilldown, useSecurityInsightsControllerGetSecurityDrilldownQuery, } from './hooks/useSecurityInsightsControllerGetSecurityDrilldownQuery';
|
|
338
|
+
export type { SecurityInsightsControllerGetSecurityFilterValuesErrorResponse, SecurityInsightsControllerGetSecurityFilterValuesOkResponse, SecurityInsightsControllerGetSecurityFilterValuesProps, SecurityInsightsControllerGetSecurityFilterValuesQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetSecurityFilterValuesQuery';
|
|
339
|
+
export { securityInsightsControllerGetSecurityFilterValues, useSecurityInsightsControllerGetSecurityFilterValuesQuery, } from './hooks/useSecurityInsightsControllerGetSecurityFilterValuesQuery';
|
|
340
|
+
export type { SecurityInsightsControllerGetTotalOpenVulnerabilitiesErrorResponse, SecurityInsightsControllerGetTotalOpenVulnerabilitiesOkResponse, SecurityInsightsControllerGetTotalOpenVulnerabilitiesProps, SecurityInsightsControllerGetTotalOpenVulnerabilitiesQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery';
|
|
341
|
+
export { securityInsightsControllerGetTotalOpenVulnerabilities, useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery, } from './hooks/useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery';
|
|
312
342
|
export type { SecurityProfileControllerCreateProfileErrorResponse, SecurityProfileControllerCreateProfileOkResponse, SecurityProfileControllerCreateProfileProps, SecurityProfileControllerCreateProfileRequestBody, } from './hooks/useSecurityProfileControllerCreateProfileMutation';
|
|
313
343
|
export { securityProfileControllerCreateProfile, useSecurityProfileControllerCreateProfileMutation, } from './hooks/useSecurityProfileControllerCreateProfileMutation';
|
|
314
344
|
export type { SecurityProfileControllerDeleteProfileErrorResponse, SecurityProfileControllerDeleteProfileMutationPathParams, SecurityProfileControllerDeleteProfileOkResponse, SecurityProfileControllerDeleteProfileProps, } from './hooks/useSecurityProfileControllerDeleteProfileMutation';
|
|
@@ -359,17 +389,34 @@ export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamM
|
|
|
359
389
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
360
390
|
export type { AccessResponseDto } from './schemas/AccessResponseDto';
|
|
361
391
|
export type { ActivityDataDto } from './schemas/ActivityDataDto';
|
|
362
|
-
export type {
|
|
363
|
-
export type {
|
|
364
|
-
export type {
|
|
365
|
-
export type {
|
|
366
|
-
export type {
|
|
392
|
+
export type { AdoptionDataPoint } from './schemas/AdoptionDataPoint';
|
|
393
|
+
export type { AdoptionPeriodData } from './schemas/AdoptionPeriodData';
|
|
394
|
+
export type { AgedVulnerabilitiesBreakdownItemDto } from './schemas/AgedVulnerabilitiesBreakdownItemDto';
|
|
395
|
+
export type { AgedVulnerabilitiesBreakdownResponseDto } from './schemas/AgedVulnerabilitiesBreakdownResponseDto';
|
|
396
|
+
export type { AgedVulnerabilitiesDataPointDto } from './schemas/AgedVulnerabilitiesDataPointDto';
|
|
397
|
+
export type { AgedVulnerabilitiesResponseDto } from './schemas/AgedVulnerabilitiesResponseDto';
|
|
398
|
+
export type { AgedVulnerabilitiesSummaryDto } from './schemas/AgedVulnerabilitiesSummaryDto';
|
|
399
|
+
export type { AiAdoptionBreakdownRequestDto } from './schemas/AiAdoptionBreakdownRequestDto';
|
|
400
|
+
export type { AiAdoptionBreakdownResponseDto } from './schemas/AiAdoptionBreakdownResponseDto';
|
|
401
|
+
export type { AiAdoptionMetricsRequestDto } from './schemas/AiAdoptionMetricsRequestDto';
|
|
402
|
+
export type { AiAdoptionMetricsResponseDto } from './schemas/AiAdoptionMetricsResponseDto';
|
|
403
|
+
export type { AiAdoptionSummaryRequestDto } from './schemas/AiAdoptionSummaryRequestDto';
|
|
404
|
+
export type { AiAdoptionSummaryResponseDto } from './schemas/AiAdoptionSummaryResponseDto';
|
|
405
|
+
export type { AiCombinedInsightsRequestDto } from './schemas/AiCombinedInsightsRequestDto';
|
|
406
|
+
export type { AiMetrics } from './schemas/AiMetrics';
|
|
407
|
+
export type { AiRawMetricsRequestDto } from './schemas/AiRawMetricsRequestDto';
|
|
408
|
+
export type { AiRawMetricsResponseDto } from './schemas/AiRawMetricsResponseDto';
|
|
409
|
+
export type { AiSummary } from './schemas/AiSummary';
|
|
367
410
|
export type { AiSummaryRequestDto } from './schemas/AiSummaryRequestDto';
|
|
368
411
|
export type { AiSummaryResponseDto } from './schemas/AiSummaryResponseDto';
|
|
369
|
-
export type {
|
|
370
|
-
export type {
|
|
371
|
-
export type {
|
|
412
|
+
export type { AiTeamBreakdownDataPoint } from './schemas/AiTeamBreakdownDataPoint';
|
|
413
|
+
export type { AiTeamBreakdownRequestDto } from './schemas/AiTeamBreakdownRequestDto';
|
|
414
|
+
export type { AiTeamBreakdownResponseDto } from './schemas/AiTeamBreakdownResponseDto';
|
|
415
|
+
export type { AiToolUsersSummaryRequestDto } from './schemas/AiToolUsersSummaryRequestDto';
|
|
416
|
+
export type { AiToolUsersSummaryResponseDto } from './schemas/AiToolUsersSummaryResponseDto';
|
|
417
|
+
export type { AiTopLanguagesRequestDto } from './schemas/AiTopLanguagesRequestDto';
|
|
372
418
|
export type { AiTopLanguagesResponseDto } from './schemas/AiTopLanguagesResponseDto';
|
|
419
|
+
export type { ApiError } from './schemas/ApiError';
|
|
373
420
|
export type { ApiErrorResponse } from './schemas/ApiErrorResponse';
|
|
374
421
|
export type { ApiResponseWrapper } from './schemas/ApiResponseWrapper';
|
|
375
422
|
export type { AssociateDevelopersRequestDto } from './schemas/AssociateDevelopersRequestDto';
|
|
@@ -407,9 +454,6 @@ export type { CollectionEnriched } from './schemas/CollectionEnriched';
|
|
|
407
454
|
export type { CollectionFilter } from './schemas/CollectionFilter';
|
|
408
455
|
export type { CollectionTree } from './schemas/CollectionTree';
|
|
409
456
|
export type { CommitInfo } from './schemas/CommitInfo';
|
|
410
|
-
export type { CursorDrilldownDataDto } from './schemas/CursorDrilldownDataDto';
|
|
411
|
-
export type { CursorDrilldownOptions } from './schemas/CursorDrilldownOptions';
|
|
412
|
-
export type { CursorDrilldownUserDto } from './schemas/CursorDrilldownUserDto';
|
|
413
457
|
export type { DailyCountDataPoint } from './schemas/DailyCountDataPoint';
|
|
414
458
|
export type { DailyLicenseUsageResponseDto } from './schemas/DailyLicenseUsageResponseDto';
|
|
415
459
|
export type { DataPoint } from './schemas/DataPoint';
|
|
@@ -495,6 +539,7 @@ export type { IndividualDrilldownDataPoint } from './schemas/IndividualDrilldown
|
|
|
495
539
|
export type { IndividualDrilldownDataPointV3 } from './schemas/IndividualDrilldownDataPointV3';
|
|
496
540
|
export type { IndividualDrilldownDataV3 } from './schemas/IndividualDrilldownDataV3';
|
|
497
541
|
export type { Integration } from './schemas/Integration';
|
|
542
|
+
export type { IntegrationAdoptionSummary } from './schemas/IntegrationAdoptionSummary';
|
|
498
543
|
export type { IntegrationConfigRequestDto } from './schemas/IntegrationConfigRequestDto';
|
|
499
544
|
export type { IntegrationConfigResponseDto } from './schemas/IntegrationConfigResponseDto';
|
|
500
545
|
export type { IntegrationDataStatusRequest } from './schemas/IntegrationDataStatusRequest';
|
|
@@ -502,6 +547,7 @@ export type { IntegrationHealthDrillDownDto } from './schemas/IntegrationHealthD
|
|
|
502
547
|
export type { IntegrationHealthStatusDto } from './schemas/IntegrationHealthStatusDto';
|
|
503
548
|
export type { IntegrationIdsDto } from './schemas/IntegrationIdsDto';
|
|
504
549
|
export type { IntegrationObject } from './schemas/IntegrationObject';
|
|
550
|
+
export type { IntegrationRawMetrics } from './schemas/IntegrationRawMetrics';
|
|
505
551
|
export type { IntegrationResponseDto } from './schemas/IntegrationResponseDto';
|
|
506
552
|
export type { IntegrationStatsDto } from './schemas/IntegrationStatsDto';
|
|
507
553
|
export type { IntegrationSummary } from './schemas/IntegrationSummary';
|
|
@@ -537,11 +583,26 @@ export type { MinimalDeveloperDto } from './schemas/MinimalDeveloperDto';
|
|
|
537
583
|
export type { MinimalOrgTree } from './schemas/MinimalOrgTree';
|
|
538
584
|
export type { MinimalTeamHierarchyResponseDto } from './schemas/MinimalTeamHierarchyResponseDto';
|
|
539
585
|
export type { MonthlyLicenseUsageResponseDto } from './schemas/MonthlyLicenseUsageResponseDto';
|
|
586
|
+
export type { MttrBreakdownItemDto } from './schemas/MttrBreakdownItemDto';
|
|
587
|
+
export type { MttrBreakdownResponseDto } from './schemas/MttrBreakdownResponseDto';
|
|
540
588
|
export type { MttrConfigurationDto } from './schemas/MttrConfigurationDto';
|
|
541
589
|
export type { MttrDataPoint } from './schemas/MttrDataPoint';
|
|
590
|
+
export type { MttrDataPointDto } from './schemas/MttrDataPointDto';
|
|
542
591
|
export type { MttrDrillDownResponseDto } from './schemas/MttrDrillDownResponseDto';
|
|
543
592
|
export type { MttrDrilldownRequest } from './schemas/MttrDrilldownRequest';
|
|
544
593
|
export type { MttrMetric } from './schemas/MttrMetric';
|
|
594
|
+
export type { MttrResponseDto } from './schemas/MttrResponseDto';
|
|
595
|
+
export type { MttrSummaryDto } from './schemas/MttrSummaryDto';
|
|
596
|
+
export type { OpenCloseRateBreakdownItemDto } from './schemas/OpenCloseRateBreakdownItemDto';
|
|
597
|
+
export type { OpenCloseRateBreakdownResponseDto } from './schemas/OpenCloseRateBreakdownResponseDto';
|
|
598
|
+
export type { OpenCloseRateDataPointDto } from './schemas/OpenCloseRateDataPointDto';
|
|
599
|
+
export type { OpenCloseRateResponseDto } from './schemas/OpenCloseRateResponseDto';
|
|
600
|
+
export type { OpenCloseRateSummaryDto } from './schemas/OpenCloseRateSummaryDto';
|
|
601
|
+
export type { OpenVulnerabilitiesBreakdownItemDto } from './schemas/OpenVulnerabilitiesBreakdownItemDto';
|
|
602
|
+
export type { OpenVulnerabilitiesBreakdownResponseDto } from './schemas/OpenVulnerabilitiesBreakdownResponseDto';
|
|
603
|
+
export type { OpenVulnerabilitiesDataPointDto } from './schemas/OpenVulnerabilitiesDataPointDto';
|
|
604
|
+
export type { OpenVulnerabilitiesResponseDto } from './schemas/OpenVulnerabilitiesResponseDto';
|
|
605
|
+
export type { OpenVulnerabilitiesSummaryDto } from './schemas/OpenVulnerabilitiesSummaryDto';
|
|
545
606
|
export type { OrgTreeCreateRequestDto } from './schemas/OrgTreeCreateRequestDto';
|
|
546
607
|
export type { OrgTreePreviewRequestDto } from './schemas/OrgTreePreviewRequestDto';
|
|
547
608
|
export type { OrgTreeProfileDto } from './schemas/OrgTreeProfileDto';
|
|
@@ -551,6 +612,7 @@ export type { OrgTreeUpdateRequestDto } from './schemas/OrgTreeUpdateRequestDto'
|
|
|
551
612
|
export type { PaginatedResponseTeamSummary } from './schemas/PaginatedResponseTeamSummary';
|
|
552
613
|
export type { PaginationInfo } from './schemas/PaginationInfo';
|
|
553
614
|
export type { PaginationMetadata } from './schemas/PaginationMetadata';
|
|
615
|
+
export type { PaginationParams } from './schemas/PaginationParams';
|
|
554
616
|
export type { PaginationRequest } from './schemas/PaginationRequest';
|
|
555
617
|
export type { PrCommitsRequest } from './schemas/PrCommitsRequest';
|
|
556
618
|
export type { PrCommitsResponse } from './schemas/PrCommitsResponse';
|
|
@@ -591,6 +653,7 @@ export type { ReleaseIssueDto } from './schemas/ReleaseIssueDto';
|
|
|
591
653
|
export type { ReleaseIssuesResponseWrapper } from './schemas/ReleaseIssuesResponseWrapper';
|
|
592
654
|
export type { ScmStatsRequest } from './schemas/ScmStatsRequest';
|
|
593
655
|
export type { SectionDto } from './schemas/SectionDto';
|
|
656
|
+
export type { SecurityDrilldownResponseDto } from './schemas/SecurityDrilldownResponseDto';
|
|
594
657
|
export type { SecurityProfileCreateRequestDto } from './schemas/SecurityProfileCreateRequestDto';
|
|
595
658
|
export type { SecurityProfileResponseDto } from './schemas/SecurityProfileResponseDto';
|
|
596
659
|
export type { SortOption } from './schemas/SortOption';
|
|
@@ -634,15 +697,17 @@ export type { TeamInfo } from './schemas/TeamInfo';
|
|
|
634
697
|
export type { TeamInfoUpdateRequestDto } from './schemas/TeamInfoUpdateRequestDto';
|
|
635
698
|
export type { TeamInsightConfigDto } from './schemas/TeamInsightConfigDto';
|
|
636
699
|
export type { TeamIntegrationDto } from './schemas/TeamIntegrationDto';
|
|
700
|
+
export type { TeamPeriodData } from './schemas/TeamPeriodData';
|
|
637
701
|
export type { TeamResponse } from './schemas/TeamResponse';
|
|
638
702
|
export type { TeamSearchParams } from './schemas/TeamSearchParams';
|
|
639
703
|
export type { TeamSummary } from './schemas/TeamSummary';
|
|
640
704
|
export type { TeamsByAccessResponseDto } from './schemas/TeamsByAccessResponseDto';
|
|
705
|
+
export type { ToolSummary } from './schemas/ToolSummary';
|
|
641
706
|
export type { TotalStatisticCount } from './schemas/TotalStatisticCount';
|
|
707
|
+
export type { UserMetrics } from './schemas/UserMetrics';
|
|
708
|
+
export type { ValidationError } from './schemas/ValidationError';
|
|
642
709
|
export type { VersionReleaseRequest } from './schemas/VersionReleaseRequest';
|
|
643
|
-
export type {
|
|
644
|
-
export type { WindsurfDrilldownOptions } from './schemas/WindsurfDrilldownOptions';
|
|
645
|
-
export type { WindsurfDrilldownUserDto } from './schemas/WindsurfDrilldownUserDto';
|
|
710
|
+
export type { VulnerabilityDetail } from './schemas/VulnerabilityDetail';
|
|
646
711
|
export type { WorkCompletedDrilldownResponseDataPoint } from './schemas/WorkCompletedDrilldownResponseDataPoint';
|
|
647
712
|
export type { WorkCompletedDrilldownResponseDataPointV3 } from './schemas/WorkCompletedDrilldownResponseDataPointV3';
|
|
648
713
|
export type { WorkCompletedIndividualDrilldownResponseDataPoint } from './schemas/WorkCompletedIndividualDrilldownResponseDataPoint';
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { aiInsightsControllerGetAdoptionBreakdown, useAiInsightsControllerGetAdoptionBreakdownQuery, } from './hooks/useAiInsightsControllerGetAdoptionBreakdownQuery';
|
|
2
|
+
export { aiInsightsControllerGetAdoptionMetrics, useAiInsightsControllerGetAdoptionMetricsQuery, } from './hooks/useAiInsightsControllerGetAdoptionMetricsQuery';
|
|
3
|
+
export { aiInsightsControllerGetAdoptionSummary, useAiInsightsControllerGetAdoptionSummaryQuery, } from './hooks/useAiInsightsControllerGetAdoptionSummaryQuery';
|
|
2
4
|
export { aiInsightsControllerGetFeatureMetrics, useAiInsightsControllerGetFeatureMetricsQuery, } from './hooks/useAiInsightsControllerGetFeatureMetricsQuery';
|
|
3
|
-
export {
|
|
5
|
+
export { aiInsightsControllerGetRawMetrics, useAiInsightsControllerGetRawMetricsQuery, } from './hooks/useAiInsightsControllerGetRawMetricsQuery';
|
|
6
|
+
export { aiInsightsControllerGetTeamBreakdown, useAiInsightsControllerGetTeamBreakdownQuery, } from './hooks/useAiInsightsControllerGetTeamBreakdownQuery';
|
|
7
|
+
export { aiInsightsControllerGetToolUsersSummary, useAiInsightsControllerGetToolUsersSummaryQuery, } from './hooks/useAiInsightsControllerGetToolUsersSummaryQuery';
|
|
4
8
|
export { aiInsightsControllerGetTopLanguages, useAiInsightsControllerGetTopLanguagesQuery, } from './hooks/useAiInsightsControllerGetTopLanguagesQuery';
|
|
5
9
|
export { aiSummaryControllerGenerateSummary, useAiSummaryControllerGenerateSummaryQuery, } from './hooks/useAiSummaryControllerGenerateSummaryQuery';
|
|
6
10
|
export { asyncExportControllerDownloadExport, useAsyncExportControllerDownloadExportQuery, } from './hooks/useAsyncExportControllerDownloadExportQuery';
|
|
@@ -88,6 +92,7 @@ export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControll
|
|
|
88
92
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
89
93
|
export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
|
|
90
94
|
export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
|
|
95
|
+
export { healthControllerCheckDbHealth, useHealthControllerCheckDbHealthQuery, } from './hooks/useHealthControllerCheckDbHealthQuery';
|
|
91
96
|
export { imFieldsControllerListImFields, useImFieldsControllerListImFieldsQuery, } from './hooks/useImFieldsControllerListImFieldsQuery';
|
|
92
97
|
export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
|
93
98
|
export { integrationControllerListIntegrationConfigs, useIntegrationControllerListIntegrationConfigsQuery, } from './hooks/useIntegrationControllerListIntegrationConfigsQuery';
|
|
@@ -153,6 +158,16 @@ export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerG
|
|
|
153
158
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
154
159
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
155
160
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
161
|
+
export { securityInsightsControllerGetAgedVulnerabilitiesBreakdown, useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesBreakdownQuery';
|
|
162
|
+
export { securityInsightsControllerGetAgedVulnerabilities, useSecurityInsightsControllerGetAgedVulnerabilitiesQuery, } from './hooks/useSecurityInsightsControllerGetAgedVulnerabilitiesQuery';
|
|
163
|
+
export { securityInsightsControllerGetMttrBreakdown, useSecurityInsightsControllerGetMttrBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetMttrBreakdownQuery';
|
|
164
|
+
export { securityInsightsControllerGetMttr, useSecurityInsightsControllerGetMttrQuery, } from './hooks/useSecurityInsightsControllerGetMttrQuery';
|
|
165
|
+
export { securityInsightsControllerGetOpenCloseRateBreakdown, useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetOpenCloseRateBreakdownQuery';
|
|
166
|
+
export { securityInsightsControllerGetOpenCloseRate, useSecurityInsightsControllerGetOpenCloseRateQuery, } from './hooks/useSecurityInsightsControllerGetOpenCloseRateQuery';
|
|
167
|
+
export { securityInsightsControllerGetOpenVulnerabilitiesBreakdown, useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery';
|
|
168
|
+
export { securityInsightsControllerGetSecurityDrilldown, useSecurityInsightsControllerGetSecurityDrilldownQuery, } from './hooks/useSecurityInsightsControllerGetSecurityDrilldownQuery';
|
|
169
|
+
export { securityInsightsControllerGetSecurityFilterValues, useSecurityInsightsControllerGetSecurityFilterValuesQuery, } from './hooks/useSecurityInsightsControllerGetSecurityFilterValuesQuery';
|
|
170
|
+
export { securityInsightsControllerGetTotalOpenVulnerabilities, useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery, } from './hooks/useSecurityInsightsControllerGetTotalOpenVulnerabilitiesQuery';
|
|
156
171
|
export { securityProfileControllerCreateProfile, useSecurityProfileControllerCreateProfileMutation, } from './hooks/useSecurityProfileControllerCreateProfileMutation';
|
|
157
172
|
export { securityProfileControllerDeleteProfile, useSecurityProfileControllerDeleteProfileMutation, } from './hooks/useSecurityProfileControllerDeleteProfileMutation';
|
|
158
173
|
export { securityProfileControllerGetProfile, useSecurityProfileControllerGetProfileQuery, } from './hooks/useSecurityProfileControllerGetProfileQuery';
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adoption metrics for a specific time period
|
|
3
|
+
*/
|
|
4
|
+
export interface AdoptionDataPoint {
|
|
5
|
+
/**
|
|
6
|
+
* Number of active users in this period
|
|
7
|
+
* @format int32
|
|
8
|
+
* @example 42
|
|
9
|
+
*/
|
|
10
|
+
activeUsers?: number;
|
|
11
|
+
/**
|
|
12
|
+
* End date of this data point period
|
|
13
|
+
* @format date-time
|
|
14
|
+
* @example "2025-11-16"
|
|
15
|
+
*/
|
|
16
|
+
endDate?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Number of inactive users (licensed but not active)
|
|
19
|
+
* @format int32
|
|
20
|
+
* @example 8
|
|
21
|
+
*/
|
|
22
|
+
inactiveUsers?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Start date of this data point period
|
|
25
|
+
* @format date-time
|
|
26
|
+
* @example "2025-11-10"
|
|
27
|
+
*/
|
|
28
|
+
startDate?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Number of users not licensed for this integration
|
|
31
|
+
* @format int32
|
|
32
|
+
* @example 15
|
|
33
|
+
*/
|
|
34
|
+
unAssigned?: number;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adoption statistics for a single period
|
|
3
|
+
*/
|
|
4
|
+
export interface AdoptionPeriodData {
|
|
5
|
+
/**
|
|
6
|
+
* Number of active users in this period
|
|
7
|
+
* @format int32
|
|
8
|
+
* @example 42
|
|
9
|
+
*/
|
|
10
|
+
activeUsers?: number;
|
|
11
|
+
/**
|
|
12
|
+
* End date of this period
|
|
13
|
+
* @format date-time
|
|
14
|
+
* @example "2025-11-16"
|
|
15
|
+
*/
|
|
16
|
+
endDate?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Number of inactive licensed users in this period
|
|
19
|
+
* @format int32
|
|
20
|
+
* @example 8
|
|
21
|
+
*/
|
|
22
|
+
inactiveUsers?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Start date of this period
|
|
25
|
+
* @format date-time
|
|
26
|
+
* @example "2025-11-10"
|
|
27
|
+
*/
|
|
28
|
+
startDate?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Number of users without license in this period
|
|
31
|
+
* @format int32
|
|
32
|
+
* @example 15
|
|
33
|
+
*/
|
|
34
|
+
unAssigned?: number;
|
|
35
|
+
}
|
package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesBreakdownItemDto.d.ts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Team breakdown item for aged vulnerabilities with age bucket counts
|
|
3
|
+
*/
|
|
4
|
+
export interface AgedVulnerabilitiesBreakdownItemDto {
|
|
5
|
+
/**
|
|
6
|
+
* Count of vulnerabilities aged 0-30 days
|
|
7
|
+
* @format int32
|
|
8
|
+
* @example 24
|
|
9
|
+
*/
|
|
10
|
+
age0To30Days?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Count of vulnerabilities aged 30-90 days
|
|
13
|
+
* @format int32
|
|
14
|
+
* @example 27
|
|
15
|
+
*/
|
|
16
|
+
age30To90Days?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Count of vulnerabilities aged 90+ days
|
|
19
|
+
* @format int32
|
|
20
|
+
* @example 30
|
|
21
|
+
*/
|
|
22
|
+
age90PlusDays?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Team name
|
|
25
|
+
* @example "Platform Team"
|
|
26
|
+
*/
|
|
27
|
+
teamName?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Team reference ID
|
|
30
|
+
* @format int32
|
|
31
|
+
* @example 123
|
|
32
|
+
*/
|
|
33
|
+
teamRefId?: number;
|
|
34
|
+
/**
|
|
35
|
+
* Total aged vulnerabilities for this team
|
|
36
|
+
* @format int32
|
|
37
|
+
* @example 81
|
|
38
|
+
*/
|
|
39
|
+
total?: number;
|
|
40
|
+
}
|
package/dist/sei-panorama-service/src/services/schemas/AgedVulnerabilitiesBreakdownResponseDto.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { AgedVulnerabilitiesBreakdownItemDto } from '../schemas/AgedVulnerabilitiesBreakdownItemDto';
|
|
2
|
+
/**
|
|
3
|
+
* Breakdown response for aged vulnerabilities grouped by team
|
|
4
|
+
*/
|
|
5
|
+
export interface AgedVulnerabilitiesBreakdownResponseDto {
|
|
6
|
+
/**
|
|
7
|
+
* End date of the period (yyyy-mm-dd)
|
|
8
|
+
* @format date
|
|
9
|
+
* @example "2024-12-30"
|
|
10
|
+
*/
|
|
11
|
+
endDate?: string;
|
|
12
|
+
/**
|
|
13
|
+
* List of teams with their aggregated metrics
|
|
14
|
+
*/
|
|
15
|
+
items?: AgedVulnerabilitiesBreakdownItemDto[];
|
|
16
|
+
/**
|
|
17
|
+
* Metric type
|
|
18
|
+
* @example "agedVulnerabilities"
|
|
19
|
+
*/
|
|
20
|
+
metric?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Start date of the period (yyyy-mm-dd)
|
|
23
|
+
* @format date
|
|
24
|
+
* @example "2024-10-01"
|
|
25
|
+
*/
|
|
26
|
+
startDate?: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Single data point for aged vulnerabilities with age bucket breakdown
|
|
3
|
+
*/
|
|
4
|
+
export interface AgedVulnerabilitiesDataPointDto {
|
|
5
|
+
/**
|
|
6
|
+
* Count of vulnerabilities aged 0-30 days
|
|
7
|
+
* @format int32
|
|
8
|
+
* @example 24
|
|
9
|
+
*/
|
|
10
|
+
age0To30Days?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Count of vulnerabilities aged 30-90 days
|
|
13
|
+
* @format int32
|
|
14
|
+
* @example 27
|
|
15
|
+
*/
|
|
16
|
+
age30To90Days?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Count of vulnerabilities aged 90+ days
|
|
19
|
+
* @format int32
|
|
20
|
+
* @example 30
|
|
21
|
+
*/
|
|
22
|
+
age90PlusDays?: number;
|
|
23
|
+
/**
|
|
24
|
+
* End date of the period (yyyy-mm-dd)
|
|
25
|
+
* @format date
|
|
26
|
+
* @example "2024-10-31"
|
|
27
|
+
*/
|
|
28
|
+
endDate?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Start date of the period (yyyy-mm-dd)
|
|
31
|
+
* @format date
|
|
32
|
+
* @example "2024-10-01"
|
|
33
|
+
*/
|
|
34
|
+
startDate?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Total aged vulnerabilities
|
|
37
|
+
* @format int32
|
|
38
|
+
* @example 81
|
|
39
|
+
*/
|
|
40
|
+
total?: number;
|
|
41
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { AgedVulnerabilitiesDataPointDto } from '../schemas/AgedVulnerabilitiesDataPointDto';
|
|
2
|
+
import type { AgedVulnerabilitiesSummaryDto } from '../schemas/AgedVulnerabilitiesSummaryDto';
|
|
3
|
+
/**
|
|
4
|
+
* Response for aged vulnerabilities metric with age bucket breakdown
|
|
5
|
+
*/
|
|
6
|
+
export interface AgedVulnerabilitiesResponseDto {
|
|
7
|
+
/**
|
|
8
|
+
* Time-series data points with age bucket breakdown (0-30, 30-90, 90+ days)
|
|
9
|
+
*/
|
|
10
|
+
dataPoints?: AgedVulnerabilitiesDataPointDto[];
|
|
11
|
+
/**
|
|
12
|
+
* End date of the period (yyyy-mm-dd)
|
|
13
|
+
* @format date
|
|
14
|
+
* @example "2024-12-30"
|
|
15
|
+
*/
|
|
16
|
+
endDate?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Metric type
|
|
19
|
+
* @example "agedVulnerabilities"
|
|
20
|
+
*/
|
|
21
|
+
metric?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Start date of the period (yyyy-mm-dd)
|
|
24
|
+
* @format date
|
|
25
|
+
* @example "2024-10-01"
|
|
26
|
+
*/
|
|
27
|
+
startDate?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Summary statistics with total and change rate
|
|
30
|
+
*/
|
|
31
|
+
summary?: AgedVulnerabilitiesSummaryDto;
|
|
32
|
+
}
|