@sales-planner/http-client 0.2.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +0 -2
  2. package/package.json +13 -8
package/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  Type-safe HTTP client for the Sales Planner API.
4
4
 
5
- > This package re-exports the client from `@sales-planner/shared`. You can use either package.
6
-
7
5
  ## Installation
8
6
 
9
7
  ```bash
package/package.json CHANGED
@@ -1,10 +1,15 @@
1
1
  {
2
2
  "name": "@sales-planner/http-client",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "HTTP client for Sales Planner API",
5
5
  "author": "Damir Manapov",
6
6
  "license": "MIT",
7
- "keywords": ["sales-planner", "api-client", "http-client", "typescript"],
7
+ "keywords": [
8
+ "sales-planner",
9
+ "api-client",
10
+ "http-client",
11
+ "typescript"
12
+ ],
8
13
  "type": "module",
9
14
  "main": "./dist/index.js",
10
15
  "types": "./dist/index.d.ts",
@@ -18,14 +23,14 @@
18
23
  "dist",
19
24
  "README.md"
20
25
  ],
21
- "scripts": {
22
- "build": "tsc",
23
- "typecheck": "tsc --noEmit"
24
- },
25
26
  "dependencies": {
26
- "@sales-planner/shared": "^0.3.1"
27
+ "@sales-planner/shared": "0.4.0"
27
28
  },
28
29
  "devDependencies": {
29
30
  "typescript": "^5.7.3"
31
+ },
32
+ "scripts": {
33
+ "build": "tsc",
34
+ "typecheck": "tsc --noEmit"
30
35
  }
31
- }
36
+ }