@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.74 → 0.0.1-alpha.76

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.
@@ -1 +1,2 @@
1
1
  export * from './organisms';
2
+ export { YamlEditorSingleton } from './molecules';
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ import { TDynamicComponentsAppTypeMap } from '../../types';
3
+ export declare const YamlEditorSingleton: FC<{
4
+ data: TDynamicComponentsAppTypeMap['YamlEditorSingleton'];
5
+ children?: any;
6
+ }>;
@@ -0,0 +1 @@
1
+ export * from './YamlEditorSingleton';
@@ -0,0 +1,8 @@
1
+ type TDataMap = {
2
+ [key: string]: any;
3
+ };
4
+ export declare const parseMutliqueryText: ({ text, multiQueryData }: {
5
+ text?: string | undefined;
6
+ multiQueryData: TDataMap;
7
+ }) => string;
8
+ export {};
@@ -19,3 +19,4 @@ export * from './EnrichedTable';
19
19
  export * from './PodTerminal';
20
20
  export * from './NodeTerminal';
21
21
  export * from './PodLogs';
22
+ export * from './YamlEditorSingleton';
@@ -118,4 +118,15 @@ export type TDynamicComponentsAppTypeMap = {
118
118
  podName: string;
119
119
  substractHeight?: number;
120
120
  };
121
+ YamlEditorSingleton: {
122
+ id: number;
123
+ cluster: string;
124
+ isNameSpaced: boolean;
125
+ type: 'builtin' | 'apis';
126
+ apiGroup?: string;
127
+ apiVersion?: string;
128
+ typeName: string;
129
+ prefillValuesRequestIndex: number;
130
+ substractHeight?: number;
131
+ };
121
132
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "0.0.1-alpha.74",
3
+ "version": "0.0.1-alpha.76",
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",