@typespec/http 0.53.0 → 0.54.0-dev.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.
Files changed (2) hide show
  1. package/lib/auth.tsp +1 -1
  2. package/package.json +16 -15
package/lib/auth.tsp CHANGED
@@ -120,7 +120,7 @@ enum OAuth2FlowType {
120
120
  @doc("authorization code flow")
121
121
  authorizationCode,
122
122
 
123
- @doc("implcit flow")
123
+ @doc("implicit flow")
124
124
  implicit,
125
125
 
126
126
  @doc("password flow")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typespec/http",
3
- "version": "0.53.0",
3
+ "version": "0.54.0-dev.2",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec HTTP protocol binding",
6
6
  "homepage": "https://github.com/microsoft/typespec",
@@ -39,23 +39,24 @@
39
39
  "!dist/test/**"
40
40
  ],
41
41
  "peerDependencies": {
42
- "@typespec/compiler": "~0.53.0"
42
+ "@typespec/compiler": "~0.53.1 || >=0.54.0-dev <0.54.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@types/node": "~18.11.9",
46
- "@typespec/compiler": "~0.53.0",
47
- "@typespec/eslint-config-typespec": "~0.53.0",
48
- "@typespec/library-linter": "~0.53.0",
49
- "@typespec/eslint-plugin": "~0.53.0",
50
- "@typespec/tspd": "~0.46.0",
51
- "eslint": "^8.55.0",
52
- "vitest": "^1.2.0",
53
- "@vitest/coverage-v8": "^1.1.0",
54
- "@vitest/ui": "~1.1.3",
55
- "c8": "~8.0.1",
56
- "rimraf": "~5.0.1",
57
- "typescript": "~5.3.3"
45
+ "@types/node": "~18.11.19",
46
+ "@typespec/compiler": "~0.53.1 || >=0.54.0-dev <0.54.0",
47
+ "@typespec/eslint-config-typespec": "~0.53.0 || >=0.54.0-dev <0.54.0",
48
+ "@typespec/eslint-plugin": "~0.53.0 || >=0.54.0-dev <0.54.0",
49
+ "@typespec/library-linter": "~0.53.0 || >=0.54.0-dev <0.54.0",
50
+ "@vitest/coverage-v8": "^1.2.2",
51
+ "@vitest/ui": "^1.2.2",
52
+ "c8": "^9.1.0",
53
+ "eslint": "^8.56.0",
54
+ "rimraf": "~5.0.5",
55
+ "typescript": "~5.3.3",
56
+ "vitest": "^1.2.2",
57
+ "@typespec/tspd": "~0.46.0"
58
58
  },
59
+ "dependencies": {},
59
60
  "scripts": {
60
61
  "clean": "rimraf ./dist ./temp",
61
62
  "build": "tsc -p . && npm run lint-typespec-library",