@harnessio/react-sei-panorama-service-client 0.15.0 → 0.16.1
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/useEfficiencyProfileControllerListProfilesQuery.d.ts +3 -3
- package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerListProfilesQuery.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/index.d.ts +8 -15
- package/dist/sei-panorama-service/src/services/schemas/CfrConfigurationDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/DfConfigurationDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyProfileCreateRequestDto.d.ts +8 -7
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyProfileResponseDto.d.ts +8 -7
- package/dist/sei-panorama-service/src/services/schemas/EventWrapperDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/{DbListResponseEfficiencyProfileResponseDto.d.ts → ListResponseDtoEfficiencyProfileResponseDto.d.ts} +4 -4
- package/dist/sei-panorama-service/src/services/schemas/{DbListResponseProductivityProfileResponseDto.d.ts → ListResponseDtoProductivityProfileResponseDto.d.ts} +4 -4
- package/dist/sei-panorama-service/src/services/schemas/LtcConfigurationDto.d.ts +8 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrConfigurationDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureRequestDto.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/schemas/StageDto.d.ts +11 -0
- package/dist/sei-panorama-service/src/services/schemas/WorkCompletedDrilldownResponseDataPoint.d.ts +1 -0
- package/package.json +1 -1
- package/dist/sei-panorama-service/src/services/schemas/AdditionalFilters.d.ts +0 -5
- package/dist/sei-panorama-service/src/services/schemas/ChangeFailureRateConfiguration.d.ts +0 -8
- package/dist/sei-panorama-service/src/services/schemas/Condition.d.ts +0 -5
- package/dist/sei-panorama-service/src/services/schemas/DeploymentConfiguration.d.ts +0 -6
- package/dist/sei-panorama-service/src/services/schemas/DeploymentFrequencyConfiguration.d.ts +0 -7
- package/dist/sei-panorama-service/src/services/schemas/DoraMetadata.d.ts +0 -5
- package/dist/sei-panorama-service/src/services/schemas/DoraMetadata.js +0 -4
- package/dist/sei-panorama-service/src/services/schemas/DoraStage.d.ts +0 -22
- package/dist/sei-panorama-service/src/services/schemas/Event.d.ts +0 -7
- package/dist/sei-panorama-service/src/services/schemas/Event.js +0 -1
- package/dist/sei-panorama-service/src/services/schemas/FilterCriteria.d.ts +0 -7
- package/dist/sei-panorama-service/src/services/schemas/FilterCriteria.js +0 -4
- package/dist/sei-panorama-service/src/services/schemas/FilterGroup.d.ts +0 -4
- package/dist/sei-panorama-service/src/services/schemas/FilterGroup.js +0 -1
- package/dist/sei-panorama-service/src/services/schemas/Filters.d.ts +0 -5
- package/dist/sei-panorama-service/src/services/schemas/Filters.js +0 -1
- package/dist/sei-panorama-service/src/services/schemas/MetricConfiguration.d.ts +0 -9
- package/dist/sei-panorama-service/src/services/schemas/MetricConfiguration.js +0 -1
- package/dist/sei-panorama-service/src/services/schemas/Resolution.d.ts +0 -4
- package/dist/sei-panorama-service/src/services/schemas/Resolution.js +0 -1
- /package/dist/sei-panorama-service/src/services/schemas/{AdditionalFilters.js → CfrConfigurationDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{ChangeFailureRateConfiguration.js → DfConfigurationDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{Condition.js → EventWrapperDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{DbListResponseEfficiencyProfileResponseDto.js → ListResponseDtoEfficiencyProfileResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{DbListResponseProductivityProfileResponseDto.js → ListResponseDtoProductivityProfileResponseDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{DeploymentConfiguration.js → LtcConfigurationDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{DeploymentFrequencyConfiguration.js → MttrConfigurationDto.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{DoraStage.js → StageDto.js} +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
-
import type {
|
2
|
+
import type { ListResponseDtoEfficiencyProfileResponseDto } from '../schemas/ListResponseDtoEfficiencyProfileResponseDto';
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
5
5
|
export interface EfficiencyProfileControllerListProfilesQueryQueryParams {
|
@@ -13,9 +13,9 @@ export interface EfficiencyProfileControllerListProfilesQueryQueryParams {
|
|
13
13
|
* @default 50
|
14
14
|
*/
|
15
15
|
pageSize?: number;
|
16
|
-
|
16
|
+
accountIdentifier: string;
|
17
17
|
}
|
18
|
-
export type EfficiencyProfileControllerListProfilesOkResponse = ResponseWithPagination<
|
18
|
+
export type EfficiencyProfileControllerListProfilesOkResponse = ResponseWithPagination<ListResponseDtoEfficiencyProfileResponseDto>;
|
19
19
|
export type EfficiencyProfileControllerListProfilesErrorResponse = unknown;
|
20
20
|
export interface EfficiencyProfileControllerListProfilesProps extends Omit<FetcherOptions<EfficiencyProfileControllerListProfilesQueryQueryParams, unknown>, 'url'> {
|
21
21
|
queryParams: EfficiencyProfileControllerListProfilesQueryQueryParams;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
-
import type {
|
2
|
+
import type { ListResponseDtoProductivityProfileResponseDto } from '../schemas/ListResponseDtoProductivityProfileResponseDto';
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
5
5
|
export interface ProductivityProfileControllerListProfilesQueryQueryParams {
|
@@ -15,7 +15,7 @@ export interface ProductivityProfileControllerListProfilesQueryQueryParams {
|
|
15
15
|
pageSize?: number;
|
16
16
|
accountIdentifier: string;
|
17
17
|
}
|
18
|
-
export type ProductivityProfileControllerListProfilesOkResponse = ResponseWithPagination<
|
18
|
+
export type ProductivityProfileControllerListProfilesOkResponse = ResponseWithPagination<ListResponseDtoProductivityProfileResponseDto>;
|
19
19
|
export type ProductivityProfileControllerListProfilesErrorResponse = unknown;
|
20
20
|
export interface ProductivityProfileControllerListProfilesProps extends Omit<FetcherOptions<ProductivityProfileControllerListProfilesQueryQueryParams, unknown>, 'url'> {
|
21
21
|
queryParams: ProductivityProfileControllerListProfilesQueryQueryParams;
|
@@ -81,25 +81,20 @@ export type { ProductivityProfileControllerListProfilesErrorResponse, Productivi
|
|
81
81
|
export { productivityProfileControllerListProfiles, useProductivityProfileControllerListProfilesQuery, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
82
82
|
export type { ProductivityProfileControllerUpdateProfileErrorResponse, ProductivityProfileControllerUpdateProfileMutationPathParams, ProductivityProfileControllerUpdateProfileMutationQueryParams, ProductivityProfileControllerUpdateProfileOkResponse, ProductivityProfileControllerUpdateProfileProps, ProductivityProfileControllerUpdateProfileRequestBody, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
83
83
|
export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
84
|
-
export type { AdditionalFilters } from './schemas/AdditionalFilters';
|
85
84
|
export type { Category } from './schemas/Category';
|
86
|
-
export type {
|
85
|
+
export type { CfrConfigurationDto } from './schemas/CfrConfigurationDto';
|
87
86
|
export type { CodeChangeStats } from './schemas/CodeChangeStats';
|
88
87
|
export type { CodeChanges } from './schemas/CodeChanges';
|
89
88
|
export type { CollectionEnriched } from './schemas/CollectionEnriched';
|
90
89
|
export type { CollectionFilter } from './schemas/CollectionFilter';
|
91
90
|
export type { CollectionTree } from './schemas/CollectionTree';
|
92
|
-
export type { Condition } from './schemas/Condition';
|
93
91
|
export type { DataPoint } from './schemas/DataPoint';
|
94
92
|
export type { DataPointBreakdown } from './schemas/DataPointBreakdown';
|
95
93
|
export type { DataPointChangeFailureRate } from './schemas/DataPointChangeFailureRate';
|
96
94
|
export type { DataPointDeploymentFrequency } from './schemas/DataPointDeploymentFrequency';
|
97
95
|
export type { DbListResponseCategory } from './schemas/DbListResponseCategory';
|
98
96
|
export type { DbListResponseCollectionTree } from './schemas/DbListResponseCollectionTree';
|
99
|
-
export type {
|
100
|
-
export type { DbListResponseProductivityProfileResponseDto } from './schemas/DbListResponseProductivityProfileResponseDto';
|
101
|
-
export type { DeploymentConfiguration } from './schemas/DeploymentConfiguration';
|
102
|
-
export type { DeploymentFrequencyConfiguration } from './schemas/DeploymentFrequencyConfiguration';
|
97
|
+
export type { DfConfigurationDto } from './schemas/DfConfigurationDto';
|
103
98
|
export type { DoraChangeFailureRateMetric } from './schemas/DoraChangeFailureRateMetric';
|
104
99
|
export type { DoraChangeFailureRateMetricBreakdown } from './schemas/DoraChangeFailureRateMetricBreakdown';
|
105
100
|
export type { DoraDeploymentFrequencyMetric } from './schemas/DoraDeploymentFrequencyMetric';
|
@@ -111,11 +106,9 @@ export type { DoraLeadTimePrDrilldownResponse } from './schemas/DoraLeadTimePrDr
|
|
111
106
|
export type { DoraLeadTimePrDrilldownResponseWrapper } from './schemas/DoraLeadTimePrDrilldownResponseWrapper';
|
112
107
|
export type { DoraLttcMttrMetric } from './schemas/DoraLttcMttrMetric';
|
113
108
|
export type { DoraLttcMttrMetricBreakdown } from './schemas/DoraLttcMttrMetricBreakdown';
|
114
|
-
export type { DoraMetadata } from './schemas/DoraMetadata';
|
115
109
|
export type { DoraMetricDrilldownFiltersResponse } from './schemas/DoraMetricDrilldownFiltersResponse';
|
116
110
|
export type { DoraMetricDrilldownRequest } from './schemas/DoraMetricDrilldownRequest';
|
117
111
|
export type { DoraRequest } from './schemas/DoraRequest';
|
118
|
-
export type { DoraStage } from './schemas/DoraStage';
|
119
112
|
export type { DoraSummaryMetric } from './schemas/DoraSummaryMetric';
|
120
113
|
export type { DoraSummaryRequest } from './schemas/DoraSummaryRequest';
|
121
114
|
export type { DrilldownData } from './schemas/DrilldownData';
|
@@ -124,11 +117,8 @@ export type { EfficiencyProfileCreateRequestDto } from './schemas/EfficiencyProf
|
|
124
117
|
export type { EfficiencyProfileResponseDto } from './schemas/EfficiencyProfileResponseDto';
|
125
118
|
export type { EfficiencyRequestDto } from './schemas/EfficiencyRequestDto';
|
126
119
|
export type { ErrorResponse } from './schemas/ErrorResponse';
|
127
|
-
export type {
|
120
|
+
export type { EventWrapperDto } from './schemas/EventWrapperDto';
|
128
121
|
export type { ExportRequestDto } from './schemas/ExportRequestDto';
|
129
|
-
export type { FilterCriteria } from './schemas/FilterCriteria';
|
130
|
-
export type { FilterGroup } from './schemas/FilterGroup';
|
131
|
-
export type { Filters } from './schemas/Filters';
|
132
122
|
export type { IndividualDrilldownData } from './schemas/IndividualDrilldownData';
|
133
123
|
export type { IndividualDrilldownDataPoint } from './schemas/IndividualDrilldownDataPoint';
|
134
124
|
export type { InsightEfficiencySettingsDto } from './schemas/InsightEfficiencySettingsDto';
|
@@ -136,7 +126,10 @@ export type { InsightProductivitySettingsDto } from './schemas/InsightProductivi
|
|
136
126
|
export type { InsightSettingsCreateRequestDto } from './schemas/InsightSettingsCreateRequestDto';
|
137
127
|
export type { InsightSettingsResponseDto } from './schemas/InsightSettingsResponseDto';
|
138
128
|
export type { IntegrationObject } from './schemas/IntegrationObject';
|
139
|
-
export type {
|
129
|
+
export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
|
130
|
+
export type { ListResponseDtoProductivityProfileResponseDto } from './schemas/ListResponseDtoProductivityProfileResponseDto';
|
131
|
+
export type { LtcConfigurationDto } from './schemas/LtcConfigurationDto';
|
132
|
+
export type { MttrConfigurationDto } from './schemas/MttrConfigurationDto';
|
140
133
|
export type { PaginationInfo } from './schemas/PaginationInfo';
|
141
134
|
export type { PaginationRequest } from './schemas/PaginationRequest';
|
142
135
|
export type { PrSize } from './schemas/PrSize';
|
@@ -154,8 +147,8 @@ export type { ProductivityProfileCreateRequestDto } from './schemas/Productivity
|
|
154
147
|
export type { ProductivityProfileResponseDto } from './schemas/ProductivityProfileResponseDto';
|
155
148
|
export type { ProductivityRequestDto } from './schemas/ProductivityRequestDto';
|
156
149
|
export type { ProductivitySection } from './schemas/ProductivitySection';
|
157
|
-
export type { Resolution } from './schemas/Resolution';
|
158
150
|
export type { Stage } from './schemas/Stage';
|
151
|
+
export type { StageDto } from './schemas/StageDto';
|
159
152
|
export type { SummaryCard } from './schemas/SummaryCard';
|
160
153
|
export type { SummaryValue } from './schemas/SummaryValue';
|
161
154
|
export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
package/dist/sei-panorama-service/src/services/schemas/EfficiencyProfileCreateRequestDto.d.ts
CHANGED
@@ -1,11 +1,12 @@
|
|
1
|
-
import type {
|
2
|
-
import type {
|
3
|
-
import type {
|
1
|
+
import type { CfrConfigurationDto } from '../schemas/CfrConfigurationDto';
|
2
|
+
import type { DfConfigurationDto } from '../schemas/DfConfigurationDto';
|
3
|
+
import type { LtcConfigurationDto } from '../schemas/LtcConfigurationDto';
|
4
|
+
import type { MttrConfigurationDto } from '../schemas/MttrConfigurationDto';
|
4
5
|
export interface EfficiencyProfileCreateRequestDto {
|
5
|
-
changeFailureRate?:
|
6
|
-
deploymentFrequency?:
|
6
|
+
changeFailureRate?: CfrConfigurationDto;
|
7
|
+
deploymentFrequency?: DfConfigurationDto;
|
7
8
|
description?: string;
|
8
|
-
leadTimeForChanges?:
|
9
|
-
meanTimeToRestore?:
|
9
|
+
leadTimeForChanges?: LtcConfigurationDto;
|
10
|
+
meanTimeToRestore?: MttrConfigurationDto;
|
10
11
|
name?: string;
|
11
12
|
}
|
@@ -1,21 +1,22 @@
|
|
1
|
-
import type {
|
2
|
-
import type {
|
3
|
-
import type {
|
1
|
+
import type { CfrConfigurationDto } from '../schemas/CfrConfigurationDto';
|
2
|
+
import type { DfConfigurationDto } from '../schemas/DfConfigurationDto';
|
3
|
+
import type { LtcConfigurationDto } from '../schemas/LtcConfigurationDto';
|
4
|
+
import type { MttrConfigurationDto } from '../schemas/MttrConfigurationDto';
|
4
5
|
export interface EfficiencyProfileResponseDto {
|
5
|
-
changeFailureRate?:
|
6
|
+
changeFailureRate?: CfrConfigurationDto;
|
6
7
|
/**
|
7
8
|
* @format int64
|
8
9
|
*/
|
9
10
|
createdAtEpochSec?: number;
|
10
11
|
createdByEmail?: string;
|
11
|
-
deploymentFrequency?:
|
12
|
+
deploymentFrequency?: DfConfigurationDto;
|
12
13
|
description?: string;
|
13
14
|
/**
|
14
15
|
* @format int32
|
15
16
|
*/
|
16
17
|
id?: number;
|
17
|
-
leadTimeForChanges?:
|
18
|
-
meanTimeToRestore?:
|
18
|
+
leadTimeForChanges?: LtcConfigurationDto;
|
19
|
+
meanTimeToRestore?: MttrConfigurationDto;
|
19
20
|
name?: string;
|
20
21
|
/**
|
21
22
|
* @format int64
|
@@ -1,16 +1,16 @@
|
|
1
1
|
import type { EfficiencyProfileResponseDto } from '../schemas/EfficiencyProfileResponseDto';
|
2
|
-
export interface
|
2
|
+
export interface ListResponseDtoEfficiencyProfileResponseDto {
|
3
3
|
/**
|
4
4
|
* @format int32
|
5
5
|
*/
|
6
|
-
|
6
|
+
pageIndex?: number;
|
7
7
|
/**
|
8
8
|
* @format int32
|
9
9
|
*/
|
10
|
-
|
10
|
+
pageSize?: number;
|
11
11
|
records?: EfficiencyProfileResponseDto[];
|
12
12
|
/**
|
13
13
|
* @format int32
|
14
14
|
*/
|
15
|
-
|
15
|
+
totalCount?: number;
|
16
16
|
}
|
@@ -1,16 +1,16 @@
|
|
1
1
|
import type { ProductivityProfileResponseDto } from '../schemas/ProductivityProfileResponseDto';
|
2
|
-
export interface
|
2
|
+
export interface ListResponseDtoProductivityProfileResponseDto {
|
3
3
|
/**
|
4
4
|
* @format int32
|
5
5
|
*/
|
6
|
-
|
6
|
+
pageIndex?: number;
|
7
7
|
/**
|
8
8
|
* @format int32
|
9
9
|
*/
|
10
|
-
|
10
|
+
pageSize?: number;
|
11
11
|
records?: ProductivityProfileResponseDto[];
|
12
12
|
/**
|
13
13
|
* @format int32
|
14
14
|
*/
|
15
|
-
|
15
|
+
totalCount?: number;
|
16
16
|
}
|
@@ -18,6 +18,8 @@ export interface ProductivityFeatureRequestDto {
|
|
18
18
|
* @format int32
|
19
19
|
*/
|
20
20
|
page_size?: number;
|
21
|
+
sortBy?: 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'PR_AVERAGE_TIME_TO_MERGE' | 'PR_CREATED_AT' | 'PR_ID' | 'PR_MERGED_AT' | 'WORKITEM_AVERAGE_TIME_TO_COMPLETE' | 'WORKITEM_COMPLETED_COUNT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_MERGED_AT';
|
22
|
+
sortByCriteria?: 'ASC' | 'DESC';
|
21
23
|
stackBy?: 'PRIORITY' | 'PR_SIZE' | 'TICKET_SIZE' | 'WORK_TYPE';
|
22
24
|
/**
|
23
25
|
* @format date-time
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.16.1",
|
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,8 +0,0 @@
|
|
1
|
-
import type { DeploymentConfiguration } from '../schemas/DeploymentConfiguration';
|
2
|
-
import type { DoraMetadata } from '../schemas/DoraMetadata';
|
3
|
-
export interface ChangeFailureRateConfiguration {
|
4
|
-
base?: 'cicd';
|
5
|
-
failed_deployment?: DeploymentConfiguration;
|
6
|
-
metadata?: DoraMetadata;
|
7
|
-
total_deployment?: DeploymentConfiguration;
|
8
|
-
}
|
package/dist/sei-panorama-service/src/services/schemas/DeploymentFrequencyConfiguration.d.ts
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
import type { DoraMetadata } from '../schemas/DoraMetadata';
|
2
|
-
import type { DeploymentConfiguration } from '../schemas/DeploymentConfiguration';
|
3
|
-
export interface DeploymentFrequencyConfiguration {
|
4
|
-
base?: 'cicd';
|
5
|
-
metadata?: DoraMetadata;
|
6
|
-
total_deployment?: DeploymentConfiguration;
|
7
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import type { Event } from '../schemas/Event';
|
2
|
-
export interface DoraStage {
|
3
|
-
display_name?: string;
|
4
|
-
enabled?: boolean;
|
5
|
-
end_event?: Event;
|
6
|
-
lower_limit_unit?: 'DAYS';
|
7
|
-
/**
|
8
|
-
* @format int32
|
9
|
-
*/
|
10
|
-
lower_limit_value?: number;
|
11
|
-
name?: '' | 'Build' | 'Coding' | 'Deployment' | 'Planning' | 'Review';
|
12
|
-
/**
|
13
|
-
* @format int32
|
14
|
-
*/
|
15
|
-
order?: number;
|
16
|
-
start_event?: Event;
|
17
|
-
upper_limit_unit?: 'DAYS';
|
18
|
-
/**
|
19
|
-
* @format int32
|
20
|
-
*/
|
21
|
-
upper_limit_value?: number;
|
22
|
-
}
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import type { Condition } from '../schemas/Condition';
|
2
|
-
export interface Event {
|
3
|
-
calculation_field?: string;
|
4
|
-
conditions?: Condition[];
|
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
|
-
values?: string[];
|
7
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import type { AdditionalFilters } from '../schemas/AdditionalFilters';
|
2
|
-
import type { Resolution } from '../schemas/Resolution';
|
3
|
-
import type { DoraStage } from '../schemas/DoraStage';
|
4
|
-
export interface MetricConfiguration {
|
5
|
-
additional_filters?: AdditionalFilters;
|
6
|
-
base?: string;
|
7
|
-
resolution?: Resolution;
|
8
|
-
stages?: DoraStage[];
|
9
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|