@podman-desktop/tests-playwright 1.25.0-next.202601121004-c857ead → 1.25.0-next.202601121256-b7862df

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/index.js CHANGED
@@ -356,7 +356,7 @@ class Y extends Bt {
356
356
  return await this.card.getByLabel(t, { exact: !0 }).textContent() ?? "";
357
357
  }
358
358
  }
359
- class L extends I {
359
+ class E extends I {
360
360
  heading;
361
361
  featuredProviderResources;
362
362
  constructor(t) {
@@ -734,7 +734,7 @@ async function ia(i, t) {
734
734
  return s.step("Delete Podman machine", async () => {
735
735
  const e = "podman", n = new d(i), o = await n.openDashboard();
736
736
  await a(o.heading).toBeVisible();
737
- const l = await (await n.openSettings()).openTabPage(L);
737
+ const l = await (await n.openSettings()).openTabPage(E);
738
738
  await a(l.heading).toBeVisible({ timeout: 1e4 }), await a.poll(async () => await l.resourceCardIsVisible(e), { timeout: 15e3 }).toBeTruthy();
739
739
  const c = new Y(i, e, t);
740
740
  if (await a(c.providerConnections).toBeVisible({ timeout: 1e4 }), !await y(async () => await c.resourceElement.isVisible(), {
@@ -986,7 +986,7 @@ class oe extends w {
986
986
  return s.step("Rename image", async () => {
987
987
  if (!t)
988
988
  throw Error("Provide name is invalid!");
989
- return await a(this.saveButton).toBeVisible(), await this.imageName.clear(), await this.imageName.fill(t), e && (await this.imageTag.clear(), await this.imageTag.fill(e)), await a.poll(async () => this.alertDialog.count()).toBe(0), await a(this.saveButton).toBeEnabled(), await this.saveButton.click(), new E(this.page);
989
+ return await a(this.saveButton).toBeVisible(), await this.imageName.clear(), await this.imageName.fill(t), e && (await this.imageTag.clear(), await this.imageTag.fill(e)), await a.poll(async () => this.alertDialog.count()).toBe(0), await a(this.saveButton).toBeEnabled(), await this.saveButton.click(), new L(this.page);
990
990
  });
991
991
  }
992
992
  }
@@ -1059,6 +1059,7 @@ class k extends S {
1059
1059
  terminalContent;
1060
1060
  findInLogsInput;
1061
1061
  searchResults;
1062
+ clearLogsButton;
1062
1063
  static SUMMARY_TAB = "Summary";
1063
1064
  static LOGS_TAB = "Logs";
1064
1065
  static KUBE_TAB = "Kube";
@@ -1071,7 +1072,7 @@ class k extends S {
1071
1072
  }), this.startButton = this.controlActions.getByRole("button", {
1072
1073
  name: "Start Container",
1073
1074
  exact: !0
1074
- }), this.terminalInput = this.tabContent.getByLabel("Terminal input"), this.terminalContent = this.tabContent.locator(".xterm-rows"), this.findInLogsInput = this.tabContent.getByLabel("Find"), this.searchResults = this.tabContent.locator("div.xterm-selection > div");
1075
+ }), this.terminalInput = this.tabContent.getByLabel("Terminal input"), this.terminalContent = this.tabContent.locator(".xterm-rows"), this.findInLogsInput = this.tabContent.getByLabel("Find"), this.searchResults = this.tabContent.locator("div.xterm-selection > div"), this.clearLogsButton = this.tabContent.getByTitle("Clear logs");
1075
1076
  }
1076
1077
  async getState() {
1077
1078
  return s.step("Get container state", async () => {
@@ -1115,6 +1116,11 @@ class k extends S {
1115
1116
  async getCountOfSearchResults() {
1116
1117
  return s.step("Get count of search results", async () => (await this.activateTab(k.LOGS_TAB), await a(this.findInLogsInput).toBeVisible(), await this.searchResults.count()));
1117
1118
  }
1119
+ async clearLogs() {
1120
+ return s.step("Clear logs", async () => {
1121
+ await a(this.clearLogsButton).toBeVisible(), await this.clearLogsButton.click();
1122
+ });
1123
+ }
1118
1124
  }
1119
1125
  class xt extends w {
1120
1126
  name;
@@ -1239,7 +1245,7 @@ class re extends S {
1239
1245
  return s.step("Open edit image page", async () => (await a(this.editButton).toBeEnabled({ timeout: 3e4 }), await this.editButton.click(), new oe(this.page, this.resourceName)));
1240
1246
  }
1241
1247
  async deleteImage() {
1242
- return s.step("Delete image", async () => (await a(this.deleteButton).toBeEnabled({ timeout: 3e4 }), await this.deleteButton.click(), await g(this.page), new E(this.page)));
1248
+ return s.step("Delete image", async () => (await a(this.deleteButton).toBeEnabled({ timeout: 3e4 }), await this.deleteButton.click(), await g(this.page), new L(this.page)));
1243
1249
  }
1244
1250
  async pushImage() {
1245
1251
  return s.step("Push image", async () => {
@@ -1249,7 +1255,7 @@ class re extends S {
1249
1255
  async saveImage(t) {
1250
1256
  if (!t)
1251
1257
  throw Error("Path is incorrect or not provided!");
1252
- return await a(this.saveImagebutton).toBeEnabled(), await this.saveImagebutton.click(), await a(this.saveImageInput).toBeVisible(), await a(this.confirmSaveImages).toBeVisible(), await this.saveImageInput.evaluate((e) => e.removeAttribute("readonly")), await this.confirmSaveImages.evaluate((e) => e.removeAttribute("disabled")), await this.saveImageInput.pressSequentially(t, { delay: 10 }), await this.confirmSaveImages.click(), new E(this.page);
1258
+ return await a(this.saveImagebutton).toBeEnabled(), await this.saveImagebutton.click(), await a(this.saveImageInput).toBeVisible(), await a(this.confirmSaveImages).toBeVisible(), await this.saveImageInput.evaluate((e) => e.removeAttribute("readonly")), await this.confirmSaveImages.evaluate((e) => e.removeAttribute("disabled")), await this.saveImageInput.pressSequentially(t, { delay: 10 }), await this.confirmSaveImages.click(), new L(this.page);
1253
1259
  }
1254
1260
  async pushImageToKindCluster() {
1255
1261
  const t = this.controlActions.getByRole("button", { name: "kebab menu", exact: !0 });
@@ -1283,7 +1289,7 @@ class le extends w {
1283
1289
  async pullImage(t, e = "", n = 6e4) {
1284
1290
  return s.step(`Pulling image ${t}:${e}`, async () => {
1285
1291
  const o = `${t}${e.length === 0 ? "" : ":" + e}`;
1286
- return await this.imageNameInput.fill(o), await a(this.pullImageButton).toBeEnabled(), await this.pullImageButton.click(), await a(this.doneButton).toBeEnabled({ timeout: n }), await this.doneButton.click(), new E(this.page);
1292
+ return await this.imageNameInput.fill(o), await a(this.pullImageButton).toBeEnabled(), await this.pullImageButton.click(), await a(this.doneButton).toBeEnabled({ timeout: n }), await this.doneButton.click(), new L(this.page);
1287
1293
  });
1288
1294
  }
1289
1295
  async getAllSearchResultsFor(t, e, n = "", o = !0) {
@@ -1329,7 +1335,7 @@ class le extends w {
1329
1335
  return s.step("Get first search result from the results table", async () => await this.getFirstResultButtonLocator().innerText());
1330
1336
  }
1331
1337
  async pullImageFromSearchResults(t, e = 6e4) {
1332
- return s.step(`Pull image from search results: ${t}`, async () => (await this.selectValueFromSearchResults(t), await a(this.pullImageButton).toBeEnabled(), await this.pullImageButton.click(), await a(this.doneButton).toBeEnabled({ timeout: e }), await this.doneButton.click(), new E(this.page)));
1338
+ return s.step(`Pull image from search results: ${t}`, async () => (await this.selectValueFromSearchResults(t), await a(this.pullImageButton).toBeEnabled(), await this.pullImageButton.click(), await a(this.doneButton).toBeEnabled({ timeout: e }), await this.doneButton.click(), new L(this.page)));
1333
1339
  }
1334
1340
  async selectValueFromSearchResults(t) {
1335
1341
  return s.step(`Select value from search results: ${t}`, async () => {
@@ -1361,7 +1367,7 @@ class le extends w {
1361
1367
  });
1362
1368
  }
1363
1369
  }
1364
- class E extends A {
1370
+ class L extends A {
1365
1371
  pullImageButton;
1366
1372
  pruneImagesButton;
1367
1373
  buildImageButton;
@@ -1525,7 +1531,7 @@ class ft extends w {
1525
1531
  }), this.arm64Button = this.platformRegion.getByLabel("linux/arm64"), this.amd64Button = this.platformRegion.getByLabel("linux/amd64"), this.arm64checkbox = this.platformRegion.getByLabel("ARM® aarch64 systems"), this.amd64checkbox = this.platformRegion.getByLabel("Intel and AMD x86_64 systems"), this.archMoreOptionsButton = this.platformRegion.getByRole("button", { name: "Show more options" }), this.archLessOptionsButton = this.platformRegion.getByRole("button", { name: "Show less options" }), this.terminalContent = t.locator(".xterm-rows");
1526
1532
  }
1527
1533
  async buildImage(t, e, n, o = [N.Default], r = 12e4) {
1528
- return s.step(`Building image ${t} from ${e} in ${n} with ${o} architecture`, async () => (await this.fillBuildImageForm(t, e, n, o), await a(this.doneButton).toBeEnabled({ timeout: r }), await this.validateBuildLogs(), await this.doneButton.scrollIntoViewIfNeeded(), await this.doneButton.click(), console.log(`Image ${t} has been built successfully!`), new E(this.page)));
1534
+ return s.step(`Building image ${t} from ${e} in ${n} with ${o} architecture`, async () => (await this.fillBuildImageForm(t, e, n, o), await a(this.doneButton).toBeEnabled({ timeout: r }), await this.validateBuildLogs(), await this.doneButton.scrollIntoViewIfNeeded(), await this.doneButton.click(), console.log(`Image ${t} has been built successfully!`), new L(this.page)));
1529
1535
  }
1530
1536
  async cancelBuild(t, e, n, o = [N.Default], r = 200) {
1531
1537
  return s.step(`Starting and canceling build for image ${t}`, async () => {
@@ -2236,15 +2242,18 @@ class Ct extends S {
2236
2242
  }
2237
2243
  class me extends w {
2238
2244
  heading;
2245
+ basicTab;
2246
+ advancedTab;
2239
2247
  networkNameBox;
2240
2248
  subnetBox;
2241
2249
  createButton;
2242
2250
  cancelButton;
2243
2251
  constructor(t) {
2244
- super(t), this.heading = this.page.getByRole("heading", { name: "Create a network" }), this.networkNameBox = this.page.getByRole("textbox", { name: "Name" }), this.subnetBox = this.page.getByRole("textbox", { name: "Subnet" }), this.createButton = this.page.getByRole("button", { name: "Create" }), this.cancelButton = this.page.getByRole("button", { name: "Cancel" });
2252
+ super(t), this.heading = this.page.getByRole("heading", { name: "Create a network" }), this.basicTab = this.page.getByRole("button", { name: "Basic" }), this.advancedTab = this.page.getByRole("button", { name: "Advanced" }), this.networkNameBox = this.page.getByRole("textbox", { name: "Name" }), this.subnetBox = this.page.getByRole("textbox", { name: "Subnet" }), this.createButton = this.page.getByRole("button", { name: "Create" }), this.cancelButton = this.page.getByRole("button", { name: "Cancel" });
2245
2253
  }
2246
2254
  async createNetwork(t, e) {
2247
- return s.step(`Create network ${t} with subnet ${e}`, async () => (await a(this.networkNameBox).toBeVisible(), await this.networkNameBox.clear(), await a(this.networkNameBox).toHaveValue(""), await this.networkNameBox.fill(t), await a(this.networkNameBox).toHaveValue(t), await a(this.subnetBox).toBeVisible(), await this.subnetBox.clear(), await a(this.subnetBox).toHaveValue(""), await this.subnetBox.fill(e), await a(this.subnetBox).toHaveValue(e), await a(this.createButton).toBeEnabled(), await this.createButton.click(), new Ct(this.page, t)));
2255
+ const n = e ? `Create network ${t} with subnet ${e}` : `Create network ${t}`;
2256
+ return s.step(n, async () => (await a(this.networkNameBox).toBeVisible(), await this.networkNameBox.clear(), await a(this.networkNameBox).toHaveValue(""), await this.networkNameBox.fill(t), await a(this.networkNameBox).toHaveValue(t), e && (await a(this.advancedTab).toBeVisible(), await this.advancedTab.click(), await a(this.subnetBox).toBeVisible(), await this.subnetBox.clear(), await a(this.subnetBox).toHaveValue(""), await this.subnetBox.fill(e), await a(this.subnetBox).toHaveValue(e)), await a(this.createButton).toBeEnabled(), await this.createButton.click(), new Ct(this.page, t)));
2248
2257
  }
2249
2258
  async cancel() {
2250
2259
  return s.step("Cancel network creation", async () => (await a(this.cancelButton).toBeEnabled(), await this.cancelButton.click(), new st(this.page)));
@@ -2281,10 +2290,11 @@ class st extends A {
2281
2290
  return s.step("Delete selected networks", async () => (await a(this.deleteSelectedButton).toBeEnabled(), await this.deleteSelectedButton.click(), await g(this.page), this));
2282
2291
  }
2283
2292
  async createNetwork(t, e) {
2284
- return s.step(`Create network: ${t}`, async () => {
2293
+ const n = e ? `Create network: ${t} with subnet ${e}` : `Create network: ${t}`;
2294
+ return s.step(n, async () => {
2285
2295
  await a(this.createNetworkButton).toBeEnabled(), await this.createNetworkButton.click();
2286
- const n = new me(this.page);
2287
- return await a(n.heading).toBeVisible(), n.createNetwork(t, e);
2296
+ const o = new me(this.page);
2297
+ return await a(o.heading).toBeVisible(), o.createNetwork(t, e);
2288
2298
  });
2289
2299
  }
2290
2300
  async openNetworkDetails(t) {
@@ -2337,7 +2347,7 @@ class d {
2337
2347
  return s.step("Open Dashboard page", async () => (await a(this.dashboardLink).toBeVisible({ timeout: 1e4 }), await this.dashboardLink.click({ force: !0 }), new kt(this.page)));
2338
2348
  }
2339
2349
  async openImages() {
2340
- return s.step("Open Images page", async () => (await a(this.imagesLink).toBeVisible({ timeout: 1e4 }), await this.imagesLink.click({ force: !0 }), new E(this.page)));
2350
+ return s.step("Open Images page", async () => (await a(this.imagesLink).toBeVisible({ timeout: 1e4 }), await this.imagesLink.click({ force: !0 }), new L(this.page)));
2341
2351
  }
2342
2352
  async openContainers() {
2343
2353
  return s.step("Open Containers page", async () => (await a(this.containersLink).toBeVisible({ timeout: 1e4 }), await this.containersLink.click({ force: !0 }), new V(this.page)));
@@ -2894,7 +2904,7 @@ async function ka(i, t, e = 3e5, { configFilePath: n, providerType: o, httpPort:
2894
2904
  return s.step(`Create Kind cluster with settings: configFilePath=${n},
2895
2905
  providerType=${o}, httpPort=${r},
2896
2906
  httpsPort=${l}, ingressController=${c}`, async () => {
2897
- const h = new d(i), b = new Tt(i), R = new Y(i, "kind", t), _ = new fe(i), rt = await (await h.openSettings()).openTabPage(L);
2907
+ const h = new d(i), b = new Tt(i), R = new Y(i, "kind", t), _ = new fe(i), rt = await (await h.openSettings()).openTabPage(E);
2898
2908
  if (await a(rt.heading).toBeVisible({ timeout: 1e4 }), await a.poll(async () => rt.resourceCardIsVisible("kind")).toBeTruthy(), await a(R.createButton).toBeVisible(), await R.doesResourceElementExist())
2899
2909
  if (await R.resourceElementConnectionStatus.textContent() !== v.Running)
2900
2910
  console.log(`Kind cluster [${t}] already present, but not running. Delete the cluster...`), await Re(i);
@@ -2922,7 +2932,7 @@ async function Re(i, t = "kind", e = "kind-cluster-control-plane", n = "kind-clu
2922
2932
  return s.step(`Delete ${t} cluster`, async () => {
2923
2933
  const r = await nt(i, e), l = new d(i), c = new Y(i, t, n);
2924
2934
  await l.openSettings();
2925
- const u = new L(i);
2935
+ const u = new E(i);
2926
2936
  if (await a(u.heading).toBeVisible({ timeout: 1e4 }), !await c.doesResourceElementExist()) {
2927
2937
  console.log(`Kind cluster [${n}] not present, skipping deletion.`);
2928
2938
  return;
@@ -2967,7 +2977,7 @@ async function va(i, t, e, n, o, r = 3e4) {
2967
2977
  try {
2968
2978
  await a(c.heading).toBeVisible();
2969
2979
  } catch {
2970
- const h = await (await l.openSettings()).openTabPage(L);
2980
+ const h = await (await l.openSettings()).openTabPage(E);
2971
2981
  await a(h.heading).toBeVisible({ timeout: 1e4 }), await a(t.resourceElementDetailsButton).toBeEnabled(), await t.resourceElementDetailsButton.click();
2972
2982
  }
2973
2983
  if (await c.performConnectionActionDetails(n), n === f.Restart) {
@@ -2984,7 +2994,7 @@ async function va(i, t, e, n, o, r = 3e4) {
2984
2994
  }
2985
2995
  async function Pa(i, t = "kind", e = "kind-cluster-control-plane", n = "kind-cluster", o = 3e4) {
2986
2996
  return s.step(`Deletes the '${n}' cluster from the details page`, async () => {
2987
- const r = new d(i), l = await nt(i, e), u = await (await r.openSettings()).openTabPage(L), h = new Y(i, t, n);
2997
+ const r = new d(i), l = await nt(i, e), u = await (await r.openSettings()).openTabPage(E), h = new Y(i, t, n);
2988
2998
  if (await a(u.heading).toBeVisible({ timeout: 1e4 }), !await h.doesResourceElementExist()) {
2989
2999
  console.log(`Cluster [${n}] not present, skipping deletion.`);
2990
3000
  return;
@@ -3097,7 +3107,7 @@ async function Ia(i, t, e, n) {
3097
3107
  await a.poll(async () => u.getRowByName(n), { timeout: 15e3 }).toBeTruthy();
3098
3108
  });
3099
3109
  }
3100
- async function Ea(i, t, e, n) {
3110
+ async function La(i, t, e, n) {
3101
3111
  return s.step(`Create ${t} kubernetes resource: ${e}`, async () => {
3102
3112
  const o = new d(i);
3103
3113
  try {
@@ -3116,7 +3126,7 @@ async function Ea(i, t, e, n) {
3116
3126
  await a(l.heading).toBeVisible(), await a.poll(async () => l.getRowByName(e)).toBeTruthy();
3117
3127
  });
3118
3128
  }
3119
- async function La(i, t, e, n = 3e4) {
3129
+ async function Ea(i, t, e, n = 3e4) {
3120
3130
  return s.step(`Delete ${t} kubernetes resource: ${e}`, async () => {
3121
3131
  const l = await (await new d(i).openKubernetes()).openTabPage(t);
3122
3132
  await l.deleteKubernetesResource(e), await g(i), await a.poll(async () => await l.getRowByName(e), { timeout: n }).not.toBeTruthy();
@@ -3245,22 +3255,22 @@ const Ie = {
3245
3255
  extensionFullName: "minikube extension",
3246
3256
  extensionLabel: "minikube",
3247
3257
  extensionFullLabel: "podman-desktop.minikube"
3248
- }, Et = {
3258
+ }, Lt = {
3249
3259
  extensionName: "Podman AI Lab",
3250
3260
  extensionFullName: "Podman AI Lab extension",
3251
3261
  extensionLabel: "ai-lab",
3252
3262
  extensionFullLabel: "redhat.ai-lab"
3253
- }, Ee = {
3263
+ }, Le = {
3254
3264
  extensionName: "Red Hat Extension Pack",
3255
3265
  extensionFullName: "Red Hat Extension Pack extension",
3256
3266
  extensionLabel: "redhat-pack",
3257
3267
  extensionFullLabel: "redhat.redhat-pack"
3258
- }, Lt = {
3268
+ }, Et = {
3259
3269
  extensionName: "Bootable Container",
3260
3270
  extensionFullName: "Bootable Container extension",
3261
3271
  extensionLabel: "bootc",
3262
3272
  extensionFullLabel: "redhat.bootc"
3263
- }, Le = {
3273
+ }, Ee = {
3264
3274
  extensionName: "Developer Sandbox",
3265
3275
  extensionFullName: "Developer Sandbox extension",
3266
3276
  extensionLabel: "redhat-sandbox",
@@ -3346,21 +3356,21 @@ const Ie = {
3346
3356
  Me,
3347
3357
  Fe,
3348
3358
  Oe,
3349
- Et,
3359
+ Lt,
3350
3360
  _e
3351
3361
  ], He = [
3352
3362
  Ie,
3353
- Et,
3354
- Ee,
3355
3363
  Lt,
3356
3364
  Le,
3365
+ Et,
3366
+ Ee,
3357
3367
  St,
3358
3368
  At,
3359
3369
  Se,
3360
3370
  Ae,
3361
3371
  Ve
3362
3372
  ], Ha = [
3363
- Lt,
3373
+ Et,
3364
3374
  At,
3365
3375
  Ue,
3366
3376
  St
@@ -3656,7 +3666,7 @@ class Qa extends w {
3656
3666
  } catch (h) {
3657
3667
  console.log("No handling dialog displayed", h);
3658
3668
  }
3659
- return await a(u).toBeEnabled(), await u.click(), new L(this.page);
3669
+ return await a(u).toBeEnabled(), await u.click(), new E(this.page);
3660
3670
  });
3661
3671
  }
3662
3672
  async handleConnectionDialog(t, e) {
@@ -3814,7 +3824,7 @@ class Za extends I {
3814
3824
  return (await this.getContextRowByName(t)).getByLabel("Set as Current Context");
3815
3825
  }
3816
3826
  }
3817
- class tn extends L {
3827
+ class tn extends E {
3818
3828
  podmanMachineName;
3819
3829
  podmanMachineStatus;
3820
3830
  podmanMachineConnectionActions;
@@ -3933,7 +3943,7 @@ export {
3933
3943
  re as ImageDetailsPage,
3934
3944
  oe as ImageEditPage,
3935
3945
  Gt as ImageState,
3936
- E as ImagesPage,
3946
+ L as ImagesPage,
3937
3947
  Za as KubeContextPage,
3938
3948
  we as KubernetesBar,
3939
3949
  de as KubernetesDashboardPage,
@@ -3968,7 +3978,7 @@ export {
3968
3978
  Pt as ResourceDetailsPage,
3969
3979
  f as ResourceElementActions,
3970
3980
  v as ResourceElementState,
3971
- L as ResourcesPage,
3981
+ E as ResourcesPage,
3972
3982
  xt as RunImagePage,
3973
3983
  P as Runner,
3974
3984
  Z as RunnerOptions,
@@ -3982,7 +3992,7 @@ export {
3982
3992
  tt as VolumeState,
3983
3993
  Ce as WelcomePage,
3984
3994
  Ht as archType,
3985
- Lt as bootcExtension,
3995
+ Et as bootcExtension,
3986
3996
  pa as canTestRegistry,
3987
3997
  Ra as checkClusterResources,
3988
3998
  Sa as checkDeploymentReplicasInfo,
@@ -3992,21 +4002,21 @@ export {
3992
4002
  Da as configurePortForwarding,
3993
4003
  gt as countKubernetesPodReplicas,
3994
4004
  ka as createKindCluster,
3995
- Ea as createKubernetesResource,
4005
+ La as createKubernetesResource,
3996
4006
  ut as createPodmanMachineFromCLI,
3997
4007
  pe as delay,
3998
4008
  Re as deleteCluster,
3999
4009
  Pa as deleteClusterFromDetails,
4000
4010
  Ze as deleteContainer,
4001
4011
  ta as deleteImage,
4002
- La as deleteKubernetesResource,
4012
+ Ea as deleteKubernetesResource,
4003
4013
  na as deleteNetwork,
4004
4014
  aa as deletePod,
4005
4015
  ia as deletePodmanMachine,
4006
4016
  sa as deletePodmanMachineFromCLI,
4007
4017
  ea as deleteRegistry,
4008
4018
  Ia as deployContainerToCluster,
4009
- Le as developerSandboxExtension,
4019
+ Ee as developerSandboxExtension,
4010
4020
  $e as dockerExtension,
4011
4021
  Va as editDeploymentYamlFile,
4012
4022
  oa as ensureCliInstalled,
@@ -4016,7 +4026,7 @@ export {
4016
4026
  Ua as extensionsBuiltInList,
4017
4027
  He as extensionsExternalList,
4018
4028
  Ha as extensionsInstallationSmokeList,
4019
- Ee as extensionsPackExtension,
4029
+ Le as extensionsPackExtension,
4020
4030
  U as fillTextbox,
4021
4031
  Ba as findPageWithTitleInBrowser,
4022
4032
  Te as getDefaultVirtualizationProvider,
@@ -4047,7 +4057,7 @@ export {
4047
4057
  Ue as openshiftDockerExtension,
4048
4058
  Ve as openshiftLocalExtension,
4049
4059
  ya as performBrowserLogin,
4050
- Et as podmanAILabExtension,
4060
+ Lt as podmanAILabExtension,
4051
4061
  _a as podmanExtension,
4052
4062
  At as podmanQuadletExtension,
4053
4063
  ha as readFileInVolumeFromCLI,