Skip to content

Commit 3ecb4ed

Browse files
authored
Fix Airtable URL field asking for object input (#14835)
According to the Airtable docs, the URL field type should be a string, not an object. See: https://airtable.com/developers/extensions/api/FieldType#URL
1 parent e2445aa commit 3ecb4ed

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-create-comment",
55
name: "Create Comment",
66
description: "Create a new comment on a record. [See the documentation](https://airtable.com/developers/web/api/create-comment)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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,

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
@@ -8,7 +8,7 @@ export default {
88
key: "airtable_oauth-create-multiple-records",
99
name: "Create Multiple Records",
1010
description: "Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. [See the documentation](https://airtable.com/developers/web/api/create-records)",
11-
version: "0.0.6",
11+
version: "0.0.7",
1212
type: "action",
1313
props: {
1414
...common.props,

components/airtable_oauth/actions/create-or-update-record/create-or-update-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-create-or-update-record",
77
name: "Create Single Record Or Update",
88
description: "Updates a record if `recordId` is provided or adds a record to a table.",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
type: "action",
1111
props: {
1212
...common.props,

components/airtable_oauth/actions/create-single-record/create-single-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-create-single-record",
77
name: "Create Single Record",
88
description: "Adds a record to a table.",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
type: "action",
1111
props: {
1212
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-create-table",
55
name: "Create Table",
66
description: "Create a new table. [See the documentation](https://airtable.com/developers/web/api/create-table)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
airtable,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "airtable_oauth-delete-record",
66
name: "Delete Record",
77
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",
8+
version: "0.0.7",
99
type: "action",
1010
props: {
1111
...common.props,

components/airtable_oauth/actions/get-record-or-create/get-record-or-create.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-get-record-or-create",
77
name: "Get Record Or Create",
88
description: "Get a record from a table by record ID or create a new register.",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
type: "action",
1111
props: {
1212
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-get-record",
77
name: "Get Record",
88
description: "Get a record from a table by record ID. [See the documentation](https://airtable.com/developers/web/api/get-record)",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
type: "action",
1111
props: {
1212
...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 in a view with automatic pagination. Optionally sort and filter results. Only available for Enterprise accounts.",
88
type: "action",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
...commonList,
1111
props: {
1212
...common.props,

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 with automatic pagination. Optionally sort and filter results.",
88
type: "action",
9-
version: "0.0.6",
9+
version: "0.0.7",
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
@@ -5,7 +5,7 @@ export default {
55
key: "airtable_oauth-search-records",
66
name: "Search Records",
77
description: "Searches for a record by formula or by field value. [See the documentation](https://airtable.com/developers/web/api/list-records)",
8-
version: "0.0.8",
8+
version: "0.0.9",
99
type: "action",
1010
props: {
1111
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-update-comment",
55
name: "Update Comment",
66
description: "Updates an existing comment on a record. [See the documentation](https://airtable.com/developers/web/api/update-comment)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "airtable_oauth-update-field",
66
name: "Update Field",
77
description: "Updates an existing field in a table. [See the documentation](https://airtable.com/developers/web/api/update-field)",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
type: "action",
1010
props: {
1111
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "airtable_oauth-update-record",
77
name: "Update Record",
88
description: "Update a single record in a table by Record ID. [See the documentation](https://airtable.com/developers/web/api/update-record)",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
type: "action",
1111
props: {
1212
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "airtable_oauth-update-table",
55
name: "Update Table",
66
description: "Updates an existing table. [See the documentation](https://airtable.com/developers/web/api/update-table)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
...common.props,

components/airtable_oauth/common/constants.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ const FieldType = {
3232
EXTERNAL_SYNC_SOURCE: "externalSyncSource",
3333
LAST_MODIFIED_BY: "lastModifiedBy",
3434
LAST_MODIFIED_TIME: "lastModifiedTime",
35-
URL: "url",
3635
// string
36+
URL: "url",
3737
SINGLE_COLLABORATOR: "singleCollaborator",
3838
DATE: "date",
3939
DATE_TIME: "dateTime",

components/airtable_oauth/common/utils.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ function fieldTypeToPropType(fieldType) {
3737
case FieldType.EXTERNAL_SYNC_SOURCE:
3838
case FieldType.LAST_MODIFIED_BY:
3939
case FieldType.LAST_MODIFIED_TIME:
40-
case FieldType.URL:
4140
return "object";
4241
// string
42+
case FieldType.URL:
4343
case FieldType.SINGLE_COLLABORATOR:
4444
case FieldType.DATE:
4545
case FieldType.DATE_TIME:

components/airtable_oauth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/airtable_oauth",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Pipedream Airtable (OAuth) Components",
55
"main": "airtable_oauth.app.mjs",
66
"keywords": [

components/airtable_oauth/sources/new-field/new-field.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "New Field",
55
description: "Emit new event for each new field created in a table",
66
key: "airtable_oauth-new-field",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "source",
99
props: {
1010
...common.props,

components/airtable_oauth/sources/new-modified-or-deleted-records-instant/new-modified-or-deleted-records-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "New Modified or Deleted Records (Instant)",
77
description: "Emit new event each time a record is added, updated, or deleted in an Airtable table. [See the documentation](https://airtable.com/developers/web/api/create-a-webhook)",
88
key: "airtable_oauth-new-modified-or-deleted-records-instant",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

components/airtable_oauth/sources/new-modified-or-deleted-records/new-modified-or-deleted-records.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...base,
66
name: "New, Modified or Deleted Records",
77
key: "airtable_oauth-new-modified-or-deleted-records",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
type: "source",
1010
description: "Emit new event each time a record is added, updated, or deleted in an Airtable table. Supports tables up to 10,000 records",
1111
props: {

components/airtable_oauth/sources/new-or-modified-field/new-or-modified-field.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
name: "New or Modified Field",
55
description: "Emit new event for each new or modified field in a table",
66
key: "airtable_oauth-new-or-modified-field",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "source",
99
props: {
1010
...common.props,

components/airtable_oauth/sources/new-or-modified-records-in-view/new-or-modified-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: "New or Modified Records in View",
77
description: "Emit new event for each new or modified record in a view",
88
key: "airtable_oauth-new-or-modified-records-in-view",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
type: "source",
1111
props: {
1212
...base.props,

components/airtable_oauth/sources/new-or-modified-records/new-or-modified-records.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New or Modified Records",
88
key: "airtable_oauth-new-or-modified-records",
99
description: "Emit new event for each new or modified record in a table",
10-
version: "0.0.8",
10+
version: "0.0.9",
1111
type: "source",
1212
props: {
1313
...base.props,

components/airtable_oauth/sources/new-records-in-view/new-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: "New Records in View",
77
description: "Emit new event for each new record in a view",
88
key: "airtable_oauth-new-records-in-view",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
type: "source",
1111
props: {
1212
...base.props,

components/airtable_oauth/sources/new-records/new-records.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "New Records",
77
description: "Emit new event for each new record in a table",
88
key: "airtable_oauth-new-records",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
type: "source",
1111
props: {
1212
...base.props,

0 commit comments

Comments
 (0)