@harnessio/react-idp-service-client 0.19.0 → 0.20.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.
|
@@ -8,7 +8,7 @@ export interface GetHarnessEntitiesQueryQueryParams {
|
|
|
8
8
|
sort?: string;
|
|
9
9
|
order?: string;
|
|
10
10
|
search_term?: string;
|
|
11
|
-
|
|
11
|
+
project_to_filter?: string;
|
|
12
12
|
}
|
|
13
13
|
export interface GetHarnessEntitiesQueryHeaderParams {
|
|
14
14
|
'Harness-Account'?: string;
|
|
@@ -2,4 +2,6 @@ import type { HarnessBackstageEntities } from '../schemas/HarnessBackstageEntiti
|
|
|
2
2
|
/**
|
|
3
3
|
* Response for harness entities mapping with backstage entities
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
5
|
+
export interface HarnessEntitiesResponse {
|
|
6
|
+
harness_backstage_entities: HarnessBackstageEntities[];
|
|
7
|
+
}
|