@harnessio/react-sei-panorama-service-client 0.31.10 → 0.31.12
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/useAiEngineeringControllerGetProductivityBreakdownQuery.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivityDrilldownQuery.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivitySummaryQuery.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetTargetBranchesQuery.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetTargetBranchesQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerCompareV1AndV2Query.d.ts +13 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerCompareV1AndV2Query.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerGetStatusQuery.d.ts +13 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerGetStatusQuery.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerRollbackMutation.d.ts +13 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerRollbackMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerStartMigrationMutation.d.ts +16 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerStartMigrationMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerValidateMutation.d.ts +13 -0
- package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerValidateMutation.js +11 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/index.js +6 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactBreakdownItem.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/ComparisonResults.d.ts +15 -0
- package/dist/sei-panorama-service/src/services/schemas/ComparisonResults.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMetricDrilldownRequest.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyRequest.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/EntityDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/EntityRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/MigrationJobResponse.d.ts +7 -0
- package/dist/sei-panorama-service/src/services/schemas/MigrationJobResponse.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/MigrationOptions.d.ts +15 -0
- package/dist/sei-panorama-service/src/services/schemas/MigrationOptions.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/MigrationStatusResponse.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/schemas/MigrationStatusResponse.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/RollbackResponse.d.ts +25 -0
- package/dist/sei-panorama-service/src/services/schemas/RollbackResponse.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ValidationReportResponse.d.ts +10 -0
- package/dist/sei-panorama-service/src/services/schemas/ValidationReportResponse.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/ValidationSummary.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/schemas/ValidationSummary.js +4 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export interface AiEngineeringControllerGetProductivityBreakdownQueryQueryParams
|
|
|
24
24
|
role?: string;
|
|
25
25
|
work_type?: string;
|
|
26
26
|
pr_size?: string;
|
|
27
|
+
target_branch?: string;
|
|
27
28
|
}
|
|
28
29
|
export type AiEngineeringControllerGetProductivityBreakdownOkResponse = ResponseWithPagination<ApiResponseAiEngineeringImpactBreakdownData>;
|
|
29
30
|
export type AiEngineeringControllerGetProductivityBreakdownErrorResponse = unknown;
|
|
@@ -24,6 +24,7 @@ export interface AiEngineeringControllerGetProductivitySummaryQueryQueryParams {
|
|
|
24
24
|
role?: string;
|
|
25
25
|
work_type?: string;
|
|
26
26
|
pr_size?: string;
|
|
27
|
+
target_branch?: string;
|
|
27
28
|
}
|
|
28
29
|
export type AiEngineeringControllerGetProductivitySummaryOkResponse = ResponseWithPagination<ApiResponseAiEngineeringImpactSummaryData>;
|
|
29
30
|
export type AiEngineeringControllerGetProductivitySummaryErrorResponse = unknown;
|
|
@@ -7,7 +7,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export type DeveloperControllerUpsertDeveloperIdentitiesRequestBody = DeveloperIdentity[];
|
|
9
9
|
export type DeveloperControllerUpsertDeveloperIdentitiesOkResponse = ResponseWithPagination<DeveloperIdentityUpsertResponse>;
|
|
10
|
-
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
|
|
10
|
+
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = (DeveloperIdentityUpsertFailureResponse & ErrorResponse) | ErrorResponse;
|
|
11
11
|
export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
|
|
12
12
|
body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
|
|
13
13
|
}
|
package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetTargetBranchesQuery.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
3
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
4
|
+
export interface ScmGaControllerGetTargetBranchesQueryQueryParams {
|
|
5
|
+
schema: string;
|
|
6
|
+
team_ref_id?: string;
|
|
7
|
+
start_date?: string;
|
|
8
|
+
end_date?: string;
|
|
9
|
+
}
|
|
10
|
+
export type ScmGaControllerGetTargetBranchesOkResponse = ResponseWithPagination<string[]>;
|
|
11
|
+
export type ScmGaControllerGetTargetBranchesErrorResponse = unknown;
|
|
12
|
+
export interface ScmGaControllerGetTargetBranchesProps extends Omit<FetcherOptions<ScmGaControllerGetTargetBranchesQueryQueryParams, unknown>, 'url'> {
|
|
13
|
+
queryParams: ScmGaControllerGetTargetBranchesQueryQueryParams;
|
|
14
|
+
}
|
|
15
|
+
export declare function scmGaControllerGetTargetBranches(props: ScmGaControllerGetTargetBranchesProps): Promise<ScmGaControllerGetTargetBranchesOkResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Populates the target-branch filter dropdown. team_ref_id is accepted but not used in the query.
|
|
18
|
+
*/
|
|
19
|
+
export declare function useScmGaControllerGetTargetBranchesQuery(props: ScmGaControllerGetTargetBranchesProps, options?: Omit<UseQueryOptions<ScmGaControllerGetTargetBranchesOkResponse, ScmGaControllerGetTargetBranchesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ScmGaControllerGetTargetBranchesOkResponse, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetTargetBranchesQuery.js
ADDED
|
@@ -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 { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function scmGaControllerGetTargetBranches(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/scm/pr/target-branches`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Populates the target-branch filter dropdown. team_ref_id is accepted but not used in the query.
|
|
11
|
+
*/
|
|
12
|
+
export function useScmGaControllerGetTargetBranchesQuery(props, options) {
|
|
13
|
+
return useQuery(['ScmGaControllerGetTargetBranches', props.queryParams], ({ signal }) => scmGaControllerGetTargetBranches(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ValidationReportResponse } from '../schemas/ValidationReportResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface V1ToV2MigrationControllerCompareV1AndV2QueryPathParams {
|
|
6
|
+
tenantId: string;
|
|
7
|
+
}
|
|
8
|
+
export type V1ToV2MigrationControllerCompareV1AndV2OkResponse = ResponseWithPagination<ValidationReportResponse>;
|
|
9
|
+
export type V1ToV2MigrationControllerCompareV1AndV2ErrorResponse = unknown;
|
|
10
|
+
export interface V1ToV2MigrationControllerCompareV1AndV2Props extends V1ToV2MigrationControllerCompareV1AndV2QueryPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
11
|
+
}
|
|
12
|
+
export declare function v1ToV2MigrationControllerCompareV1AndV2(props: V1ToV2MigrationControllerCompareV1AndV2Props): Promise<V1ToV2MigrationControllerCompareV1AndV2OkResponse>;
|
|
13
|
+
export declare function useV1ToV2MigrationControllerCompareV1AndV2Query(props: V1ToV2MigrationControllerCompareV1AndV2Props, options?: Omit<UseQueryOptions<V1ToV2MigrationControllerCompareV1AndV2OkResponse, V1ToV2MigrationControllerCompareV1AndV2ErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<V1ToV2MigrationControllerCompareV1AndV2OkResponse, unknown>;
|
|
@@ -0,0 +1,11 @@
|
|
|
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 v1ToV2MigrationControllerCompareV1AndV2(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/internal/migration/v1-to-v2/tenants/${props.tenantId}/comparison`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
export function useV1ToV2MigrationControllerCompareV1AndV2Query(props, options) {
|
|
10
|
+
return useQuery(['V1ToV2MigrationControllerCompareV1AndV2', props.tenantId], ({ signal }) => v1ToV2MigrationControllerCompareV1AndV2(Object.assign(Object.assign({}, props), { signal })), options);
|
|
11
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerGetStatusQuery.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { MigrationStatusResponse } from '../schemas/MigrationStatusResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface V1ToV2MigrationControllerGetStatusQueryPathParams {
|
|
6
|
+
tenantId: string;
|
|
7
|
+
}
|
|
8
|
+
export type V1ToV2MigrationControllerGetStatusOkResponse = ResponseWithPagination<MigrationStatusResponse>;
|
|
9
|
+
export type V1ToV2MigrationControllerGetStatusErrorResponse = unknown;
|
|
10
|
+
export interface V1ToV2MigrationControllerGetStatusProps extends V1ToV2MigrationControllerGetStatusQueryPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
11
|
+
}
|
|
12
|
+
export declare function v1ToV2MigrationControllerGetStatus(props: V1ToV2MigrationControllerGetStatusProps): Promise<V1ToV2MigrationControllerGetStatusOkResponse>;
|
|
13
|
+
export declare function useV1ToV2MigrationControllerGetStatusQuery(props: V1ToV2MigrationControllerGetStatusProps, options?: Omit<UseQueryOptions<V1ToV2MigrationControllerGetStatusOkResponse, V1ToV2MigrationControllerGetStatusErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<V1ToV2MigrationControllerGetStatusOkResponse, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerGetStatusQuery.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
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 v1ToV2MigrationControllerGetStatus(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/internal/migration/v1-to-v2/tenants/${props.tenantId}/status`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
export function useV1ToV2MigrationControllerGetStatusQuery(props, options) {
|
|
10
|
+
return useQuery(['V1ToV2MigrationControllerGetStatus', props.tenantId], ({ signal }) => v1ToV2MigrationControllerGetStatus(Object.assign(Object.assign({}, props), { signal })), options);
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RollbackResponse } from '../schemas/RollbackResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface V1ToV2MigrationControllerRollbackMutationPathParams {
|
|
6
|
+
tenantId: string;
|
|
7
|
+
}
|
|
8
|
+
export type V1ToV2MigrationControllerRollbackOkResponse = ResponseWithPagination<RollbackResponse>;
|
|
9
|
+
export type V1ToV2MigrationControllerRollbackErrorResponse = unknown;
|
|
10
|
+
export interface V1ToV2MigrationControllerRollbackProps extends V1ToV2MigrationControllerRollbackMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
11
|
+
}
|
|
12
|
+
export declare function v1ToV2MigrationControllerRollback(props: V1ToV2MigrationControllerRollbackProps): Promise<V1ToV2MigrationControllerRollbackOkResponse>;
|
|
13
|
+
export declare function useV1ToV2MigrationControllerRollbackMutation(options?: Omit<UseMutationOptions<V1ToV2MigrationControllerRollbackOkResponse, V1ToV2MigrationControllerRollbackErrorResponse, V1ToV2MigrationControllerRollbackProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<V1ToV2MigrationControllerRollbackOkResponse, unknown, V1ToV2MigrationControllerRollbackProps, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerRollbackMutation.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
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 v1ToV2MigrationControllerRollback(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/internal/migration/v1-to-v2/tenants/${props.tenantId}/rollback`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
export function useV1ToV2MigrationControllerRollbackMutation(options) {
|
|
10
|
+
return useMutation((mutateProps) => v1ToV2MigrationControllerRollback(mutateProps), options);
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { MigrationJobResponse } from '../schemas/MigrationJobResponse';
|
|
3
|
+
import type { MigrationOptions } from '../schemas/MigrationOptions';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface V1ToV2MigrationControllerStartMigrationMutationPathParams {
|
|
7
|
+
tenantId: string;
|
|
8
|
+
}
|
|
9
|
+
export type V1ToV2MigrationControllerStartMigrationRequestBody = MigrationOptions;
|
|
10
|
+
export type V1ToV2MigrationControllerStartMigrationOkResponse = ResponseWithPagination<MigrationJobResponse>;
|
|
11
|
+
export type V1ToV2MigrationControllerStartMigrationErrorResponse = unknown;
|
|
12
|
+
export interface V1ToV2MigrationControllerStartMigrationProps extends V1ToV2MigrationControllerStartMigrationMutationPathParams, Omit<FetcherOptions<unknown, V1ToV2MigrationControllerStartMigrationRequestBody>, 'url'> {
|
|
13
|
+
body: V1ToV2MigrationControllerStartMigrationRequestBody;
|
|
14
|
+
}
|
|
15
|
+
export declare function v1ToV2MigrationControllerStartMigration(props: V1ToV2MigrationControllerStartMigrationProps): Promise<V1ToV2MigrationControllerStartMigrationOkResponse>;
|
|
16
|
+
export declare function useV1ToV2MigrationControllerStartMigrationMutation(options?: Omit<UseMutationOptions<V1ToV2MigrationControllerStartMigrationOkResponse, V1ToV2MigrationControllerStartMigrationErrorResponse, V1ToV2MigrationControllerStartMigrationProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<V1ToV2MigrationControllerStartMigrationOkResponse, unknown, V1ToV2MigrationControllerStartMigrationProps, unknown>;
|
|
@@ -0,0 +1,11 @@
|
|
|
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 v1ToV2MigrationControllerStartMigration(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/internal/migration/v1-to-v2/tenants/${props.tenantId}/migrate`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
export function useV1ToV2MigrationControllerStartMigrationMutation(options) {
|
|
10
|
+
return useMutation((mutateProps) => v1ToV2MigrationControllerStartMigration(mutateProps), options);
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ValidationReportResponse } from '../schemas/ValidationReportResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface V1ToV2MigrationControllerValidateMutationPathParams {
|
|
6
|
+
tenantId: string;
|
|
7
|
+
}
|
|
8
|
+
export type V1ToV2MigrationControllerValidateOkResponse = ResponseWithPagination<ValidationReportResponse>;
|
|
9
|
+
export type V1ToV2MigrationControllerValidateErrorResponse = unknown;
|
|
10
|
+
export interface V1ToV2MigrationControllerValidateProps extends V1ToV2MigrationControllerValidateMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
11
|
+
}
|
|
12
|
+
export declare function v1ToV2MigrationControllerValidate(props: V1ToV2MigrationControllerValidateProps): Promise<V1ToV2MigrationControllerValidateOkResponse>;
|
|
13
|
+
export declare function useV1ToV2MigrationControllerValidateMutation(options?: Omit<UseMutationOptions<V1ToV2MigrationControllerValidateOkResponse, V1ToV2MigrationControllerValidateErrorResponse, V1ToV2MigrationControllerValidateProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<V1ToV2MigrationControllerValidateOkResponse, unknown, V1ToV2MigrationControllerValidateProps, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useV1ToV2MigrationControllerValidateMutation.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
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 v1ToV2MigrationControllerValidate(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/api/internal/migration/v1-to-v2/tenants/${props.tenantId}/validate`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
export function useV1ToV2MigrationControllerValidateMutation(options) {
|
|
10
|
+
return useMutation((mutateProps) => v1ToV2MigrationControllerValidate(mutateProps), options);
|
|
11
|
+
}
|
|
@@ -539,6 +539,8 @@ export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGet
|
|
|
539
539
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
540
540
|
export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
541
541
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
542
|
+
export type { ScmGaControllerGetTargetBranchesErrorResponse, ScmGaControllerGetTargetBranchesOkResponse, ScmGaControllerGetTargetBranchesProps, ScmGaControllerGetTargetBranchesQueryQueryParams, } from './hooks/useScmGaControllerGetTargetBranchesQuery';
|
|
543
|
+
export { scmGaControllerGetTargetBranches, useScmGaControllerGetTargetBranchesQuery, } from './hooks/useScmGaControllerGetTargetBranchesQuery';
|
|
542
544
|
export type { SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownErrorResponse, SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownOkResponse, SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownProps, SecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery';
|
|
543
545
|
export { securityInsightsControllerGetOpenVulnerabilitiesBreakdown, useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery';
|
|
544
546
|
export type { SecurityInsightsControllerGetOpenVulnerabilitiesErrorResponse, SecurityInsightsControllerGetOpenVulnerabilitiesOkResponse, SecurityInsightsControllerGetOpenVulnerabilitiesProps, SecurityInsightsControllerGetOpenVulnerabilitiesQueryQueryParams, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesQuery';
|
|
@@ -655,6 +657,16 @@ export type { TeamsControllerUpdateTeamIntegrationsErrorResponse, TeamsControlle
|
|
|
655
657
|
export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
|
|
656
658
|
export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamMutationPathParams, TeamsControllerUpdateTeamMutationQueryParams, TeamsControllerUpdateTeamOkResponse, TeamsControllerUpdateTeamProps, TeamsControllerUpdateTeamRequestBody, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
657
659
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
660
|
+
export type { V1ToV2MigrationControllerCompareV1AndV2ErrorResponse, V1ToV2MigrationControllerCompareV1AndV2OkResponse, V1ToV2MigrationControllerCompareV1AndV2Props, V1ToV2MigrationControllerCompareV1AndV2QueryPathParams, } from './hooks/useV1ToV2MigrationControllerCompareV1AndV2Query';
|
|
661
|
+
export { useV1ToV2MigrationControllerCompareV1AndV2Query, v1ToV2MigrationControllerCompareV1AndV2, } from './hooks/useV1ToV2MigrationControllerCompareV1AndV2Query';
|
|
662
|
+
export type { V1ToV2MigrationControllerGetStatusErrorResponse, V1ToV2MigrationControllerGetStatusOkResponse, V1ToV2MigrationControllerGetStatusProps, V1ToV2MigrationControllerGetStatusQueryPathParams, } from './hooks/useV1ToV2MigrationControllerGetStatusQuery';
|
|
663
|
+
export { useV1ToV2MigrationControllerGetStatusQuery, v1ToV2MigrationControllerGetStatus, } from './hooks/useV1ToV2MigrationControllerGetStatusQuery';
|
|
664
|
+
export type { V1ToV2MigrationControllerRollbackErrorResponse, V1ToV2MigrationControllerRollbackMutationPathParams, V1ToV2MigrationControllerRollbackOkResponse, V1ToV2MigrationControllerRollbackProps, } from './hooks/useV1ToV2MigrationControllerRollbackMutation';
|
|
665
|
+
export { useV1ToV2MigrationControllerRollbackMutation, v1ToV2MigrationControllerRollback, } from './hooks/useV1ToV2MigrationControllerRollbackMutation';
|
|
666
|
+
export type { V1ToV2MigrationControllerStartMigrationErrorResponse, V1ToV2MigrationControllerStartMigrationMutationPathParams, V1ToV2MigrationControllerStartMigrationOkResponse, V1ToV2MigrationControllerStartMigrationProps, V1ToV2MigrationControllerStartMigrationRequestBody, } from './hooks/useV1ToV2MigrationControllerStartMigrationMutation';
|
|
667
|
+
export { useV1ToV2MigrationControllerStartMigrationMutation, v1ToV2MigrationControllerStartMigration, } from './hooks/useV1ToV2MigrationControllerStartMigrationMutation';
|
|
668
|
+
export type { V1ToV2MigrationControllerValidateErrorResponse, V1ToV2MigrationControllerValidateMutationPathParams, V1ToV2MigrationControllerValidateOkResponse, V1ToV2MigrationControllerValidateProps, } from './hooks/useV1ToV2MigrationControllerValidateMutation';
|
|
669
|
+
export { useV1ToV2MigrationControllerValidateMutation, v1ToV2MigrationControllerValidate, } from './hooks/useV1ToV2MigrationControllerValidateMutation';
|
|
658
670
|
export type { AccessResponseDto } from './schemas/AccessResponseDto';
|
|
659
671
|
export type { ActiveThreshold } from './schemas/ActiveThreshold';
|
|
660
672
|
export type { ActiveUsersCount } from './schemas/ActiveUsersCount';
|
|
@@ -773,6 +785,7 @@ export type { CollectionFilter } from './schemas/CollectionFilter';
|
|
|
773
785
|
export type { CollectionTree } from './schemas/CollectionTree';
|
|
774
786
|
export type { ColumnDefinition } from './schemas/ColumnDefinition';
|
|
775
787
|
export type { CommitInfo } from './schemas/CommitInfo';
|
|
788
|
+
export type { ComparisonResults } from './schemas/ComparisonResults';
|
|
776
789
|
export type { CompletedWorkStatusConfig } from './schemas/CompletedWorkStatusConfig';
|
|
777
790
|
export type { CompositeFilterExpression } from './schemas/CompositeFilterExpression';
|
|
778
791
|
export type { CorrelationData } from './schemas/CorrelationData';
|
|
@@ -969,9 +982,12 @@ export type { MigrationConfig } from './schemas/MigrationConfig';
|
|
|
969
982
|
export type { MigrationExecutionResponse } from './schemas/MigrationExecutionResponse';
|
|
970
983
|
export type { MigrationHistoricalDataRequest } from './schemas/MigrationHistoricalDataRequest';
|
|
971
984
|
export type { MigrationHistoricalDataResponse } from './schemas/MigrationHistoricalDataResponse';
|
|
985
|
+
export type { MigrationJobResponse } from './schemas/MigrationJobResponse';
|
|
986
|
+
export type { MigrationOptions } from './schemas/MigrationOptions';
|
|
972
987
|
export type { MigrationSchemaCreationRequest } from './schemas/MigrationSchemaCreationRequest';
|
|
973
988
|
export type { MigrationSchemaCreationResponse } from './schemas/MigrationSchemaCreationResponse';
|
|
974
989
|
export type { MigrationScriptResponse } from './schemas/MigrationScriptResponse';
|
|
990
|
+
export type { MigrationStatusResponse } from './schemas/MigrationStatusResponse';
|
|
975
991
|
export type { MinimalDeveloperDto } from './schemas/MinimalDeveloperDto';
|
|
976
992
|
export type { MinimalOrgTree } from './schemas/MinimalOrgTree';
|
|
977
993
|
export type { MinimalTeamHierarchyResponseDto } from './schemas/MinimalTeamHierarchyResponseDto';
|
|
@@ -1054,6 +1070,7 @@ export type { ReleaseIssueDto } from './schemas/ReleaseIssueDto';
|
|
|
1054
1070
|
export type { ReleaseIssuesResponseWrapper } from './schemas/ReleaseIssuesResponseWrapper';
|
|
1055
1071
|
export type { ReworkSummaryBreakdown } from './schemas/ReworkSummaryBreakdown';
|
|
1056
1072
|
export type { ReworkSummaryMetrics } from './schemas/ReworkSummaryMetrics';
|
|
1073
|
+
export type { RollbackResponse } from './schemas/RollbackResponse';
|
|
1057
1074
|
export type { SchemaDefinition } from './schemas/SchemaDefinition';
|
|
1058
1075
|
export type { SchemaRegistrationRequest } from './schemas/SchemaRegistrationRequest';
|
|
1059
1076
|
export type { SchemaResponse } from './schemas/SchemaResponse';
|
|
@@ -1167,6 +1184,8 @@ export type { UpdateMetadataRequest } from './schemas/UpdateMetadataRequest';
|
|
|
1167
1184
|
export type { UserInfo } from './schemas/UserInfo';
|
|
1168
1185
|
export type { UserMetrics } from './schemas/UserMetrics';
|
|
1169
1186
|
export type { ValidationError } from './schemas/ValidationError';
|
|
1187
|
+
export type { ValidationReportResponse } from './schemas/ValidationReportResponse';
|
|
1188
|
+
export type { ValidationSummary } from './schemas/ValidationSummary';
|
|
1170
1189
|
export type { VersionReleaseRequest } from './schemas/VersionReleaseRequest';
|
|
1171
1190
|
export type { VulnerabilityDetail } from './schemas/VulnerabilityDetail';
|
|
1172
1191
|
export type { VulnerabilitySummary } from './schemas/VulnerabilitySummary';
|
|
@@ -268,6 +268,7 @@ export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerG
|
|
|
268
268
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
269
269
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
270
270
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
271
|
+
export { scmGaControllerGetTargetBranches, useScmGaControllerGetTargetBranchesQuery, } from './hooks/useScmGaControllerGetTargetBranchesQuery';
|
|
271
272
|
export { securityInsightsControllerGetOpenVulnerabilitiesBreakdown, useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesBreakdownQuery';
|
|
272
273
|
export { securityInsightsControllerGetOpenVulnerabilities, useSecurityInsightsControllerGetOpenVulnerabilitiesQuery, } from './hooks/useSecurityInsightsControllerGetOpenVulnerabilitiesQuery';
|
|
273
274
|
export { securityInsightsControllerGetSecurityDrilldown, useSecurityInsightsControllerGetSecurityDrilldownQuery, } from './hooks/useSecurityInsightsControllerGetSecurityDrilldownQuery';
|
|
@@ -326,3 +327,8 @@ export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from
|
|
|
326
327
|
export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
|
|
327
328
|
export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
|
|
328
329
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
330
|
+
export { useV1ToV2MigrationControllerCompareV1AndV2Query, v1ToV2MigrationControllerCompareV1AndV2, } from './hooks/useV1ToV2MigrationControllerCompareV1AndV2Query';
|
|
331
|
+
export { useV1ToV2MigrationControllerGetStatusQuery, v1ToV2MigrationControllerGetStatus, } from './hooks/useV1ToV2MigrationControllerGetStatusQuery';
|
|
332
|
+
export { useV1ToV2MigrationControllerRollbackMutation, v1ToV2MigrationControllerRollback, } from './hooks/useV1ToV2MigrationControllerRollbackMutation';
|
|
333
|
+
export { useV1ToV2MigrationControllerStartMigrationMutation, v1ToV2MigrationControllerStartMigration, } from './hooks/useV1ToV2MigrationControllerStartMigrationMutation';
|
|
334
|
+
export { useV1ToV2MigrationControllerValidateMutation, v1ToV2MigrationControllerValidate, } from './hooks/useV1ToV2MigrationControllerValidateMutation';
|
package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactBreakdownItem.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import type { MetricValue } from '../schemas/MetricValue';
|
|
|
4
4
|
*/
|
|
5
5
|
export interface AiEngineeringImpactBreakdownItem {
|
|
6
6
|
/**
|
|
7
|
-
* Supporting context for this tool (e.g., total_count, active_devs)
|
|
7
|
+
* Supporting context for this tool (e.g., total_count, active_devs, pct_of_total)
|
|
8
8
|
*/
|
|
9
9
|
context?: {
|
|
10
10
|
[key: string]: {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface ComparisonResults {
|
|
2
|
+
/**
|
|
3
|
+
* @format int32
|
|
4
|
+
*/
|
|
5
|
+
filterMismatches?: number;
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
integrationMismatches?: number;
|
|
10
|
+
mismatchDetails?: string[];
|
|
11
|
+
/**
|
|
12
|
+
* @format int32
|
|
13
|
+
*/
|
|
14
|
+
outputMismatches?: number;
|
|
15
|
+
}
|
|
@@ -11,7 +11,7 @@ export interface EntityDto {
|
|
|
11
11
|
config?: ActiveWorkStatusConfig & BugPriorityConfig & CompletedWorkStatusConfig & NewFeaturesConfig;
|
|
12
12
|
entityKey?: string;
|
|
13
13
|
entityName?: string;
|
|
14
|
-
entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bugs' | 'im_completed_work_status' | '
|
|
14
|
+
entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bug_start_trigger_status' | 'im_bugs' | 'im_completed_work_status' | 'im_default_start_trigger_status' | 'im_feature_start_trigger_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
|
|
15
15
|
integrationFilters?: {
|
|
16
16
|
[key: string]: CompositeFilterExpression & SimpleFilterExpression;
|
|
17
17
|
};
|
|
@@ -7,7 +7,7 @@ import type { SimpleFilterExpression } from '../schemas/SimpleFilterExpression';
|
|
|
7
7
|
export interface EntityRequestDto {
|
|
8
8
|
config?: ActiveWorkStatusConfig & BugPriorityConfig & CompletedWorkStatusConfig & NewFeaturesConfig;
|
|
9
9
|
entityKey?: string;
|
|
10
|
-
entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bugs' | 'im_completed_work_status' | '
|
|
10
|
+
entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bug_start_trigger_status' | 'im_bugs' | 'im_completed_work_status' | 'im_default_start_trigger_status' | 'im_feature_start_trigger_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
|
|
11
11
|
integrationFilters?: {
|
|
12
12
|
[key: string]: CompositeFilterExpression & SimpleFilterExpression;
|
|
13
13
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export interface MigrationJobResponse {
|
|
2
|
+
estimatedDuration?: string;
|
|
3
|
+
jobId?: string;
|
|
4
|
+
message?: string;
|
|
5
|
+
status?: 'COMPLETED' | 'DEFAULTS_CREATED' | 'FAILED' | 'IN_PROGRESS' | 'ORG_TREES_DISCOVERED' | 'PENDING' | 'PRE_FLIGHT_COMPLETE' | 'ROLLED_BACK' | 'TEAMS_MIGRATED' | 'VALIDATED';
|
|
6
|
+
tenantId?: string;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface MigrationOptions {
|
|
2
|
+
autoRollback?: boolean;
|
|
3
|
+
/**
|
|
4
|
+
* @format int32
|
|
5
|
+
*/
|
|
6
|
+
batchSize?: number;
|
|
7
|
+
continueOnError?: boolean;
|
|
8
|
+
dryRun?: boolean;
|
|
9
|
+
forceCommit?: boolean;
|
|
10
|
+
ignoreIntegrityIssues?: boolean;
|
|
11
|
+
migrationUserEmail?: string;
|
|
12
|
+
orgIdentifier?: string;
|
|
13
|
+
overwriteExisting?: boolean;
|
|
14
|
+
projectIdentifier?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export interface MigrationStatusResponse {
|
|
2
|
+
/**
|
|
3
|
+
* @format date-time
|
|
4
|
+
*/
|
|
5
|
+
completedAt?: string;
|
|
6
|
+
currentPhase?: string;
|
|
7
|
+
/**
|
|
8
|
+
* @format int64
|
|
9
|
+
*/
|
|
10
|
+
durationSeconds?: number;
|
|
11
|
+
errors?: string[];
|
|
12
|
+
/**
|
|
13
|
+
* @format int32
|
|
14
|
+
*/
|
|
15
|
+
progress?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @format date-time
|
|
18
|
+
*/
|
|
19
|
+
startedAt?: string;
|
|
20
|
+
status?: 'COMPLETED' | 'DEFAULTS_CREATED' | 'FAILED' | 'IN_PROGRESS' | 'ORG_TREES_DISCOVERED' | 'PENDING' | 'PRE_FLIGHT_COMPLETE' | 'ROLLED_BACK' | 'TEAMS_MIGRATED' | 'VALIDATED';
|
|
21
|
+
/**
|
|
22
|
+
* @format int32
|
|
23
|
+
*/
|
|
24
|
+
teamsProcessed?: number;
|
|
25
|
+
tenantId?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @format int32
|
|
28
|
+
*/
|
|
29
|
+
totalTeams?: number;
|
|
30
|
+
warnings?: string[];
|
|
31
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface RollbackResponse {
|
|
2
|
+
/**
|
|
3
|
+
* @format int32
|
|
4
|
+
*/
|
|
5
|
+
clearedTeamReferences?: number;
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
deletedDefaults?: number;
|
|
10
|
+
/**
|
|
11
|
+
* @format int32
|
|
12
|
+
*/
|
|
13
|
+
deletedEntities?: number;
|
|
14
|
+
/**
|
|
15
|
+
* @format int32
|
|
16
|
+
*/
|
|
17
|
+
deletedSettings?: number;
|
|
18
|
+
message?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @format uuid
|
|
21
|
+
*/
|
|
22
|
+
migrationId?: string;
|
|
23
|
+
success?: boolean;
|
|
24
|
+
tenantId?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ComparisonResults } from '../schemas/ComparisonResults';
|
|
2
|
+
import type { ValidationSummary } from '../schemas/ValidationSummary';
|
|
3
|
+
export interface ValidationReportResponse {
|
|
4
|
+
comparison?: ComparisonResults;
|
|
5
|
+
errors?: string[];
|
|
6
|
+
message?: string;
|
|
7
|
+
summary?: ValidationSummary;
|
|
8
|
+
valid?: boolean;
|
|
9
|
+
warnings?: string[];
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface ValidationSummary {
|
|
2
|
+
/**
|
|
3
|
+
* @format int32
|
|
4
|
+
*/
|
|
5
|
+
teamsWithDefaults?: number;
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
teamsWithOverrides?: number;
|
|
10
|
+
/**
|
|
11
|
+
* @format int32
|
|
12
|
+
*/
|
|
13
|
+
totalEntities?: number;
|
|
14
|
+
/**
|
|
15
|
+
* @format int32
|
|
16
|
+
*/
|
|
17
|
+
totalTeams?: number;
|
|
18
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.12",
|
|
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",
|