@zthun/webigail-rest 3.0.0 → 3.0.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 +4 -4
package/README.md CHANGED
@@ -40,10 +40,12 @@ service
40
40
  // Get a single resource - uses GET verb
41
41
  service.get("ditto").then((ditto) => console.log(ditto));
42
42
 
43
- // Note: The pokemon API is read only, but these would still invoke the endpoint with the given verbs
44
- // The would just fail with 404s, but these are here to illustrate the usage of a full rest service.
45
- // There is also an assumption that the return values on the services return the data that was mutated.
46
- // Delete is assumed to return a 204 - No Content if successful.
43
+ // Note: The pokemon API is read only, but these would still invoke the
44
+ // endpoint with the given verbs The would just fail with 404s, but
45
+ // these are here to illustrate the usage of a full rest service. There
46
+ // is also an assumption that the return values on the services return
47
+ // the data that was mutated. Delete is assumed to return a
48
+ // 204 - No Content if successful.
47
49
 
48
50
  // Create a new resource - uses POST verb
49
51
  service
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zthun/webigail-rest",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Helpful services for querying rest services based on specific standards.",
5
5
  "author": "Anthony Bonta",
6
6
  "license": "MIT",
@@ -32,11 +32,11 @@
32
32
  "dist"
33
33
  ],
34
34
  "dependencies": {
35
- "@zthun/helpful-fn": "^6.5.0",
36
- "@zthun/helpful-query": "^6.5.0",
35
+ "@zthun/helpful-fn": "^6.5.2",
36
+ "@zthun/helpful-query": "^6.5.2",
37
37
  "@zthun/webigail-http": "^3.0.0",
38
38
  "@zthun/webigail-url": "^3.0.0"
39
39
  },
40
40
  "sideEffects": false,
41
- "gitHead": "217a1f8050b591818162a2307c7e441f879b976f"
41
+ "gitHead": "29824d3e31addc3998af4b7547d31d5bb59c6940"
42
42
  }