@odigos/ui-kit 0.0.130 → 0.0.131
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/CHANGELOG.md +12 -0
- package/lib/containers/_v2/pipeline-collectors/general-info/index.d.ts +1 -0
- package/lib/containers/_v2/pipeline-collectors/general-info/yaml-drawer/index.d.ts +9 -0
- package/lib/containers/v2.js +5 -5
- package/lib/icons/arrows/arrow-down-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-down-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-left-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-left-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-right-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-right-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-up-icon/index.d.ts +2 -0
- package/lib/icons/arrows/arrow-up-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-down-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-down-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-down-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-left-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-left-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-left-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-right-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-right-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-right-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-up-circle-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-up-icon/index.d.ts +2 -0
- package/lib/icons/arrows/chevron-up-square-icon/index.d.ts +2 -0
- package/lib/icons/arrows/index.d.ts +20 -0
- package/lib/icons/index.d.ts +1 -0
- package/lib/icons.js +1 -1
- package/lib/mock-data/pipeline-collectors/index.d.ts +1 -1
- package/lib/types/pipeline-collectors/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type GatewayInfo, type PodInfo, type NodeCollectoInfo, ExtendedPodInfo } from '@/types';
|
|
2
2
|
export declare const MOCK_GATEWAY_INFO: GatewayInfo;
|
|
3
|
-
export declare const MOCK_GATEWAY_PODS: PodInfo[];
|
|
4
3
|
export declare const MOCK_NODE_COLLECTOR_INFO: NodeCollectoInfo;
|
|
4
|
+
export declare const MOCK_GATEWAY_PODS: PodInfo[];
|
|
5
5
|
export declare const MOCK_NODE_COLLECTOR_PODS: PodInfo[];
|
|
6
6
|
export declare const MOCK_EXTENDED_POD_INFO: ExtendedPodInfo;
|
|
@@ -42,6 +42,7 @@ export interface GatewayInfo {
|
|
|
42
42
|
imageVersion: string;
|
|
43
43
|
lastRolloutAt: string;
|
|
44
44
|
rolloutInProgress: boolean;
|
|
45
|
+
manifestYAML: string;
|
|
45
46
|
}
|
|
46
47
|
export interface NodeCollectoInfo {
|
|
47
48
|
status: WorkloadRolloutStatus;
|
|
@@ -62,6 +63,7 @@ export interface NodeCollectoInfo {
|
|
|
62
63
|
imageVersion: string;
|
|
63
64
|
lastRolloutAt: string;
|
|
64
65
|
rolloutInProgress: boolean;
|
|
66
|
+
manifestYAML: string;
|
|
65
67
|
}
|
|
66
68
|
export interface PodInfo {
|
|
67
69
|
namespace: string;
|