@harnessio/react-idp-service-client 0.84.0 → 0.86.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.
@@ -7,6 +7,7 @@ export interface GetEntitiesFiltersByQueryMutationQueryParams {
7
7
  accountIdentifier: string;
8
8
  kind?: string;
9
9
  scopes?: string;
10
+ filter?: string;
10
11
  }
11
12
  export interface GetEntitiesFiltersByQueryMutationHeaderParams {
12
13
  'Harness-Account'?: string;
@@ -6,6 +6,7 @@ export interface GetEntitiesFiltersQueryQueryParams {
6
6
  accountIdentifier: string;
7
7
  kind?: string;
8
8
  scopes?: string;
9
+ filter?: string;
9
10
  }
10
11
  export interface GetEntitiesFiltersQueryHeaderParams {
11
12
  'Harness-Account'?: string;
@@ -17,7 +17,6 @@ export interface GetEntityVersionsQueryQueryParams {
17
17
  limit?: number;
18
18
  search_term?: string;
19
19
  deprecated?: boolean;
20
- published?: boolean;
21
20
  }
22
21
  export interface GetEntityVersionsQueryHeaderParams {
23
22
  'Harness-Account'?: string;
@@ -11,9 +11,9 @@ export interface EntityVersionCreateRequest {
11
11
  */
12
12
  description?: string;
13
13
  /**
14
- * Is the EntityVersion published.
14
+ * Is the EntityVersion stable. Only one EntityVersion can be stable at a time.
15
15
  */
16
- published?: boolean;
16
+ stable?: boolean;
17
17
  /**
18
18
  * Version of the Entity.
19
19
  */
@@ -18,12 +18,8 @@ export interface EntityVersionResponse {
18
18
  org_name?: string;
19
19
  projectIdentifier?: string;
20
20
  project_name?: string;
21
- published?: boolean;
22
- /**
23
- * @format int64
24
- */
25
- publishedAt?: number;
26
21
  scope?: 'ACCOUNT' | 'ORGANIZATION' | 'PROJECT';
22
+ stable?: boolean;
27
23
  /**
28
24
  * @format int64
29
25
  */
@@ -11,9 +11,9 @@ export interface EntityVersionUpdateRequest {
11
11
  */
12
12
  description?: string;
13
13
  /**
14
- * Is the EntityVersion published.
14
+ * Is the EntityVersion stable. Only one EntityVersion can be stable at a time.
15
15
  */
16
- published?: boolean;
16
+ stable?: boolean;
17
17
  /**
18
18
  * (to be passed as a String).
19
19
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-idp-service-client",
3
- "version": "0.84.0",
3
+ "version": "0.86.0",
4
4
  "description": "Harness React idp service client - IDP APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",