@prorobotech/openapi-k8s-toolkit 1.2.0-alpha.18 → 1.2.0-alpha.19

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.
@@ -4,5 +4,6 @@ export type TNodeTerminalProps = {
4
4
  nodeName: string;
5
5
  substractHeight: number;
6
6
  defaultProfile?: string;
7
+ listPodTemplatesNs?: string;
7
8
  };
8
9
  export declare const NodeTerminal: FC<TNodeTerminalProps>;
@@ -4,6 +4,9 @@ type TXTerminalProps = {
4
4
  endpoint: string;
5
5
  nodeName: string;
6
6
  profile: string;
7
+ isCustomTemplate?: boolean;
8
+ podTemplateNamespace?: string;
9
+ containerName?: string;
7
10
  substractHeight: number;
8
11
  };
9
12
  export declare const XTerminal: FC<TXTerminalProps>;
@@ -0,0 +1,7 @@
1
+ export type TNodeTerminalPayload = {
2
+ nodeName: string;
3
+ profile: string;
4
+ podTemplateName?: string;
5
+ podTemplateNamespace?: string;
6
+ containerName?: string;
7
+ };
@@ -0,0 +1,12 @@
1
+ export type TPodTemplateData = {
2
+ metadata?: {
3
+ name?: string;
4
+ };
5
+ template?: {
6
+ spec?: {
7
+ containers?: Array<{
8
+ name?: string;
9
+ }>;
10
+ };
11
+ };
12
+ };
@@ -133,6 +133,7 @@ export type TDynamicComponentsAppTypeMap = {
133
133
  cluster: string;
134
134
  nodeName: string;
135
135
  substractHeight?: number;
136
+ listPodTemplatesNs?: string;
136
137
  };
137
138
  PodLogs: {
138
139
  id: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "1.2.0-alpha.18",
3
+ "version": "1.2.0-alpha.19",
4
4
  "description": "ProRobotech OpenAPI k8s tools",
5
5
  "main": "dist/openapi-k8s-toolkit.cjs.js",
6
6
  "module": "dist/openapi-k8s-toolkit.es.js",