@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.
@@ -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?: OrchestrationStatusList;
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';
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Type of orchestration activity
3
3
  */
4
- export type CreateOrchestrationActivityRequestType = 'MANUAL' | 'PIPELINE' | 'SUBPROCESS' | 'WEBHOOK';
4
+ export type CreateOrchestrationActivityRequestType = 'MANUAL' | 'PIPELINE' | 'PIPELINE_QUEUE' | 'SUBPROCESS';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.65.1-beta.0",
3
+ "version": "0.65.1-beta.1",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",
@@ -1,5 +0,0 @@
1
- import type { OrchestrationStatus } from '../schemas/OrchestrationStatus';
2
- /**
3
- * List of orchestration execution activity statuses
4
- */
5
- export type OrchestrationStatusList = OrchestrationStatus[];