@harnessio/react-sei-panorama-service-client 0.31.13 → 0.31.14
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/useAiEngineeringControllerGetWorkItemLinkedPrsQuery.d.ts +3 -3
- package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetWorkItemLinkedPrsQuery.js +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +6 -1
- package/dist/sei-panorama-service/src/services/schemas/AiImpactExplainability.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/schemas/{ApiResponseListWorkItemLinkedPrDto.d.ts → ApiResponseWorkItemLinkedPrsResponse.d.ts} +3 -3
- package/dist/sei-panorama-service/src/services/schemas/ApiResponseWorkItemLinkedPrsResponse.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/DrilldownData.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/DrilldownDataV3.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/EntityDto.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/EntityRequestDto.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/IndividualDrilldownData.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/IndividualDrilldownDataV3.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/PrCostEntry.d.ts +11 -0
- package/dist/sei-panorama-service/src/services/schemas/PrCostEntry.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/PrRef.d.ts +7 -0
- package/dist/sei-panorama-service/src/services/schemas/PrRef.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/SharedCommitEntry.d.ts +9 -0
- package/dist/sei-panorama-service/src/services/schemas/SharedCommitEntry.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/WorkItemLinkedPrsResponse.d.ts +11 -0
- package/dist/sei-panorama-service/src/services/schemas/WorkItemLinkedPrsResponse.js +1 -0
- package/package.json +1 -1
- /package/dist/sei-panorama-service/src/services/schemas/{ApiResponseListWorkItemLinkedPrDto.js → AiImpactExplainability.js} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ApiResponseWorkItemLinkedPrsResponse } from '../schemas/ApiResponseWorkItemLinkedPrsResponse';
|
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface AiEngineeringControllerGetWorkItemLinkedPrsQueryPathParams {
|
|
@@ -47,13 +47,13 @@ export interface AiEngineeringControllerGetWorkItemLinkedPrsQueryQueryParams {
|
|
|
47
47
|
*/
|
|
48
48
|
role?: string;
|
|
49
49
|
}
|
|
50
|
-
export type AiEngineeringControllerGetWorkItemLinkedPrsOkResponse = ResponseWithPagination<
|
|
50
|
+
export type AiEngineeringControllerGetWorkItemLinkedPrsOkResponse = ResponseWithPagination<ApiResponseWorkItemLinkedPrsResponse>;
|
|
51
51
|
export type AiEngineeringControllerGetWorkItemLinkedPrsErrorResponse = unknown;
|
|
52
52
|
export interface AiEngineeringControllerGetWorkItemLinkedPrsProps extends AiEngineeringControllerGetWorkItemLinkedPrsQueryPathParams, Omit<FetcherOptions<AiEngineeringControllerGetWorkItemLinkedPrsQueryQueryParams, unknown>, 'url'> {
|
|
53
53
|
queryParams: AiEngineeringControllerGetWorkItemLinkedPrsQueryQueryParams;
|
|
54
54
|
}
|
|
55
55
|
export declare function aiEngineeringControllerGetWorkItemLinkedPrs(props: AiEngineeringControllerGetWorkItemLinkedPrsProps): Promise<AiEngineeringControllerGetWorkItemLinkedPrsOkResponse>;
|
|
56
56
|
/**
|
|
57
|
-
* Get PRs linked to a work item with
|
|
57
|
+
* Get PRs linked to a work item with cost attribution and explainability
|
|
58
58
|
*/
|
|
59
59
|
export declare function useAiEngineeringControllerGetWorkItemLinkedPrsQuery(props: AiEngineeringControllerGetWorkItemLinkedPrsProps, options?: Omit<UseQueryOptions<AiEngineeringControllerGetWorkItemLinkedPrsOkResponse, AiEngineeringControllerGetWorkItemLinkedPrsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiEngineeringControllerGetWorkItemLinkedPrsOkResponse, unknown>;
|
|
@@ -7,7 +7,7 @@ export function aiEngineeringControllerGetWorkItemLinkedPrs(props) {
|
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/ai-engineering/insights/impact/work-items/${props.workItemId}/pull-requests`, method: 'GET' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Get PRs linked to a work item with
|
|
10
|
+
* Get PRs linked to a work item with cost attribution and explainability
|
|
11
11
|
*/
|
|
12
12
|
export function useAiEngineeringControllerGetWorkItemLinkedPrsQuery(props, options) {
|
|
13
13
|
return useQuery(['AiEngineeringControllerGetWorkItemLinkedPrs', props.workItemId, props.queryParams], ({ signal }) => aiEngineeringControllerGetWorkItemLinkedPrs(Object.assign(Object.assign({}, props), { signal })), options);
|
|
@@ -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
|
}
|
|
@@ -695,6 +695,7 @@ export type { AiEngineeringImpactBreakdownData } from './schemas/AiEngineeringIm
|
|
|
695
695
|
export type { AiEngineeringImpactBreakdownItem } from './schemas/AiEngineeringImpactBreakdownItem';
|
|
696
696
|
export type { AiEngineeringImpactDrilldownResponseObject } from './schemas/AiEngineeringImpactDrilldownResponseObject';
|
|
697
697
|
export type { AiEngineeringImpactSummaryData } from './schemas/AiEngineeringImpactSummaryData';
|
|
698
|
+
export type { AiImpactExplainability } from './schemas/AiImpactExplainability';
|
|
698
699
|
export type { AiMetrics } from './schemas/AiMetrics';
|
|
699
700
|
export type { AiRawMetricsRequestDto } from './schemas/AiRawMetricsRequestDto';
|
|
700
701
|
export type { AiRawMetricsResponseDto } from './schemas/AiRawMetricsResponseDto';
|
|
@@ -724,13 +725,13 @@ export type { ApiResponseCorrelationData } from './schemas/ApiResponseCorrelatio
|
|
|
724
725
|
export type { ApiResponseEntityListData } from './schemas/ApiResponseEntityListData';
|
|
725
726
|
export type { ApiResponseEntityListTemplate } from './schemas/ApiResponseEntityListTemplate';
|
|
726
727
|
export type { ApiResponseLeaderboardSegmentsSummaryData } from './schemas/ApiResponseLeaderboardSegmentsSummaryData';
|
|
727
|
-
export type { ApiResponseListWorkItemLinkedPrDto } from './schemas/ApiResponseListWorkItemLinkedPrDto';
|
|
728
728
|
export type { ApiResponseMetricAggregateTemplate } from './schemas/ApiResponseMetricAggregateTemplate';
|
|
729
729
|
export type { ApiResponseMetricBreakdownData } from './schemas/ApiResponseMetricBreakdownData';
|
|
730
730
|
export type { ApiResponseOptimizationItem } from './schemas/ApiResponseOptimizationItem';
|
|
731
731
|
export type { ApiResponseOptimizationListData } from './schemas/ApiResponseOptimizationListData';
|
|
732
732
|
export type { ApiResponseScorecardData } from './schemas/ApiResponseScorecardData';
|
|
733
733
|
export type { ApiResponseTimeSeriesTemplate } from './schemas/ApiResponseTimeSeriesTemplate';
|
|
734
|
+
export type { ApiResponseWorkItemLinkedPrsResponse } from './schemas/ApiResponseWorkItemLinkedPrsResponse';
|
|
734
735
|
export type { ApiResponseWrapper } from './schemas/ApiResponseWrapper';
|
|
735
736
|
export type { ArmorCodeFindingStatsRequest } from './schemas/ArmorCodeFindingStatsRequest';
|
|
736
737
|
export type { ArmorCodeFindingStatsResponse } from './schemas/ArmorCodeFindingStatsResponse';
|
|
@@ -1031,9 +1032,11 @@ export type { PaginationRequest } from './schemas/PaginationRequest';
|
|
|
1031
1032
|
export type { PrCommitsRequest } from './schemas/PrCommitsRequest';
|
|
1032
1033
|
export type { PrCommitsResponse } from './schemas/PrCommitsResponse';
|
|
1033
1034
|
export type { PrCommitsResponseWrapper } from './schemas/PrCommitsResponseWrapper';
|
|
1035
|
+
export type { PrCostEntry } from './schemas/PrCostEntry';
|
|
1034
1036
|
export type { PrCycleTimeDrilldownResponseDataPoint } from './schemas/PrCycleTimeDrilldownResponseDataPoint';
|
|
1035
1037
|
export type { PrCycleTimeDrilldownResponseDataPointV3 } from './schemas/PrCycleTimeDrilldownResponseDataPointV3';
|
|
1036
1038
|
export type { PrInfo } from './schemas/PrInfo';
|
|
1039
|
+
export type { PrRef } from './schemas/PrRef';
|
|
1037
1040
|
export type { PrRequest } from './schemas/PrRequest';
|
|
1038
1041
|
export type { PrSize } from './schemas/PrSize';
|
|
1039
1042
|
export type { PrVelocityDrilldownResponseDataPoint } from './schemas/PrVelocityDrilldownResponseDataPoint';
|
|
@@ -1094,6 +1097,7 @@ export type { SegmentSummary } from './schemas/SegmentSummary';
|
|
|
1094
1097
|
export type { SeverityCounts } from './schemas/SeverityCounts';
|
|
1095
1098
|
export type { SeverityData } from './schemas/SeverityData';
|
|
1096
1099
|
export type { SeveritySummaryData } from './schemas/SeveritySummaryData';
|
|
1100
|
+
export type { SharedCommitEntry } from './schemas/SharedCommitEntry';
|
|
1097
1101
|
export type { SimpleFilter } from './schemas/SimpleFilter';
|
|
1098
1102
|
export type { SimpleFilterExpression } from './schemas/SimpleFilterExpression';
|
|
1099
1103
|
export type { SimpleMetric } from './schemas/SimpleMetric';
|
|
@@ -1198,4 +1202,5 @@ export type { WorkCompletedDrilldownResponseDataPointV3 } from './schemas/WorkCo
|
|
|
1198
1202
|
export type { WorkCompletedIndividualDrilldownResponseDataPoint } from './schemas/WorkCompletedIndividualDrilldownResponseDataPoint';
|
|
1199
1203
|
export type { WorkCompletedIndividualDrilldownResponseDataPointV3 } from './schemas/WorkCompletedIndividualDrilldownResponseDataPointV3';
|
|
1200
1204
|
export type { WorkItemLinkedPrDto } from './schemas/WorkItemLinkedPrDto';
|
|
1205
|
+
export type { WorkItemLinkedPrsResponse } from './schemas/WorkItemLinkedPrsResponse';
|
|
1201
1206
|
export type { WorkType } from './schemas/WorkType';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { PrCostEntry } from '../schemas/PrCostEntry';
|
|
2
|
+
import type { SharedCommitEntry } from '../schemas/SharedCommitEntry';
|
|
3
|
+
export interface AiImpactExplainability {
|
|
4
|
+
/**
|
|
5
|
+
* @format double
|
|
6
|
+
*/
|
|
7
|
+
contextCostDollars?: number;
|
|
8
|
+
explainabilityType?: string;
|
|
9
|
+
hasSharedCommits?: boolean;
|
|
10
|
+
prCosts?: PrCostEntry[];
|
|
11
|
+
sharedCommits?: SharedCommitEntry[];
|
|
12
|
+
/**
|
|
13
|
+
* @format double
|
|
14
|
+
*/
|
|
15
|
+
sharedDeductionDollars?: number;
|
|
16
|
+
summary?: string;
|
|
17
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export interface
|
|
1
|
+
import type { WorkItemLinkedPrsResponse } from '../schemas/WorkItemLinkedPrsResponse';
|
|
2
|
+
export interface ApiResponseWorkItemLinkedPrsResponse {
|
|
3
3
|
/**
|
|
4
4
|
* Endpoint-specific payload (template DTOs, lists, aggregates, etc.)
|
|
5
5
|
*/
|
|
6
|
-
data?:
|
|
6
|
+
data?: WorkItemLinkedPrsResponse;
|
|
7
7
|
/**
|
|
8
8
|
* HATEOAS links for resource navigation (self, next, prev, etc.)
|
|
9
9
|
*/
|
package/dist/sei-panorama-service/src/services/schemas/ApiResponseWorkItemLinkedPrsResponse.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,6 +2,6 @@ import type { PrCycleTimeDrilldownResponseDataPoint } from '../schemas/PrCycleTi
|
|
|
2
2
|
import type { PrVelocityDrilldownResponseDataPoint } from '../schemas/PrVelocityDrilldownResponseDataPoint';
|
|
3
3
|
import type { WorkCompletedDrilldownResponseDataPoint } from '../schemas/WorkCompletedDrilldownResponseDataPoint';
|
|
4
4
|
export interface DrilldownData {
|
|
5
|
-
drilldownDataPoints?: Array<PrCycleTimeDrilldownResponseDataPoint
|
|
5
|
+
drilldownDataPoints?: Array<PrCycleTimeDrilldownResponseDataPoint & PrVelocityDrilldownResponseDataPoint & WorkCompletedDrilldownResponseDataPoint>;
|
|
6
6
|
metricType?: 'CODE_REWORK' | 'CODING_DAYS' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
7
7
|
}
|
|
@@ -4,6 +4,6 @@ import type { PrCycleTimeDrilldownResponseDataPointV3 } from '../schemas/PrCycle
|
|
|
4
4
|
import type { PrVelocityDrilldownResponseDataPointV3 } from '../schemas/PrVelocityDrilldownResponseDataPointV3';
|
|
5
5
|
import type { WorkCompletedDrilldownResponseDataPointV3 } from '../schemas/WorkCompletedDrilldownResponseDataPointV3';
|
|
6
6
|
export interface DrilldownDataV3 {
|
|
7
|
-
drilldownDataPoints?: Array<CodeReworkDevelopersDrilldownResponseDataPointV3
|
|
7
|
+
drilldownDataPoints?: Array<CodeReworkDevelopersDrilldownResponseDataPointV3 & CodingDaysDrilldownResponseDataPointV3 & PrCycleTimeDrilldownResponseDataPointV3 & PrVelocityDrilldownResponseDataPointV3 & WorkCompletedDrilldownResponseDataPointV3>;
|
|
8
8
|
metricType?: 'CODE_REWORK' | 'CODING_DAYS' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
9
9
|
}
|
|
@@ -8,12 +8,12 @@ export interface EntityDto {
|
|
|
8
8
|
applicableInsights?: Array<'AI_INSIGHTS' | 'BA' | 'DORA' | 'PRODUCTIVITY' | 'SECURITY' | 'SPRINT_INSIGHTS'>;
|
|
9
9
|
applicableMetrics?: Array<'AI_INSIGHTS' | 'AVG_TIME_TO_FIRST_COMMENT' | 'BA' | 'CFR' | 'CODE_REWORK' | 'CODING_DAYS' | 'DF' | 'LINES_OF_CODE' | 'LTTC' | 'MTTR' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'SPRINT_INSIGHTS' | 'TOTAL_OPEN_VULNERABILITIES' | 'WORK_COMPLETED'>;
|
|
10
10
|
baCategoryColor?: string;
|
|
11
|
-
config?: ActiveWorkStatusConfig
|
|
11
|
+
config?: ActiveWorkStatusConfig & BugPriorityConfig & CompletedWorkStatusConfig & NewFeaturesConfig;
|
|
12
12
|
entityKey?: string;
|
|
13
13
|
entityName?: string;
|
|
14
14
|
entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bug_start_trigger_status' | 'im_bugs' | 'im_completed_work_status' | 'im_default_start_trigger_status' | 'im_feature_start_trigger_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
|
|
15
15
|
integrationFilters?: {
|
|
16
|
-
[key: string]: CompositeFilterExpression
|
|
16
|
+
[key: string]: CompositeFilterExpression & SimpleFilterExpression;
|
|
17
17
|
};
|
|
18
18
|
integrationType?: 'AI' | 'CD' | 'CI' | 'CUSTOM_INGESTION' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY' | 'TEST_MANAGEMENT';
|
|
19
19
|
useDefaults?: boolean;
|
|
@@ -5,11 +5,11 @@ import type { NewFeaturesConfig } from '../schemas/NewFeaturesConfig';
|
|
|
5
5
|
import type { CompositeFilterExpression } from '../schemas/CompositeFilterExpression';
|
|
6
6
|
import type { SimpleFilterExpression } from '../schemas/SimpleFilterExpression';
|
|
7
7
|
export interface EntityRequestDto {
|
|
8
|
-
config?: ActiveWorkStatusConfig
|
|
8
|
+
config?: ActiveWorkStatusConfig & BugPriorityConfig & CompletedWorkStatusConfig & NewFeaturesConfig;
|
|
9
9
|
entityKey?: string;
|
|
10
10
|
entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bug_start_trigger_status' | 'im_bugs' | 'im_completed_work_status' | 'im_default_start_trigger_status' | 'im_feature_start_trigger_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
|
|
11
11
|
integrationFilters?: {
|
|
12
|
-
[key: string]: CompositeFilterExpression
|
|
12
|
+
[key: string]: CompositeFilterExpression & SimpleFilterExpression;
|
|
13
13
|
};
|
|
14
14
|
useDefaults?: boolean;
|
|
15
15
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { PrVelocityIndividualDrilldownResponseDataPoint } from '../schemas/PrVelocityIndividualDrilldownResponseDataPoint';
|
|
2
2
|
import type { WorkCompletedIndividualDrilldownResponseDataPoint } from '../schemas/WorkCompletedIndividualDrilldownResponseDataPoint';
|
|
3
3
|
export interface IndividualDrilldownData {
|
|
4
|
-
individualDrilldownDataPoints?: Array<PrVelocityIndividualDrilldownResponseDataPoint
|
|
4
|
+
individualDrilldownDataPoints?: Array<PrVelocityIndividualDrilldownResponseDataPoint & WorkCompletedIndividualDrilldownResponseDataPoint>;
|
|
5
5
|
metricType?: 'CODE_REWORK' | 'CODING_DAYS' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
6
6
|
}
|
|
@@ -2,6 +2,6 @@ import type { CodingDaysIndividualDrilldownResponseDataPointV3 } from '../schema
|
|
|
2
2
|
import type { PrVelocityIndividualDrilldownResponseDataPointV3 } from '../schemas/PrVelocityIndividualDrilldownResponseDataPointV3';
|
|
3
3
|
import type { WorkCompletedIndividualDrilldownResponseDataPointV3 } from '../schemas/WorkCompletedIndividualDrilldownResponseDataPointV3';
|
|
4
4
|
export interface IndividualDrilldownDataV3 {
|
|
5
|
-
individualDrilldownDataPoints?: Array<CodingDaysIndividualDrilldownResponseDataPointV3
|
|
5
|
+
individualDrilldownDataPoints?: Array<CodingDaysIndividualDrilldownResponseDataPointV3 & PrVelocityIndividualDrilldownResponseDataPointV3 & WorkCompletedIndividualDrilldownResponseDataPointV3>;
|
|
6
6
|
metricType?: 'CODE_REWORK' | 'CODING_DAYS' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
7
7
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { AiImpactExplainability } from '../schemas/AiImpactExplainability';
|
|
2
|
+
import type { WorkItemLinkedPrDto } from '../schemas/WorkItemLinkedPrDto';
|
|
3
|
+
export interface WorkItemLinkedPrsResponse {
|
|
4
|
+
explainability?: AiImpactExplainability;
|
|
5
|
+
pullRequests?: WorkItemLinkedPrDto[];
|
|
6
|
+
/**
|
|
7
|
+
* @format double
|
|
8
|
+
*/
|
|
9
|
+
workItemCostDollars?: number;
|
|
10
|
+
workItemId?: string;
|
|
11
|
+
}
|
|
@@ -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.14",
|
|
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",
|