@harnessio/react-pipeline-swagger-service-client 1.23.0 → 1.24.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.
- package/dist/pipeline-swagger-service/src/services/hooks/useCreateInputSetForPipelineMutation.d.ts +2 -2
- package/dist/pipeline-swagger-service/src/services/hooks/useCreateOverlayInputSetForPipelineMutation.d.ts +2 -2
- package/dist/pipeline-swagger-service/src/services/hooks/useCreateTriggerMutation.d.ts +3 -2
- package/dist/pipeline-swagger-service/src/services/hooks/useGetExecutionDetailV2Query.d.ts +1 -0
- package/dist/pipeline-swagger-service/src/services/hooks/useUpdateInputSetForPipelineMutation.d.ts +2 -2
- package/dist/pipeline-swagger-service/src/services/hooks/useUpdateTriggerMutation.d.ts +3 -2
- package/dist/pipeline-swagger-service/src/services/index.d.ts +1 -1
- package/dist/pipeline-swagger-service/src/services/requestBodies/UpdateTriggerBodyRequestBody.d.ts +1 -0
- package/package.json +1 -1
- package/dist/pipeline-swagger-service/src/services/requestBodies/CreateTriggerBodyRequestBody.d.ts +0 -1
- /package/dist/pipeline-swagger-service/src/services/requestBodies/{CreateTriggerBodyRequestBody.js → UpdateTriggerBodyRequestBody.js} +0 -0
package/dist/pipeline-swagger-service/src/services/hooks/useCreateInputSetForPipelineMutation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { UseMutationOptions } from '@tanstack/react-query';
|
|
|
2
2
|
import type { ResponseInputSetResponse } from '../schemas/ResponseInputSetResponse';
|
|
3
3
|
import type { Failure } from '../schemas/Failure';
|
|
4
4
|
import type { Error } from '../schemas/Error';
|
|
5
|
-
import type {
|
|
5
|
+
import type { UpdateTriggerBodyRequestBody } from '../requestBodies/UpdateTriggerBodyRequestBody';
|
|
6
6
|
import type { ResponseWithPagination } from '../helpers';
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export interface CreateInputSetForPipelineMutationQueryParams {
|
|
@@ -28,7 +28,7 @@ export interface CreateInputSetForPipelineMutationQueryParams {
|
|
|
28
28
|
*/
|
|
29
29
|
InputSetVersion?: string;
|
|
30
30
|
}
|
|
31
|
-
export type CreateInputSetForPipelineRequestBody =
|
|
31
|
+
export type CreateInputSetForPipelineRequestBody = UpdateTriggerBodyRequestBody;
|
|
32
32
|
export type CreateInputSetForPipelineOkResponse = ResponseWithPagination<ResponseInputSetResponse>;
|
|
33
33
|
export type CreateInputSetForPipelineErrorResponse = Failure | Error;
|
|
34
34
|
export interface CreateInputSetForPipelineProps extends Omit<FetcherOptions<CreateInputSetForPipelineMutationQueryParams, CreateInputSetForPipelineRequestBody>, 'url'> {
|
|
@@ -2,7 +2,7 @@ import { UseMutationOptions } from '@tanstack/react-query';
|
|
|
2
2
|
import type { ResponseOverlayInputSetResponse } from '../schemas/ResponseOverlayInputSetResponse';
|
|
3
3
|
import type { Failure } from '../schemas/Failure';
|
|
4
4
|
import type { Error } from '../schemas/Error';
|
|
5
|
-
import type {
|
|
5
|
+
import type { UpdateTriggerBodyRequestBody } from '../requestBodies/UpdateTriggerBodyRequestBody';
|
|
6
6
|
import type { ResponseWithPagination } from '../helpers';
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export interface CreateOverlayInputSetForPipelineMutationQueryParams {
|
|
@@ -22,7 +22,7 @@ export interface CreateOverlayInputSetForPipelineMutationQueryParams {
|
|
|
22
22
|
repoName?: string;
|
|
23
23
|
isHarnessCodeRepo?: boolean;
|
|
24
24
|
}
|
|
25
|
-
export type CreateOverlayInputSetForPipelineRequestBody =
|
|
25
|
+
export type CreateOverlayInputSetForPipelineRequestBody = UpdateTriggerBodyRequestBody;
|
|
26
26
|
export type CreateOverlayInputSetForPipelineOkResponse = ResponseWithPagination<ResponseOverlayInputSetResponse>;
|
|
27
27
|
export type CreateOverlayInputSetForPipelineErrorResponse = Failure | Error;
|
|
28
28
|
export interface CreateOverlayInputSetForPipelineProps extends Omit<FetcherOptions<CreateOverlayInputSetForPipelineMutationQueryParams, CreateOverlayInputSetForPipelineRequestBody>, 'url'> {
|
|
@@ -2,7 +2,7 @@ import { UseMutationOptions } from '@tanstack/react-query';
|
|
|
2
2
|
import type { ResponseNgTriggerResponse } from '../schemas/ResponseNgTriggerResponse';
|
|
3
3
|
import type { Failure } from '../schemas/Failure';
|
|
4
4
|
import type { Error } from '../schemas/Error';
|
|
5
|
-
import type {
|
|
5
|
+
import type { UpdateTriggerBodyRequestBody } from '../requestBodies/UpdateTriggerBodyRequestBody';
|
|
6
6
|
import type { ResponseWithPagination } from '../helpers';
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export interface CreateTriggerMutationQueryParams {
|
|
@@ -12,8 +12,9 @@ export interface CreateTriggerMutationQueryParams {
|
|
|
12
12
|
targetIdentifier: string;
|
|
13
13
|
ignoreError?: boolean;
|
|
14
14
|
withServiceV2?: boolean;
|
|
15
|
+
isUnifiedPipelineFlow?: boolean;
|
|
15
16
|
}
|
|
16
|
-
export type CreateTriggerRequestBody =
|
|
17
|
+
export type CreateTriggerRequestBody = UpdateTriggerBodyRequestBody;
|
|
17
18
|
export type CreateTriggerOkResponse = ResponseWithPagination<ResponseNgTriggerResponse>;
|
|
18
19
|
export type CreateTriggerErrorResponse = Failure | Error;
|
|
19
20
|
export interface CreateTriggerProps extends Omit<FetcherOptions<CreateTriggerMutationQueryParams, CreateTriggerRequestBody>, 'url'> {
|
|
@@ -14,6 +14,7 @@ export interface GetExecutionDetailV2QueryQueryParams {
|
|
|
14
14
|
stageNodeId?: string;
|
|
15
15
|
stageNodeExecutionId?: string;
|
|
16
16
|
childStageNodeId?: string;
|
|
17
|
+
childStageNodeExecutionId?: string;
|
|
17
18
|
renderFullBottomGraph?: boolean;
|
|
18
19
|
}
|
|
19
20
|
export type GetExecutionDetailV2OkResponse = ResponseWithPagination<ResponsePipelineExecutionDetail>;
|
package/dist/pipeline-swagger-service/src/services/hooks/useUpdateInputSetForPipelineMutation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { UseMutationOptions } from '@tanstack/react-query';
|
|
|
2
2
|
import type { ResponseInputSetResponse } from '../schemas/ResponseInputSetResponse';
|
|
3
3
|
import type { Failure } from '../schemas/Failure';
|
|
4
4
|
import type { Error } from '../schemas/Error';
|
|
5
|
-
import type {
|
|
5
|
+
import type { UpdateTriggerBodyRequestBody } from '../requestBodies/UpdateTriggerBodyRequestBody';
|
|
6
6
|
import type { ResponseWithPagination } from '../helpers';
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export interface UpdateInputSetForPipelineMutationPathParams {
|
|
@@ -36,7 +36,7 @@ export interface UpdateInputSetForPipelineMutationQueryParams {
|
|
|
36
36
|
export interface UpdateInputSetForPipelineMutationHeaderParams {
|
|
37
37
|
'If-Match'?: string;
|
|
38
38
|
}
|
|
39
|
-
export type UpdateInputSetForPipelineRequestBody =
|
|
39
|
+
export type UpdateInputSetForPipelineRequestBody = UpdateTriggerBodyRequestBody;
|
|
40
40
|
export type UpdateInputSetForPipelineOkResponse = ResponseWithPagination<ResponseInputSetResponse>;
|
|
41
41
|
export type UpdateInputSetForPipelineErrorResponse = Failure | Error;
|
|
42
42
|
export interface UpdateInputSetForPipelineProps extends UpdateInputSetForPipelineMutationPathParams, Omit<FetcherOptions<UpdateInputSetForPipelineMutationQueryParams, UpdateInputSetForPipelineRequestBody, UpdateInputSetForPipelineMutationHeaderParams>, 'url'> {
|
|
@@ -2,7 +2,7 @@ import { UseMutationOptions } from '@tanstack/react-query';
|
|
|
2
2
|
import type { ResponseNgTriggerResponse } from '../schemas/ResponseNgTriggerResponse';
|
|
3
3
|
import type { Failure } from '../schemas/Failure';
|
|
4
4
|
import type { Error } from '../schemas/Error';
|
|
5
|
-
import type {
|
|
5
|
+
import type { UpdateTriggerBodyRequestBody } from '../requestBodies/UpdateTriggerBodyRequestBody';
|
|
6
6
|
import type { ResponseWithPagination } from '../helpers';
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export interface UpdateTriggerMutationPathParams {
|
|
@@ -14,11 +14,12 @@ export interface UpdateTriggerMutationQueryParams {
|
|
|
14
14
|
projectIdentifier: string;
|
|
15
15
|
targetIdentifier: string;
|
|
16
16
|
ignoreError?: boolean;
|
|
17
|
+
isUnifiedPipelineFlow?: boolean;
|
|
17
18
|
}
|
|
18
19
|
export interface UpdateTriggerMutationHeaderParams {
|
|
19
20
|
'If-Match'?: string;
|
|
20
21
|
}
|
|
21
|
-
export type UpdateTriggerRequestBody =
|
|
22
|
+
export type UpdateTriggerRequestBody = UpdateTriggerBodyRequestBody;
|
|
22
23
|
export type UpdateTriggerOkResponse = ResponseWithPagination<ResponseNgTriggerResponse>;
|
|
23
24
|
export type UpdateTriggerErrorResponse = Failure | Error;
|
|
24
25
|
export interface UpdateTriggerProps extends UpdateTriggerMutationPathParams, Omit<FetcherOptions<UpdateTriggerMutationQueryParams, UpdateTriggerRequestBody, UpdateTriggerMutationHeaderParams>, 'url'> {
|
|
@@ -106,9 +106,9 @@ export { updateTriggerStatus, useUpdateTriggerStatusMutation, } from './hooks/us
|
|
|
106
106
|
export type { ValidateTemplateInputsErrorResponse, ValidateTemplateInputsOkResponse, ValidateTemplateInputsProps, ValidateTemplateInputsQueryQueryParams, } from './hooks/useValidateTemplateInputsQuery';
|
|
107
107
|
export { useValidateTemplateInputsQuery, validateTemplateInputs, } from './hooks/useValidateTemplateInputsQuery';
|
|
108
108
|
export type { ClonePipelinePropertiesRequestBody } from './requestBodies/ClonePipelinePropertiesRequestBody';
|
|
109
|
-
export type { CreateTriggerBodyRequestBody } from './requestBodies/CreateTriggerBodyRequestBody';
|
|
110
109
|
export type { FilterDtoRequestBody } from './requestBodies/FilterDtoRequestBody';
|
|
111
110
|
export type { FilterPropertiesRequestBody } from './requestBodies/FilterPropertiesRequestBody';
|
|
111
|
+
export type { UpdateTriggerBodyRequestBody } from './requestBodies/UpdateTriggerBodyRequestBody';
|
|
112
112
|
export type { AbortedBy } from './schemas/AbortedBy';
|
|
113
113
|
export type { AccessControlCheckError } from './schemas/AccessControlCheckError';
|
|
114
114
|
export type { AdviserIssuer } from './schemas/AdviserIssuer';
|
package/dist/pipeline-swagger-service/src/services/requestBodies/UpdateTriggerBodyRequestBody.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type UpdateTriggerBodyRequestBody = string;
|
package/package.json
CHANGED
package/dist/pipeline-swagger-service/src/services/requestBodies/CreateTriggerBodyRequestBody.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type CreateTriggerBodyRequestBody = string;
|