@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.
- package/dist/idp-service/src/services/hooks/useGetEntitiesFiltersByQueryMutation.d.ts +1 -0
- package/dist/idp-service/src/services/hooks/useGetEntitiesFiltersQuery.d.ts +1 -0
- package/dist/idp-service/src/services/hooks/useGetEntityVersionsQuery.d.ts +0 -1
- package/dist/idp-service/src/services/schemas/EntityVersionCreateRequest.d.ts +2 -2
- package/dist/idp-service/src/services/schemas/EntityVersionResponse.d.ts +1 -5
- package/dist/idp-service/src/services/schemas/EntityVersionUpdateRequest.d.ts +2 -2
- package/package.json +1 -1
|
@@ -11,9 +11,9 @@ export interface EntityVersionCreateRequest {
|
|
|
11
11
|
*/
|
|
12
12
|
description?: string;
|
|
13
13
|
/**
|
|
14
|
-
* Is the EntityVersion
|
|
14
|
+
* Is the EntityVersion stable. Only one EntityVersion can be stable at a time.
|
|
15
15
|
*/
|
|
16
|
-
|
|
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
|
|
14
|
+
* Is the EntityVersion stable. Only one EntityVersion can be stable at a time.
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
stable?: boolean;
|
|
17
17
|
/**
|
|
18
18
|
* (to be passed as a String).
|
|
19
19
|
*/
|