@harnessio/react-rmg-service-client 0.53.0 → 0.54.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.
@@ -5,11 +5,11 @@ import type { ReleaseSummaryRequestRequestBody } from '../requestBodies/ReleaseS
5
5
  import type { ResponseWithPagination } from '../helpers';
6
6
  import { FetcherOptions } from '../../../../fetcher/index.js';
7
7
  export interface PostReleaseSummaryMutationQueryParams {
8
- orgIdentifier?: string;
9
- projectIdentifier?: string;
10
8
  searchTerm?: string;
11
9
  releaseGroupIds?: string[];
12
10
  type?: 'Orchestration' | 'Tracking';
11
+ source?: 'ADHOC' | 'RECURRING';
12
+ status?: Array<'Aborted' | 'Failed' | 'InputWaiting' | 'Paused' | 'Running' | 'Scheduled' | 'Success'>;
13
13
  }
14
14
  export interface PostReleaseSummaryMutationHeaderParams {
15
15
  'Harness-Account': string;
@@ -305,6 +305,7 @@ export type { RepeatUnit } from './schemas/RepeatUnit';
305
305
  export type { ReportGenerationRequest } from './schemas/ReportGenerationRequest';
306
306
  export type { ReportGenerationResponse } from './schemas/ReportGenerationResponse';
307
307
  export type { ReportStatusResponse } from './schemas/ReportStatusResponse';
308
+ export type { ScopeFilterDto } from './schemas/ScopeFilterDto';
308
309
  export type { ServiceInfoDto } from './schemas/ServiceInfoDto';
309
310
  export type { ServiceInputVariable } from './schemas/ServiceInputVariable';
310
311
  export type { ServiceMetadata } from './schemas/ServiceMetadata';
@@ -1,4 +1,9 @@
1
+ import type { ScopeFilterDto } from '../schemas/ScopeFilterDto';
1
2
  import type { TimeRangeDto } from '../schemas/TimeRangeDto';
2
3
  export interface ReleaseSummaryRequestRequestBody {
4
+ /**
5
+ * Optional array of scope filters for hierarchical filtering (account/org/project levels)
6
+ */
7
+ scopes?: ScopeFilterDto[];
3
8
  timeRanges?: TimeRangeDto[];
4
9
  }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Hierarchical scope filter for account/org/project levels
3
+ */
4
+ export interface ScopeFilterDto {
5
+ /**
6
+ * Optional organization identifier. If omitted, filters at account level.
7
+ */
8
+ orgIdentifier?: string;
9
+ /**
10
+ * Optional project identifier. If omitted (with org present), filters at org level.
11
+ */
12
+ projectIdentifier?: string;
13
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-rmg-service-client",
3
- "version": "0.53.0",
3
+ "version": "0.54.0",
4
4
  "description": "Harness Release Management Service APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",