@eluvio/elv-client-js 4.0.126 → 4.0.127
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.
- package/package.json +1 -1
- package/src/ElvClient.js +5 -0
- package/src/FrameClient.js +1 -0
package/package.json
CHANGED
package/src/ElvClient.js
CHANGED
|
@@ -1016,6 +1016,9 @@ class ElvClient {
|
|
|
1016
1016
|
]))}`;
|
|
1017
1017
|
}
|
|
1018
1018
|
|
|
1019
|
+
async CreateAuthorizationToken(args) {
|
|
1020
|
+
return await this.authClient.AuthorizationToken(args);
|
|
1021
|
+
}
|
|
1019
1022
|
|
|
1020
1023
|
/**
|
|
1021
1024
|
* Build a signed message (JSON) using the current signer.
|
|
@@ -1403,6 +1406,8 @@ class ElvClient {
|
|
|
1403
1406
|
true
|
|
1404
1407
|
);
|
|
1405
1408
|
|
|
1409
|
+
// eslint-disable-next-line no-console
|
|
1410
|
+
console.error(message);
|
|
1406
1411
|
// eslint-disable-next-line no-console
|
|
1407
1412
|
console.error(error);
|
|
1408
1413
|
|
package/src/FrameClient.js
CHANGED