@harnessio/react-rmg-service-client 0.58.0 → 0.59.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/rmg-service/src/services/hooks/useGetYamlSchemaQuery.d.ts +4 -2
- package/dist/rmg-service/src/services/hooks/useServeUploadQuery.d.ts +2 -1
- package/dist/rmg-service/src/services/hooks/useServeUploadQuery.js +3 -3
- package/dist/rmg-service/src/services/hooks/useStreamUploadMutation.d.ts +25 -0
- package/dist/rmg-service/src/services/hooks/useStreamUploadMutation.js +14 -0
- package/dist/rmg-service/src/services/index.d.ts +3 -4
- package/dist/rmg-service/src/services/index.js +1 -1
- package/dist/rmg-service/src/services/schemas/UploadResponse.d.ts +6 -0
- package/package.json +1 -1
- package/dist/rmg-service/src/services/hooks/usePresignUploadMutation.d.ts +0 -25
- package/dist/rmg-service/src/services/hooks/usePresignUploadMutation.js +0 -14
- package/dist/rmg-service/src/services/schemas/PresignUploadRequest.d.ts +0 -15
- package/dist/rmg-service/src/services/schemas/PresignUploadResponse.d.ts +0 -10
- package/dist/rmg-service/src/services/schemas/PresignUploadResponse.js +0 -4
- /package/dist/rmg-service/src/services/schemas/{PresignUploadRequest.js → UploadResponse.js} +0 -0
|
@@ -3,16 +3,18 @@ import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetYamlSchemaQueryQueryParams {
|
|
6
|
-
accountIdentifier: string;
|
|
7
6
|
orgIdentifier?: string;
|
|
8
7
|
projectIdentifier?: string;
|
|
9
8
|
entityType: 'PROCESS';
|
|
10
9
|
}
|
|
10
|
+
export interface GetYamlSchemaQueryHeaderParams {
|
|
11
|
+
'Harness-Account': string;
|
|
12
|
+
}
|
|
11
13
|
export type GetYamlSchemaOkResponse = ResponseWithPagination<{
|
|
12
14
|
[key: string]: any;
|
|
13
15
|
}>;
|
|
14
16
|
export type GetYamlSchemaErrorResponse = ErrorResponseResponse;
|
|
15
|
-
export interface GetYamlSchemaProps extends Omit<FetcherOptions<GetYamlSchemaQueryQueryParams, unknown>, 'url'> {
|
|
17
|
+
export interface GetYamlSchemaProps extends Omit<FetcherOptions<GetYamlSchemaQueryQueryParams, unknown, GetYamlSchemaQueryHeaderParams>, 'url'> {
|
|
16
18
|
queryParams: GetYamlSchemaQueryQueryParams;
|
|
17
19
|
}
|
|
18
20
|
export declare function getYamlSchema(props: GetYamlSchemaProps): Promise<GetYamlSchemaOkResponse>;
|
|
@@ -5,6 +5,7 @@ import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
|
5
5
|
export interface ServeUploadQueryPathParams {
|
|
6
6
|
accountId: string;
|
|
7
7
|
releaseId: string;
|
|
8
|
+
activityExecutionId: string;
|
|
8
9
|
filename: string;
|
|
9
10
|
}
|
|
10
11
|
export type ServeUploadOkResponse = ResponseWithPagination<unknown>;
|
|
@@ -13,6 +14,6 @@ export interface ServeUploadProps extends ServeUploadQueryPathParams, Omit<Fetch
|
|
|
13
14
|
}
|
|
14
15
|
export declare function serveUpload(props: ServeUploadProps): Promise<ServeUploadOkResponse>;
|
|
15
16
|
/**
|
|
16
|
-
* Serve an uploaded file via a 307 redirect to a signed GCS URL.
|
|
17
|
+
* Serve an uploaded file via a 307 redirect to a signed GCS URL.
|
|
17
18
|
*/
|
|
18
19
|
export declare function useServeUploadQuery(props: ServeUploadProps, options?: Omit<UseQueryOptions<ServeUploadOkResponse, ServeUploadErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ServeUploadOkResponse, unknown>;
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function serveUpload(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v1/uploads/${props.accountId}/${props.releaseId}/${props.filename}`, method: 'GET' }, props));
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/uploads/${props.accountId}/${props.releaseId}/${props.activityExecutionId}/${props.filename}`, method: 'GET' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Serve an uploaded file via a 307 redirect to a signed GCS URL.
|
|
10
|
+
* Serve an uploaded file via a 307 redirect to a signed GCS URL.
|
|
11
11
|
*/
|
|
12
12
|
export function useServeUploadQuery(props, options) {
|
|
13
|
-
return useQuery(['serveUpload', props.accountId, props.releaseId, props.filename], ({ signal }) => serveUpload(Object.assign(Object.assign({}, props), { signal })), options);
|
|
13
|
+
return useQuery(['serveUpload', props.accountId, props.releaseId, props.activityExecutionId, props.filename], ({ signal }) => serveUpload(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { UploadResponse } from '../schemas/UploadResponse';
|
|
3
|
+
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface StreamUploadMutationQueryParams {
|
|
7
|
+
releaseId: string;
|
|
8
|
+
activityExecutionId: string;
|
|
9
|
+
fileContentType: string;
|
|
10
|
+
}
|
|
11
|
+
export interface StreamUploadMutationHeaderParams {
|
|
12
|
+
'Harness-Account': string;
|
|
13
|
+
}
|
|
14
|
+
export type StreamUploadRequestBody = string;
|
|
15
|
+
export type StreamUploadOkResponse = ResponseWithPagination<UploadResponse>;
|
|
16
|
+
export type StreamUploadErrorResponse = ErrorResponseResponse;
|
|
17
|
+
export interface StreamUploadProps extends Omit<FetcherOptions<StreamUploadMutationQueryParams, StreamUploadRequestBody, StreamUploadMutationHeaderParams>, 'url'> {
|
|
18
|
+
queryParams: StreamUploadMutationQueryParams;
|
|
19
|
+
body: StreamUploadRequestBody;
|
|
20
|
+
}
|
|
21
|
+
export declare function streamUpload(props: StreamUploadProps): Promise<StreamUploadOkResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* Upload an image or video file by streaming the binary body through the backend to cloud storage. Returns the serve URL for retrieval. Clients must send a valid HTTP `Content-Length` header for the request body (browsers do this automatically when posting a `File` or `Blob`); the server uses it with `fileContentType` to validate size before streaming. The upload is scoped to a MANUAL activity execution.
|
|
24
|
+
*/
|
|
25
|
+
export declare function useStreamUploadMutation(options?: Omit<UseMutationOptions<StreamUploadOkResponse, StreamUploadErrorResponse, StreamUploadProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<StreamUploadOkResponse, import("..").Error, StreamUploadProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function streamUpload(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v1/uploads`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Upload an image or video file by streaming the binary body through the backend to cloud storage. Returns the serve URL for retrieval. Clients must send a valid HTTP `Content-Length` header for the request body (browsers do this automatically when posting a `File` or `Blob`); the server uses it with `fileContentType` to validate size before streaming. The upload is scoped to a MANUAL activity execution.
|
|
11
|
+
*/
|
|
12
|
+
export function useStreamUploadMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => streamUpload(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -115,8 +115,6 @@ export type { PostReleaseSubprocessTriggerErrorResponse, PostReleaseSubprocessTr
|
|
|
115
115
|
export { postReleaseSubprocessTrigger, usePostReleaseSubprocessTriggerMutation, } from './hooks/usePostReleaseSubprocessTriggerMutation';
|
|
116
116
|
export type { PostReleaseSummaryErrorResponse, PostReleaseSummaryMutationQueryParams, PostReleaseSummaryOkResponse, PostReleaseSummaryProps, PostReleaseSummaryRequestBody, } from './hooks/usePostReleaseSummaryMutation';
|
|
117
117
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
118
|
-
export type { PresignUploadErrorResponse, PresignUploadMutationQueryParams, PresignUploadOkResponse, PresignUploadProps, PresignUploadRequestBody, } from './hooks/usePresignUploadMutation';
|
|
119
|
-
export { presignUpload, usePresignUploadMutation } from './hooks/usePresignUploadMutation';
|
|
120
118
|
export type { PutOrchestrationActivityErrorResponse, PutOrchestrationActivityMutationPathParams, PutOrchestrationActivityMutationQueryParams, PutOrchestrationActivityOkResponse, PutOrchestrationActivityProps, PutOrchestrationActivityRequestBody, } from './hooks/usePutOrchestrationActivityMutation';
|
|
121
119
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
122
120
|
export type { PutOrchestrationProcessInputErrorResponse, PutOrchestrationProcessInputMutationPathParams, PutOrchestrationProcessInputMutationQueryParams, PutOrchestrationProcessInputOkResponse, PutOrchestrationProcessInputProps, PutOrchestrationProcessInputRequestBody, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
@@ -133,6 +131,8 @@ export type { ServeUploadErrorResponse, ServeUploadOkResponse, ServeUploadProps,
|
|
|
133
131
|
export { serveUpload, useServeUploadQuery } from './hooks/useServeUploadQuery';
|
|
134
132
|
export type { StartReleaseExecutionErrorResponse, StartReleaseExecutionMutationPathParams, StartReleaseExecutionMutationQueryParams, StartReleaseExecutionOkResponse, StartReleaseExecutionProps, StartReleaseExecutionRequestBody, } from './hooks/useStartReleaseExecutionMutation';
|
|
135
133
|
export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
|
|
134
|
+
export type { StreamUploadErrorResponse, StreamUploadMutationQueryParams, StreamUploadOkResponse, StreamUploadProps, StreamUploadRequestBody, } from './hooks/useStreamUploadMutation';
|
|
135
|
+
export { streamUpload, useStreamUploadMutation } from './hooks/useStreamUploadMutation';
|
|
136
136
|
export type { UpdateExecutionTaskMetadataErrorResponse, UpdateExecutionTaskMetadataMutationPathParams, UpdateExecutionTaskMetadataMutationQueryParams, UpdateExecutionTaskMetadataOkResponse, UpdateExecutionTaskMetadataProps, UpdateExecutionTaskMetadataRequestBody, } from './hooks/useUpdateExecutionTaskMetadataMutation';
|
|
137
137
|
export { updateExecutionTaskMetadata, useUpdateExecutionTaskMetadataMutation, } from './hooks/useUpdateExecutionTaskMetadataMutation';
|
|
138
138
|
export type { UpdateExecutionTaskStatusErrorResponse, UpdateExecutionTaskStatusMutationPathParams, UpdateExecutionTaskStatusMutationQueryParams, UpdateExecutionTaskStatusOkResponse, UpdateExecutionTaskStatusProps, UpdateExecutionTaskStatusRequestBody, } from './hooks/useUpdateExecutionTaskStatusMutation';
|
|
@@ -289,8 +289,6 @@ export type { PageableSort } from './schemas/PageableSort';
|
|
|
289
289
|
export type { PhaseInputYaml } from './schemas/PhaseInputYaml';
|
|
290
290
|
export type { PhaseReleaseInputYaml } from './schemas/PhaseReleaseInputYaml';
|
|
291
291
|
export type { PipelineActivityInfo } from './schemas/PipelineActivityInfo';
|
|
292
|
-
export type { PresignUploadRequest } from './schemas/PresignUploadRequest';
|
|
293
|
-
export type { PresignUploadResponse } from './schemas/PresignUploadResponse';
|
|
294
292
|
export type { PrimitiveInputVariable } from './schemas/PrimitiveInputVariable';
|
|
295
293
|
export type { ProcessInputSummaryDto } from './schemas/ProcessInputSummaryDto';
|
|
296
294
|
export type { ReleaseActionRequest } from './schemas/ReleaseActionRequest';
|
|
@@ -334,6 +332,7 @@ export type { TaskCommentsListResponseDto } from './schemas/TaskCommentsListResp
|
|
|
334
332
|
export type { TimeRangeDto } from './schemas/TimeRangeDto';
|
|
335
333
|
export type { TriggerType } from './schemas/TriggerType';
|
|
336
334
|
export type { TriggeredByDto } from './schemas/TriggeredByDto';
|
|
335
|
+
export type { UploadResponse } from './schemas/UploadResponse';
|
|
337
336
|
export type { User } from './schemas/User';
|
|
338
337
|
export type { WebhookPipeline } from './schemas/WebhookPipeline';
|
|
339
338
|
export type { WebhookSignalRequest } from './schemas/WebhookSignalRequest';
|
|
@@ -56,7 +56,6 @@ export { postReleaseGroupReportGenerate, usePostReleaseGroupReportGenerateMutati
|
|
|
56
56
|
export { postReleaseReportGenerate, usePostReleaseReportGenerateMutation, } from './hooks/usePostReleaseReportGenerateMutation';
|
|
57
57
|
export { postReleaseSubprocessTrigger, usePostReleaseSubprocessTriggerMutation, } from './hooks/usePostReleaseSubprocessTriggerMutation';
|
|
58
58
|
export { postReleaseSummary, usePostReleaseSummaryMutation, } from './hooks/usePostReleaseSummaryMutation';
|
|
59
|
-
export { presignUpload, usePresignUploadMutation } from './hooks/usePresignUploadMutation';
|
|
60
59
|
export { putOrchestrationActivity, usePutOrchestrationActivityMutation, } from './hooks/usePutOrchestrationActivityMutation';
|
|
61
60
|
export { putOrchestrationProcessInput, usePutOrchestrationProcessInputMutation, } from './hooks/usePutOrchestrationProcessInputMutation';
|
|
62
61
|
export { putOrchestrationProcess, usePutOrchestrationProcessMutation, } from './hooks/usePutOrchestrationProcessMutation';
|
|
@@ -65,6 +64,7 @@ export { putReleaseReleaseId, usePutReleaseReleaseIdMutation, } from './hooks/us
|
|
|
65
64
|
export { receiveWebhookSignal, useReceiveWebhookSignalMutation, } from './hooks/useReceiveWebhookSignalMutation';
|
|
66
65
|
export { serveUpload, useServeUploadQuery } from './hooks/useServeUploadQuery';
|
|
67
66
|
export { startReleaseExecution, useStartReleaseExecutionMutation, } from './hooks/useStartReleaseExecutionMutation';
|
|
67
|
+
export { streamUpload, useStreamUploadMutation } from './hooks/useStreamUploadMutation';
|
|
68
68
|
export { updateExecutionTaskMetadata, useUpdateExecutionTaskMetadataMutation, } from './hooks/useUpdateExecutionTaskMetadataMutation';
|
|
69
69
|
export { updateExecutionTaskStatus, useUpdateExecutionTaskStatusMutation, } from './hooks/useUpdateExecutionTaskStatusMutation';
|
|
70
70
|
export { updateReleaseConflict, useUpdateReleaseConflictMutation, } from './hooks/useUpdateReleaseConflictMutation';
|
package/package.json
CHANGED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
-
import type { PresignUploadResponse } from '../schemas/PresignUploadResponse';
|
|
3
|
-
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
-
import type { PresignUploadRequest } from '../schemas/PresignUploadRequest';
|
|
5
|
-
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
-
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
-
export interface PresignUploadMutationQueryParams {
|
|
8
|
-
orgIdentifier?: string;
|
|
9
|
-
projectIdentifier?: string;
|
|
10
|
-
}
|
|
11
|
-
export interface PresignUploadMutationHeaderParams {
|
|
12
|
-
'Harness-Account': string;
|
|
13
|
-
}
|
|
14
|
-
export type PresignUploadRequestBody = PresignUploadRequest;
|
|
15
|
-
export type PresignUploadOkResponse = ResponseWithPagination<PresignUploadResponse>;
|
|
16
|
-
export type PresignUploadErrorResponse = ErrorResponseResponse;
|
|
17
|
-
export interface PresignUploadProps extends Omit<FetcherOptions<PresignUploadMutationQueryParams, PresignUploadRequestBody, PresignUploadMutationHeaderParams>, 'url'> {
|
|
18
|
-
queryParams: PresignUploadMutationQueryParams;
|
|
19
|
-
body: PresignUploadRequestBody;
|
|
20
|
-
}
|
|
21
|
-
export declare function presignUpload(props: PresignUploadProps): Promise<PresignUploadOkResponse>;
|
|
22
|
-
/**
|
|
23
|
-
* Generate a presigned GCS URL for uploading an image or video file. Returns both the upload URL (for PUT) and the serve URL (for retrieval).
|
|
24
|
-
*/
|
|
25
|
-
export declare function usePresignUploadMutation(options?: Omit<UseMutationOptions<PresignUploadOkResponse, PresignUploadErrorResponse, PresignUploadProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<PresignUploadOkResponse, import("..").Error, PresignUploadProps, unknown>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
-
// Please do not modify this code directly.
|
|
4
|
-
import { useMutation } from '@tanstack/react-query';
|
|
5
|
-
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
-
export function presignUpload(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v1/uploads/presign`, method: 'POST' }, props));
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Generate a presigned GCS URL for uploading an image or video file. Returns both the upload URL (for PUT) and the serve URL (for retrieval).
|
|
11
|
-
*/
|
|
12
|
-
export function usePresignUploadMutation(options) {
|
|
13
|
-
return useMutation((mutateProps) => presignUpload(mutateProps), options);
|
|
14
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface PresignUploadRequest {
|
|
2
|
-
/**
|
|
3
|
-
* Size of the file in bytes
|
|
4
|
-
* @format int64
|
|
5
|
-
*/
|
|
6
|
-
contentLength: number;
|
|
7
|
-
/**
|
|
8
|
-
* MIME type of the file to upload (e.g., image/png, video/mp4)
|
|
9
|
-
*/
|
|
10
|
-
contentType: string;
|
|
11
|
-
/**
|
|
12
|
-
* ID of the release this upload is associated with
|
|
13
|
-
*/
|
|
14
|
-
releaseId: string;
|
|
15
|
-
}
|
/package/dist/rmg-service/src/services/schemas/{PresignUploadRequest.js → UploadResponse.js}
RENAMED
|
File without changes
|