@plaidev/karte-action-sdk 1.1.203 → 1.1.204-28199907.4843b7f4
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/hydrate/index.es.d.ts +6 -2
- package/dist/hydrate/index.es.js +171 -145
- package/dist/index.es.d.ts +6 -2
- package/dist/index.es.js +171 -145
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
@@ -257,7 +257,9 @@ type ActionTableQueryRequestConfig = VariableQuery & {
|
|
257
257
|
query: {
|
258
258
|
table_name: string;
|
259
259
|
query_name: string;
|
260
|
-
params?:
|
260
|
+
params?: {
|
261
|
+
[key: string]: string;
|
262
|
+
};
|
261
263
|
default_value?: Array<ActionTableResult>;
|
262
264
|
};
|
263
265
|
preview_value?: Array<ActionTableResult>;
|
@@ -1711,7 +1713,9 @@ declare namespace widget {
|
|
1711
1713
|
query: {
|
1712
1714
|
table_name: string;
|
1713
1715
|
query_name: string;
|
1714
|
-
params?:
|
1716
|
+
params?: {
|
1717
|
+
[key: string]: string;
|
1718
|
+
};
|
1715
1719
|
default_value?: Array<ActionTableResult>;
|
1716
1720
|
};
|
1717
1721
|
preview_value?: Array<ActionTableResult>;
|