@avaprotocol/sdk-js 0.6.2 → 0.6.3
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/dist/index.cjs +4 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4099,7 +4099,8 @@ var init_avs_pb = __esm({
|
|
|
4099
4099
|
// src/index.ts
|
|
4100
4100
|
var src_exports = {};
|
|
4101
4101
|
__export(src_exports, {
|
|
4102
|
-
|
|
4102
|
+
BaseClient: () => BaseClient,
|
|
4103
|
+
Client: () => Client,
|
|
4103
4104
|
getKeyRequestMessage: () => getKeyRequestMessage
|
|
4104
4105
|
});
|
|
4105
4106
|
module.exports = __toCommonJS(src_exports);
|
|
@@ -4538,5 +4539,7 @@ var Client = class extends BaseClient {
|
|
|
4538
4539
|
};
|
|
4539
4540
|
// Annotate the CommonJS export names for ESM import in node:
|
|
4540
4541
|
0 && (module.exports = {
|
|
4542
|
+
BaseClient,
|
|
4543
|
+
Client,
|
|
4541
4544
|
getKeyRequestMessage
|
|
4542
4545
|
});
|
package/dist/index.d.cts
CHANGED
|
@@ -1066,4 +1066,4 @@ declare class Client extends BaseClient {
|
|
|
1066
1066
|
getTask(taskId: string): Promise<any>;
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
-
export { type BalanceResp, type ClientParams, type Environment, type KeyExchangeResp, type TransactionResp,
|
|
1069
|
+
export { type BalanceResp, BaseClient, Client, type ClientParams, type Environment, type KeyExchangeResp, type TransactionResp, getKeyRequestMessage };
|
package/dist/index.d.ts
CHANGED
|
@@ -1066,4 +1066,4 @@ declare class Client extends BaseClient {
|
|
|
1066
1066
|
getTask(taskId: string): Promise<any>;
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
-
export { type BalanceResp, type ClientParams, type Environment, type KeyExchangeResp, type TransactionResp,
|
|
1069
|
+
export { type BalanceResp, BaseClient, Client, type ClientParams, type Environment, type KeyExchangeResp, type TransactionResp, getKeyRequestMessage };
|
package/dist/index.js
CHANGED