@uipath/cli-meta 0.0.0-bootstrap.0 → 1.196.0-20260610T135819Z

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/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # @uipath/cli-meta
2
+
3
+ Source metadata for UiPath CLI version selection.
4
+
5
+ `cli-versions.json` maps UiPath environments to the CLI version line that should
6
+ be used for that environment. The CLI version sync flow consumes this data to
7
+ align installed CLI versions after login and during daily auto-update checks.
8
+ `package.json` owns the package metadata and aligned base version.
9
+
10
+ ## Schema
11
+
12
+ ```json
13
+ {
14
+ "schemaVersion": 1,
15
+ "generated_at": "2026-06-08T12:23:37Z",
16
+ "environments": {
17
+ "alpha": {
18
+ "cliVersion": "1.2"
19
+ }
20
+ }
21
+ }
22
+ ```
23
+
24
+ - `schemaVersion` is the metadata schema version understood by the CLI.
25
+ - `generated_at` is the UTC timestamp for the generated metadata.
26
+ - `environments` maps environment names to their CLI version line.
27
+ - `cliVersion` is a major/minor version pin.
28
+
29
+ ## Publishing
30
+
31
+ Changes to the cli-meta source files trigger the `publish-cli-meta` job in
32
+ `.github/workflows/publish-npm.yml`. That job validates the JSON and publishes
33
+ the `@uipath/cli-meta` package.
34
+
35
+ The source `package.json` is private so it is not published by the broad package
36
+ publish loop. The `publish-cli-meta` job stages a publishable package from these
37
+ source files and derives the npm version from the package version plus a UTC
38
+ timestamp suffix:
39
+
40
+ ```text
41
+ <package-json-version>-YYYYMMDDTHHMMSSZ
42
+ ```
43
+
44
+ For example, package version `1.196.0` publishes as a snapshot version such as
45
+ `1.196.0-20260608T122337Z`.
package/cli-versions.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generated_at": "2026-06-08T09:16:51Z",
3
+ "generated_at": "2026-06-10T13:38:22Z",
4
4
  "environments": {
5
5
  "alpha": {
6
- "cliVersion": "1.2"
6
+ "cliVersion": "1.196"
7
7
  },
8
8
  "staging": {
9
- "cliVersion": "1.1"
9
+ "cliVersion": "1.196"
10
10
  },
11
11
  "cloud": {
12
- "cliVersion": "0.1"
12
+ "cliVersion": "1.196"
13
13
  }
14
14
  }
15
15
  }
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/cli-meta",
3
- "version": "0.0.0-bootstrap.0",
3
+ "license": "MIT",
4
+ "version": "1.196.0-20260610T135819Z",
4
5
  "description": "UiPath CLI versions by environment.",
5
6
  "repository": {
6
7
  "type": "git",
@@ -17,7 +18,13 @@
17
18
  "./cli-versions.json": "./cli-versions.json"
18
19
  },
19
20
  "files": [
20
- "cli-versions.json"
21
+ "cli-versions.json",
22
+ "README.md"
21
23
  ],
22
- "gitHead": "44851d680efed01ef6225ab930d8b2f1f8db8ac1"
24
+ "gitHead": "b6fe13d326195ea7147e82f18038a55c85a4a748",
25
+ "maintainers": [
26
+ "aoltean16",
27
+ "mihaigirleanu",
28
+ "vlad-uipath"
29
+ ]
23
30
  }