@dfns/sdk 0.5.7 → 0.5.9

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.
@@ -115,7 +115,7 @@ class WalletsClient {
115
115
  async getWalletAssets(request) {
116
116
  const path = (0, url_1.buildPathAndQuery)('/wallets/:walletId/assets', {
117
117
  path: request ?? {},
118
- query: {},
118
+ query: request.query ?? {},
119
119
  });
120
120
  const response = await (0, fetch_1.simpleFetch)(path, {
121
121
  method: 'GET',
@@ -190,7 +190,7 @@ class DelegatedWalletsClient {
190
190
  async getWalletAssets(request) {
191
191
  const path = (0, url_1.buildPathAndQuery)('/wallets/:walletId/assets', {
192
192
  path: request ?? {},
193
- query: {},
193
+ query: request.query ?? {},
194
194
  });
195
195
  const response = await (0, fetch_1.simpleFetch)(path, {
196
196
  method: 'GET',