@harnessio/react-sei-panorama-service-client 0.22.2 → 0.22.4
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/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/ActivityDataDto.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/schemas/ActivityDataDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyLeadTimeDrilldownResponseWrapper.d.ts +6 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationHealthStatusDto.d.ts +3 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationHealthStatusDto.js +0 -3
- package/dist/sei-panorama-service/src/services/schemas/LtcStageDto.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/Stage.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
|
5
5
|
export interface DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams {
|
|
6
6
|
attribute: string;
|
|
7
7
|
}
|
|
8
|
-
export type DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse = ResponseWithPagination<
|
|
8
|
+
export type DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse = ResponseWithPagination<string[]>;
|
|
9
9
|
export type DeveloperControllerGetDistinctDeveloperAttributeValuesErrorResponse = ErrorResponse;
|
|
10
10
|
export interface DeveloperControllerGetDistinctDeveloperAttributeValuesProps extends Omit<FetcherOptions<DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams, unknown>, 'url'> {
|
|
11
11
|
queryParams: DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams;
|
|
@@ -293,6 +293,7 @@ export type { TeamsControllerUpdateTeamIntegrationsErrorResponse, TeamsControlle
|
|
|
293
293
|
export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
|
|
294
294
|
export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamMutationPathParams, TeamsControllerUpdateTeamMutationQueryParams, TeamsControllerUpdateTeamOkResponse, TeamsControllerUpdateTeamProps, TeamsControllerUpdateTeamRequestBody, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
295
295
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
296
|
+
export type { ActivityDataDto } from './schemas/ActivityDataDto';
|
|
296
297
|
export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
|
|
297
298
|
export type { BaCategoryDto } from './schemas/BaCategoryDto';
|
|
298
299
|
export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
|
|
@@ -17,4 +17,10 @@ export interface EfficiencyLeadTimeDrilldownResponseWrapper {
|
|
|
17
17
|
* Pagination information
|
|
18
18
|
*/
|
|
19
19
|
pagination?: PaginationInfo;
|
|
20
|
+
/**
|
|
21
|
+
* Mapping of type identifiers to human-readable names
|
|
22
|
+
*/
|
|
23
|
+
stageTypeToDisplayNameMap?: {
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
};
|
|
20
26
|
}
|
|
@@ -2,6 +2,7 @@ import type { EfficiencyProfileEvent } from '../schemas/EfficiencyProfileEvent';
|
|
|
2
2
|
import type { RatingLevel } from '../schemas/RatingLevel';
|
|
3
3
|
export interface LtcStageDto {
|
|
4
4
|
active?: boolean;
|
|
5
|
+
displayName?: string;
|
|
5
6
|
endEvent?: EfficiencyProfileEvent;
|
|
6
7
|
name?: string;
|
|
7
8
|
rating?: RatingLevel[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.4",
|
|
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",
|