From 99b692072265ae443c05e5b7ff472a010ae5d6da Mon Sep 17 00:00:00 2001 From: Carlos Esteban Lopez Date: Tue, 5 Sep 2023 11:30:07 -0500 Subject: [PATCH] chore: Update API Reports Signed-off-by: Carlos Esteban Lopez --- plugins/kubernetes/api-report.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/plugins/kubernetes/api-report.md b/plugins/kubernetes/api-report.md index f29d2fb958..77ec8dd19c 100644 --- a/plugins/kubernetes/api-report.md +++ b/plugins/kubernetes/api-report.md @@ -347,18 +347,6 @@ export const JobsAccordions: ({ jobs, }: JobsAccordionsProps) => React_2.JSX.Element; -// @public -export interface K8sTerminalProps { - // (undocumented) - clusterName: string; - // (undocumented) - containerName: string; - // (undocumented) - podName: string; - // (undocumented) - podNamespace: string; -} - // Warning: (ae-missing-release-tag) "KubernetesApi" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) @@ -644,13 +632,27 @@ export const PodDrawer: ({ }: PodDrawerProps) => React_2.JSX.Element; // @public -export const PodExecTerminal: (props: K8sTerminalProps) => React_2.JSX.Element; +export const PodExecTerminal: ( + props: PodExecTerminalProps, +) => React_2.JSX.Element; // @public export const PodExecTerminalDialog: ( - props: K8sTerminalProps, + props: PodExecTerminalProps, ) => React_2.JSX.Element; +// @public +export interface PodExecTerminalProps { + // (undocumented) + clusterName: string; + // (undocumented) + containerName: string; + // (undocumented) + podName: string; + // (undocumented) + podNamespace: string; +} + // @public export const PodLogs: React_2.FC;