@gscdump/sdk 0.35.12 → 0.36.1
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.mjs +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -43,7 +43,7 @@ function tablesQuery(tablesOrOptions, options) {
|
|
|
43
43
|
...searchTypeQuery(source?.searchType),
|
|
44
44
|
...dateRangeOptionsQuery(source)
|
|
45
45
|
};
|
|
46
|
-
if (tables) query.tables = Array.isArray(tables) ? tables.join(",") : tables;
|
|
46
|
+
if (tables) query.tables = Array.isArray(tables) ? [...new Set(tables.filter(Boolean))].sort().join(",") : [...new Set(tables.split(",").map((t) => t.trim()).filter(Boolean))].sort().join(",");
|
|
47
47
|
return query;
|
|
48
48
|
}
|
|
49
49
|
function dataQuery(state, options) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.36.1",
|
|
5
5
|
"description": "Consumer SDK for hosted gscdump.com integrations.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"date-fns": "^4.4.0",
|
|
45
45
|
"ofetch": "^1.5.1",
|
|
46
46
|
"zod": "^4.4.3",
|
|
47
|
-
"@gscdump/
|
|
48
|
-
"@gscdump/
|
|
49
|
-
"@gscdump/
|
|
50
|
-
"gscdump": "0.
|
|
47
|
+
"@gscdump/contracts": "0.36.1",
|
|
48
|
+
"@gscdump/engine": "0.36.1",
|
|
49
|
+
"@gscdump/analysis": "0.36.1",
|
|
50
|
+
"gscdump": "0.36.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "^6.0.3",
|