@turnkey/http 0.7.0 → 0.7.1-beta.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 +8 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,9 +33,9 @@ const data = await PublicApiService.postGetWhoami({
33
33
 
34
34
  ## HTTP fetchers
35
35
 
36
- `@turnkey/http` provides fully typed http fetchers for interacting with the Turnkey API. You can find all available methods [here](./src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts). The types of input parameters and output responses are also exported for convenience.
36
+ `@turnkey/http` provides fully typed http fetchers for interacting with the Turnkey API. You can find all available methods [here](/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts). The types of input parameters and output responses are also exported for convenience.
37
37
 
38
- The OpenAPI spec that generates all fetchers is also [included](./src/__generated__/services/coordinator/public/v1/public_api.swagger.json) in the package.
38
+ The OpenAPI spec that generates all fetchers is also [included](/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json) in the package.
39
39
 
40
40
  ## `withAsyncPolling(...)` helper
41
41
 
@@ -78,6 +78,10 @@ try {
78
78
  }
79
79
  ```
80
80
 
81
- ## More Examples
81
+ ## More examples
82
82
 
83
- See [`createNewEthereumPrivateKey.ts`](../../examples/with-ethers/src/createNewEthereumPrivateKey.ts) in the [`with-ethers`](../../examples/with-ethers/) example.
83
+ See [`createNewEthereumPrivateKey.ts`](/examples/with-ethers/src/createNewEthereumPrivateKey.ts) in the [`with-ethers`](/examples/with-ethers/) example.
84
+
85
+ ## See also
86
+
87
+ - [`@turnkey/ethers`](/packages/ethers/): higher-level Turnkey Signer for [`Ethers`](https://docs.ethers.org/v5/api/signer/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turnkey/http",
3
- "version": "0.7.0",
3
+ "version": "0.7.1-beta.0",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "Apache-2.0",