Skip to content

Commit aeeeb0b

Browse files
committed
More improvements
1 parent 143305e commit aeeeb0b

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

components/airtable_oauth/actions/create-table/create-table.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ export default {
1717
name: {
1818
type: "string",
1919
label: "Name",
20-
description: "The name for the table",
20+
description: "The name of the table",
2121
},
2222
description: {
2323
type: "string",
2424
label: "Description",
25-
description: "The description for the table",
25+
description: "The description of the table",
2626
optional: true,
2727
},
2828
fields: {
2929
type: "string[]",
3030
label: "Fields",
31-
description: "A list of JSON objects representing the fields in the table. Refer to [field types](https://airtable.com/developers/web/api/model/field-type) for supported field types, the write format for field options, and other specifics for certain field types.",
31+
description: "A list of JSON objects representing the fields in the table. [See the documentation](https://airtable.com/developers/web/api/model/field-type) for supported field types, the write format for field options, and other specifics for certain field types.",
3232
},
3333
},
3434
async run({ $ }) {

components/airtable_oauth/actions/list-records-in-view/list-records-in-view.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@ import commonList from "../common/common-list.mjs";
44
export default {
55
key: "airtable_oauth-list-records-in-view",
66
name: "List Records in View",
7-
description: "Retrieve records in a view with automatic pagination. Optionally sort and filter results. Only available for Enterprise accounts.",
7+
description: "Retrieve records from a view, optionally sorting and filtering results. [See the documentation](https://airtable.com/developers/web/api/list-views)",
88
type: "action",
99
version: "0.0.6",
1010
...commonList,
1111
props: {
12+
accountTierAlert: {
13+
type: "alert",
14+
alertType: "info",
15+
content: "Note: views are only available for Airtable Enterprise accounts. [See the documentation](https://airtable.com/developers/web/api/list-views) for more information.",
16+
},
1217
...common.props,
1318
viewId: {
1419
propDefinition: [

components/airtable_oauth/actions/search-records/search-records.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
props.searchFormula = {
3333
type: "string",
3434
label: "Search Formula",
35-
description: "Use an Airtable search formula to find records. For example, if you want to find records with `Tags` includes `test-1`, use `FIND('test-1', {Tags})`. Learn more on [Airtable's website](https://support.airtable.com/docs/formula-field-reference)",
35+
description: "Use an [Airtable search formula (see info on the documentation)](https://support.airtable.com/docs/formula-field-reference) to find records. For example, if you want to find records with `Tags` including `test-1`, use `FIND('test-1', {Tags})`.",
3636
optional: true,
3737
};
3838
}

components/airtable_oauth/actions/update-table/update-table.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ import common from "../common/common.mjs";
33
export default {
44
key: "airtable_oauth-update-table",
55
name: "Update Table",
6-
description: "Updates an existing table. [See the documentation](https://airtable.com/developers/web/api/update-table)",
6+
description: "Update an existing table. [See the documentation](https://airtable.com/developers/web/api/update-table)",
77
version: "0.0.6",
88
type: "action",
99
props: {
1010
...common.props,
1111
name: {
1212
type: "string",
1313
label: "Name",
14-
description: "The name for the table",
14+
description: "The updated name of the table",
1515
optional: true,
1616
},
1717
description: {
1818
type: "string",
1919
label: "Description",
20-
description: "The description for the table",
20+
description: "The updated description of the table",
2121
optional: true,
2222
},
2323
},

components/airtable_oauth/airtable_oauth.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export default {
201201
filterByFormula: {
202202
type: "string",
203203
label: "Filter by Formula",
204-
description: "Optionally provide a [formula (see the documentation)](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) used to filter records. The formula will be evaluated for each record, and if the result is not `0`, `false`, `\"\"`, `NaN`, `[]`, or `#Error!` the record will be included in the response. For example, to only include records where `Name` isn't empty, use `NOT({Name} = '')`.",
204+
description: "Optionally provide a [formula (see info on the documentation)](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference) used to filter records. The formula will be evaluated for each record, and if the result is not `0`, `false`, `\"\"`, `NaN`, `[]`, or `#Error!` the record will be included in the response. For example, to only include records where `Name` isn't empty, use `NOT({Name} = '')`.",
205205
optional: true,
206206
},
207207
records: {

0 commit comments

Comments
 (0)