Skip to content

Commit c8b4554

Browse files
committed
Text adjustments
1 parent aeeeb0b commit c8b4554

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import common from "../common/common.mjs";
33
export default {
44
key: "airtable_oauth-create-comment",
55
name: "Create Comment",
6-
description: "Create a new comment on a record. [See the documentation](https://airtable.com/developers/web/api/create-comment)",
7-
version: "0.0.6",
6+
description: "Create a comment on a selected record. [See the documentation](https://airtable.com/developers/web/api/create-comment)",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...common.props,
@@ -23,7 +23,7 @@ export default {
2323
comment: {
2424
type: "string",
2525
label: "Comment",
26-
description: "The text comment",
26+
description: "The text comment to create",
2727
},
2828
},
2929
async run({ $ }) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ export default {
44
key: "airtable_oauth-create-field",
55
name: "Create Field",
66
description: "Create a new field in a table. [See the documentation](https://airtable.com/developers/web/api/create-field)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...common.props,
1111
field: {
1212
type: "string",
1313
label: "Field",
14-
description: "A JSON object representing the field. 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.",
14+
description: "A JSON object representing the field. [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.",
1515
},
1616
},
1717
async run({ $ }) {

components/airtable_oauth/actions/create-multiple-records/create-multiple-records.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "airtable_oauth-create-multiple-records",
1010
name: "Create Multiple Records",
1111
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)",
12-
version: "0.1.{{ts}}",
12+
version: "0.0.7",
1313
type: "action",
1414
props: {
1515
...common.props,

components/airtable_oauth/actions/delete-record/delete-record.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import common from "../common/common.mjs";
44
export default {
55
key: "airtable_oauth-delete-record",
66
name: "Delete Record",
7-
description: "Delete a record from a table by record ID. [See the documentation](https://airtable.com/developers/web/api/delete-record)",
8-
version: "0.0.6",
7+
description: "Delete a selected record from a table. [See the documentation](https://airtable.com/developers/web/api/delete-record)",
8+
version: "0.0.8",
99
type: "action",
1010
props: {
1111
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "List Records in View",
77
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",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
...commonList,
1111
props: {
1212
accountTierAlert: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "List Records",
77
description: "Retrieve records from a table, optionally sorting and filtering results. [See the documentation](https://airtable.com/developers/web/api/list-records)",
88
type: "action",
9-
version: "0.1.0",
9+
version: "0.0.8",
1010
...commonList,
1111
props: {
1212
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { fieldTypeToPropType } from "../../common/utils.mjs";
44
export default {
55
key: "airtable_oauth-search-records",
66
name: "Search Records",
7-
description: "Searches for a record by formula or by field value. [See the documentation](https://airtable.com/developers/web/api/list-records)",
7+
description: "Search for a record by formula or by field value. [See the documentation](https://airtable.com/developers/web/api/list-records)",
88
version: "0.0.8",
99
type: "action",
1010
props: {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import common from "../common/common.mjs";
33
export default {
44
key: "airtable_oauth-update-comment",
55
name: "Update Comment",
6-
description: "Updates an existing comment on a record. [See the documentation](https://airtable.com/developers/web/api/update-comment)",
6+
description: "Update an existing comment on a selected record. [See the documentation](https://airtable.com/developers/web/api/update-comment)",
77
version: "0.0.6",
88
type: "action",
99
props: {
@@ -36,7 +36,7 @@ export default {
3636
comment: {
3737
type: "string",
3838
label: "Comment",
39-
description: "The text comment",
39+
description: "The new content of the comment",
4040
},
4141
},
4242
async run({ $ }) {

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { ConfigurationError } from "@pipedream/platform";
44
export default {
55
key: "airtable_oauth-update-field",
66
name: "Update Field",
7-
description: "Updates an existing field in a table. [See the documentation](https://airtable.com/developers/web/api/update-field)",
8-
version: "0.0.6",
7+
description: "Update an existing field in a table. [See the documentation](https://airtable.com/developers/web/api/update-field)",
8+
version: "0.0.7",
99
type: "action",
1010
props: {
1111
...common.props,
@@ -27,19 +27,19 @@ export default {
2727
name: {
2828
type: "string",
2929
label: "Name",
30-
description: "The name of the field",
30+
description: "The new name of the field",
3131
optional: true,
3232
},
3333
description: {
3434
type: "string",
3535
label: "Description",
36-
description: "The description for the field",
36+
description: "The new description of the field",
3737
optional: true,
3838
},
3939
},
4040
async run({ $ }) {
4141
if (!this.name && !this.description) {
42-
throw new ConfigurationError("At least one of `name` or `description` must be provided.");
42+
throw new ConfigurationError("At least one of `Name` or `Description` must be provided.");
4343
}
4444

4545
const data = {};

0 commit comments

Comments
 (0)