Skip to content

Commit

Permalink
Airtable: fix outputPortOptions
Browse files Browse the repository at this point in the history
- ListBases, ListTables
  • Loading branch information
jirihofman committed Sep 26, 2024
1 parent 9290a8b commit ccc06e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/appmixer/airtable/bundle.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "appmixer.airtable",
"version": "1.0.5",
"version": "1.0.6",
"changelog": {
"1.0.4": [
"Initial release"
],
"1.0.5": [
"Renamed output varible name in ListBases from Array to Bases and in ListTables from Array to Tables."
],
"1.0.6": [
"Fixed output schema for ListTables and ListBases."
]
}
}
2 changes: 1 addition & 1 deletion src/appmixer/airtable/records/ListBases/ListBases.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = {
return context.sendJson(
[
{
label: 'Bases', value: 'array',
label: 'Bases', value: 'result',
schema: {
type: 'array',
items: {
Expand Down
2 changes: 1 addition & 1 deletion src/appmixer/airtable/records/ListTables/ListTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module.exports = {
return context.sendJson(
[
{
label: 'Tables', value: 'array',
label: 'Tables', value: 'result',
schema: { type: 'array',
items: { type: 'object',
properties: {
Expand Down

0 comments on commit ccc06e7

Please sign in to comment.