@lichess-org/types 2.0.2 → 2.0.4

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 (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +5 -4
  3. package/lichess-api.d.ts +0 -12636
package/README.md CHANGED
@@ -9,7 +9,7 @@ npm install @lichess-org/types
9
9
  ## Usage
10
10
 
11
11
  ```typescript
12
- import { components, operations } from "@lichess-org/types";
12
+ import { components } from "@lichess-org/types";
13
13
 
14
14
  type LichessGame = components["schemas"]["GameJson"];
15
15
  ```
@@ -27,5 +27,5 @@ To publish:
27
27
 
28
28
  ```bash
29
29
  npm version patch --no-git-tag-version
30
- npm publish --access public
30
+ npm publish
31
31
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lichess-org/types",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Lichess.org API types",
5
5
  "homepage": "https://github.com/lichess-org/api",
6
6
  "license": "AGPL-3.0-or-later",
@@ -10,7 +10,8 @@
10
10
  "gen": "openapi-typescript ../doc/specs/lichess-api.yaml -o lichess-api.d.ts"
11
11
  },
12
12
  "devDependencies": {
13
- "openapi-typescript": "7.0.0-rc.0",
14
- "prettier": "^3.2.5"
15
- }
13
+ "openapi-typescript": "^7.0.0",
14
+ "prettier": "^3.3.2"
15
+ },
16
+ "packageManager": "pnpm@9.1.4+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
16
17
  }