@harnessio/react-sei-panorama-service-client 0.31.5 → 0.31.6
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/useAiEngineeringControllerGetMonitoringInstallationsQuery.d.ts +71 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/index.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngInstallation.d.ts +29 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngInstallation.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngInstallationsResponse.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngInstallationsResponse.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { AiEngInstallationsResponse } from '../schemas/AiEngInstallationsResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams {
|
|
6
|
+
search?: string;
|
|
7
|
+
sort?: string;
|
|
8
|
+
order?: string;
|
|
9
|
+
/**
|
|
10
|
+
* @format int32
|
|
11
|
+
*/
|
|
12
|
+
limit?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @format int32
|
|
15
|
+
*/
|
|
16
|
+
offset?: number;
|
|
17
|
+
/**
|
|
18
|
+
* @example "default"
|
|
19
|
+
*/
|
|
20
|
+
orgIdentifier?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example "sei"
|
|
23
|
+
*/
|
|
24
|
+
projectIdentifier?: string;
|
|
25
|
+
/**
|
|
26
|
+
* @example "kmpySmUISimoRrJL6NL73w"
|
|
27
|
+
*/
|
|
28
|
+
routingId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* @example "2026-01-01"
|
|
31
|
+
*/
|
|
32
|
+
start_date: string;
|
|
33
|
+
/**
|
|
34
|
+
* @example "2026-05-04"
|
|
35
|
+
*/
|
|
36
|
+
end_date: string;
|
|
37
|
+
/**
|
|
38
|
+
* @example "WEEKLY"
|
|
39
|
+
*/
|
|
40
|
+
granularity?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @example "1"
|
|
43
|
+
*/
|
|
44
|
+
orgTreeId?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @example "team-123"
|
|
47
|
+
*/
|
|
48
|
+
teamRefId?: string;
|
|
49
|
+
/**
|
|
50
|
+
* @example "claude-code"
|
|
51
|
+
*/
|
|
52
|
+
assistant?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @example "java"
|
|
55
|
+
*/
|
|
56
|
+
language?: string;
|
|
57
|
+
/**
|
|
58
|
+
* @example "senior_engineer"
|
|
59
|
+
*/
|
|
60
|
+
role?: string;
|
|
61
|
+
}
|
|
62
|
+
export type AiEngineeringControllerGetMonitoringInstallationsOkResponse = ResponseWithPagination<AiEngInstallationsResponse>;
|
|
63
|
+
export type AiEngineeringControllerGetMonitoringInstallationsErrorResponse = unknown;
|
|
64
|
+
export interface AiEngineeringControllerGetMonitoringInstallationsProps extends Omit<FetcherOptions<AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams, unknown>, 'url'> {
|
|
65
|
+
queryParams: AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams;
|
|
66
|
+
}
|
|
67
|
+
export declare function aiEngineeringControllerGetMonitoringInstallations(props: AiEngineeringControllerGetMonitoringInstallationsProps): Promise<AiEngineeringControllerGetMonitoringInstallationsOkResponse>;
|
|
68
|
+
/**
|
|
69
|
+
* Get AI agent installations per developer with session activity
|
|
70
|
+
*/
|
|
71
|
+
export declare function useAiEngineeringControllerGetMonitoringInstallationsQuery(props: AiEngineeringControllerGetMonitoringInstallationsProps, options?: Omit<UseQueryOptions<AiEngineeringControllerGetMonitoringInstallationsOkResponse, AiEngineeringControllerGetMonitoringInstallationsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiEngineeringControllerGetMonitoringInstallationsOkResponse, unknown>;
|
|
@@ -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 aiEngineeringControllerGetMonitoringInstallations(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/ai-engineering/monitoring/installations`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get AI agent installations per developer with session activity
|
|
11
|
+
*/
|
|
12
|
+
export function useAiEngineeringControllerGetMonitoringInstallationsQuery(props, options) {
|
|
13
|
+
return useQuery(['AiEngineeringControllerGetMonitoringInstallations', props.queryParams], ({ signal }) => aiEngineeringControllerGetMonitoringInstallations(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -7,7 +7,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export type DeveloperControllerUpsertDeveloperIdentitiesRequestBody = DeveloperIdentity[];
|
|
9
9
|
export type DeveloperControllerUpsertDeveloperIdentitiesOkResponse = ResponseWithPagination<DeveloperIdentityUpsertResponse>;
|
|
10
|
-
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse =
|
|
10
|
+
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
|
|
11
11
|
export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
|
|
12
12
|
body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
|
|
13
13
|
}
|
|
@@ -31,6 +31,8 @@ export type { AiEngineeringControllerGetMetricsSummaryErrorResponse, AiEngineeri
|
|
|
31
31
|
export { aiEngineeringControllerGetMetricsSummary, useAiEngineeringControllerGetMetricsSummaryQuery, } from './hooks/useAiEngineeringControllerGetMetricsSummaryQuery';
|
|
32
32
|
export type { AiEngineeringControllerGetModelsCatalogErrorResponse, AiEngineeringControllerGetModelsCatalogOkResponse, AiEngineeringControllerGetModelsCatalogProps, AiEngineeringControllerGetModelsCatalogQueryQueryParams, } from './hooks/useAiEngineeringControllerGetModelsCatalogQuery';
|
|
33
33
|
export { aiEngineeringControllerGetModelsCatalog, useAiEngineeringControllerGetModelsCatalogQuery, } from './hooks/useAiEngineeringControllerGetModelsCatalogQuery';
|
|
34
|
+
export type { AiEngineeringControllerGetMonitoringInstallationsErrorResponse, AiEngineeringControllerGetMonitoringInstallationsOkResponse, AiEngineeringControllerGetMonitoringInstallationsProps, AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
|
|
35
|
+
export { aiEngineeringControllerGetMonitoringInstallations, useAiEngineeringControllerGetMonitoringInstallationsQuery, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
|
|
34
36
|
export type { AiEngineeringControllerGetOptimizationByIdErrorResponse, AiEngineeringControllerGetOptimizationByIdOkResponse, AiEngineeringControllerGetOptimizationByIdProps, AiEngineeringControllerGetOptimizationByIdQueryPathParams, AiEngineeringControllerGetOptimizationByIdQueryQueryParams, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
|
|
35
37
|
export { aiEngineeringControllerGetOptimizationById, useAiEngineeringControllerGetOptimizationByIdQuery, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
|
|
36
38
|
export type { AiEngineeringControllerGetProductivityBreakdownErrorResponse, AiEngineeringControllerGetProductivityBreakdownOkResponse, AiEngineeringControllerGetProductivityBreakdownProps, AiEngineeringControllerGetProductivityBreakdownQueryPathParams, AiEngineeringControllerGetProductivityBreakdownQueryQueryParams, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
|
|
@@ -671,6 +673,8 @@ export type { AiCodeLifecycleData } from './schemas/AiCodeLifecycleData';
|
|
|
671
673
|
export type { AiCodeLifecycleStage } from './schemas/AiCodeLifecycleStage';
|
|
672
674
|
export type { AiCodeLifecycleToolEntry } from './schemas/AiCodeLifecycleToolEntry';
|
|
673
675
|
export type { AiCombinedInsightsRequestDto } from './schemas/AiCombinedInsightsRequestDto';
|
|
676
|
+
export type { AiEngInstallation } from './schemas/AiEngInstallation';
|
|
677
|
+
export type { AiEngInstallationsResponse } from './schemas/AiEngInstallationsResponse';
|
|
674
678
|
export type { AiEngineeringImpactBreakdownData } from './schemas/AiEngineeringImpactBreakdownData';
|
|
675
679
|
export type { AiEngineeringImpactBreakdownItem } from './schemas/AiEngineeringImpactBreakdownItem';
|
|
676
680
|
export type { AiEngineeringImpactSummaryData } from './schemas/AiEngineeringImpactSummaryData';
|
|
@@ -14,6 +14,7 @@ export { aiEngineeringControllerGetMetricsOverview, useAiEngineeringControllerGe
|
|
|
14
14
|
export { aiEngineeringControllerGetMetrics, useAiEngineeringControllerGetMetricsQuery, } from './hooks/useAiEngineeringControllerGetMetricsQuery';
|
|
15
15
|
export { aiEngineeringControllerGetMetricsSummary, useAiEngineeringControllerGetMetricsSummaryQuery, } from './hooks/useAiEngineeringControllerGetMetricsSummaryQuery';
|
|
16
16
|
export { aiEngineeringControllerGetModelsCatalog, useAiEngineeringControllerGetModelsCatalogQuery, } from './hooks/useAiEngineeringControllerGetModelsCatalogQuery';
|
|
17
|
+
export { aiEngineeringControllerGetMonitoringInstallations, useAiEngineeringControllerGetMonitoringInstallationsQuery, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
|
|
17
18
|
export { aiEngineeringControllerGetOptimizationById, useAiEngineeringControllerGetOptimizationByIdQuery, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
|
|
18
19
|
export { aiEngineeringControllerGetProductivityBreakdown, useAiEngineeringControllerGetProductivityBreakdownQuery, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
|
|
19
20
|
export { aiEngineeringControllerGetProductivitySummary, useAiEngineeringControllerGetProductivitySummaryQuery, } from './hooks/useAiEngineeringControllerGetProductivitySummaryQuery';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export interface AiEngInstallation {
|
|
2
|
+
/**
|
|
3
|
+
* First time the agent was installed
|
|
4
|
+
* @format date-time
|
|
5
|
+
*/
|
|
6
|
+
firstInstallTime?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Most recent install or upgrade time
|
|
9
|
+
* @format date-time
|
|
10
|
+
*/
|
|
11
|
+
lastInstallTime?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Most recent session date (null if no session activity)
|
|
14
|
+
* @format date
|
|
15
|
+
*/
|
|
16
|
+
lastSessionDate?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Developer email
|
|
19
|
+
*/
|
|
20
|
+
userEmail?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Developer name
|
|
23
|
+
*/
|
|
24
|
+
userName?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Latest installed agent version
|
|
27
|
+
*/
|
|
28
|
+
version?: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { AiEngInstallation } from '../schemas/AiEngInstallation';
|
|
2
|
+
export interface AiEngInstallationsResponse {
|
|
3
|
+
/**
|
|
4
|
+
* Total installations matching the search filter (used for pagination)
|
|
5
|
+
* @format int64
|
|
6
|
+
*/
|
|
7
|
+
count?: number;
|
|
8
|
+
/**
|
|
9
|
+
* Installations for the requested page
|
|
10
|
+
*/
|
|
11
|
+
installations?: AiEngInstallation[];
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.6",
|
|
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",
|