@harnessio/react-idp-service-client 0.77.0 → 0.79.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/useGetEntityVersionsQuery.d.ts +2 -0
- package/dist/idp-service/src/services/schemas/BannerInfo.d.ts +1 -0
- package/dist/idp-service/src/services/schemas/EntityResponse.d.ts +6 -0
- package/dist/idp-service/src/services/schemas/EntityVersionCreateRequest.d.ts +8 -0
- package/dist/idp-service/src/services/schemas/EntityVersionResponse.d.ts +2 -0
- package/package.json +1 -1
|
@@ -41,6 +41,9 @@ export interface EntityResponse {
|
|
|
41
41
|
projectIdentifier?: string;
|
|
42
42
|
project_name?: string;
|
|
43
43
|
referenceType: 'GIT' | 'INLINE';
|
|
44
|
+
relations?: {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
};
|
|
44
47
|
scope: 'ACCOUNT' | 'ORGANIZATION' | 'PROJECT';
|
|
45
48
|
scorecards?: {
|
|
46
49
|
average?: number;
|
|
@@ -52,6 +55,9 @@ export interface EntityResponse {
|
|
|
52
55
|
total_checks?: number;
|
|
53
56
|
}>;
|
|
54
57
|
};
|
|
58
|
+
spec?: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
};
|
|
55
61
|
starred?: boolean;
|
|
56
62
|
status?: Array<{
|
|
57
63
|
level?: string;
|
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
* Entity Version Create Request Body
|
|
3
3
|
*/
|
|
4
4
|
export interface EntityVersionCreateRequest {
|
|
5
|
+
/**
|
|
6
|
+
* Is the EntityVersion deprecated.
|
|
7
|
+
*/
|
|
8
|
+
deprecated?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Description of the EntityVersion. Will inherit the description from the Entity if not provided.
|
|
11
|
+
*/
|
|
12
|
+
description?: string;
|
|
5
13
|
/**
|
|
6
14
|
* Version of the Entity.
|
|
7
15
|
*/
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
* Entity Version Response Body
|
|
3
3
|
*/
|
|
4
4
|
export interface EntityVersionResponse {
|
|
5
|
+
deprecated?: boolean;
|
|
6
|
+
description?: string;
|
|
5
7
|
identifier: string;
|
|
6
8
|
kind: 'api' | 'component' | 'environment' | 'environmentblueprint' | 'group' | 'resource' | 'system' | 'user' | 'workflow';
|
|
7
9
|
orgIdentifier?: string;
|