From fcbf4d6b39b53055ff6643c4b6a98cd27b38eabf Mon Sep 17 00:00:00 2001 From: falc1 Date: Tue, 22 Apr 2025 16:29:09 +0400 Subject: [PATCH 1/7] Fix: pass returnFieldsByFieldId to getRecord for Airtable actions --- .../airtable_oauth/actions/get-record/get-record.mjs | 8 +++++++- components/airtable_oauth/airtable_oauth.app.mjs | 12 +++++++++--- components/airtable_oauth/common/actions.mjs | 5 +++++ 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/components/airtable_oauth/actions/get-record/get-record.mjs b/components/airtable_oauth/actions/get-record/get-record.mjs index f40bb2e43ef57..ed0a719455349 100644 --- a/components/airtable_oauth/actions/get-record/get-record.mjs +++ b/components/airtable_oauth/actions/get-record/get-record.mjs @@ -6,10 +6,16 @@ export default { key: "airtable_oauth-get-record", name: "Get Record", description: "Get data of a selected record from a table. [See the documentation](https://airtable.com/developers/web/api/get-record)", - version: "0.0.11", + version: "0.0.17", type: "action", props: { ...common.props, + returnFieldsByFieldId: { + propDefinition: [ + airtable, + "returnFieldsByFieldId", + ], + }, recordId: { propDefinition: [ airtable, diff --git a/components/airtable_oauth/airtable_oauth.app.mjs b/components/airtable_oauth/airtable_oauth.app.mjs index 0974cbbf816d7..29bb7ea00edf2 100644 --- a/components/airtable_oauth/airtable_oauth.app.mjs +++ b/components/airtable_oauth/airtable_oauth.app.mjs @@ -258,10 +258,16 @@ You can also reference an object exported by a previous step, e.g. \`{{steps.foo : axios($, config); }, getRecord({ - baseId, tableId, recordId, + baseId, + tableId, + recordId, + opts = {}, }) { - const base = this.base(baseId); - return base(tableId).find(recordId); + return this._makeRequest({ + method: "GET", + path: `/${baseId}/${tableId}/${recordId}`, + params: opts, + }); }, listBases(args = {}) { return this._makeRequest({ diff --git a/components/airtable_oauth/common/actions.mjs b/components/airtable_oauth/common/actions.mjs index 4fd3226320625..ff7d495bf8be9 100644 --- a/components/airtable_oauth/common/actions.mjs +++ b/components/airtable_oauth/common/actions.mjs @@ -92,6 +92,11 @@ export default { baseId, tableId, recordId, + // Added 2025-04-22: Ensure returnFieldsByFieldId is passed to the API. + // Previously, this option was defined in the action but not forwarded to the API call. + opts: { + returnFieldsByFieldId: ctx.returnFieldsByFieldId, + }, }); $.export("$summary", `Fetched record "${recordId}" from ${ctx.baseId?.label || baseId}: [${ctx.tableId?.label || tableId}](https://airtable.com/${baseId}/${tableId})`); From 8f99e7522d05ab9ca4ce3c8aeaeec987ce52fc09 Mon Sep 17 00:00:00 2001 From: SokolovskyiK Date: Thu, 24 Apr 2025 01:20:05 +0400 Subject: [PATCH 2/7] Update components/airtable_oauth/actions/get-record/get-record.mjs Co-authored-by: Jorge Cortes --- components/airtable_oauth/actions/get-record/get-record.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/airtable_oauth/actions/get-record/get-record.mjs b/components/airtable_oauth/actions/get-record/get-record.mjs index ed0a719455349..b7175ee4810c8 100644 --- a/components/airtable_oauth/actions/get-record/get-record.mjs +++ b/components/airtable_oauth/actions/get-record/get-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-get-record", name: "Get Record", description: "Get data of a selected record from a table. [See the documentation](https://airtable.com/developers/web/api/get-record)", - version: "0.0.17", + version: "0.0.12", type: "action", props: { ...common.props, From 86fc8307d107060bf6b985765d050557ff0e1925 Mon Sep 17 00:00:00 2001 From: falc1 Date: Thu, 24 Apr 2025 02:00:22 +0400 Subject: [PATCH 3/7] airtable : bump component versions + package.json --- .../airtable_oauth/actions/create-comment/create-comment.mjs | 2 +- components/airtable_oauth/actions/create-field/create-field.mjs | 2 +- .../actions/create-multiple-records/create-multiple-records.mjs | 2 +- .../actions/create-or-update-record/create-or-update-record.mjs | 2 +- .../actions/create-single-record/create-single-record.mjs | 2 +- components/airtable_oauth/actions/create-table/create-table.mjs | 2 +- .../airtable_oauth/actions/delete-record/delete-record.mjs | 2 +- .../actions/get-record-or-create/get-record-or-create.mjs | 2 +- .../actions/list-records-in-view/list-records-in-view.mjs | 2 +- components/airtable_oauth/actions/list-records/list-records.mjs | 2 +- .../airtable_oauth/actions/search-records/search-records.mjs | 2 +- .../airtable_oauth/actions/update-comment/update-comment.mjs | 2 +- components/airtable_oauth/actions/update-field/update-field.mjs | 2 +- .../airtable_oauth/actions/update-record/update-record.mjs | 2 +- components/airtable_oauth/actions/update-table/update-table.mjs | 2 +- components/airtable_oauth/sources/new-field/new-field.mjs | 2 +- .../new-modified-or-deleted-records-instant.mjs | 2 +- .../new-modified-or-deleted-records.mjs | 2 +- .../sources/new-or-modified-field/new-or-modified-field.mjs | 2 +- .../new-or-modified-records-in-view.mjs | 2 +- .../sources/new-or-modified-records/new-or-modified-records.mjs | 2 +- .../sources/new-records-in-view/new-records-in-view.mjs | 2 +- components/airtable_oauth/sources/new-records/new-records.mjs | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/components/airtable_oauth/actions/create-comment/create-comment.mjs b/components/airtable_oauth/actions/create-comment/create-comment.mjs index ca4fb671537d4..fbfdd1e44ce7c 100644 --- a/components/airtable_oauth/actions/create-comment/create-comment.mjs +++ b/components/airtable_oauth/actions/create-comment/create-comment.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-create-comment", name: "Create Comment", description: "Create a comment on a selected record. [See the documentation](https://airtable.com/developers/web/api/create-comment)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-field/create-field.mjs b/components/airtable_oauth/actions/create-field/create-field.mjs index f39fff3bda43a..a1364fab69b7a 100644 --- a/components/airtable_oauth/actions/create-field/create-field.mjs +++ b/components/airtable_oauth/actions/create-field/create-field.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-create-field", name: "Create Field", description: "Create a new field in a table. [See the documentation](https://airtable.com/developers/web/api/create-field)", - version: "0.1.2", + version: "0.1.3", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs b/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs index d7b92e98e6ab3..3c3b2fbdc6b64 100644 --- a/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs +++ b/components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs @@ -9,7 +9,7 @@ export default { key: "airtable_oauth-create-multiple-records", name: "Create Multiple Records", description: "Create one or more records in a table in a single operation with an array. [See the documentation](https://airtable.com/developers/web/api/create-records)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs b/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs index 276c83db64bf5..720c563168f5d 100644 --- a/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs +++ b/components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-create-or-update-record", name: "Create or Update Record", description: "Create a new record or update an existing one. [See the documentation](https://airtable.com/developers/web/api/create-records)", - version: "0.1.2", + version: "0.1.3", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-single-record/create-single-record.mjs b/components/airtable_oauth/actions/create-single-record/create-single-record.mjs index 0cdc734d973ef..fb82608de6685 100644 --- a/components/airtable_oauth/actions/create-single-record/create-single-record.mjs +++ b/components/airtable_oauth/actions/create-single-record/create-single-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-create-single-record", name: "Create Single Record", description: "Adds a record to a table.", - version: "0.0.11", + version: "0.0.12", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/create-table/create-table.mjs b/components/airtable_oauth/actions/create-table/create-table.mjs index 84b99378f0413..05eb7d64e0112 100644 --- a/components/airtable_oauth/actions/create-table/create-table.mjs +++ b/components/airtable_oauth/actions/create-table/create-table.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-create-table", name: "Create Table", description: "Create a new table. [See the documentation](https://airtable.com/developers/web/api/create-table)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { airtable, diff --git a/components/airtable_oauth/actions/delete-record/delete-record.mjs b/components/airtable_oauth/actions/delete-record/delete-record.mjs index 8b93b94d87825..15f6dcc5b03a2 100644 --- a/components/airtable_oauth/actions/delete-record/delete-record.mjs +++ b/components/airtable_oauth/actions/delete-record/delete-record.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-delete-record", name: "Delete Record", description: "Delete a selected record from a table. [See the documentation](https://airtable.com/developers/web/api/delete-record)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs b/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs index d44ac9df3ee06..0f9b92b186293 100644 --- a/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs +++ b/components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-get-record-or-create", name: "Get Record Or Create", description: "Get a specific record, or create one if it doesn't exist. [See the documentation](https://airtable.com/developers/web/api/create-records)", - version: "0.0.12", + version: "0.0.13", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs b/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs index f33e3225191ec..f4d24dfc8a616 100644 --- a/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs +++ b/components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs @@ -6,7 +6,7 @@ export default { name: "List Records in View", description: "Retrieve records from a view, optionally sorting and filtering results. [See the documentation](https://airtable.com/developers/web/api/list-views)", type: "action", - version: "0.0.10", + version: "0.0.11", ...commonList, props: { accountTierAlert: { diff --git a/components/airtable_oauth/actions/list-records/list-records.mjs b/components/airtable_oauth/actions/list-records/list-records.mjs index bc8f2a41ecb56..216e49f3943cf 100644 --- a/components/airtable_oauth/actions/list-records/list-records.mjs +++ b/components/airtable_oauth/actions/list-records/list-records.mjs @@ -6,7 +6,7 @@ export default { name: "List Records", description: "Retrieve records from a table, optionally sorting and filtering results. [See the documentation](https://airtable.com/developers/web/api/list-records)", type: "action", - version: "0.0.10", + version: "0.0.11", ...commonList, props: { ...common.props, diff --git a/components/airtable_oauth/actions/search-records/search-records.mjs b/components/airtable_oauth/actions/search-records/search-records.mjs index 22dcf96eb03e0..ac6fad35d09ed 100644 --- a/components/airtable_oauth/actions/search-records/search-records.mjs +++ b/components/airtable_oauth/actions/search-records/search-records.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-search-records", name: "Search Records", description: "Search for a record by formula or by field value. [See the documentation](https://airtable.com/developers/web/api/list-records)", - version: "0.0.12", + version: "0.0.13", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-comment/update-comment.mjs b/components/airtable_oauth/actions/update-comment/update-comment.mjs index d364d60af6cb6..d0f68946e55be 100644 --- a/components/airtable_oauth/actions/update-comment/update-comment.mjs +++ b/components/airtable_oauth/actions/update-comment/update-comment.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-update-comment", name: "Update Comment", description: "Update an existing comment on a selected record. [See the documentation](https://airtable.com/developers/web/api/update-comment)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-field/update-field.mjs b/components/airtable_oauth/actions/update-field/update-field.mjs index 36d9872dd4174..eb1df1eda9998 100644 --- a/components/airtable_oauth/actions/update-field/update-field.mjs +++ b/components/airtable_oauth/actions/update-field/update-field.mjs @@ -5,7 +5,7 @@ export default { key: "airtable_oauth-update-field", name: "Update Field", description: "Update an existing field in a table. [See the documentation](https://airtable.com/developers/web/api/update-field)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-record/update-record.mjs b/components/airtable_oauth/actions/update-record/update-record.mjs index cc3ab2333cc56..d8719ddcae566 100644 --- a/components/airtable_oauth/actions/update-record/update-record.mjs +++ b/components/airtable_oauth/actions/update-record/update-record.mjs @@ -6,7 +6,7 @@ export default { key: "airtable_oauth-update-record", name: "Update Record", description: "Update a single record in a table by Record ID. [See the documentation](https://airtable.com/developers/web/api/update-record)", - version: "0.0.11", + version: "0.0.12", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/actions/update-table/update-table.mjs b/components/airtable_oauth/actions/update-table/update-table.mjs index 5410472e85ecc..2e1dfd6677fcc 100644 --- a/components/airtable_oauth/actions/update-table/update-table.mjs +++ b/components/airtable_oauth/actions/update-table/update-table.mjs @@ -4,7 +4,7 @@ export default { key: "airtable_oauth-update-table", name: "Update Table", description: "Update an existing table. [See the documentation](https://airtable.com/developers/web/api/update-table)", - version: "0.0.10", + version: "0.0.11", type: "action", props: { ...common.props, diff --git a/components/airtable_oauth/sources/new-field/new-field.mjs b/components/airtable_oauth/sources/new-field/new-field.mjs index 51a77f3dcfd5d..eddcfc85faec4 100644 --- a/components/airtable_oauth/sources/new-field/new-field.mjs +++ b/components/airtable_oauth/sources/new-field/new-field.mjs @@ -5,7 +5,7 @@ export default { name: "New Field Created (Instant)", description: "Emit new event when a field is created in the selected table. [See the documentation](https://airtable.com/developers/web/api/get-base-schema)", key: "airtable_oauth-new-field", - version: "1.0.2", + version: "1.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs b/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs index ca37ad830303e..a6c59ad99454e 100644 --- a/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs +++ b/components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs @@ -8,7 +8,7 @@ export default { name: "New Record Created, Updated or Deleted (Instant)", description: "Emit new event when a record is added, updated, or deleted in a table or selected view.", key: "airtable_oauth-new-modified-or-deleted-records-instant", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs b/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs index 7548bd0c679b6..247993857414d 100644 --- a/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs +++ b/components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs @@ -6,7 +6,7 @@ export default { name: "New, Modified or Deleted Records", description: "Emit new event each time a record is added, updated, or deleted in an Airtable table. Supports tables up to 10,000 records", key: "airtable_oauth-new-modified-or-deleted-records", - version: "0.0.11", + version: "0.0.12", type: "source", dedupe: "unique", props: { diff --git a/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs b/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs index 15378a05d7494..47c067f500fa1 100644 --- a/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs +++ b/components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs @@ -6,7 +6,7 @@ export default { name: "New or Modified Field (Instant)", description: "Emit new event when a field is created or updated in the selected table", key: "airtable_oauth-new-or-modified-field", - version: "1.0.2", + version: "1.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs b/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs index 3b7861bdae15f..c432337448c48 100644 --- a/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs +++ b/components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-records-in-view.mjs @@ -6,7 +6,7 @@ export default { name: "New or Modified Records in View", description: "Emit new event for each new or modified record in a view", key: "airtable_oauth-new-or-modified-records-in-view", - version: "0.0.12", + version: "0.0.13", type: "source", props: { ...base.props, diff --git a/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs b/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs index c2b92e8c7acd5..1c466d83cd1fc 100644 --- a/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs +++ b/components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs @@ -6,7 +6,7 @@ export default { name: "New or Modified Records (Instant)", key: "airtable_oauth-new-or-modified-records", description: "Emit new event for each new or modified record in a table or view", - version: "1.0.2", + version: "1.0.3", type: "source", dedupe: "unique", methods: { diff --git a/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs b/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs index f715ed1c66027..85b835af702a5 100644 --- a/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs +++ b/components/airtable_oauth/sources/new-records-in-view/new-records-in-view.mjs @@ -6,7 +6,7 @@ export default { name: "New Records in View", description: "Emit new event for each new record in a view", key: "airtable_oauth-new-records-in-view", - version: "0.0.11", + version: "0.0.12", type: "source", dedupe: "unique", props: { diff --git a/components/airtable_oauth/sources/new-records/new-records.mjs b/components/airtable_oauth/sources/new-records/new-records.mjs index 2de02aaaa4f87..117927ef51bbb 100644 --- a/components/airtable_oauth/sources/new-records/new-records.mjs +++ b/components/airtable_oauth/sources/new-records/new-records.mjs @@ -5,7 +5,7 @@ export default { name: "New Record(s) Created (Instant)", description: "Emit new event for each new record in a table", key: "airtable_oauth-new-records", - version: "1.0.2", + version: "1.0.3", type: "source", dedupe: "unique", methods: { From 78c6a1fc8bed1ed40c0cea740d2bbf0920c2d0eb Mon Sep 17 00:00:00 2001 From: SokolovskyiK Date: Thu, 1 May 2025 03:36:33 +0400 Subject: [PATCH 4/7] Bump list-tables.mjs --- components/airtable_oauth/actions/list-tables/list-tables.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/airtable_oauth/actions/list-tables/list-tables.mjs b/components/airtable_oauth/actions/list-tables/list-tables.mjs index df41d8fde2622..91732d1f64d9b 100644 --- a/components/airtable_oauth/actions/list-tables/list-tables.mjs +++ b/components/airtable_oauth/actions/list-tables/list-tables.mjs @@ -6,7 +6,7 @@ export default { description: "Get a list of tables in the selected base. [See the documentation](https://airtable.com/developers/web/api/get-base-schema)", type: "action", - version: "0.0.1", + version: "0.0.2", props: { airtable, baseId: { From 79daa11932623ce60a13f46a8cd47138800dc202 Mon Sep 17 00:00:00 2001 From: SokolovskyiK Date: Thu, 1 May 2025 03:37:03 +0400 Subject: [PATCH 5/7] Bump list-bases.mjs --- components/airtable_oauth/actions/list-bases/list-bases.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/airtable_oauth/actions/list-bases/list-bases.mjs b/components/airtable_oauth/actions/list-bases/list-bases.mjs index 9388fad7e30f5..d3512389ca7aa 100644 --- a/components/airtable_oauth/actions/list-bases/list-bases.mjs +++ b/components/airtable_oauth/actions/list-bases/list-bases.mjs @@ -6,7 +6,7 @@ export default { description: "Get the list of bases that can be accessed. [See the documentation](https://airtable.com/developers/web/api/list-bases)", type: "action", - version: "0.0.1", + version: "0.0.2", props: { airtable, }, From 14b60065fe5020a806939efa1dbc97f0a4d034b1 Mon Sep 17 00:00:00 2001 From: SokolovskyiK Date: Thu, 1 May 2025 04:04:43 +0400 Subject: [PATCH 6/7] Bump package.json --- pnpm-lock.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0cafdf2882d35..2c527e3313bf5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3176,8 +3176,7 @@ importers: components/danny_test_app: {} - components/dappier: - specifiers: {} + components/dappier: {} components/darksky_api: dependencies: From 51825c968648dc3f54971c9a6197ea6ae0963e03 Mon Sep 17 00:00:00 2001 From: michelle0927 Date: Tue, 6 May 2025 10:59:15 -0400 Subject: [PATCH 7/7] package.json version --- components/airtable_oauth/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/airtable_oauth/package.json b/components/airtable_oauth/package.json index cf43461a91a1a..f03f7a931b12d 100644 --- a/components/airtable_oauth/package.json +++ b/components/airtable_oauth/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/airtable_oauth", - "version": "0.5.0", + "version": "0.5.1", "description": "Pipedream Airtable (OAuth) Components", "main": "airtable_oauth.app.mjs", "keywords": [