@plaidev/karte-action-sdk 1.1.201 → 1.1.202-28184304.e377c6fd
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/hydrate/index.es.d.ts +7 -3
- package/dist/hydrate/index.es.js +179 -153
- package/dist/index.es.d.ts +7 -3
- package/dist/index.es.js +160 -128
- package/package.json +1 -1
@@ -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>;
|
@@ -789,7 +791,7 @@ declare const OnClickOperationOptions: readonly [
|
|
789
791
|
{
|
790
792
|
readonly name: "url";
|
791
793
|
readonly type: "Url";
|
792
|
-
readonly default: "";
|
794
|
+
readonly default: "https://example.com";
|
793
795
|
},
|
794
796
|
{
|
795
797
|
readonly name: "open_new_tab";
|
@@ -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>;
|