@harnessio/react-rmg-service-client 0.65.1-beta.0 → 0.65.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rmg-service/src/services/hooks/useGetOrchestrationProcessExecutionsQuery.d.ts +1 -2
- package/dist/rmg-service/src/services/index.d.ts +0 -1
- package/dist/rmg-service/src/services/schemas/CreateOrchestrationActivityRequestType.d.ts +1 -1
- package/package.json +1 -1
- package/dist/rmg-service/src/services/schemas/OrchestrationStatusList.d.ts +0 -5
- package/dist/rmg-service/src/services/schemas/OrchestrationStatusList.js +0 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { ProcessExecutionDto } from '../schemas/ProcessExecutionDto';
|
|
3
3
|
import type { ErrorResponseResponse } from '../responses/ErrorResponseResponse';
|
|
4
|
-
import type { OrchestrationStatusList } from '../schemas/OrchestrationStatusList';
|
|
5
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
6
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
6
|
export interface GetOrchestrationProcessExecutionsQueryPathParams {
|
|
@@ -14,7 +13,7 @@ export interface GetOrchestrationProcessExecutionsQueryQueryParams {
|
|
|
14
13
|
size?: number;
|
|
15
14
|
sort?: string[];
|
|
16
15
|
executionType?: 'PROCESS' | 'RELEASE';
|
|
17
|
-
statuses?:
|
|
16
|
+
statuses?: Array<'ABORTED' | 'FAILED' | 'IGNORED' | 'ON_HOLD' | 'OUTPUT_WAITING' | 'QUEUED' | 'RETRIED' | 'RUNNING' | 'SCHEDULED' | 'SKIPPED' | 'SUCCEEDED'>;
|
|
18
17
|
/**
|
|
19
18
|
* @format int64
|
|
20
19
|
*/
|
|
@@ -371,7 +371,6 @@ export type { OrchestrationProcessDto } from './schemas/OrchestrationProcessDto'
|
|
|
371
371
|
export type { OrchestrationProcessInputYaml } from './schemas/OrchestrationProcessInputYaml';
|
|
372
372
|
export type { OrchestrationReleaseProcessYaml } from './schemas/OrchestrationReleaseProcessYaml';
|
|
373
373
|
export type { OrchestrationStatus } from './schemas/OrchestrationStatus';
|
|
374
|
-
export type { OrchestrationStatusList } from './schemas/OrchestrationStatusList';
|
|
375
374
|
export type { OutputVariable } from './schemas/OutputVariable';
|
|
376
375
|
export type { Pageable } from './schemas/Pageable';
|
|
377
376
|
export type { PageableSort } from './schemas/PageableSort';
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|