@prorobotech/openapi-k8s-toolkit 1.1.0-alpha.3 → 1.1.0-alpha.5
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/openapi-k8s-toolkit.es.js +57 -21
- package/dist/openapi-k8s-toolkit.es.js.map +1 -1
- package/dist/openapi-k8s-toolkit.umd.js +57 -21
- package/dist/openapi-k8s-toolkit.umd.js.map +1 -1
- package/dist/types/components/organisms/DynamicComponents/types.d.ts +7 -1
- package/dist/types/hooks/useApiResource.d.ts +1 -0
- package/dist/types/hooks/useBuiltinResource.d.ts +1 -0
- package/dist/types/hooks/useCrdResource.d.ts +1 -0
- package/dist/types/localTypes/dynamicRender.d.ts +1 -1
- package/dist/types/localTypes/k8s.d.ts +1 -0
- package/package.json +1 -1
|
@@ -102,7 +102,13 @@ export type TDynamicComponentsAppTypeMap = {
|
|
|
102
102
|
} & Omit<TManageableSidebarWithDataProviderProps, 'replaceValues'>;
|
|
103
103
|
EnrichedTable: {
|
|
104
104
|
id: number | string;
|
|
105
|
-
fetchUrl
|
|
105
|
+
fetchUrl?: string;
|
|
106
|
+
k8sResourceToFetch?: {
|
|
107
|
+
group?: string;
|
|
108
|
+
version: string;
|
|
109
|
+
plural: string;
|
|
110
|
+
namespace?: string;
|
|
111
|
+
};
|
|
106
112
|
pathToItems: string | string[];
|
|
107
113
|
clusterNamePartOfUrl: string;
|
|
108
114
|
labelSelector?: Record<string, string>;
|
|
@@ -16,7 +16,7 @@ export type TRendererComponents<T extends TItemTypeMap> = {
|
|
|
16
16
|
};
|
|
17
17
|
export type TFactoryDataK8s<T extends TItemTypeMap> = {
|
|
18
18
|
key: string;
|
|
19
|
-
urlsToFetch: string | TUseK8sSmartResourceParams<any
|
|
19
|
+
urlsToFetch: (string | TUseK8sSmartResourceParams<any>)[];
|
|
20
20
|
withScrollableMainContentCard?: boolean;
|
|
21
21
|
data: TRenderableItem<T>[];
|
|
22
22
|
sidebarTags?: string[];
|
package/package.json
CHANGED