@typespec/http-specs 0.1.0-alpha.3-dev.6 → 0.1.0-alpha.4-dev.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +3 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @typespec/http-specs
2
2
 
3
+ ## 0.1.0-alpha.3
4
+
5
+ - Create coverages container if not existing
6
+
3
7
  ## 0.1.0-alpha.2
4
8
 
5
9
  - Minor `api-key` in the `authentication` specs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/http-specs",
3
- "version": "0.1.0-alpha.3-dev.6",
3
+ "version": "0.1.0-alpha.4-dev.7",
4
4
  "description": "Spec scenarios and mock apis",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -45,6 +45,8 @@
45
45
  "validate-scenarios": "tsp-spector validate-scenarios ./specs",
46
46
  "generate-scenarios-summary": "tsp-spector generate-scenarios-summary ./specs",
47
47
  "regen-docs": "pnpm generate-scenarios-summary",
48
+ "upload-manifest": "tsp-spector upload-manifest ./specs --setName @typespec/http-specs --containerName manifests-typespec --storageAccountName typespec",
49
+ "upload-coverage": "tsp-spector upload-coverage --generatorName @typespec/http-specs --generatorVersion 0.1.0-alpha.3 --containerName coverages --generatorMode standard --storageAccountName typespec",
48
50
  "validate-mock-apis": "tsp-spector validate-mock-apis ./specs",
49
51
  "check-scenario-coverage": "tsp-spector check-coverage ./specs",
50
52
  "validate-client-server": "concurrently \"tsp-spector server start ./specs\" \"npm run client\" && tsp-spector server stop",