@popina/cli 5.0.2-20260412084641Z → 5.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @popina/cli
2
2
 
3
+ ## 5.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Refreshed Knowledge onboarding and software tooling docs, including improved software cards with inline website links and copyable install commands.
8
+
9
+ Updated Popina CLI onboarding support by raising the required pnpm version and extending `popina list` with clearer docs metadata and background services.
10
+
11
+ - Aligned auth and environment tooling changes used by Knowledge and deployment scripts, added a new admin permission for Knowledge access control, and updated related CLI and admin translation support so the rollout works consistently across apps.
12
+
3
13
  ## 5.0.1
4
14
 
5
15
  ### Patch Changes
package/build/index.js CHANGED
@@ -11461,7 +11461,7 @@ function date4(params) {
11461
11461
  config(en_default());
11462
11462
 
11463
11463
  // package.json
11464
- var version2 = "5.0.2-20260412084641Z";
11464
+ var version2 = "5.0.2";
11465
11465
 
11466
11466
  // src/utils/get-package-info.ts
11467
11467
  async function getPackageInfo() {
@@ -11568,7 +11568,7 @@ async function checkPnpm() {
11568
11568
  );
11569
11569
  process.exit(0);
11570
11570
  });
11571
- const requiredVersion = "10.10.0";
11571
+ const requiredVersion = "10.33.0";
11572
11572
  const currentVersion = pnpmVersion.trim();
11573
11573
  if (!compareVersions(currentVersion, requiredVersion)) {
11574
11574
  p13.log.warn(
@@ -11678,7 +11678,7 @@ var SERVICE_REGISTRY = [
11678
11678
  name: "API",
11679
11679
  packageName: "@pragma/api",
11680
11680
  url: "http://localhost:4000",
11681
- description: "Pragma API for third parties",
11681
+ description: "Popina API for third parties",
11682
11682
  path: "apps/api",
11683
11683
  group: "api"
11684
11684
  },
@@ -11767,7 +11767,7 @@ var SERVICE_REGISTRY = [
11767
11767
  name: "Admin",
11768
11768
  packageName: "@pragma/admin",
11769
11769
  url: "http://localhost:3000",
11770
- description: "Manage, monitor and configure Pragma API!",
11770
+ description: "Manage, monitor and configure Popina APIs",
11771
11771
  path: "apps/admin",
11772
11772
  group: "app"
11773
11773
  },
@@ -11824,8 +11824,8 @@ var SERVICE_REGISTRY = [
11824
11824
  name: "Public Docs",
11825
11825
  packageName: "@pragma/public-docs",
11826
11826
  url: "http://localhost:3001",
11827
- description: "Public documentation for Pragma API",
11828
- path: "apps/docs",
11827
+ description: "Public documentation for Popina APIs",
11828
+ path: "apps/public-docs",
11829
11829
  group: "docs"
11830
11830
  },
11831
11831
  {
@@ -11840,7 +11840,7 @@ var SERVICE_REGISTRY = [
11840
11840
  name: "Knowledge Documentation",
11841
11841
  packageName: "@pragma/knowledge",
11842
11842
  url: "http://localhost:3009",
11843
- description: "Knowledge documentation for Pragma API",
11843
+ description: "Internal Popina engineering documentation",
11844
11844
  path: "apps/knowledge",
11845
11845
  group: "docs"
11846
11846
  },
@@ -11901,6 +11901,9 @@ function getAppServices() {
11901
11901
  function getDocServices() {
11902
11902
  return getServicesByGroup("docs");
11903
11903
  }
11904
+ function getOtherServices() {
11905
+ return getServicesByGroup("other");
11906
+ }
11904
11907
  function getDatabaseTools() {
11905
11908
  return DATABASE_TOOLS;
11906
11909
  }
@@ -12595,6 +12598,7 @@ var cmdList = new Command13().name("list").description(
12595
12598
  const apiList = getAPIServices();
12596
12599
  const appsList = getAppServices();
12597
12600
  const docList = getDocServices();
12601
+ const otherList = getOtherServices();
12598
12602
  const databaseList = getDatabaseTools();
12599
12603
  p22.intro(`${color7.bgCyan(color7.black(` Popina CLI - list `))}`);
12600
12604
  p22.log.message(`
@@ -12607,6 +12611,9 @@ ${color7.bold("Web Applications:")}`);
12607
12611
  ${color7.bold("Documentations:")}`);
12608
12612
  printAppsList(docList);
12609
12613
  p22.log.message(`
12614
+ ${color7.bold("Background services:")}`);
12615
+ printAppsList(otherList);
12616
+ p22.log.message(`
12610
12617
  ${color7.bold("Database tools:")}`);
12611
12618
  printAppsList(databaseList);
12612
12619
  p22.outro(