@harnessio/react-sei-panorama-service-client 0.25.7 → 0.25.9
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/index.d.ts +1 -1
- 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/AiToolUsersSummaryResponseDto.d.ts +3 -3
- package/dist/sei-panorama-service/src/services/schemas/GroupedTeamFiltersResponseDto.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationRawMetrics.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/IntegrationSummary.d.ts +4 -10
- package/dist/sei-panorama-service/src/services/schemas/IntegrationSummary.js +3 -0
- package/package.json +1 -1
- package/dist/sei-panorama-service/src/services/schemas/PaginationRecord.d.ts +0 -29
- package/dist/sei-panorama-service/src/services/schemas/PaginationRecord.js +0 -4
|
@@ -379,6 +379,7 @@ export type { AiCombinedInsightsRequestDto } from './schemas/AiCombinedInsightsR
|
|
|
379
379
|
export type { AiMetrics } from './schemas/AiMetrics';
|
|
380
380
|
export type { AiRawMetricsRequestDto } from './schemas/AiRawMetricsRequestDto';
|
|
381
381
|
export type { AiRawMetricsResponseDto } from './schemas/AiRawMetricsResponseDto';
|
|
382
|
+
export type { AiSummary } from './schemas/AiSummary';
|
|
382
383
|
export type { AiSummaryRequestDto } from './schemas/AiSummaryRequestDto';
|
|
383
384
|
export type { AiSummaryResponseDto } from './schemas/AiSummaryResponseDto';
|
|
384
385
|
export type { AiTeamBreakdownDataPoint } from './schemas/AiTeamBreakdownDataPoint';
|
|
@@ -570,7 +571,6 @@ export type { PaginatedResponseTeamSummary } from './schemas/PaginatedResponseTe
|
|
|
570
571
|
export type { PaginationInfo } from './schemas/PaginationInfo';
|
|
571
572
|
export type { PaginationMetadata } from './schemas/PaginationMetadata';
|
|
572
573
|
export type { PaginationParams } from './schemas/PaginationParams';
|
|
573
|
-
export type { PaginationRecord } from './schemas/PaginationRecord';
|
|
574
574
|
export type { PaginationRequest } from './schemas/PaginationRequest';
|
|
575
575
|
export type { PrCommitsRequest } from './schemas/PrCommitsRequest';
|
|
576
576
|
export type { PrCommitsResponse } from './schemas/PrCommitsResponse';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { ToolSummary } from '../schemas/ToolSummary';
|
|
2
|
+
/**
|
|
3
|
+
* AI Integration summary containing current and previous period data
|
|
4
|
+
*/
|
|
5
|
+
export interface AiSummary {
|
|
6
|
+
/**
|
|
7
|
+
* Current period tool usage summary
|
|
8
|
+
*/
|
|
9
|
+
currentPeriod?: ToolSummary;
|
|
10
|
+
/**
|
|
11
|
+
* Previous period tool usage summary
|
|
12
|
+
*/
|
|
13
|
+
previousPeriod?: ToolSummary;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AiSummary } from '../schemas/AiSummary';
|
|
2
2
|
/**
|
|
3
3
|
* AI Tool Users Summary with statistics for both Cursor and Windsurf
|
|
4
4
|
*/
|
|
@@ -6,7 +6,7 @@ export interface AiToolUsersSummaryResponseDto {
|
|
|
6
6
|
/**
|
|
7
7
|
* Cursor tool summary with current and previous period data
|
|
8
8
|
*/
|
|
9
|
-
cursor?:
|
|
9
|
+
cursor?: AiSummary;
|
|
10
10
|
/**
|
|
11
11
|
* End date of the current analysis period
|
|
12
12
|
* @format date-time
|
|
@@ -27,5 +27,5 @@ export interface AiToolUsersSummaryResponseDto {
|
|
|
27
27
|
/**
|
|
28
28
|
* Windsurf tool summary with current and previous period data
|
|
29
29
|
*/
|
|
30
|
-
windsurf?:
|
|
30
|
+
windsurf?: AiSummary;
|
|
31
31
|
}
|
|
@@ -9,6 +9,7 @@ export interface GroupedTeamFiltersResponseDto {
|
|
|
9
9
|
insightConfigs?: {
|
|
10
10
|
[key: string]: TeamInsightConfigDto[];
|
|
11
11
|
};
|
|
12
|
+
metricsUsingDeveloperFilters?: Array<'AVG_TIME_TO_FIRST_COMMENT' | 'BA' | 'CFR' | 'CODING_DAYS' | 'DF' | 'LINES_OF_CODE' | 'LTTC' | 'MTTR' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'SPRINT_INSIGHTS' | 'WORK_COMPLETED'>;
|
|
12
13
|
/**
|
|
13
14
|
* @format int32
|
|
14
15
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PaginationInfo } from '../schemas/PaginationInfo';
|
|
2
2
|
import type { UserMetrics } from '../schemas/UserMetrics';
|
|
3
3
|
/**
|
|
4
4
|
* Integration raw metrics with pagination
|
|
@@ -7,7 +7,7 @@ export interface IntegrationRawMetrics {
|
|
|
7
7
|
/**
|
|
8
8
|
* Pagination information
|
|
9
9
|
*/
|
|
10
|
-
pagination?:
|
|
10
|
+
pagination?: PaginationInfo;
|
|
11
11
|
/**
|
|
12
12
|
* List of user metrics
|
|
13
13
|
*/
|
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
import type { ToolSummary } from '../schemas/ToolSummary';
|
|
2
|
-
/**
|
|
3
|
-
* Integration summary containing current and previous period data
|
|
4
|
-
*/
|
|
5
1
|
export interface IntegrationSummary {
|
|
2
|
+
applicationType?: string;
|
|
6
3
|
/**
|
|
7
|
-
*
|
|
4
|
+
* @format int32
|
|
8
5
|
*/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
* Previous period tool usage summary
|
|
12
|
-
*/
|
|
13
|
-
previousPeriod?: ToolSummary;
|
|
6
|
+
integrationId?: number;
|
|
7
|
+
name?: string;
|
|
14
8
|
}
|
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.9",
|
|
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,29 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Pagination information
|
|
3
|
-
*/
|
|
4
|
-
export interface PaginationRecord {
|
|
5
|
-
/**
|
|
6
|
-
* Current page number
|
|
7
|
-
* @format int32
|
|
8
|
-
* @example 0
|
|
9
|
-
*/
|
|
10
|
-
currentPage?: number;
|
|
11
|
-
/**
|
|
12
|
-
* Page size
|
|
13
|
-
* @format int32
|
|
14
|
-
* @example 10
|
|
15
|
-
*/
|
|
16
|
-
pageSize?: number;
|
|
17
|
-
/**
|
|
18
|
-
* Total number of pages
|
|
19
|
-
* @format int32
|
|
20
|
-
* @example 12
|
|
21
|
-
*/
|
|
22
|
-
totalPages?: number;
|
|
23
|
-
/**
|
|
24
|
-
* Total number of records
|
|
25
|
-
* @format int64
|
|
26
|
-
* @example 120
|
|
27
|
-
*/
|
|
28
|
-
totalRecords?: number;
|
|
29
|
-
}
|