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

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.
@@ -8388,6 +8388,30 @@ const UnlockedIcon = () => {
8388
8388
  ) });
8389
8389
  };
8390
8390
 
8391
+ const PauseCircleIcon = () => {
8392
+ const { token } = theme.useToken();
8393
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { width: "35", height: "35", viewBox: "0 0 35 35", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
8394
+ "path",
8395
+ {
8396
+ d: "M17.5 0C7.83594 0 0 7.83594 0 17.5C0 27.1641 7.83594 35 17.5 35C27.1641 35 35 27.1641 35 17.5C35 7.83594 27.1641 0 17.5 0ZM14.375 23.4375C14.375 23.6094 14.2344 23.75 14.0625 23.75H12.1875C12.0156 23.75 11.875 23.6094 11.875 23.4375V11.5625C11.875 11.3906 12.0156 11.25 12.1875 11.25H14.0625C14.2344 11.25 14.375 11.3906 14.375 11.5625V23.4375ZM23.125 23.4375C23.125 23.6094 22.9844 23.75 22.8125 23.75H20.9375C20.7656 23.75 20.625 23.6094 20.625 23.4375V11.5625C20.625 11.3906 20.7656 11.25 20.9375 11.25H22.8125C22.9844 11.25 23.125 11.3906 23.125 11.5625V23.4375Z",
8397
+ fill: token.colorText,
8398
+ fillOpacity: "0.88"
8399
+ }
8400
+ ) });
8401
+ };
8402
+
8403
+ const ResumeCircleIcon = () => {
8404
+ const { token } = theme.useToken();
8405
+ return /* @__PURE__ */ jsxRuntimeExports.jsx("svg", { width: "35", height: "35", viewBox: "0 0 35 35", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
8406
+ "path",
8407
+ {
8408
+ d: "M18 0.5C8.33594 0.5 0.5 8.33594 0.5 18C0.5 27.6641 8.33594 35.5 18 35.5C27.6641 35.5 35.5 27.6641 35.5 18C35.5 8.33594 27.6641 0.5 18 0.5ZM23.6289 18.2695L15.0977 24.4766C15.0509 24.5102 14.9958 24.5302 14.9383 24.5346C14.8809 24.5389 14.8234 24.5273 14.7721 24.501C14.7208 24.4748 14.6778 24.4349 14.6477 24.3858C14.6176 24.3367 14.6017 24.2803 14.6016 24.2227V11.8164C14.6014 11.7587 14.6172 11.7021 14.6472 11.6528C14.6772 11.6035 14.7203 11.5635 14.7717 11.5372C14.8231 11.5109 14.8807 11.4994 14.9382 11.5038C14.9958 11.5083 15.051 11.5286 15.0977 11.5625L23.6289 17.7656C23.6692 17.7941 23.7021 17.8319 23.7248 17.8757C23.7475 17.9196 23.7593 17.9682 23.7593 18.0176C23.7593 18.0669 23.7475 18.1156 23.7248 18.1594C23.7021 18.2033 23.6692 18.241 23.6289 18.2695Z",
8409
+ fill: token.colorText,
8410
+ fillOpacity: "0.88"
8411
+ }
8412
+ ) });
8413
+ };
8414
+
8391
8415
  const ContentContainer = st.div`
8392
8416
  border: 1px solid ${({ $borderColor }) => $borderColor};
8393
8417
  border-radius: 6px;
@@ -45062,7 +45086,7 @@ const PodTerminal$1 = ({ cluster, namespace, podName, containers, substractHeigh
45062
45086
  }
45063
45087
  }
45064
45088
  ) }),
45065
- /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 8, $samespace: true }),
45089
+ /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 16, $samespace: true }),
45066
45090
  currentContainer && /* @__PURE__ */ jsxRuntimeExports.jsx(
45067
45091
  XTerminal$2,
45068
45092
  {
@@ -45258,8 +45282,8 @@ const Styled$4 = {
45258
45282
  CustomSelect: CustomSelect$2
45259
45283
  };
45260
45284
 
45261
- const NodeTerminal$1 = ({ cluster, nodeName, substractHeight }) => {
45262
- const [currentProfile, setCurrentProfile] = useState("general");
45285
+ const NodeTerminal$1 = ({ cluster, nodeName, substractHeight, defaultProfile }) => {
45286
+ const [currentProfile, setCurrentProfile] = useState(defaultProfile || "general");
45263
45287
  const endpoint = `/api/clusters/${cluster}/openapi-bff-ws/terminal/terminalNode/terminalNode`;
45264
45288
  const profiles = ["legacy", "general", "baseline", "netadmin", "restricted", "sysadmin"];
45265
45289
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
@@ -45274,7 +45298,7 @@ const NodeTerminal$1 = ({ cluster, nodeName, substractHeight }) => {
45274
45298
  onChange: (value) => setCurrentProfile(value)
45275
45299
  }
45276
45300
  ) }),
45277
- /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 8, $samespace: true }),
45301
+ /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 16, $samespace: true }),
45278
45302
  currentProfile && /* @__PURE__ */ jsxRuntimeExports.jsx(
45279
45303
  XTerminal$1,
45280
45304
  {
@@ -45419,7 +45443,7 @@ const PodLogs$1 = ({ cluster, namespace, podName, containers, substractHeight })
45419
45443
  }
45420
45444
  }
45421
45445
  ) }),
45422
- /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 8, $samespace: true }),
45446
+ /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 16, $samespace: true }),
45423
45447
  currentContainer && /* @__PURE__ */ jsxRuntimeExports.jsx(
45424
45448
  XTerminal,
45425
45449
  {
@@ -45447,15 +45471,17 @@ const CustomCard = st.div`
45447
45471
  scrollbar-width: thin;
45448
45472
  }
45449
45473
  `;
45450
- const RightAboveContainer = st.div`
45451
- margin-top: -40px;
45452
- display: flex;
45453
- justify-content: flex-end;
45474
+ const VisibilityContainer = st.div`
45475
+ visibility: ${({ $isVisible }) => $isVisible ? "visible" : "hidden"};
45476
+ `;
45477
+ const CursorPointerDiv = st.div`
45478
+ cursor: pointer;
45454
45479
  `;
45455
45480
  const Styled$1 = {
45456
45481
  FullWidthDiv,
45457
45482
  CustomCard,
45458
- RightAboveContainer
45483
+ VisibilityContainer,
45484
+ CursorPointerDiv
45459
45485
  };
45460
45486
 
45461
45487
  const MonacoEditor = ({
@@ -45464,7 +45490,8 @@ const MonacoEditor = ({
45464
45490
  podName,
45465
45491
  container,
45466
45492
  theme,
45467
- substractHeight
45493
+ substractHeight,
45494
+ previous
45468
45495
  }) => {
45469
45496
  const [isLoading, setIsLoading] = useState(true);
45470
45497
  const [error, setError] = useState();
@@ -45493,7 +45520,7 @@ const MonacoEditor = ({
45493
45520
  socket.send(
45494
45521
  JSON.stringify({
45495
45522
  type: "init",
45496
- payload: { namespace, podName, container }
45523
+ payload: { namespace, podName, container, previous }
45497
45524
  })
45498
45525
  );
45499
45526
  console.log(`[${namespace}/${podName}]: WebSocket Client Connected`);
@@ -45522,31 +45549,34 @@ const MonacoEditor = ({
45522
45549
  socket.close();
45523
45550
  }
45524
45551
  };
45525
- }, [endpoint, namespace, podName, container]);
45552
+ }, [endpoint, namespace, podName, container, previous]);
45526
45553
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
45527
- /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$1.RightAboveContainer, { $isVisible: isTerminalVisible, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
45528
- Button,
45529
- {
45530
- onClick: () => {
45531
- if (isPaused) {
45532
- setIsPaused(false);
45533
- socketRef.current?.send(
45534
- JSON.stringify({
45535
- type: "continue"
45536
- })
45537
- );
45538
- } else {
45539
- setIsPaused(true);
45540
- socketRef.current?.send(
45541
- JSON.stringify({
45542
- type: "stop"
45543
- })
45544
- );
45545
- }
45546
- },
45547
- children: isPaused ? "Continue" : "Stop"
45548
- }
45549
- ) }),
45554
+ /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$1.VisibilityContainer, { $isVisible: isTerminalVisible, children: /* @__PURE__ */ jsxRuntimeExports.jsxs(Flex, { justify: "start", align: "center", gap: 16, children: [
45555
+ /* @__PURE__ */ jsxRuntimeExports.jsx(
45556
+ Styled$1.CursorPointerDiv,
45557
+ {
45558
+ onClick: () => {
45559
+ if (isPaused) {
45560
+ setIsPaused(false);
45561
+ socketRef.current?.send(
45562
+ JSON.stringify({
45563
+ type: "continue"
45564
+ })
45565
+ );
45566
+ } else {
45567
+ setIsPaused(true);
45568
+ socketRef.current?.send(
45569
+ JSON.stringify({
45570
+ type: "stop"
45571
+ })
45572
+ );
45573
+ }
45574
+ },
45575
+ children: isPaused ? /* @__PURE__ */ jsxRuntimeExports.jsx(ResumeCircleIcon, {}) : /* @__PURE__ */ jsxRuntimeExports.jsx(PauseCircleIcon, {})
45576
+ }
45577
+ ),
45578
+ /* @__PURE__ */ jsxRuntimeExports.jsx("div", { children: isPaused ? "Not streaming events" : "Streaming events" })
45579
+ ] }) }),
45550
45580
  /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 8, $samespace: true }),
45551
45581
  /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$1.CustomCard, { $isVisible: isTerminalVisible, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Styled$1.FullWidthDiv, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(
45552
45582
  Ft,
@@ -45583,29 +45613,58 @@ const PodLogsMonaco = ({
45583
45613
  podName,
45584
45614
  containers,
45585
45615
  theme,
45586
- substractHeight
45616
+ substractHeight,
45617
+ rawPodInfo
45587
45618
  }) => {
45588
45619
  const [currentContainer, setCurrentContainer] = useState(containers[0] || void 0);
45620
+ const [previous, setPrevious] = useState(false);
45589
45621
  const endpoint = `/api/clusters/${cluster}/openapi-bff-ws/terminal/podLogs/podLogsNonWs`;
45590
45622
  if (containers.length === 0) {
45591
45623
  return /* @__PURE__ */ jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: "No Running Containers" });
45592
45624
  }
45625
+ const restartCount = rawPodInfo.status.containerStatuses.find((s) => s.name === currentContainer)?.restartCount ?? 0;
45626
+ const withPrevious = restartCount > 0;
45627
+ const prevCurOptions = withPrevious ? [
45628
+ { value: "current", label: "Current log" },
45629
+ { value: "previous", label: "Previous log" }
45630
+ ] : [{ value: "current", label: "Current log" }];
45593
45631
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
45594
- /* @__PURE__ */ jsxRuntimeExports.jsx(Styled.CustomSelect, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(
45595
- Select,
45596
- {
45597
- placeholder: "Select container",
45598
- options: containers.map((container) => ({ value: container, label: container })),
45599
- filterOption: filterSelectOptions,
45600
- disabled: containers.length === 0,
45601
- showSearch: true,
45602
- value: currentContainer,
45603
- onChange: (value) => {
45604
- setCurrentContainer(value);
45632
+ /* @__PURE__ */ jsxRuntimeExports.jsxs(Flex, { gap: 16, children: [
45633
+ /* @__PURE__ */ jsxRuntimeExports.jsx(Styled.CustomSelect, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(
45634
+ Select,
45635
+ {
45636
+ placeholder: "Select container",
45637
+ options: containers.map((container) => ({ value: container, label: container })),
45638
+ filterOption: filterSelectOptions,
45639
+ disabled: containers.length === 0,
45640
+ showSearch: true,
45641
+ value: currentContainer,
45642
+ onChange: (value) => {
45643
+ setCurrentContainer(value);
45644
+ setPrevious(false);
45645
+ }
45605
45646
  }
45606
- }
45607
- ) }),
45608
- /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 8, $samespace: true }),
45647
+ ) }),
45648
+ currentContainer && /* @__PURE__ */ jsxRuntimeExports.jsx(Styled.CustomSelect, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(
45649
+ Select,
45650
+ {
45651
+ placeholder: "Select current/previous",
45652
+ options: prevCurOptions,
45653
+ filterOption: filterSelectOptions,
45654
+ disabled: !withPrevious,
45655
+ showSearch: true,
45656
+ value: previous ? "previous" : "current",
45657
+ onChange: (value) => {
45658
+ if (value === "previous") {
45659
+ setPrevious(true);
45660
+ } else {
45661
+ setPrevious(false);
45662
+ }
45663
+ }
45664
+ }
45665
+ ) })
45666
+ ] }),
45667
+ /* @__PURE__ */ jsxRuntimeExports.jsx(Spacer$1, { $space: 16, $samespace: true }),
45609
45668
  currentContainer && /* @__PURE__ */ jsxRuntimeExports.jsx(
45610
45669
  MonacoEditor,
45611
45670
  {
@@ -45614,9 +45673,10 @@ const PodLogsMonaco = ({
45614
45673
  podName,
45615
45674
  container: currentContainer,
45616
45675
  theme,
45617
- substractHeight
45676
+ substractHeight,
45677
+ previous
45618
45678
  },
45619
- `${cluster}-${namespace}-${podName}-${currentContainer}`
45679
+ `${cluster}-${namespace}-${podName}-${currentContainer}-${previous}`
45620
45680
  )
45621
45681
  ] });
45622
45682
  };
@@ -46215,7 +46275,7 @@ const PodTerminal = ({
46215
46275
  namespace: namespacePrepared,
46216
46276
  podName: podNamePrepared,
46217
46277
  containers,
46218
- substractHeight: substractHeight || 332,
46278
+ substractHeight: substractHeight || 340,
46219
46279
  ...props
46220
46280
  }
46221
46281
  ),
@@ -46223,6 +46283,10 @@ const PodTerminal = ({
46223
46283
  ] });
46224
46284
  };
46225
46285
 
46286
+ const factoryConfigContext = createContextFactory();
46287
+ const FactoryConfigContextProvider = factoryConfigContext.Provider;
46288
+ const useFactoryConfig = factoryConfigContext.useTypedContext;
46289
+
46226
46290
  const parseMutliqueryText$1 = ({ text, multiQueryData }) => {
46227
46291
  if (!text) return "";
46228
46292
  return text.replace(/\{reqs\[(\d+)\]\[((?:\s*['"][^'"]+['"]\s*,?)+)\]\}/g, (match, reqIndexStr, rawPath) => {
@@ -46253,6 +46317,7 @@ const NodeTerminal = ({
46253
46317
  substractHeight,
46254
46318
  ...props
46255
46319
  } = data;
46320
+ const { nodeTerminalDefaultProfile } = useFactoryConfig();
46256
46321
  const partsOfUrl = usePartsOfUrl();
46257
46322
  const replaceValues = partsOfUrl.partsOfUrl.reduce((acc, value, index) => {
46258
46323
  acc[index.toString()] = value;
@@ -46275,7 +46340,8 @@ const NodeTerminal = ({
46275
46340
  {
46276
46341
  cluster: clusterPrepared,
46277
46342
  nodeName: nodeNamePrepared,
46278
- substractHeight: substractHeight || 332,
46343
+ substractHeight: substractHeight || 340,
46344
+ defaultProfile: nodeTerminalDefaultProfile,
46279
46345
  ...props
46280
46346
  }
46281
46347
  ),
@@ -46368,7 +46434,8 @@ const PodLogs = ({
46368
46434
  podName: podNamePrepared,
46369
46435
  containers,
46370
46436
  theme,
46371
- substractHeight: substractHeight || 332,
46437
+ substractHeight: substractHeight || 340 + 35 + 8,
46438
+ rawPodInfo: podInfo,
46372
46439
  ...props
46373
46440
  }
46374
46441
  ),
@@ -46418,12 +46485,12 @@ const prepareUrlsToFetchForDynamicRenderer = ({
46418
46485
 
46419
46486
  const DynamicRendererWithProviders = (props) => {
46420
46487
  const location = useLocation();
46421
- const { urlsToFetch, theme } = props;
46488
+ const { urlsToFetch, theme, nodeTerminalDefaultProfile } = props;
46422
46489
  const preparedUrlsToFetch = prepareUrlsToFetchForDynamicRenderer({
46423
46490
  urls: urlsToFetch,
46424
46491
  locationPathname: location.pathname
46425
46492
  });
46426
- return /* @__PURE__ */ jsxRuntimeExports.jsx(ThemeProvider, { theme, children: /* @__PURE__ */ jsxRuntimeExports.jsx(PartsOfUrlProvider, { value: { partsOfUrl: location.pathname.split("/") }, children: /* @__PURE__ */ jsxRuntimeExports.jsx(MultiQueryProvider, { urls: preparedUrlsToFetch, children: /* @__PURE__ */ jsxRuntimeExports.jsx(DynamicRenderer, { ...props }) }) }) });
46493
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(ThemeProvider, { theme, children: /* @__PURE__ */ jsxRuntimeExports.jsx(FactoryConfigContextProvider, { value: { nodeTerminalDefaultProfile }, children: /* @__PURE__ */ jsxRuntimeExports.jsx(PartsOfUrlProvider, { value: { partsOfUrl: location.pathname.split("/") }, children: /* @__PURE__ */ jsxRuntimeExports.jsx(MultiQueryProvider, { urls: preparedUrlsToFetch, children: /* @__PURE__ */ jsxRuntimeExports.jsx(DynamicRenderer, { ...props }) }) }) }) });
46427
46494
  };
46428
46495
 
46429
46496
  const isLeafNode = (value) => {
@@ -46899,5 +46966,5 @@ const useCrdData = ({
46899
46966
  });
46900
46967
  };
46901
46968
 
46902
- export { BackToDefaultIcon, BlackholeForm, BlackholeFormDataProvider, ContentCard$1 as ContentCard, DeleteIcon, DeleteModal, DeleteModalMany, DownIcon, DynamicComponents, DynamicRenderer, DynamicRendererWithProviders, EditIcon, EnrichedTable$1 as EnrichedTable, EnrichedTableProvider, LockedIcon, ManageableBreadcrumbs, ManageableBreadcrumbsWithDataProvider, ManageableSidebar, ManageableSidebarWithDataProvider, MarketPlace, MarketplaceCard$1 as MarketplaceCard, MinusIcon, NodeTerminal$1 as NodeTerminal, PlusIcon, PodLogs$1 as PodLogs, PodLogsMonaco, PodTerminal$1 as PodTerminal, ProjectInfoCard$1 as ProjectInfoCard, Spacer$1 as Spacer, SuccessIcon, TreeWithSearch, UnlockedIcon, UpIcon, checkIfApiInstanceNamespaceScoped, checkIfBuiltInInstanceNamespaceScoped, checkPermission, createContextFactory, createNewEntry, deleteEntry, feedbackIcons, filterIfApiInstanceNamespaceScoped, filterIfBuiltInInstanceNamespaceScoped, filterSelectOptions, floorToDecimal, getAllPathsFromObj, getApiResourceSingle, getApiResourceTypes, getApiResourceTypesByApiGroup, getApiResources, getBuiltinResourceSingle, getBuiltinResourceTypes, getBuiltinResources, getBuiltinTreeData, getClusterList, getCrdData, getCrdResourceSingle, getCrdResources, getDirectUnknownResource, getEnrichedColumns, getEnrichedColumnsWithControls, getGroupsByCategory, getObjectFormItemsDraft, getPrefixSubarrays, getStringByName, getSwagger, groupsToTreeData, isFlatObject, normalizeValuesForQuotasToNumber, parseQuotaValue, parseQuotaValueCpu, parseQuotaValueMemoryAndStorage, prepareDataForManageableBreadcrumbs, prepareDataForManageableSidebar, prepareTemplate, prepareUrlsToFetchForDynamicRenderer, updateEntry, useApiResourceSingle, useApiResourceTypesByGroup, useApiResources, useApisResourceTypes, useBuiltinResourceSingle, useBuiltinResourceTypes, useBuiltinResources, useClusterList, useCrdData, useCrdResourceSingle, useCrdResources, useDirectUnknownResource, usePermissions };
46969
+ export { BackToDefaultIcon, BlackholeForm, BlackholeFormDataProvider, ContentCard$1 as ContentCard, DeleteIcon, DeleteModal, DeleteModalMany, DownIcon, DynamicComponents, DynamicRenderer, DynamicRendererWithProviders, EditIcon, EnrichedTable$1 as EnrichedTable, EnrichedTableProvider, LockedIcon, ManageableBreadcrumbs, ManageableBreadcrumbsWithDataProvider, ManageableSidebar, ManageableSidebarWithDataProvider, MarketPlace, MarketplaceCard$1 as MarketplaceCard, MinusIcon, NodeTerminal$1 as NodeTerminal, PauseCircleIcon, PlusIcon, PodLogs$1 as PodLogs, PodLogsMonaco, PodTerminal$1 as PodTerminal, ProjectInfoCard$1 as ProjectInfoCard, ResumeCircleIcon, Spacer$1 as Spacer, SuccessIcon, TreeWithSearch, UnlockedIcon, UpIcon, checkIfApiInstanceNamespaceScoped, checkIfBuiltInInstanceNamespaceScoped, checkPermission, createContextFactory, createNewEntry, deleteEntry, feedbackIcons, filterIfApiInstanceNamespaceScoped, filterIfBuiltInInstanceNamespaceScoped, filterSelectOptions, floorToDecimal, getAllPathsFromObj, getApiResourceSingle, getApiResourceTypes, getApiResourceTypesByApiGroup, getApiResources, getBuiltinResourceSingle, getBuiltinResourceTypes, getBuiltinResources, getBuiltinTreeData, getClusterList, getCrdData, getCrdResourceSingle, getCrdResources, getDirectUnknownResource, getEnrichedColumns, getEnrichedColumnsWithControls, getGroupsByCategory, getObjectFormItemsDraft, getPrefixSubarrays, getStringByName, getSwagger, groupsToTreeData, isFlatObject, normalizeValuesForQuotasToNumber, parseQuotaValue, parseQuotaValueCpu, parseQuotaValueMemoryAndStorage, prepareDataForManageableBreadcrumbs, prepareDataForManageableSidebar, prepareTemplate, prepareUrlsToFetchForDynamicRenderer, updateEntry, useApiResourceSingle, useApiResourceTypesByGroup, useApiResources, useApisResourceTypes, useBuiltinResourceSingle, useBuiltinResourceTypes, useBuiltinResources, useClusterList, useCrdData, useCrdResourceSingle, useCrdResources, useDirectUnknownResource, usePermissions };
46903
46970
  //# sourceMappingURL=openapi-k8s-toolkit.es.js.map