@harnessio/react-sei-panorama-service-client 0.13.1 → 0.14.0

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.
Files changed (42) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useDoraControllerLeadTimeDrilldownQuery.d.ts +2 -2
  2. package/dist/sei-panorama-service/src/services/hooks/useExportControllerExportDataMutation.d.ts +27 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useExportControllerExportDataMutation.js +14 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useInsightSettingsControllerCreateSettingsMutation.d.ts +8 -6
  5. package/dist/sei-panorama-service/src/services/hooks/useInsightSettingsControllerCreateSettingsMutation.js +3 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useInsightSettingsControllerGetSettingsQuery.d.ts +8 -6
  7. package/dist/sei-panorama-service/src/services/hooks/useInsightSettingsControllerGetSettingsQuery.js +3 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useInsightSettingsControllerUpdateSettingsMutation.d.ts +8 -6
  9. package/dist/sei-panorama-service/src/services/hooks/useInsightSettingsControllerUpdateSettingsMutation.js +3 -0
  10. package/dist/sei-panorama-service/src/services/index.d.ts +11 -8
  11. package/dist/sei-panorama-service/src/services/index.js +1 -1
  12. package/dist/sei-panorama-service/src/services/schemas/CdDeploymentData.d.ts +68 -0
  13. package/dist/sei-panorama-service/src/services/schemas/CiPipelineData.d.ts +56 -0
  14. package/dist/sei-panorama-service/src/services/schemas/DoraMetricDrilldownRequest.d.ts +1 -0
  15. package/dist/sei-panorama-service/src/services/schemas/DoraMetricDrilldownResponse.d.ts +42 -0
  16. package/dist/sei-panorama-service/src/services/schemas/EfficiencyRequestDto.d.ts +4 -0
  17. package/dist/sei-panorama-service/src/services/schemas/EfficiencyRequestDto.js +4 -0
  18. package/dist/sei-panorama-service/src/services/schemas/ErrorResponse.d.ts +8 -0
  19. package/dist/sei-panorama-service/src/services/schemas/ErrorResponse.js +4 -0
  20. package/dist/sei-panorama-service/src/services/schemas/Event.d.ts +1 -1
  21. package/dist/sei-panorama-service/src/services/schemas/ExportRequestDto.d.ts +17 -0
  22. package/dist/sei-panorama-service/src/services/schemas/IssueManagementData.d.ts +36 -0
  23. package/dist/sei-panorama-service/src/services/schemas/IssueManagementData.js +4 -0
  24. package/dist/sei-panorama-service/src/services/schemas/ProductivityRequestDto.d.ts +3 -0
  25. package/dist/sei-panorama-service/src/services/schemas/ProductivityRequestDto.js +4 -0
  26. package/dist/sei-panorama-service/src/services/schemas/ScmCommitData.d.ts +42 -0
  27. package/dist/sei-panorama-service/src/services/schemas/ScmCommitData.js +4 -0
  28. package/package.json +1 -1
  29. package/dist/sei-panorama-service/src/services/hooks/useDoraControllerLeadTimeDrilldownPRsQuery.d.ts +0 -22
  30. package/dist/sei-panorama-service/src/services/hooks/useDoraControllerLeadTimeDrilldownPRsQuery.js +0 -14
  31. package/dist/sei-panorama-service/src/services/schemas/CodeChanges.d.ts +0 -14
  32. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimeDrilldownResponse.d.ts +0 -63
  33. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimeDrilldownResponseWrapper.d.ts +0 -19
  34. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimePrDrilldownRequest.d.ts +0 -5
  35. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimePrDrilldownResponse.d.ts +0 -23
  36. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimePrDrilldownResponse.js +0 -1
  37. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimePrDrilldownResponseWrapper.d.ts +0 -15
  38. package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimePrDrilldownResponseWrapper.js +0 -1
  39. /package/dist/sei-panorama-service/src/services/schemas/{CodeChanges.js → CdDeploymentData.js} +0 -0
  40. /package/dist/sei-panorama-service/src/services/schemas/{DoraLeadTimeDrilldownResponse.js → CiPipelineData.js} +0 -0
  41. /package/dist/sei-panorama-service/src/services/schemas/{DoraLeadTimeDrilldownResponseWrapper.js → DoraMetricDrilldownResponse.js} +0 -0
  42. /package/dist/sei-panorama-service/src/services/schemas/{DoraLeadTimePrDrilldownRequest.js → ExportRequestDto.js} +0 -0
@@ -1,5 +1,5 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
- import type { DoraLeadTimeDrilldownResponseWrapper } from '../schemas/DoraLeadTimeDrilldownResponseWrapper';
2
+ import type { DoraMetricDrilldownResponse } from '../schemas/DoraMetricDrilldownResponse';
3
3
  import type { DoraMetricDrilldownRequest } from '../schemas/DoraMetricDrilldownRequest';
4
4
  import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
@@ -9,7 +9,7 @@ export interface DoraControllerLeadTimeDrilldownQueryQueryParams {
9
9
  orgIdentifier: string;
10
10
  }
11
11
  export type DoraControllerLeadTimeDrilldownRequestBody = DoraMetricDrilldownRequest;
12
- export type DoraControllerLeadTimeDrilldownOkResponse = ResponseWithPagination<DoraLeadTimeDrilldownResponseWrapper>;
12
+ export type DoraControllerLeadTimeDrilldownOkResponse = ResponseWithPagination<DoraMetricDrilldownResponse>;
13
13
  export type DoraControllerLeadTimeDrilldownErrorResponse = string;
14
14
  export interface DoraControllerLeadTimeDrilldownProps extends Omit<FetcherOptions<DoraControllerLeadTimeDrilldownQueryQueryParams, DoraControllerLeadTimeDrilldownRequestBody>, 'url'> {
15
15
  queryParams: DoraControllerLeadTimeDrilldownQueryQueryParams;
@@ -0,0 +1,27 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ExportRequestDto } from '../schemas/ExportRequestDto';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface ExportControllerExportDataMutationQueryParams {
6
+ accountId: string;
7
+ projectIdentifier?: string;
8
+ orgIdentifier?: string;
9
+ /**
10
+ * @default "csv"
11
+ */
12
+ format?: string;
13
+ }
14
+ export type ExportControllerExportDataRequestBody = ExportRequestDto;
15
+ export type ExportControllerExportDataOkResponse = ResponseWithPagination<{
16
+ [key: string]: any;
17
+ }>;
18
+ export type ExportControllerExportDataErrorResponse = string;
19
+ export interface ExportControllerExportDataProps extends Omit<FetcherOptions<ExportControllerExportDataMutationQueryParams, ExportControllerExportDataRequestBody>, 'url'> {
20
+ queryParams: ExportControllerExportDataMutationQueryParams;
21
+ body: ExportControllerExportDataRequestBody;
22
+ }
23
+ export declare function exportControllerExportData(props: ExportControllerExportDataProps): Promise<ExportControllerExportDataOkResponse>;
24
+ /**
25
+ * Retrieves data reports based on provided query parameters and request body, returning the report as a file.
26
+ */
27
+ export declare function useExportControllerExportDataMutation(options?: Omit<UseMutationOptions<ExportControllerExportDataOkResponse, ExportControllerExportDataErrorResponse, ExportControllerExportDataProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ExportControllerExportDataOkResponse, string, ExportControllerExportDataProps, 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 { useMutation } from '@tanstack/react-query';
5
+ import { fetcher } from '../../../../fetcher/index.js';
6
+ export function exportControllerExportData(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/reports`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Retrieves data reports based on provided query parameters and request body, returning the report as a file.
11
+ */
12
+ export function useExportControllerExportDataMutation(options) {
13
+ return useMutation((mutateProps) => exportControllerExportData(mutateProps), options);
14
+ }
@@ -1,21 +1,23 @@
1
1
  import { UseMutationOptions } from '@tanstack/react-query';
2
2
  import type { InsightSettingsResponseDto } from '../schemas/InsightSettingsResponseDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { InsightSettingsCreateRequestDto } from '../schemas/InsightSettingsCreateRequestDto';
4
5
  import type { ResponseWithPagination } from '../helpers';
5
6
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
7
  export interface InsightSettingsControllerCreateSettingsMutationQueryParams {
7
- /**
8
- * @format int32
9
- */
10
- workspaceId: number;
8
+ orgIdentifier: string;
9
+ projectIdentifier: string;
11
10
  accountIdentifier: string;
12
11
  }
13
12
  export type InsightSettingsControllerCreateSettingsRequestBody = InsightSettingsCreateRequestDto;
14
13
  export type InsightSettingsControllerCreateSettingsOkResponse = ResponseWithPagination<InsightSettingsResponseDto>;
15
- export type InsightSettingsControllerCreateSettingsErrorResponse = unknown;
14
+ export type InsightSettingsControllerCreateSettingsErrorResponse = ErrorResponse;
16
15
  export interface InsightSettingsControllerCreateSettingsProps extends Omit<FetcherOptions<InsightSettingsControllerCreateSettingsMutationQueryParams, InsightSettingsControllerCreateSettingsRequestBody>, 'url'> {
17
16
  queryParams: InsightSettingsControllerCreateSettingsMutationQueryParams;
18
17
  body: InsightSettingsControllerCreateSettingsRequestBody;
19
18
  }
20
19
  export declare function insightSettingsControllerCreateSettings(props: InsightSettingsControllerCreateSettingsProps): Promise<InsightSettingsControllerCreateSettingsOkResponse>;
21
- export declare function useInsightSettingsControllerCreateSettingsMutation(options?: Omit<UseMutationOptions<InsightSettingsControllerCreateSettingsOkResponse, InsightSettingsControllerCreateSettingsErrorResponse, InsightSettingsControllerCreateSettingsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<InsightSettingsControllerCreateSettingsOkResponse, unknown, InsightSettingsControllerCreateSettingsProps, unknown>;
20
+ /**
21
+ * Creates new insight settings for a workspace. Each workspace can only have one insight settings configuration.
22
+ */
23
+ export declare function useInsightSettingsControllerCreateSettingsMutation(options?: Omit<UseMutationOptions<InsightSettingsControllerCreateSettingsOkResponse, InsightSettingsControllerCreateSettingsErrorResponse, InsightSettingsControllerCreateSettingsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<InsightSettingsControllerCreateSettingsOkResponse, ErrorResponse, InsightSettingsControllerCreateSettingsProps, unknown>;
@@ -6,6 +6,9 @@ import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function insightSettingsControllerCreateSettings(props) {
7
7
  return fetcher(Object.assign({ url: `/v2/insight-settings`, method: 'POST' }, props));
8
8
  }
9
+ /**
10
+ * Creates new insight settings for a workspace. Each workspace can only have one insight settings configuration.
11
+ */
9
12
  export function useInsightSettingsControllerCreateSettingsMutation(options) {
10
13
  return useMutation((mutateProps) => insightSettingsControllerCreateSettings(mutateProps), options);
11
14
  }
@@ -1,18 +1,20 @@
1
1
  import { UseQueryOptions } from '@tanstack/react-query';
2
2
  import type { InsightSettingsResponseDto } from '../schemas/InsightSettingsResponseDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { ResponseWithPagination } from '../helpers';
4
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
5
6
  export interface InsightSettingsControllerGetSettingsQueryQueryParams {
6
- /**
7
- * @format int32
8
- */
9
- workspaceId: number;
7
+ orgIdentifier: string;
8
+ projectIdentifier: string;
10
9
  accountIdentifier: string;
11
10
  }
12
11
  export type InsightSettingsControllerGetSettingsOkResponse = ResponseWithPagination<InsightSettingsResponseDto>;
13
- export type InsightSettingsControllerGetSettingsErrorResponse = unknown;
12
+ export type InsightSettingsControllerGetSettingsErrorResponse = ErrorResponse;
14
13
  export interface InsightSettingsControllerGetSettingsProps extends Omit<FetcherOptions<InsightSettingsControllerGetSettingsQueryQueryParams, unknown>, 'url'> {
15
14
  queryParams: InsightSettingsControllerGetSettingsQueryQueryParams;
16
15
  }
17
16
  export declare function insightSettingsControllerGetSettings(props: InsightSettingsControllerGetSettingsProps): Promise<InsightSettingsControllerGetSettingsOkResponse>;
18
- export declare function useInsightSettingsControllerGetSettingsQuery(props: InsightSettingsControllerGetSettingsProps, options?: Omit<UseQueryOptions<InsightSettingsControllerGetSettingsOkResponse, InsightSettingsControllerGetSettingsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<InsightSettingsControllerGetSettingsOkResponse, unknown>;
17
+ /**
18
+ * Get insight settings for a workspace
19
+ */
20
+ export declare function useInsightSettingsControllerGetSettingsQuery(props: InsightSettingsControllerGetSettingsProps, options?: Omit<UseQueryOptions<InsightSettingsControllerGetSettingsOkResponse, InsightSettingsControllerGetSettingsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<InsightSettingsControllerGetSettingsOkResponse, ErrorResponse>;
@@ -6,6 +6,9 @@ import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function insightSettingsControllerGetSettings(props) {
7
7
  return fetcher(Object.assign({ url: `/v2/insight-settings`, method: 'GET' }, props));
8
8
  }
9
+ /**
10
+ * Get insight settings for a workspace
11
+ */
9
12
  export function useInsightSettingsControllerGetSettingsQuery(props, options) {
10
13
  return useQuery(['InsightSettingsControllerGetSettings', props.queryParams], ({ signal }) => insightSettingsControllerGetSettings(Object.assign(Object.assign({}, props), { signal })), options);
11
14
  }
@@ -1,21 +1,23 @@
1
1
  import { UseMutationOptions } from '@tanstack/react-query';
2
2
  import type { InsightSettingsResponseDto } from '../schemas/InsightSettingsResponseDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
3
4
  import type { InsightSettingsCreateRequestDto } from '../schemas/InsightSettingsCreateRequestDto';
4
5
  import type { ResponseWithPagination } from '../helpers';
5
6
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
7
  export interface InsightSettingsControllerUpdateSettingsMutationQueryParams {
7
- /**
8
- * @format int32
9
- */
10
- workspaceId: number;
8
+ orgIdentifier: string;
9
+ projectIdentifier: string;
11
10
  accountIdentifier: string;
12
11
  }
13
12
  export type InsightSettingsControllerUpdateSettingsRequestBody = InsightSettingsCreateRequestDto;
14
13
  export type InsightSettingsControllerUpdateSettingsOkResponse = ResponseWithPagination<InsightSettingsResponseDto>;
15
- export type InsightSettingsControllerUpdateSettingsErrorResponse = unknown;
14
+ export type InsightSettingsControllerUpdateSettingsErrorResponse = ErrorResponse;
16
15
  export interface InsightSettingsControllerUpdateSettingsProps extends Omit<FetcherOptions<InsightSettingsControllerUpdateSettingsMutationQueryParams, InsightSettingsControllerUpdateSettingsRequestBody>, 'url'> {
17
16
  queryParams: InsightSettingsControllerUpdateSettingsMutationQueryParams;
18
17
  body: InsightSettingsControllerUpdateSettingsRequestBody;
19
18
  }
20
19
  export declare function insightSettingsControllerUpdateSettings(props: InsightSettingsControllerUpdateSettingsProps): Promise<InsightSettingsControllerUpdateSettingsOkResponse>;
21
- export declare function useInsightSettingsControllerUpdateSettingsMutation(options?: Omit<UseMutationOptions<InsightSettingsControllerUpdateSettingsOkResponse, InsightSettingsControllerUpdateSettingsErrorResponse, InsightSettingsControllerUpdateSettingsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<InsightSettingsControllerUpdateSettingsOkResponse, unknown, InsightSettingsControllerUpdateSettingsProps, unknown>;
20
+ /**
21
+ * Update existing insight settings
22
+ */
23
+ export declare function useInsightSettingsControllerUpdateSettingsMutation(options?: Omit<UseMutationOptions<InsightSettingsControllerUpdateSettingsOkResponse, InsightSettingsControllerUpdateSettingsErrorResponse, InsightSettingsControllerUpdateSettingsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<InsightSettingsControllerUpdateSettingsOkResponse, ErrorResponse, InsightSettingsControllerUpdateSettingsProps, unknown>;
@@ -6,6 +6,9 @@ import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function insightSettingsControllerUpdateSettings(props) {
7
7
  return fetcher(Object.assign({ url: `/v2/insight-settings`, method: 'PUT' }, props));
8
8
  }
9
+ /**
10
+ * Update existing insight settings
11
+ */
9
12
  export function useInsightSettingsControllerUpdateSettingsMutation(options) {
10
13
  return useMutation((mutateProps) => insightSettingsControllerUpdateSettings(mutateProps), options);
11
14
  }
@@ -31,8 +31,6 @@ export type { DoraControllerDeploymentFrequencyErrorResponse, DoraControllerDepl
31
31
  export { doraControllerDeploymentFrequency, useDoraControllerDeploymentFrequencyQuery, } from './hooks/useDoraControllerDeploymentFrequencyQuery';
32
32
  export type { DoraControllerLeadTimeDrilldownFiltersErrorResponse, DoraControllerLeadTimeDrilldownFiltersOkResponse, DoraControllerLeadTimeDrilldownFiltersProps, DoraControllerLeadTimeDrilldownFiltersQueryQueryParams, DoraControllerLeadTimeDrilldownFiltersRequestBody, } from './hooks/useDoraControllerLeadTimeDrilldownFiltersQuery';
33
33
  export { doraControllerLeadTimeDrilldownFilters, useDoraControllerLeadTimeDrilldownFiltersQuery, } from './hooks/useDoraControllerLeadTimeDrilldownFiltersQuery';
34
- export type { DoraControllerLeadTimeDrilldownPRsErrorResponse, DoraControllerLeadTimeDrilldownPRsOkResponse, DoraControllerLeadTimeDrilldownPRsProps, DoraControllerLeadTimeDrilldownPRsQueryQueryParams, DoraControllerLeadTimeDrilldownPRsRequestBody, } from './hooks/useDoraControllerLeadTimeDrilldownPRsQuery';
35
- export { doraControllerLeadTimeDrilldownPRs, useDoraControllerLeadTimeDrilldownPRsQuery, } from './hooks/useDoraControllerLeadTimeDrilldownPRsQuery';
36
34
  export type { DoraControllerLeadTimeDrilldownErrorResponse, DoraControllerLeadTimeDrilldownOkResponse, DoraControllerLeadTimeDrilldownProps, DoraControllerLeadTimeDrilldownQueryQueryParams, DoraControllerLeadTimeDrilldownRequestBody, } from './hooks/useDoraControllerLeadTimeDrilldownQuery';
37
35
  export { doraControllerLeadTimeDrilldown, useDoraControllerLeadTimeDrilldownQuery, } from './hooks/useDoraControllerLeadTimeDrilldownQuery';
38
36
  export type { DoraControllerLeadTimeErrorResponse, DoraControllerLeadTimeOkResponse, DoraControllerLeadTimeProps, DoraControllerLeadTimeQueryQueryParams, DoraControllerLeadTimeRequestBody, } from './hooks/useDoraControllerLeadTimeQuery';
@@ -53,6 +51,8 @@ export type { EfficiencyProfileControllerListProfilesErrorResponse, EfficiencyPr
53
51
  export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
54
52
  export type { EfficiencyProfileControllerUpdateProfileErrorResponse, EfficiencyProfileControllerUpdateProfileMutationPathParams, EfficiencyProfileControllerUpdateProfileMutationQueryParams, EfficiencyProfileControllerUpdateProfileOkResponse, EfficiencyProfileControllerUpdateProfileProps, EfficiencyProfileControllerUpdateProfileRequestBody, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
55
53
  export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
54
+ export type { ExportControllerExportDataErrorResponse, ExportControllerExportDataMutationQueryParams, ExportControllerExportDataOkResponse, ExportControllerExportDataProps, ExportControllerExportDataRequestBody, } from './hooks/useExportControllerExportDataMutation';
55
+ export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
56
56
  export type { InsightSettingsControllerCreateSettingsErrorResponse, InsightSettingsControllerCreateSettingsMutationQueryParams, InsightSettingsControllerCreateSettingsOkResponse, InsightSettingsControllerCreateSettingsProps, InsightSettingsControllerCreateSettingsRequestBody, } from './hooks/useInsightSettingsControllerCreateSettingsMutation';
57
57
  export { insightSettingsControllerCreateSettings, useInsightSettingsControllerCreateSettingsMutation, } from './hooks/useInsightSettingsControllerCreateSettingsMutation';
58
58
  export type { InsightSettingsControllerGetSettingsErrorResponse, InsightSettingsControllerGetSettingsOkResponse, InsightSettingsControllerGetSettingsProps, InsightSettingsControllerGetSettingsQueryQueryParams, } from './hooks/useInsightSettingsControllerGetSettingsQuery';
@@ -81,9 +81,10 @@ export type { ProductivityProfileControllerUpdateProfileErrorResponse, Productiv
81
81
  export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
82
82
  export type { AdditionalFilters } from './schemas/AdditionalFilters';
83
83
  export type { Category } from './schemas/Category';
84
+ export type { CdDeploymentData } from './schemas/CdDeploymentData';
84
85
  export type { ChangeFailureRateConfiguration } from './schemas/ChangeFailureRateConfiguration';
86
+ export type { CiPipelineData } from './schemas/CiPipelineData';
85
87
  export type { CodeChangeStats } from './schemas/CodeChangeStats';
86
- export type { CodeChanges } from './schemas/CodeChanges';
87
88
  export type { CollectionEnriched } from './schemas/CollectionEnriched';
88
89
  export type { CollectionFilter } from './schemas/CollectionFilter';
89
90
  export type { CollectionTree } from './schemas/CollectionTree';
@@ -102,16 +103,12 @@ export type { DoraChangeFailureRateMetric } from './schemas/DoraChangeFailureRat
102
103
  export type { DoraChangeFailureRateMetricBreakdown } from './schemas/DoraChangeFailureRateMetricBreakdown';
103
104
  export type { DoraDeploymentFrequencyMetric } from './schemas/DoraDeploymentFrequencyMetric';
104
105
  export type { DoraDeploymentFrequencyMetricBreakdown } from './schemas/DoraDeploymentFrequencyMetricBreakdown';
105
- export type { DoraLeadTimeDrilldownResponse } from './schemas/DoraLeadTimeDrilldownResponse';
106
- export type { DoraLeadTimeDrilldownResponseWrapper } from './schemas/DoraLeadTimeDrilldownResponseWrapper';
107
- export type { DoraLeadTimePrDrilldownRequest } from './schemas/DoraLeadTimePrDrilldownRequest';
108
- export type { DoraLeadTimePrDrilldownResponse } from './schemas/DoraLeadTimePrDrilldownResponse';
109
- export type { DoraLeadTimePrDrilldownResponseWrapper } from './schemas/DoraLeadTimePrDrilldownResponseWrapper';
110
106
  export type { DoraLttcMttrMetric } from './schemas/DoraLttcMttrMetric';
111
107
  export type { DoraLttcMttrMetricBreakdown } from './schemas/DoraLttcMttrMetricBreakdown';
112
108
  export type { DoraMetadata } from './schemas/DoraMetadata';
113
109
  export type { DoraMetricDrilldownFiltersResponse } from './schemas/DoraMetricDrilldownFiltersResponse';
114
110
  export type { DoraMetricDrilldownRequest } from './schemas/DoraMetricDrilldownRequest';
111
+ export type { DoraMetricDrilldownResponse } from './schemas/DoraMetricDrilldownResponse';
115
112
  export type { DoraRequest } from './schemas/DoraRequest';
116
113
  export type { DoraStage } from './schemas/DoraStage';
117
114
  export type { DoraSummaryMetric } from './schemas/DoraSummaryMetric';
@@ -120,7 +117,10 @@ export type { DrilldownData } from './schemas/DrilldownData';
120
117
  export type { DrilldownDataPoint } from './schemas/DrilldownDataPoint';
121
118
  export type { EfficiencyProfileCreateRequestDto } from './schemas/EfficiencyProfileCreateRequestDto';
122
119
  export type { EfficiencyProfileResponseDto } from './schemas/EfficiencyProfileResponseDto';
120
+ export type { EfficiencyRequestDto } from './schemas/EfficiencyRequestDto';
121
+ export type { ErrorResponse } from './schemas/ErrorResponse';
123
122
  export type { Event } from './schemas/Event';
123
+ export type { ExportRequestDto } from './schemas/ExportRequestDto';
124
124
  export type { FilterCriteria } from './schemas/FilterCriteria';
125
125
  export type { FilterGroup } from './schemas/FilterGroup';
126
126
  export type { Filters } from './schemas/Filters';
@@ -131,6 +131,7 @@ export type { InsightProductivitySettingsDto } from './schemas/InsightProductivi
131
131
  export type { InsightSettingsCreateRequestDto } from './schemas/InsightSettingsCreateRequestDto';
132
132
  export type { InsightSettingsResponseDto } from './schemas/InsightSettingsResponseDto';
133
133
  export type { IntegrationObject } from './schemas/IntegrationObject';
134
+ export type { IssueManagementData } from './schemas/IssueManagementData';
134
135
  export type { MetricConfiguration } from './schemas/MetricConfiguration';
135
136
  export type { PaginationInfo } from './schemas/PaginationInfo';
136
137
  export type { PaginationRequest } from './schemas/PaginationRequest';
@@ -147,8 +148,10 @@ export type { ProductivityFeatureRequestDto } from './schemas/ProductivityFeatur
147
148
  export type { ProductivityFeatureResponseDto } from './schemas/ProductivityFeatureResponseDto';
148
149
  export type { ProductivityProfileCreateRequestDto } from './schemas/ProductivityProfileCreateRequestDto';
149
150
  export type { ProductivityProfileResponseDto } from './schemas/ProductivityProfileResponseDto';
151
+ export type { ProductivityRequestDto } from './schemas/ProductivityRequestDto';
150
152
  export type { ProductivitySection } from './schemas/ProductivitySection';
151
153
  export type { Resolution } from './schemas/Resolution';
154
+ export type { ScmCommitData } from './schemas/ScmCommitData';
152
155
  export type { Stage } from './schemas/Stage';
153
156
  export type { SummaryCard } from './schemas/SummaryCard';
154
157
  export type { SummaryValue } from './schemas/SummaryValue';
@@ -14,7 +14,6 @@ export { doraControllerChangeFailureRate, useDoraControllerChangeFailureRateQuer
14
14
  export { doraControllerDeploymentFrequencyBreakdown, useDoraControllerDeploymentFrequencyBreakdownQuery, } from './hooks/useDoraControllerDeploymentFrequencyBreakdownQuery';
15
15
  export { doraControllerDeploymentFrequency, useDoraControllerDeploymentFrequencyQuery, } from './hooks/useDoraControllerDeploymentFrequencyQuery';
16
16
  export { doraControllerLeadTimeDrilldownFilters, useDoraControllerLeadTimeDrilldownFiltersQuery, } from './hooks/useDoraControllerLeadTimeDrilldownFiltersQuery';
17
- export { doraControllerLeadTimeDrilldownPRs, useDoraControllerLeadTimeDrilldownPRsQuery, } from './hooks/useDoraControllerLeadTimeDrilldownPRsQuery';
18
17
  export { doraControllerLeadTimeDrilldown, useDoraControllerLeadTimeDrilldownQuery, } from './hooks/useDoraControllerLeadTimeDrilldownQuery';
19
18
  export { doraControllerLeadTime, useDoraControllerLeadTimeQuery, } from './hooks/useDoraControllerLeadTimeQuery';
20
19
  export { doraControllerLeadTimeStages, useDoraControllerLeadTimeStagesQuery, } from './hooks/useDoraControllerLeadTimeStagesQuery';
@@ -25,6 +24,7 @@ export { efficiencyProfileControllerCreateProfile, useEfficiencyProfileControlle
25
24
  export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
26
25
  export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
27
26
  export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
27
+ export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
28
28
  export { insightSettingsControllerCreateSettings, useInsightSettingsControllerCreateSettingsMutation, } from './hooks/useInsightSettingsControllerCreateSettingsMutation';
29
29
  export { insightSettingsControllerGetSettings, useInsightSettingsControllerGetSettingsQuery, } from './hooks/useInsightSettingsControllerGetSettingsQuery';
30
30
  export { insightSettingsControllerUpdateSettings, useInsightSettingsControllerUpdateSettingsMutation, } from './hooks/useInsightSettingsControllerUpdateSettingsMutation';
@@ -0,0 +1,68 @@
1
+ /**
2
+ * Data structure for CD deployments
3
+ */
4
+ export interface CdDeploymentData {
5
+ /**
6
+ * Artifact ID
7
+ */
8
+ artifactId?: string;
9
+ /**
10
+ * Artifact Name
11
+ */
12
+ artifactName?: string;
13
+ /**
14
+ * Artifact Tags
15
+ */
16
+ artifactTags?: string[];
17
+ /**
18
+ * Artifact Version
19
+ */
20
+ artifactVersion?: string;
21
+ /**
22
+ * Deployment Environment
23
+ */
24
+ deploymentEnvironment?: string;
25
+ /**
26
+ * Execution End Time
27
+ * @format date-time
28
+ */
29
+ executionEnd?: string;
30
+ /**
31
+ * Execution Start Time
32
+ * @format date-time
33
+ */
34
+ executionStart?: string;
35
+ /**
36
+ * Associated JIRA Ticket ID
37
+ */
38
+ jiraTicketId?: string;
39
+ /**
40
+ * Pipeline Execution ID
41
+ */
42
+ pipelineExecutionId?: string;
43
+ /**
44
+ * Pipeline ID
45
+ */
46
+ pipelineId?: string;
47
+ /**
48
+ * Pipeline Name
49
+ */
50
+ pipelineName?: string;
51
+ /**
52
+ * Associated PR ID
53
+ */
54
+ prId?: string;
55
+ /**
56
+ * Service ID
57
+ */
58
+ serviceId?: string;
59
+ /**
60
+ * Service Name
61
+ */
62
+ serviceName?: string;
63
+ /**
64
+ * Time in Approval (in seconds)
65
+ * @format double
66
+ */
67
+ timeInApproval?: number;
68
+ }
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Data structure for CI pipeline executions
3
+ */
4
+ export interface CiPipelineData {
5
+ /**
6
+ * Artifact ID
7
+ */
8
+ artifactId?: string;
9
+ /**
10
+ * Artifact Name
11
+ */
12
+ artifactName?: string;
13
+ /**
14
+ * Artifact Tags
15
+ */
16
+ artifactTags?: string[];
17
+ /**
18
+ * Artifact Version
19
+ */
20
+ artifactVersion?: string;
21
+ /**
22
+ * Execution End Time
23
+ * @format date-time
24
+ */
25
+ executionEnd?: string;
26
+ /**
27
+ * Execution Start Time
28
+ * @format date-time
29
+ */
30
+ executionStart?: string;
31
+ /**
32
+ * Associated JIRA Ticket ID
33
+ */
34
+ jiraTicketId?: string;
35
+ /**
36
+ * Pipeline Execution ID
37
+ */
38
+ pipelineExecutionId?: string;
39
+ /**
40
+ * Pipeline ID
41
+ */
42
+ pipelineId?: string;
43
+ /**
44
+ * Pipeline Name
45
+ */
46
+ pipelineName?: string;
47
+ /**
48
+ * Associated PR ID
49
+ */
50
+ prId?: string;
51
+ /**
52
+ * Time in Approval (in seconds)
53
+ * @format double
54
+ */
55
+ timeInApproval?: number;
56
+ }
@@ -10,4 +10,5 @@ export interface DoraMetricDrilldownRequest {
10
10
  */
11
11
  dateStart: string;
12
12
  pagination?: PaginationRequest;
13
+ stageName: string;
13
14
  }
@@ -0,0 +1,42 @@
1
+ import type { CdDeploymentData } from '../schemas/CdDeploymentData';
2
+ import type { CiPipelineData } from '../schemas/CiPipelineData';
3
+ import type { IssueManagementData } from '../schemas/IssueManagementData';
4
+ import type { PaginationInfo } from '../schemas/PaginationInfo';
5
+ import type { ScmCommitData } from '../schemas/ScmCommitData';
6
+ /**
7
+ * Response containing drilldown data for Lead Time to Change metrics
8
+ */
9
+ export interface DoraMetricDrilldownResponse {
10
+ /**
11
+ * Type of application (IM, SCM, CI, CD)
12
+ */
13
+ application?: 'CD' | 'CI' | 'IM' | 'SCM';
14
+ /**
15
+ * Type of application (JIRA, GITHUB, GITLAB, etc.)
16
+ */
17
+ applicationType?: 'AZURE_DEVOPS' | 'BITBUCKET' | 'CIRCLE_CI' | 'GITHUB' | 'GITHUB_ACTIONS' | 'GITLAB' | 'JENKINS' | 'JIRA' | 'TEAMCITY' | 'TRAVIS_CI';
18
+ /**
19
+ * CD data rows, present when application is CD
20
+ */
21
+ cdData?: CdDeploymentData[];
22
+ /**
23
+ * CI data rows, present when application is CI
24
+ */
25
+ ciData?: CiPipelineData[];
26
+ /**
27
+ * Table headers for display
28
+ */
29
+ headers?: string[];
30
+ /**
31
+ * Jira data rows, present when application is IM
32
+ */
33
+ imData?: IssueManagementData[];
34
+ /**
35
+ * Pagination information
36
+ */
37
+ pagination?: PaginationInfo;
38
+ /**
39
+ * SCM data rows, present when application is SCM
40
+ */
41
+ scmData?: ScmCommitData[];
42
+ }
@@ -0,0 +1,4 @@
1
+ export interface EfficiencyRequestDto {
2
+ calculationType?: string;
3
+ metricsName: string[];
4
+ }
@@ -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 {};
@@ -0,0 +1,8 @@
1
+ export interface ErrorResponse {
2
+ error?: string;
3
+ message?: string;
4
+ /**
5
+ * @format int32
6
+ */
7
+ status?: number;
8
+ }
@@ -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 {};
@@ -2,6 +2,6 @@ import type { Condition } from '../schemas/Condition';
2
2
  export interface Event {
3
3
  calculation_field?: string;
4
4
  conditions?: Condition[];
5
- type?: 'CICD_JOB_RUN' | 'ISSUE_RESOLUTION' | 'JIRA_STATUS' | 'JIRA_VERSION_RELEASE' | 'SCM_COMMIT_CREATED' | 'SCM_PR_CREATED' | 'SCM_PR_MERGED';
5
+ type?: 'CICD_JOB_RUN' | 'ISSUE_RESOLUTION' | 'JIRA_ISSUE_CREATED' | 'JIRA_STATUS' | 'JIRA_VERSION_RELEASE' | 'SCM_COMMIT_CREATED' | 'SCM_PR_CREATED' | 'SCM_PR_MERGED';
6
6
  values?: string[];
7
7
  }
@@ -0,0 +1,17 @@
1
+ import type { EfficiencyRequestDto } from '../schemas/EfficiencyRequestDto';
2
+ import type { ProductivityRequestDto } from '../schemas/ProductivityRequestDto';
3
+ export interface ExportRequestDto {
4
+ collectionId?: string;
5
+ /**
6
+ * @format date-time
7
+ */
8
+ dateEnd: string;
9
+ /**
10
+ * @format date-time
11
+ */
12
+ dateStart: string;
13
+ efficiency?: EfficiencyRequestDto;
14
+ granularity?: string;
15
+ includeChildrens?: boolean;
16
+ productivity?: ProductivityRequestDto;
17
+ }
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Data structure for issue management
3
+ */
4
+ export interface IssueManagementData {
5
+ /**
6
+ * Issue assignee
7
+ */
8
+ assignee?: string[];
9
+ /**
10
+ * Created date
11
+ * @format date-time
12
+ */
13
+ createdDate?: string;
14
+ /**
15
+ * Issue key
16
+ */
17
+ issueKey?: string;
18
+ /**
19
+ * Issue type
20
+ */
21
+ issueType?: string;
22
+ /**
23
+ * Lead time in seconds
24
+ * @format double
25
+ */
26
+ leadTimeInSeconds?: number;
27
+ /**
28
+ * Issue Story points
29
+ * @format double
30
+ */
31
+ storyPoint?: number;
32
+ /**
33
+ * Issue summary
34
+ */
35
+ summary?: string;
36
+ }
@@ -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 {};
@@ -0,0 +1,3 @@
1
+ export interface ProductivityRequestDto {
2
+ metricsName: string[];
3
+ }
@@ -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 {};
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Data structure for SCM commits
3
+ */
4
+ export interface ScmCommitData {
5
+ /**
6
+ * Associated Jira Ticket ID
7
+ */
8
+ jiraTicketId?: string;
9
+ /**
10
+ * PR Approved Time
11
+ * @format double
12
+ */
13
+ prApprovedTime?: number;
14
+ /**
15
+ * PR Creation Time
16
+ * @format double
17
+ */
18
+ prCreationTime?: number;
19
+ /**
20
+ * SCM PR ID
21
+ */
22
+ prId?: string;
23
+ /**
24
+ * PR Merged Time
25
+ * @format double
26
+ */
27
+ prMergedTime?: number;
28
+ /**
29
+ * PR Title
30
+ */
31
+ prTitle?: string;
32
+ /**
33
+ * Time to First Comment
34
+ * @format double
35
+ */
36
+ timeToFirstComment?: number;
37
+ /**
38
+ * Time to First Commit
39
+ * @format double
40
+ */
41
+ timeToFirstCommit?: number;
42
+ }
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.13.1",
3
+ "version": "0.14.0",
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",
@@ -1,22 +0,0 @@
1
- import { UseQueryOptions } from '@tanstack/react-query';
2
- import type { DoraLeadTimePrDrilldownResponseWrapper } from '../schemas/DoraLeadTimePrDrilldownResponseWrapper';
3
- import type { DoraLeadTimePrDrilldownRequest } from '../schemas/DoraLeadTimePrDrilldownRequest';
4
- import type { ResponseWithPagination } from '../helpers';
5
- import { FetcherOptions } from '../../../../fetcher/index.js';
6
- export interface DoraControllerLeadTimeDrilldownPRsQueryQueryParams {
7
- account: string;
8
- projectIdentifier: string;
9
- orgIdentifier: string;
10
- }
11
- export type DoraControllerLeadTimeDrilldownPRsRequestBody = DoraLeadTimePrDrilldownRequest;
12
- export type DoraControllerLeadTimeDrilldownPRsOkResponse = ResponseWithPagination<DoraLeadTimePrDrilldownResponseWrapper>;
13
- export type DoraControllerLeadTimeDrilldownPRsErrorResponse = string;
14
- export interface DoraControllerLeadTimeDrilldownPRsProps extends Omit<FetcherOptions<DoraControllerLeadTimeDrilldownPRsQueryQueryParams, DoraControllerLeadTimeDrilldownPRsRequestBody>, 'url'> {
15
- queryParams: DoraControllerLeadTimeDrilldownPRsQueryQueryParams;
16
- body: DoraControllerLeadTimeDrilldownPRsRequestBody;
17
- }
18
- export declare function doraControllerLeadTimeDrilldownPRs(props: DoraControllerLeadTimeDrilldownPRsProps): Promise<DoraControllerLeadTimeDrilldownPRsOkResponse>;
19
- /**
20
- * Get detailed Lead Time to Change PR data with pagination support
21
- */
22
- export declare function useDoraControllerLeadTimeDrilldownPRsQuery(props: DoraControllerLeadTimeDrilldownPRsProps, options?: Omit<UseQueryOptions<DoraControllerLeadTimeDrilldownPRsOkResponse, DoraControllerLeadTimeDrilldownPRsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DoraControllerLeadTimeDrilldownPRsOkResponse, string>;
@@ -1,14 +0,0 @@
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 doraControllerLeadTimeDrilldownPRs(props) {
7
- return fetcher(Object.assign({ url: `/v2/insights/dora/leadtime/drilldown/prs`, method: 'POST' }, props));
8
- }
9
- /**
10
- * Get detailed Lead Time to Change PR data with pagination support
11
- */
12
- export function useDoraControllerLeadTimeDrilldownPRsQuery(props, options) {
13
- return useQuery(['DoraControllerLeadTimeDrilldownPRs', props.queryParams, props.body], ({ signal }) => doraControllerLeadTimeDrilldownPRs(Object.assign(Object.assign({}, props), { signal })), options);
14
- }
@@ -1,14 +0,0 @@
1
- export interface CodeChanges {
2
- /**
3
- * @format int64
4
- */
5
- additions?: number;
6
- /**
7
- * @format int64
8
- */
9
- deletions?: number;
10
- /**
11
- * @format int64
12
- */
13
- totalChanges?: number;
14
- }
@@ -1,63 +0,0 @@
1
- /**
2
- * Response containing drilldown data for Lead Time to Change metrics
3
- */
4
- export interface DoraLeadTimeDrilldownResponse {
5
- /**
6
- * Build identifier
7
- */
8
- buildId?: string;
9
- /**
10
- * Commit identifier
11
- */
12
- commitId?: string;
13
- /**
14
- * Deployment identifier
15
- */
16
- deploymentId?: string;
17
- /**
18
- * Lead time for CI phase
19
- * @format int64
20
- */
21
- leadTimeBuild?: number;
22
- /**
23
- * Lead time for commit phase
24
- * @format int64
25
- */
26
- leadTimeCoding?: number;
27
- /**
28
- * Lead time for deployment phase
29
- * @format int64
30
- */
31
- leadTimeDeploy?: number;
32
- /**
33
- * Lead time for merge phase
34
- * @format int64
35
- */
36
- leadTimeMerge?: number;
37
- /**
38
- * Lead time for planning phase
39
- * @format int64
40
- */
41
- leadTimePlanning?: number;
42
- /**
43
- * Lead time total
44
- * @format int64
45
- */
46
- leadTimeTotal?: number;
47
- /**
48
- * Pull request identifier
49
- */
50
- prId?: string;
51
- /**
52
- * PR merged branch
53
- */
54
- prMergedBranch?: string;
55
- /**
56
- * Pull request number
57
- */
58
- prNumber?: string;
59
- /**
60
- * Ticket identifier
61
- */
62
- ticketId?: string;
63
- }
@@ -1,19 +0,0 @@
1
- import type { DoraLeadTimeDrilldownResponse } from '../schemas/DoraLeadTimeDrilldownResponse';
2
- import type { PaginationInfo } from '../schemas/PaginationInfo';
3
- /**
4
- * Wrapper containing drilldown data list for Lead Time to Change metrics with pagination
5
- */
6
- export interface DoraLeadTimeDrilldownResponseWrapper {
7
- /**
8
- * List of drilldown responses
9
- */
10
- data?: DoraLeadTimeDrilldownResponse[];
11
- /**
12
- * Table headers for display
13
- */
14
- headers?: string[];
15
- /**
16
- * Pagination information
17
- */
18
- pagination?: PaginationInfo;
19
- }
@@ -1,5 +0,0 @@
1
- import type { PaginationRequest } from '../schemas/PaginationRequest';
2
- export interface DoraLeadTimePrDrilldownRequest {
3
- pagination?: PaginationRequest;
4
- prId: string;
5
- }
@@ -1,23 +0,0 @@
1
- import type { CodeChanges } from '../schemas/CodeChanges';
2
- /**
3
- * Response containing drilldown data for PRs in Lead Time to Change metrics
4
- */
5
- export interface DoraLeadTimePrDrilldownResponse {
6
- /**
7
- * author
8
- */
9
- author?: string;
10
- /**
11
- * code changes
12
- */
13
- codeChanges?: CodeChanges;
14
- /**
15
- * Commit identifier
16
- */
17
- commitId?: string;
18
- /**
19
- * Comitted at
20
- * @format date-time
21
- */
22
- committedAt?: string;
23
- }
@@ -1,15 +0,0 @@
1
- import type { DoraLeadTimePrDrilldownResponse } from '../schemas/DoraLeadTimePrDrilldownResponse';
2
- import type { PaginationInfo } from '../schemas/PaginationInfo';
3
- /**
4
- * Wrapper containing PR drilldown data list for Lead Time to Change metrics with pagination
5
- */
6
- export interface DoraLeadTimePrDrilldownResponseWrapper {
7
- /**
8
- * List of PR drilldown responses
9
- */
10
- data?: DoraLeadTimePrDrilldownResponse[];
11
- /**
12
- * Pagination information
13
- */
14
- pagination?: PaginationInfo;
15
- }