@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,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Summary statistics for an AI tool
|
|
3
|
+
*/
|
|
4
|
+
export interface ToolSummary {
|
|
5
|
+
/**
|
|
6
|
+
* Acceptance rate percentage (lines accepted / lines suggested * 100)
|
|
7
|
+
* @format double
|
|
8
|
+
* @example 85.5
|
|
9
|
+
*/
|
|
10
|
+
acceptanceRate?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Number of active users in this period
|
|
13
|
+
* @format int32
|
|
14
|
+
* @example 165
|
|
15
|
+
*/
|
|
16
|
+
activeUsers?: number;
|
|
17
|
+
/**
|
|
18
|
+
* End date of this period
|
|
19
|
+
* @format date-time
|
|
20
|
+
* @example "2025-12-10"
|
|
21
|
+
*/
|
|
22
|
+
endDate?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Number of inactive users (licensed but not active)
|
|
25
|
+
* @format int32
|
|
26
|
+
* @example 4
|
|
27
|
+
*/
|
|
28
|
+
inactiveUsers?: number;
|
|
29
|
+
/**
|
|
30
|
+
* Total lines added (accepted) across all team members
|
|
31
|
+
* @format int64
|
|
32
|
+
* @example 12550
|
|
33
|
+
*/
|
|
34
|
+
linesAccepted?: number;
|
|
35
|
+
/**
|
|
36
|
+
* Total lines suggested across all team members
|
|
37
|
+
* @format int64
|
|
38
|
+
* @example 25000
|
|
39
|
+
*/
|
|
40
|
+
linesSuggested?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Start date of this period
|
|
43
|
+
* @format date-time
|
|
44
|
+
* @example "2025-10-10"
|
|
45
|
+
*/
|
|
46
|
+
startDate?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Number of unassigned users (not licensed)
|
|
49
|
+
* @format int32
|
|
50
|
+
* @example 371
|
|
51
|
+
*/
|
|
52
|
+
unAssigned?: number;
|
|
53
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { AiMetrics } from '../schemas/AiMetrics';
|
|
2
|
+
/**
|
|
3
|
+
* User metrics data
|
|
4
|
+
*/
|
|
5
|
+
export interface UserMetrics {
|
|
6
|
+
/**
|
|
7
|
+
* AI metrics data
|
|
8
|
+
*/
|
|
9
|
+
ai?: AiMetrics;
|
|
10
|
+
/**
|
|
11
|
+
* Team name
|
|
12
|
+
* @example "Engineering Team"
|
|
13
|
+
*/
|
|
14
|
+
team?: string;
|
|
15
|
+
/**
|
|
16
|
+
* User email
|
|
17
|
+
* @example "sunil.gattupalle@harness.io"
|
|
18
|
+
*/
|
|
19
|
+
userEmail?: string;
|
|
20
|
+
/**
|
|
21
|
+
* User name
|
|
22
|
+
* @example "sunil gattupalle"
|
|
23
|
+
*/
|
|
24
|
+
userName?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Validation error details
|
|
3
|
+
*/
|
|
4
|
+
export interface ValidationError {
|
|
5
|
+
/**
|
|
6
|
+
* Field name that failed validation
|
|
7
|
+
* @example "integrationType"
|
|
8
|
+
*/
|
|
9
|
+
field?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Validation error message
|
|
12
|
+
* @example "must not be null"
|
|
13
|
+
*/
|
|
14
|
+
message?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The rejected value
|
|
17
|
+
*/
|
|
18
|
+
rejectedValue?: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export interface VulnerabilityDetail {
|
|
2
|
+
/**
|
|
3
|
+
* @format int32
|
|
4
|
+
*/
|
|
5
|
+
ageInDays?: number;
|
|
6
|
+
assetName?: string;
|
|
7
|
+
assetType?: string;
|
|
8
|
+
cloudPlatform?: string;
|
|
9
|
+
cloudRegion?: string;
|
|
10
|
+
cve?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @format double
|
|
13
|
+
*/
|
|
14
|
+
cvssScore?: number;
|
|
15
|
+
/**
|
|
16
|
+
* @format date-time
|
|
17
|
+
*/
|
|
18
|
+
discoveredAt?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @format double
|
|
21
|
+
*/
|
|
22
|
+
epssScore?: number;
|
|
23
|
+
fixedVersion?: string;
|
|
24
|
+
isFixable?: boolean;
|
|
25
|
+
isInternetExposed?: boolean;
|
|
26
|
+
issueId?: string;
|
|
27
|
+
organizationName?: string;
|
|
28
|
+
packageName?: string;
|
|
29
|
+
packageVersion?: string;
|
|
30
|
+
platformType?: 'SNYK' | 'WIZ';
|
|
31
|
+
platformUrl?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @format int32
|
|
34
|
+
*/
|
|
35
|
+
priorityScore?: number;
|
|
36
|
+
projectName?: string;
|
|
37
|
+
remediationAdvice?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @format date-time
|
|
40
|
+
*/
|
|
41
|
+
resolvedAt?: string;
|
|
42
|
+
severity?: 'ALL' | 'CRITICAL' | 'HIGH' | 'INFO' | 'LOW' | 'MEDIUM';
|
|
43
|
+
status?: 'IGNORED' | 'IN_PROGRESS' | 'OPEN' | 'RESOLVED';
|
|
44
|
+
targetFile?: string;
|
|
45
|
+
title?: string;
|
|
46
|
+
url?: string;
|
|
47
|
+
vulnerabilityId?: string;
|
|
48
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.13",
|
|
4
4
|
"description": "Harness React sei panorama service client - SEI Panorama APIs integrated with react hooks for Panorama project",
|
|
5
5
|
"author": "Harness Inc",
|
|
6
6
|
"license": "MIT",
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import type { AiDailyActiveUsersDrilldownResponseDto } from '../schemas/AiDailyActiveUsersDrilldownResponseDto';
|
|
3
|
-
import type { AiDailyActiveUsersDrilldownRequestDto } from '../schemas/AiDailyActiveUsersDrilldownRequestDto';
|
|
4
|
-
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
-
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
-
export interface AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams {
|
|
7
|
-
account: string;
|
|
8
|
-
projectIdentifier: string;
|
|
9
|
-
orgIdentifier: string;
|
|
10
|
-
}
|
|
11
|
-
export type AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody = AiDailyActiveUsersDrilldownRequestDto;
|
|
12
|
-
export type AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse = ResponseWithPagination<AiDailyActiveUsersDrilldownResponseDto>;
|
|
13
|
-
export type AiInsightsControllerGetDailyActiveUsersDrilldownErrorResponse = string;
|
|
14
|
-
export interface AiInsightsControllerGetDailyActiveUsersDrilldownProps extends Omit<FetcherOptions<AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams, AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody>, 'url'> {
|
|
15
|
-
queryParams: AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams;
|
|
16
|
-
body: AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody;
|
|
17
|
-
}
|
|
18
|
-
export declare function aiInsightsControllerGetDailyActiveUsersDrilldown(props: AiInsightsControllerGetDailyActiveUsersDrilldownProps): Promise<AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse>;
|
|
19
|
-
/**
|
|
20
|
-
* Retrieves detailed user-level data for daily active users with pagination and sorting support. Supports both Windsurf and Cursor integrations through tool-specific request options.
|
|
21
|
-
*/
|
|
22
|
-
export declare function useAiInsightsControllerGetDailyActiveUsersDrilldownQuery(props: AiInsightsControllerGetDailyActiveUsersDrilldownProps, options?: Omit<UseQueryOptions<AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse, AiInsightsControllerGetDailyActiveUsersDrilldownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse, string>;
|
|
@@ -1,14 +0,0 @@
|
|
|
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 aiInsightsControllerGetDailyActiveUsersDrilldown(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v2/insights/ai/daily_active_users/drilldown`, method: 'POST' }, props));
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Retrieves detailed user-level data for daily active users with pagination and sorting support. Supports both Windsurf and Cursor integrations through tool-specific request options.
|
|
11
|
-
*/
|
|
12
|
-
export function useAiInsightsControllerGetDailyActiveUsersDrilldownQuery(props, options) {
|
|
13
|
-
return useQuery(['AIInsightsControllerGetDailyActiveUsersDrilldown', props.queryParams, props.body], ({ signal }) => aiInsightsControllerGetDailyActiveUsersDrilldown(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import type { AiTeamAdoptionResponseDto } from '../schemas/AiTeamAdoptionResponseDto';
|
|
3
|
-
import type { AiTeamAdoptionRequestDto } from '../schemas/AiTeamAdoptionRequestDto';
|
|
4
|
-
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
-
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
-
export interface AiInsightsControllerGetTeamAdoptionQueryQueryParams {
|
|
7
|
-
account: string;
|
|
8
|
-
projectIdentifier: string;
|
|
9
|
-
orgIdentifier: string;
|
|
10
|
-
}
|
|
11
|
-
export type AiInsightsControllerGetTeamAdoptionRequestBody = AiTeamAdoptionRequestDto;
|
|
12
|
-
export type AiInsightsControllerGetTeamAdoptionOkResponse = ResponseWithPagination<AiTeamAdoptionResponseDto>;
|
|
13
|
-
export type AiInsightsControllerGetTeamAdoptionErrorResponse = string;
|
|
14
|
-
export interface AiInsightsControllerGetTeamAdoptionProps extends Omit<FetcherOptions<AiInsightsControllerGetTeamAdoptionQueryQueryParams, AiInsightsControllerGetTeamAdoptionRequestBody>, 'url'> {
|
|
15
|
-
queryParams: AiInsightsControllerGetTeamAdoptionQueryQueryParams;
|
|
16
|
-
body: AiInsightsControllerGetTeamAdoptionRequestBody;
|
|
17
|
-
}
|
|
18
|
-
export declare function aiInsightsControllerGetTeamAdoption(props: AiInsightsControllerGetTeamAdoptionProps): Promise<AiInsightsControllerGetTeamAdoptionOkResponse>;
|
|
19
|
-
/**
|
|
20
|
-
* Retrieves team member adoption data with user details in table format. Supports pagination and sorting.
|
|
21
|
-
*/
|
|
22
|
-
export declare function useAiInsightsControllerGetTeamAdoptionQuery(props: AiInsightsControllerGetTeamAdoptionProps, options?: Omit<UseQueryOptions<AiInsightsControllerGetTeamAdoptionOkResponse, AiInsightsControllerGetTeamAdoptionErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiInsightsControllerGetTeamAdoptionOkResponse, string>;
|
package/dist/sei-panorama-service/src/services/hooks/useAiInsightsControllerGetTeamAdoptionQuery.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
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 aiInsightsControllerGetTeamAdoption(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v2/insights/ai/team_adoption`, method: 'POST' }, props));
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Retrieves team member adoption data with user details in table format. Supports pagination and sorting.
|
|
11
|
-
*/
|
|
12
|
-
export function useAiInsightsControllerGetTeamAdoptionQuery(props, options) {
|
|
13
|
-
return useQuery(['AIInsightsControllerGetTeamAdoption', props.queryParams, props.body], ({ signal }) => aiInsightsControllerGetTeamAdoption(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
-
}
|
package/dist/sei-panorama-service/src/services/schemas/AiDailyActiveUsersDrilldownRequestDto.d.ts
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { CursorDrilldownOptions } from '../schemas/CursorDrilldownOptions';
|
|
2
|
-
import type { PaginationRequest } from '../schemas/PaginationRequest';
|
|
3
|
-
import type { WindsurfDrilldownOptions } from '../schemas/WindsurfDrilldownOptions';
|
|
4
|
-
export interface AiDailyActiveUsersDrilldownRequestDto {
|
|
5
|
-
/**
|
|
6
|
-
* Cursor-specific sorting and filtering options
|
|
7
|
-
*/
|
|
8
|
-
cursor?: CursorDrilldownOptions;
|
|
9
|
-
/**
|
|
10
|
-
* End date for the metrics
|
|
11
|
-
* @format date-time
|
|
12
|
-
* @example "2025-11-30"
|
|
13
|
-
*/
|
|
14
|
-
endDate: string;
|
|
15
|
-
/**
|
|
16
|
-
* Pagination parameters
|
|
17
|
-
*/
|
|
18
|
-
pagination?: PaginationRequest;
|
|
19
|
-
/**
|
|
20
|
-
* Start date for the metrics
|
|
21
|
-
* @format date-time
|
|
22
|
-
* @example "2025-11-01"
|
|
23
|
-
*/
|
|
24
|
-
startDate: string;
|
|
25
|
-
/**
|
|
26
|
-
* Team reference ID
|
|
27
|
-
* @format int32
|
|
28
|
-
*/
|
|
29
|
-
teamRefId: number;
|
|
30
|
-
/**
|
|
31
|
-
* Windsurf-specific sorting and filtering options
|
|
32
|
-
*/
|
|
33
|
-
windsurf?: WindsurfDrilldownOptions;
|
|
34
|
-
}
|
package/dist/sei-panorama-service/src/services/schemas/AiDailyActiveUsersDrilldownResponseDto.d.ts
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import type { CursorDrilldownDataDto } from '../schemas/CursorDrilldownDataDto';
|
|
2
|
-
import type { WindsurfDrilldownDataDto } from '../schemas/WindsurfDrilldownDataDto';
|
|
3
|
-
export interface AiDailyActiveUsersDrilldownResponseDto {
|
|
4
|
-
/**
|
|
5
|
-
* Current page number (0-based)
|
|
6
|
-
* @format int32
|
|
7
|
-
* @example 0
|
|
8
|
-
*/
|
|
9
|
-
currentPage?: number;
|
|
10
|
-
/**
|
|
11
|
-
* Cursor-specific drilldown data (only present when integrationType='cursor')
|
|
12
|
-
*/
|
|
13
|
-
cursorData?: CursorDrilldownDataDto;
|
|
14
|
-
/**
|
|
15
|
-
* End date of the period
|
|
16
|
-
* @format date-time
|
|
17
|
-
* @example "2025-11-30"
|
|
18
|
-
*/
|
|
19
|
-
endDate?: string;
|
|
20
|
-
/**
|
|
21
|
-
* Whether there are more pages available
|
|
22
|
-
* @example true
|
|
23
|
-
*/
|
|
24
|
-
hasMore?: boolean;
|
|
25
|
-
/**
|
|
26
|
-
* Integration type identifier (windsurf or cursor)
|
|
27
|
-
* @example "windsurf"
|
|
28
|
-
*/
|
|
29
|
-
integrationType?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Number of items per page
|
|
32
|
-
* @format int32
|
|
33
|
-
* @example 20
|
|
34
|
-
*/
|
|
35
|
-
pageSize?: number;
|
|
36
|
-
/**
|
|
37
|
-
* Start date of the period
|
|
38
|
-
* @format date-time
|
|
39
|
-
* @example "2025-11-01"
|
|
40
|
-
*/
|
|
41
|
-
startDate?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Total number of pages
|
|
44
|
-
* @format int32
|
|
45
|
-
* @example 5
|
|
46
|
-
*/
|
|
47
|
-
totalPages?: number;
|
|
48
|
-
/**
|
|
49
|
-
* Total number of records across all pages
|
|
50
|
-
* @format int32
|
|
51
|
-
* @example 85
|
|
52
|
-
*/
|
|
53
|
-
totalRecords?: number;
|
|
54
|
-
/**
|
|
55
|
-
* Windsurf-specific drilldown data (only present when integrationType='windsurf')
|
|
56
|
-
*/
|
|
57
|
-
windsurfData?: WindsurfDrilldownDataDto;
|
|
58
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { AiFeatureDataPoint } from '../schemas/AiFeatureDataPoint';
|
|
2
|
-
export interface AiFeatureDataResponseDto {
|
|
3
|
-
currentPeriodData?: AiFeatureDataPoint[];
|
|
4
|
-
/**
|
|
5
|
-
* @format double
|
|
6
|
-
*/
|
|
7
|
-
currentPeriodTotal?: number;
|
|
8
|
-
/**
|
|
9
|
-
* @format date-time
|
|
10
|
-
*/
|
|
11
|
-
endDate?: string;
|
|
12
|
-
metricType?: 'acceptanceRate' | 'addedVsDeletedLinesRatio' | 'aiShareOfNewCode' | 'dailyActiveUsers' | 'linesAccepted' | 'linesSuggested' | 'netLinesAddedPerContributor' | 'tokensUsedPer1kLinesOfCodeEdits';
|
|
13
|
-
previousPeriodData?: AiFeatureDataPoint[];
|
|
14
|
-
/**
|
|
15
|
-
* @format double
|
|
16
|
-
*/
|
|
17
|
-
previousPeriodTotal?: number;
|
|
18
|
-
/**
|
|
19
|
-
* @format date-time
|
|
20
|
-
*/
|
|
21
|
-
startDate?: string;
|
|
22
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface AiInsightsRequestDto {
|
|
2
|
-
/**
|
|
3
|
-
* @format date-time
|
|
4
|
-
*/
|
|
5
|
-
endDate?: string;
|
|
6
|
-
granularity?: string;
|
|
7
|
-
integrationType?: 'cursor' | 'windsurf';
|
|
8
|
-
metricType?: 'acceptanceRate' | 'addedVsDeletedLinesRatio' | 'aiShareOfNewCode' | 'dailyActiveUsers' | 'linesAccepted' | 'linesSuggested' | 'netLinesAddedPerContributor' | 'tokensUsedPer1kLinesOfCodeEdits';
|
|
9
|
-
/**
|
|
10
|
-
* @format date-time
|
|
11
|
-
*/
|
|
12
|
-
startDate?: string;
|
|
13
|
-
/**
|
|
14
|
-
* @format int32
|
|
15
|
-
*/
|
|
16
|
-
teamRefId?: number;
|
|
17
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { PaginationRequest } from '../schemas/PaginationRequest';
|
|
2
|
-
export interface AiTeamAdoptionRequestDto {
|
|
3
|
-
/**
|
|
4
|
-
* End date for the metrics
|
|
5
|
-
* @format date-time
|
|
6
|
-
*/
|
|
7
|
-
endDate: string;
|
|
8
|
-
/**
|
|
9
|
-
* Integration type (cursor/windsurf)
|
|
10
|
-
*/
|
|
11
|
-
integrationType?: 'cursor' | 'windsurf';
|
|
12
|
-
/**
|
|
13
|
-
* Pagination parameters
|
|
14
|
-
*/
|
|
15
|
-
pagination?: PaginationRequest;
|
|
16
|
-
/**
|
|
17
|
-
* Column to sort by
|
|
18
|
-
*/
|
|
19
|
-
sortBy?: 'email' | 'line_accept_percent' | 'lines_accepted' | 'lines_suggested' | 'primary_language' | 'rank' | 'total_accepts' | 'username';
|
|
20
|
-
/**
|
|
21
|
-
* Sort order (ASC/DESC)
|
|
22
|
-
*/
|
|
23
|
-
sortByCriteria?: 'ASC' | 'DESC';
|
|
24
|
-
/**
|
|
25
|
-
* Start date for the metrics
|
|
26
|
-
* @format date-time
|
|
27
|
-
*/
|
|
28
|
-
startDate: string;
|
|
29
|
-
/**
|
|
30
|
-
* Team reference ID
|
|
31
|
-
* @format int32
|
|
32
|
-
*/
|
|
33
|
-
teamRefId: number;
|
|
34
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import type { AiTeamAdoptionUserDto } from '../schemas/AiTeamAdoptionUserDto';
|
|
2
|
-
export interface AiTeamAdoptionResponseDto {
|
|
3
|
-
/**
|
|
4
|
-
* @format int32
|
|
5
|
-
*/
|
|
6
|
-
currentPage?: number;
|
|
7
|
-
/**
|
|
8
|
-
* @format date-time
|
|
9
|
-
*/
|
|
10
|
-
endDate?: string;
|
|
11
|
-
hasMore?: boolean;
|
|
12
|
-
/**
|
|
13
|
-
* @format int32
|
|
14
|
-
*/
|
|
15
|
-
pageSize?: number;
|
|
16
|
-
sortBy?: 'email' | 'line_accept_percent' | 'lines_accepted' | 'lines_suggested' | 'primary_language' | 'rank' | 'total_accepts' | 'username';
|
|
17
|
-
sortByCriteria?: 'ASC' | 'DESC';
|
|
18
|
-
/**
|
|
19
|
-
* @format date-time
|
|
20
|
-
*/
|
|
21
|
-
startDate?: string;
|
|
22
|
-
/**
|
|
23
|
-
* @format double
|
|
24
|
-
*/
|
|
25
|
-
teamAdoptionPercentage?: number;
|
|
26
|
-
/**
|
|
27
|
-
* @format int32
|
|
28
|
-
*/
|
|
29
|
-
totalPages?: number;
|
|
30
|
-
/**
|
|
31
|
-
* @format int32
|
|
32
|
-
*/
|
|
33
|
-
totalUsers?: number;
|
|
34
|
-
users?: AiTeamAdoptionUserDto[];
|
|
35
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export interface AiTeamAdoptionUserDto {
|
|
2
|
-
/**
|
|
3
|
-
* @format double
|
|
4
|
-
*/
|
|
5
|
-
acceptPercent?: number;
|
|
6
|
-
/**
|
|
7
|
-
* @format double
|
|
8
|
-
*/
|
|
9
|
-
lineAcceptPercent?: number;
|
|
10
|
-
/**
|
|
11
|
-
* @format int64
|
|
12
|
-
*/
|
|
13
|
-
linesAccepted?: number;
|
|
14
|
-
/**
|
|
15
|
-
* @format int64
|
|
16
|
-
*/
|
|
17
|
-
linesSuggested?: number;
|
|
18
|
-
primaryLanguage?: string;
|
|
19
|
-
/**
|
|
20
|
-
* @format int32
|
|
21
|
-
*/
|
|
22
|
-
rank?: number;
|
|
23
|
-
/**
|
|
24
|
-
* @format int64
|
|
25
|
-
*/
|
|
26
|
-
totalAccepts?: number;
|
|
27
|
-
trend?: string;
|
|
28
|
-
userEmail?: string;
|
|
29
|
-
username?: string;
|
|
30
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import type { CursorDrilldownUserDto } from '../schemas/CursorDrilldownUserDto';
|
|
2
|
-
export interface CursorDrilldownDataDto {
|
|
3
|
-
/**
|
|
4
|
-
* Column used for sorting
|
|
5
|
-
* @example "TOTAL_ACCEPTS"
|
|
6
|
-
*/
|
|
7
|
-
sortBy?: 'email' | 'line_accept_percent' | 'lines_accepted' | 'lines_suggested' | 'primary_language' | 'rank' | 'total_accepts' | 'username';
|
|
8
|
-
/**
|
|
9
|
-
* Sort order (ASC/DESC)
|
|
10
|
-
* @example "DESC"
|
|
11
|
-
*/
|
|
12
|
-
sortByCriteria?: 'ASC' | 'DESC';
|
|
13
|
-
/**
|
|
14
|
-
* Total number of active users
|
|
15
|
-
* @format int32
|
|
16
|
-
*/
|
|
17
|
-
totalActiveUsers?: number;
|
|
18
|
-
/**
|
|
19
|
-
* Total number of users in the team
|
|
20
|
-
* @format int32
|
|
21
|
-
*/
|
|
22
|
-
totalUsers?: number;
|
|
23
|
-
/**
|
|
24
|
-
* List of users with their metrics
|
|
25
|
-
*/
|
|
26
|
-
users?: CursorDrilldownUserDto[];
|
|
27
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export interface CursorDrilldownOptions {
|
|
2
|
-
/**
|
|
3
|
-
* Column to sort by (case-insensitive)
|
|
4
|
-
* @example "total_accepts"
|
|
5
|
-
*/
|
|
6
|
-
sortBy?: 'email' | 'line_accept_percent' | 'lines_accepted' | 'lines_suggested' | 'primary_language' | 'rank' | 'total_accepts' | 'username';
|
|
7
|
-
/**
|
|
8
|
-
* Sort order (ASC/DESC, case-insensitive)
|
|
9
|
-
* @example "DESC"
|
|
10
|
-
*/
|
|
11
|
-
sortByCriteria?: 'ASC' | 'DESC';
|
|
12
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
export interface CursorDrilldownUserDto {
|
|
2
|
-
/**
|
|
3
|
-
* Acceptance rate percentage
|
|
4
|
-
* @format double
|
|
5
|
-
* @example 75
|
|
6
|
-
*/
|
|
7
|
-
acceptanceRate?: number;
|
|
8
|
-
/**
|
|
9
|
-
* Last active date
|
|
10
|
-
* @format date-time
|
|
11
|
-
*/
|
|
12
|
-
lastActiveDate?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Primary programming language
|
|
15
|
-
* @example "Java"
|
|
16
|
-
*/
|
|
17
|
-
primaryLanguage?: string;
|
|
18
|
-
/**
|
|
19
|
-
* User's rank
|
|
20
|
-
* @format int32
|
|
21
|
-
* @example 1
|
|
22
|
-
*/
|
|
23
|
-
rank?: number;
|
|
24
|
-
/**
|
|
25
|
-
* Total accepts
|
|
26
|
-
* @format int64
|
|
27
|
-
* @example 150
|
|
28
|
-
*/
|
|
29
|
-
totalAccepts?: number;
|
|
30
|
-
/**
|
|
31
|
-
* Total number of active days
|
|
32
|
-
* @format int64
|
|
33
|
-
* @example 20
|
|
34
|
-
*/
|
|
35
|
-
totalActiveDays?: number;
|
|
36
|
-
/**
|
|
37
|
-
* Total suggestions
|
|
38
|
-
* @format int64
|
|
39
|
-
* @example 200
|
|
40
|
-
*/
|
|
41
|
-
totalSuggestions?: number;
|
|
42
|
-
/**
|
|
43
|
-
* User email
|
|
44
|
-
* @example "john.doe@example.com"
|
|
45
|
-
*/
|
|
46
|
-
userEmail?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Username
|
|
49
|
-
* @example "john.doe"
|
|
50
|
-
*/
|
|
51
|
-
username?: string;
|
|
52
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { WindsurfDrilldownUserDto } from '../schemas/WindsurfDrilldownUserDto';
|
|
2
|
-
export interface WindsurfDrilldownDataDto {
|
|
3
|
-
/**
|
|
4
|
-
* Column used for sorting
|
|
5
|
-
* @example "user_name"
|
|
6
|
-
*/
|
|
7
|
-
sortBy?: string;
|
|
8
|
-
/**
|
|
9
|
-
* Sort order (ASC/DESC)
|
|
10
|
-
* @example "ASC"
|
|
11
|
-
*/
|
|
12
|
-
sortByCriteria?: string;
|
|
13
|
-
/**
|
|
14
|
-
* List of users with their metrics
|
|
15
|
-
*/
|
|
16
|
-
users?: WindsurfDrilldownUserDto[];
|
|
17
|
-
}
|