@harnessio/react-sei-panorama-service-client 0.31.10 → 0.31.11
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/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 +17 -0
- package/dist/sei-panorama-service/src/services/index.js +5 -0
- 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
|
@@ -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
|
+
}
|
|
@@ -655,6 +655,16 @@ export type { TeamsControllerUpdateTeamIntegrationsErrorResponse, TeamsControlle
|
|
|
655
655
|
export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
|
|
656
656
|
export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamMutationPathParams, TeamsControllerUpdateTeamMutationQueryParams, TeamsControllerUpdateTeamOkResponse, TeamsControllerUpdateTeamProps, TeamsControllerUpdateTeamRequestBody, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
657
657
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
658
|
+
export type { V1ToV2MigrationControllerCompareV1AndV2ErrorResponse, V1ToV2MigrationControllerCompareV1AndV2OkResponse, V1ToV2MigrationControllerCompareV1AndV2Props, V1ToV2MigrationControllerCompareV1AndV2QueryPathParams, } from './hooks/useV1ToV2MigrationControllerCompareV1AndV2Query';
|
|
659
|
+
export { useV1ToV2MigrationControllerCompareV1AndV2Query, v1ToV2MigrationControllerCompareV1AndV2, } from './hooks/useV1ToV2MigrationControllerCompareV1AndV2Query';
|
|
660
|
+
export type { V1ToV2MigrationControllerGetStatusErrorResponse, V1ToV2MigrationControllerGetStatusOkResponse, V1ToV2MigrationControllerGetStatusProps, V1ToV2MigrationControllerGetStatusQueryPathParams, } from './hooks/useV1ToV2MigrationControllerGetStatusQuery';
|
|
661
|
+
export { useV1ToV2MigrationControllerGetStatusQuery, v1ToV2MigrationControllerGetStatus, } from './hooks/useV1ToV2MigrationControllerGetStatusQuery';
|
|
662
|
+
export type { V1ToV2MigrationControllerRollbackErrorResponse, V1ToV2MigrationControllerRollbackMutationPathParams, V1ToV2MigrationControllerRollbackOkResponse, V1ToV2MigrationControllerRollbackProps, } from './hooks/useV1ToV2MigrationControllerRollbackMutation';
|
|
663
|
+
export { useV1ToV2MigrationControllerRollbackMutation, v1ToV2MigrationControllerRollback, } from './hooks/useV1ToV2MigrationControllerRollbackMutation';
|
|
664
|
+
export type { V1ToV2MigrationControllerStartMigrationErrorResponse, V1ToV2MigrationControllerStartMigrationMutationPathParams, V1ToV2MigrationControllerStartMigrationOkResponse, V1ToV2MigrationControllerStartMigrationProps, V1ToV2MigrationControllerStartMigrationRequestBody, } from './hooks/useV1ToV2MigrationControllerStartMigrationMutation';
|
|
665
|
+
export { useV1ToV2MigrationControllerStartMigrationMutation, v1ToV2MigrationControllerStartMigration, } from './hooks/useV1ToV2MigrationControllerStartMigrationMutation';
|
|
666
|
+
export type { V1ToV2MigrationControllerValidateErrorResponse, V1ToV2MigrationControllerValidateMutationPathParams, V1ToV2MigrationControllerValidateOkResponse, V1ToV2MigrationControllerValidateProps, } from './hooks/useV1ToV2MigrationControllerValidateMutation';
|
|
667
|
+
export { useV1ToV2MigrationControllerValidateMutation, v1ToV2MigrationControllerValidate, } from './hooks/useV1ToV2MigrationControllerValidateMutation';
|
|
658
668
|
export type { AccessResponseDto } from './schemas/AccessResponseDto';
|
|
659
669
|
export type { ActiveThreshold } from './schemas/ActiveThreshold';
|
|
660
670
|
export type { ActiveUsersCount } from './schemas/ActiveUsersCount';
|
|
@@ -773,6 +783,7 @@ export type { CollectionFilter } from './schemas/CollectionFilter';
|
|
|
773
783
|
export type { CollectionTree } from './schemas/CollectionTree';
|
|
774
784
|
export type { ColumnDefinition } from './schemas/ColumnDefinition';
|
|
775
785
|
export type { CommitInfo } from './schemas/CommitInfo';
|
|
786
|
+
export type { ComparisonResults } from './schemas/ComparisonResults';
|
|
776
787
|
export type { CompletedWorkStatusConfig } from './schemas/CompletedWorkStatusConfig';
|
|
777
788
|
export type { CompositeFilterExpression } from './schemas/CompositeFilterExpression';
|
|
778
789
|
export type { CorrelationData } from './schemas/CorrelationData';
|
|
@@ -969,9 +980,12 @@ export type { MigrationConfig } from './schemas/MigrationConfig';
|
|
|
969
980
|
export type { MigrationExecutionResponse } from './schemas/MigrationExecutionResponse';
|
|
970
981
|
export type { MigrationHistoricalDataRequest } from './schemas/MigrationHistoricalDataRequest';
|
|
971
982
|
export type { MigrationHistoricalDataResponse } from './schemas/MigrationHistoricalDataResponse';
|
|
983
|
+
export type { MigrationJobResponse } from './schemas/MigrationJobResponse';
|
|
984
|
+
export type { MigrationOptions } from './schemas/MigrationOptions';
|
|
972
985
|
export type { MigrationSchemaCreationRequest } from './schemas/MigrationSchemaCreationRequest';
|
|
973
986
|
export type { MigrationSchemaCreationResponse } from './schemas/MigrationSchemaCreationResponse';
|
|
974
987
|
export type { MigrationScriptResponse } from './schemas/MigrationScriptResponse';
|
|
988
|
+
export type { MigrationStatusResponse } from './schemas/MigrationStatusResponse';
|
|
975
989
|
export type { MinimalDeveloperDto } from './schemas/MinimalDeveloperDto';
|
|
976
990
|
export type { MinimalOrgTree } from './schemas/MinimalOrgTree';
|
|
977
991
|
export type { MinimalTeamHierarchyResponseDto } from './schemas/MinimalTeamHierarchyResponseDto';
|
|
@@ -1054,6 +1068,7 @@ export type { ReleaseIssueDto } from './schemas/ReleaseIssueDto';
|
|
|
1054
1068
|
export type { ReleaseIssuesResponseWrapper } from './schemas/ReleaseIssuesResponseWrapper';
|
|
1055
1069
|
export type { ReworkSummaryBreakdown } from './schemas/ReworkSummaryBreakdown';
|
|
1056
1070
|
export type { ReworkSummaryMetrics } from './schemas/ReworkSummaryMetrics';
|
|
1071
|
+
export type { RollbackResponse } from './schemas/RollbackResponse';
|
|
1057
1072
|
export type { SchemaDefinition } from './schemas/SchemaDefinition';
|
|
1058
1073
|
export type { SchemaRegistrationRequest } from './schemas/SchemaRegistrationRequest';
|
|
1059
1074
|
export type { SchemaResponse } from './schemas/SchemaResponse';
|
|
@@ -1167,6 +1182,8 @@ export type { UpdateMetadataRequest } from './schemas/UpdateMetadataRequest';
|
|
|
1167
1182
|
export type { UserInfo } from './schemas/UserInfo';
|
|
1168
1183
|
export type { UserMetrics } from './schemas/UserMetrics';
|
|
1169
1184
|
export type { ValidationError } from './schemas/ValidationError';
|
|
1185
|
+
export type { ValidationReportResponse } from './schemas/ValidationReportResponse';
|
|
1186
|
+
export type { ValidationSummary } from './schemas/ValidationSummary';
|
|
1170
1187
|
export type { VersionReleaseRequest } from './schemas/VersionReleaseRequest';
|
|
1171
1188
|
export type { VulnerabilityDetail } from './schemas/VulnerabilityDetail';
|
|
1172
1189
|
export type { VulnerabilitySummary } from './schemas/VulnerabilitySummary';
|
|
@@ -326,3 +326,8 @@ export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from
|
|
|
326
326
|
export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
|
|
327
327
|
export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
|
|
328
328
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
329
|
+
export { useV1ToV2MigrationControllerCompareV1AndV2Query, v1ToV2MigrationControllerCompareV1AndV2, } from './hooks/useV1ToV2MigrationControllerCompareV1AndV2Query';
|
|
330
|
+
export { useV1ToV2MigrationControllerGetStatusQuery, v1ToV2MigrationControllerGetStatus, } from './hooks/useV1ToV2MigrationControllerGetStatusQuery';
|
|
331
|
+
export { useV1ToV2MigrationControllerRollbackMutation, v1ToV2MigrationControllerRollback, } from './hooks/useV1ToV2MigrationControllerRollbackMutation';
|
|
332
|
+
export { useV1ToV2MigrationControllerStartMigrationMutation, v1ToV2MigrationControllerStartMigration, } from './hooks/useV1ToV2MigrationControllerStartMigrationMutation';
|
|
333
|
+
export { useV1ToV2MigrationControllerValidateMutation, v1ToV2MigrationControllerValidate, } from './hooks/useV1ToV2MigrationControllerValidateMutation';
|
|
@@ -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.11",
|
|
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",
|