@covalenthq/client-sdk 0.8.7 → 0.8.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.
- package/dist/cjs/index.js +4 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/services/CovalentClient.d.ts +2 -2
- package/dist/cjs/services/XykService.d.ts +2 -0
- package/dist/es/index.js +4 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/services/CovalentClient.d.ts +2 -2
- package/dist/es/services/XykService.d.ts +2 -0
- package/dist/esm/index.js +4 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/services/CovalentClient.d.ts +2 -2
- package/dist/esm/services/XykService.d.ts +2 -0
- package/dist/services/CovalentClient.d.ts +2 -2
- package/dist/services/CovalentClient.js +1 -1
- package/dist/services/XykService.d.ts +2 -0
- package/dist/services/XykService.js +3 -0
- package/dist/services/XykService.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -6559,6 +6559,9 @@ class XykService {
|
|
|
6559
6559
|
while (!success) {
|
|
6560
6560
|
try {
|
|
6561
6561
|
const urlParams = new URLSearchParams();
|
|
6562
|
+
if (queryParamOpts?.date !== undefined) {
|
|
6563
|
+
urlParams.append("date", queryParamOpts?.date.toString());
|
|
6564
|
+
}
|
|
6562
6565
|
if (queryParamOpts?.pageSize !== undefined) {
|
|
6563
6566
|
urlParams.append("page-size", queryParamOpts?.pageSize.toString());
|
|
6564
6567
|
}
|
|
@@ -7826,7 +7829,7 @@ class XykService {
|
|
|
7826
7829
|
}
|
|
7827
7830
|
}
|
|
7828
7831
|
|
|
7829
|
-
const userAgent = "com.covalenthq.sdk.typescript/0.8.
|
|
7832
|
+
const userAgent = "com.covalenthq.sdk.typescript/0.8.9";
|
|
7830
7833
|
class Response {
|
|
7831
7834
|
}
|
|
7832
7835
|
/**
|