@plaidev/karte-action-sdk 1.1.196-28165396.8d0dd712 → 1.1.197-28169546.1b64123d

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.
Files changed (2) hide show
  1. package/dist/index.es.js +4 -4
  2. package/package.json +1 -1
package/dist/index.es.js CHANGED
@@ -1373,15 +1373,15 @@ const loadActionTable = async (config, api_key, endpoint) => {
1373
1373
  .filter(c => c.resolver === 'action-table-row' ||
1374
1374
  c.resolver === 'action-table-rows' ||
1375
1375
  c.resolver === 'action-table-query')
1376
- .map(c => {
1376
+ .map(async (c) => {
1377
1377
  if (c.resolver === 'action-table-row') {
1378
- loadActionTableRow(c, api_key, endpoint);
1378
+ return await loadActionTableRow(c, api_key, endpoint);
1379
1379
  }
1380
1380
  else if (c.resolver === 'action-table-rows') {
1381
- loadActionTableRows(c, api_key, endpoint);
1381
+ return await loadActionTableRows(c, api_key, endpoint);
1382
1382
  }
1383
1383
  else if (c.resolver === 'action-table-query') {
1384
- loadActionTableQuery(c, api_key, endpoint);
1384
+ return await loadActionTableQuery(c, api_key, endpoint);
1385
1385
  }
1386
1386
  }));
1387
1387
  return config.reduce((acc, c, i) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.196-28165396.8d0dd712",
3
+ "version": "1.1.197-28169546.1b64123d",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",