@0xsequence/api 1.2.8 → 1.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/package.json +1 -1
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsequence/api",
3
- "version": "1.2.8",
3
+ "version": "1.3.0",
4
4
  "description": "api sub-package for Sequence",
5
5
  "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/api",
6
6
  "source": "src/index.ts",
package/src/index.ts CHANGED
@@ -20,7 +20,7 @@ export class SequenceAPIClient extends ApiRpc {
20
20
  // automatically include jwt auth header to requests
21
21
  // if its been set on the api client
22
22
  const headers: { [key: string]: any } = {}
23
-
23
+
24
24
  const { jwtAuth, accessKey } = this.authorization || {}
25
25
 
26
26
  if (jwtAuth && jwtAuth.length > 0) {