@covalenthq/client-sdk 0.8.6 → 0.8.8

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/cjs/index.js CHANGED
@@ -1689,6 +1689,7 @@ class GasPricesResponse {
1689
1689
  this.updated_at = data.updated_at && data.updated_at !== null ? dateFns.parseISO(data.updated_at.toString()) : null;
1690
1690
  this.event_type = data.event_type;
1691
1691
  this.gas_quote_rate = data.gas_quote_rate;
1692
+ this.base_fee = data.base_fee && data.base_fee !== null ? BigInt(data.base_fee) : null;
1692
1693
  this.items = data.items && data.items !== null ? data.items.map((itemData) => new PriceItem(itemData)) : null;
1693
1694
  }
1694
1695
  }
@@ -6558,6 +6559,9 @@ class XykService {
6558
6559
  while (!success) {
6559
6560
  try {
6560
6561
  const urlParams = new URLSearchParams();
6562
+ if (queryParamOpts?.date !== undefined) {
6563
+ urlParams.append("date", queryParamOpts?.date.toString());
6564
+ }
6561
6565
  if (queryParamOpts?.pageSize !== undefined) {
6562
6566
  urlParams.append("page-size", queryParamOpts?.pageSize.toString());
6563
6567
  }
@@ -7825,7 +7829,7 @@ class XykService {
7825
7829
  }
7826
7830
  }
7827
7831
 
7828
- const userAgent = "com.covalenthq.sdk.typescript/0.8.6";
7832
+ const userAgent = "com.covalenthq.sdk.typescript/0.8.8";
7829
7833
  class Response {
7830
7834
  }
7831
7835
  /**