@harnessio/react-sei-panorama-service-client 0.25.6 → 0.25.8
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 -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/AiToolUsersSummaryResponseDto.d.ts +3 -3
- 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/dist/sei-panorama-service/src/services/schemas/PaginationInfo.d.ts +4 -14
- package/package.json +1 -1
|
@@ -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';
|
|
@@ -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
|
}
|
|
@@ -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
|
}
|
|
@@ -1,29 +1,19 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Pagination information
|
|
3
|
-
*/
|
|
4
1
|
export interface PaginationInfo {
|
|
5
2
|
/**
|
|
6
|
-
* Current page number
|
|
7
3
|
* @format int32
|
|
8
|
-
* @example 0
|
|
9
4
|
*/
|
|
10
5
|
currentPage?: number;
|
|
6
|
+
hasMore?: boolean;
|
|
11
7
|
/**
|
|
12
|
-
* Page size
|
|
13
8
|
* @format int32
|
|
14
|
-
* @example 10
|
|
15
9
|
*/
|
|
16
10
|
pageSize?: number;
|
|
17
11
|
/**
|
|
18
|
-
*
|
|
19
|
-
* @format int32
|
|
20
|
-
* @example 12
|
|
12
|
+
* @format int64
|
|
21
13
|
*/
|
|
22
|
-
|
|
14
|
+
totalItems?: number;
|
|
23
15
|
/**
|
|
24
|
-
* Total number of records
|
|
25
16
|
* @format int64
|
|
26
|
-
* @example 120
|
|
27
17
|
*/
|
|
28
|
-
|
|
18
|
+
totalPages?: number;
|
|
29
19
|
}
|
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.8",
|
|
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",
|