quetch 0.1.0 → 0.1.1

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 +6 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,16 +4,18 @@
4
4
 
5
5
  ### Features
6
6
 
7
- - Provides a common query object format
8
- - Separates data requests from API configuration
7
+ - Provides a fully typed query object format
8
+ - Queries local data as well as external data (e.g., through `fetch`)
9
+ - Separates resource requests from API configuration
9
10
  - Provides error handlers
10
11
 
11
12
  ## Usage
12
13
 
13
14
  Everything is exported from the main entry-point through an ES6 module:
14
15
 
15
- ```js
16
- import { add } from "quetch";
16
+ ```typescript
17
+ import { fetchLocal, combine } from "quetch";
18
+ import type { Query } from "quetch";
17
19
  ```
18
20
 
19
21
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quetch",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "./dist/main.js",
6
6
  "exports": {