@plaidev/karte-action-sdk 1.1.198 → 1.1.199-28181334.2aca4feb

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.
@@ -265,13 +265,21 @@ type ActionTableQueryRequestConfig = VariableQuery & {
265
265
  /** @internal */
266
266
  type ActionTableRequestConfig = ActionTableRowRequestConfig | ActionTableRowsRequestConfig | ActionTableQueryRequestConfig;
267
267
  /** @internal */
268
- declare const loadActionTableRow: (config: ActionTableRowRequestConfig, api_key: string, endpoint?: string) => Promise<unknown>;
268
+ declare const loadActionTableRow: (config: ActionTableRowRequestConfig, data: {
269
+ [key: string]: any;
270
+ }, api_key: string, endpoint?: string) => Promise<unknown>;
269
271
  /** @internal */
270
- declare const loadActionTableRows: (config: ActionTableRowsRequestConfig, api_key: string, endpoint?: string) => Promise<unknown>;
272
+ declare const loadActionTableRows: (config: ActionTableRowsRequestConfig, data: {
273
+ [key: string]: any;
274
+ }, api_key: string, endpoint?: string) => Promise<unknown>;
271
275
  /** @internal */
272
- declare const loadActionTableQuery: (config: ActionTableQueryRequestConfig, api_key: string, endpoint?: string) => Promise<unknown>;
276
+ declare const loadActionTableQuery: (config: ActionTableQueryRequestConfig, data: {
277
+ [key: string]: any;
278
+ }, api_key: string, endpoint?: string) => Promise<unknown>;
273
279
  /** @internal */
274
- declare const loadActionTable: (config: Array<VariableQuery>, api_key: string, endpoint?: string) => Promise<{
280
+ declare const loadActionTable: (config: Array<VariableQuery>, data: {
281
+ [key: string]: any;
282
+ }, api_key: string, endpoint?: string) => Promise<{
275
283
  [key: string]: any;
276
284
  }>;
277
285
  /**
@@ -1711,17 +1719,27 @@ declare namespace widget {
1711
1719
  /** @internal */
1712
1720
  type ActionTableRequestConfig = ActionTableRowRequestConfig | ActionTableRowsRequestConfig | ActionTableQueryRequestConfig;
1713
1721
  /** @internal */
1714
- const loadActionTableRow: (config: ActionTableRowRequestConfig, api_key: string, endpoint?: string) => Promise<unknown>;
1722
+ const loadActionTableRow: (config: ActionTableRowRequestConfig, data: {
1723
+ [key: string]: any;
1724
+ }, api_key: string, endpoint?: string) => Promise<unknown>;
1715
1725
  /** @internal */
1716
- const loadActionTableRows: (config: ActionTableRowsRequestConfig, api_key: string, endpoint?: string) => Promise<unknown>;
1726
+ const loadActionTableRows: (config: ActionTableRowsRequestConfig, data: {
1727
+ [key: string]: any;
1728
+ }, api_key: string, endpoint?: string) => Promise<unknown>;
1717
1729
  /** @internal */
1718
- const loadActionTableQuery: (config: ActionTableQueryRequestConfig, api_key: string, endpoint?: string) => Promise<unknown>;
1730
+ const loadActionTableQuery: (config: ActionTableQueryRequestConfig, data: {
1731
+ [key: string]: any;
1732
+ }, api_key: string, endpoint?: string) => Promise<unknown>;
1719
1733
  /** @internal */
1720
- const loadActionTable: (config: Array<VariableQuery>, api_key: string, endpoint?: string) => Promise<{
1734
+ const loadActionTable: (config: Array<VariableQuery>, data: {
1735
+ [key: string]: any;
1736
+ }, api_key: string, endpoint?: string) => Promise<{
1721
1737
  [key: string]: any;
1722
1738
  }>;
1723
1739
  /** @internal */
1724
- function setupActionTable(localVariablesQuery: Array<VariableQuery>, apiKey: string): Promise<{
1740
+ function setupActionTable(localVariablesQuery: Array<VariableQuery>, data: {
1741
+ [key: string]: any;
1742
+ }, apiKey: string): Promise<{
1725
1743
  success: boolean;
1726
1744
  }>;
1727
1745
  /** @internal */