@microtronics/studio-cli 0.17.0 → 0.18.0

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,12 @@
1
1
 
2
2
 
3
+ ## 0.18.0 (2025-02-13)
4
+
5
+
6
+ ### Features
7
+
8
+ * **studio-cli:** support for new qualification stages ([7511873](https://bitbucket.org/microtronics-core/vscode-studio/commits/7511873eab82fa4e1fb4be3c1b998b1a3576f5f9))
9
+
3
10
  ## 0.17.0 (2025-02-13)
4
11
 
5
12
 
@@ -5,6 +5,9 @@ import { URI } from 'vscode-uri';
5
5
 
6
6
  export declare namespace APM {
7
7
  export enum TagPhase {
8
+ alpha = "alpha",
9
+ beta = "beta",
10
+ rc = "rc",
8
11
  release = "release",
9
12
  stage = "stage",
10
13
  passive = "passive",
@@ -231,7 +234,7 @@ declare interface components {
231
234
  * @description The released phase
232
235
  * @enum {string}
233
236
  */
234
- ReleasePhases: "passive" | "stage" | "release" | "withdrawn";
237
+ ReleasePhases: "passive" | "alpha" | "beta" | "stage" | "rc" | "release" | "withdrawn";
235
238
  NewPublisher: {
236
239
  /** @description Unique id of the publisher. Can not be changed afterwards. Can only contain 'A' through 'Z', 'a' through 'z', '0' through '9' and '-'. The publisher ID must start with an alphabetic or numeric character. */
237
240
  id: string;
@@ -12,9 +12,9 @@ var APM;
12
12
  (function (APM) {
13
13
  let TagPhase;
14
14
  (function (TagPhase) {
15
- /*alpha='alpha',
16
- beta='beta',
17
- rc='rc',*/
15
+ TagPhase["alpha"] = "alpha";
16
+ TagPhase["beta"] = "beta";
17
+ TagPhase["rc"] = "rc";
18
18
  TagPhase["release"] = "release";
19
19
  TagPhase["stage"] = "stage";
20
20
  TagPhase["passive"] = "passive";
package/package.json CHANGED
@@ -1,77 +1,77 @@
1
- {
2
- "name": "@microtronics/studio-cli",
3
- "version": "0.17.0",
4
- "description": "Microtronics Studio CLI Tool",
5
- "main": "./out/api.js",
6
- "typings": "./dist/studio-cli.d.ts",
7
- "bin": {
8
- "studio-cli": "studio-cli"
9
- },
10
- "publishConfig": {
11
- "access": "public"
12
- },
13
- "scripts": {
14
- "release": "release-it --ci",
15
- "compile": "npm run build:registryApiTypings && tsc",
16
- "api": "api-extractor run --local --verbose",
17
- "build": "npm run compile && npm run api",
18
- "watch:build": "npm run compile -- --watch",
19
- "test": "cross-env STUDIO_ENV=lucky mocha",
20
- "test-ci": "cross-env STUDIO_ENV=lucky mocha --reporter mocha-junit-reporter",
21
- "watch:test": "npm run test -- --watch",
22
- "prepublishOnly": "npm run build",
23
- "build:registryApiTypings": "npx openapi-typescript https://api.registry.stage.microtronics.com/v1/openapi.yaml -o ./src/typings/registry.ts"
24
- },
25
- "author": "Microtronics",
26
- "license": "ISC",
27
- "dependencies": {
28
- "ajv": "^8.17.1",
29
- "ajv-formats": "^3.0.1",
30
- "ajv-keywords": "^5.1.0",
31
- "commander": "^12.1.0",
32
- "cross-fetch": "^4.0.0",
33
- "dotenv": "^16.4.7",
34
- "file-type-checker": "^1.1.2",
35
- "glob": "^11.0.1",
36
- "iconv-lite": "^0.6.3",
37
- "image-dimensions": "^2.3.0",
38
- "ini": "^5.0.0",
39
- "minimatch": "^10.0.1",
40
- "openapi-fetch": "^0.13.0",
41
- "pako": "^2.1.0",
42
- "semver": "^7.6.3",
43
- "tarballjs": "github:ankitrohatgi/tarballjs",
44
- "tinytar-fix": "^0.1.1",
45
- "vscode-uri": "^3.0.8",
46
- "yaml": "^2.6.1"
47
- },
48
- "engines": {
49
- "node": ">= 22"
50
- },
51
- "devDependencies": {
52
- "@microsoft/api-extractor": "^7.47.11",
53
- "@types/chai": "^4.3.6",
54
- "@types/chai-as-promised": "^7.1.5",
55
- "@types/ini": "^4.1.1",
56
- "@types/mocha": "^10.0.9",
57
- "@types/node": "^22.9.1",
58
- "@types/semver": "^7.5.6",
59
- "@types/vscode": "^1.86.2",
60
- "chai": "^4.3.8",
61
- "chai-as-promised": "^7.1.2",
62
- "cross-env": "^7.0.3",
63
- "mocha": "^10.8.2",
64
- "mocha-junit-reporter": "^2.2.1",
65
- "openapi-typescript": "^7.6.0",
66
- "ts-node": "^10.9.2",
67
- "typescript": "^5.6.3"
68
- },
69
- "mocha": {
70
- "require": [
71
- "ts-node/register"
72
- ],
73
- "watch-files": "src/**",
74
- "spec": "./test/**/*.spec.ts",
75
- "recursive": true
76
- }
77
- }
1
+ {
2
+ "name": "@microtronics/studio-cli",
3
+ "version": "0.18.0",
4
+ "description": "Microtronics Studio CLI Tool",
5
+ "main": "./out/api.js",
6
+ "typings": "./dist/studio-cli.d.ts",
7
+ "bin": {
8
+ "studio-cli": "studio-cli"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "scripts": {
14
+ "release": "release-it --ci",
15
+ "compile": "npm run build:registryApiTypings && tsc",
16
+ "api": "api-extractor run --local --verbose",
17
+ "build": "npm run compile && npm run api",
18
+ "watch:build": "npm run compile -- --watch",
19
+ "test": "cross-env STUDIO_ENV=lucky mocha",
20
+ "test-ci": "cross-env STUDIO_ENV=lucky mocha --reporter mocha-junit-reporter",
21
+ "watch:test": "npm run test -- --watch",
22
+ "prepublishOnly": "npm run build",
23
+ "build:registryApiTypings": "npx openapi-typescript https://api.registry.stage.microtronics.com/v1/openapi.yaml -o ./src/typings/registry.ts"
24
+ },
25
+ "author": "Microtronics",
26
+ "license": "ISC",
27
+ "dependencies": {
28
+ "ajv": "^8.17.1",
29
+ "ajv-formats": "^3.0.1",
30
+ "ajv-keywords": "^5.1.0",
31
+ "commander": "^12.1.0",
32
+ "cross-fetch": "^4.0.0",
33
+ "dotenv": "^16.4.7",
34
+ "file-type-checker": "^1.1.2",
35
+ "glob": "^11.0.1",
36
+ "iconv-lite": "^0.6.3",
37
+ "image-dimensions": "^2.3.0",
38
+ "ini": "^5.0.0",
39
+ "minimatch": "^10.0.1",
40
+ "openapi-fetch": "^0.13.0",
41
+ "pako": "^2.1.0",
42
+ "semver": "^7.6.3",
43
+ "tarballjs": "github:ankitrohatgi/tarballjs",
44
+ "tinytar-fix": "^0.1.1",
45
+ "vscode-uri": "^3.0.8",
46
+ "yaml": "^2.6.1"
47
+ },
48
+ "engines": {
49
+ "node": ">= 22"
50
+ },
51
+ "devDependencies": {
52
+ "@microsoft/api-extractor": "^7.47.11",
53
+ "@types/chai": "^4.3.6",
54
+ "@types/chai-as-promised": "^7.1.5",
55
+ "@types/ini": "^4.1.1",
56
+ "@types/mocha": "^10.0.9",
57
+ "@types/node": "^22.9.1",
58
+ "@types/semver": "^7.5.6",
59
+ "@types/vscode": "^1.86.2",
60
+ "chai": "^4.3.8",
61
+ "chai-as-promised": "^7.1.2",
62
+ "cross-env": "^7.0.3",
63
+ "mocha": "^10.8.2",
64
+ "mocha-junit-reporter": "^2.2.1",
65
+ "openapi-typescript": "^7.6.0",
66
+ "ts-node": "^10.9.2",
67
+ "typescript": "^5.6.3"
68
+ },
69
+ "mocha": {
70
+ "require": [
71
+ "ts-node/register"
72
+ ],
73
+ "watch-files": "src/**",
74
+ "spec": "./test/**/*.spec.ts",
75
+ "recursive": true
76
+ }
77
+ }