@harnessio/react-sei-panorama-service-client 0.22.2 → 0.22.3

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.
@@ -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<unknown>;
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;
@@ -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[];
@@ -4,6 +4,7 @@ export interface Stage {
4
4
  * @format int32
5
5
  */
6
6
  count?: number;
7
+ displayName?: string;
7
8
  integrationType?: string;
8
9
  /**
9
10
  * @format double
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.22.2",
3
+ "version": "0.22.3",
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",