@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.
@@ -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;
@@ -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';
@@ -0,0 +1,14 @@
1
+ export interface ActivityDataDto {
2
+ /**
3
+ * @format int64
4
+ */
5
+ commits?: number;
6
+ /**
7
+ * @format int64
8
+ */
9
+ pullRequests?: number;
10
+ /**
11
+ * @format int64
12
+ */
13
+ repositories?: number;
14
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -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
  }
@@ -1,4 +1,7 @@
1
+ import type { ActivityDataDto } from '../schemas/ActivityDataDto';
1
2
  export interface IntegrationHealthStatusDto {
3
+ activityData?: ActivityDataDto;
4
+ activityStatus?: string;
2
5
  date?: string;
3
6
  /**
4
7
  * @format int32
@@ -1,4 +1 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
1
  export {};
@@ -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.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",