diff --git a/components/nocodb/actions/add-record/add-record.mjs b/components/nocodb/actions/add-record/add-record.mjs index adbe8a8ab03fc..68c57d0a05698 100644 --- a/components/nocodb/actions/add-record/add-record.mjs +++ b/components/nocodb/actions/add-record/add-record.mjs @@ -5,7 +5,7 @@ export default { key: "nocodb-add-record", name: "Add Record", description: "This action adds a record in a table. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-create)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { ...common.props, diff --git a/components/nocodb/actions/delete-record/delete-record.mjs b/components/nocodb/actions/delete-record/delete-record.mjs index d9591b3c96ada..29ff1ccb307a0 100644 --- a/components/nocodb/actions/delete-record/delete-record.mjs +++ b/components/nocodb/actions/delete-record/delete-record.mjs @@ -5,7 +5,7 @@ export default { key: "nocodb-delete-record", name: "Delete Record", description: "This action deletes a row in a table. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-delete)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { ...common.props, diff --git a/components/nocodb/actions/get-record/get-record.mjs b/components/nocodb/actions/get-record/get-record.mjs index 5ae8549178421..64746cd431e3d 100644 --- a/components/nocodb/actions/get-record/get-record.mjs +++ b/components/nocodb/actions/get-record/get-record.mjs @@ -5,7 +5,7 @@ export default { key: "nocodb-get-record", name: "Get Record (from row number)", description: "This action gets a row by row Id. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-read)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { ...common.props, diff --git a/components/nocodb/actions/list-records-matching-criteria/list-records-matching-criteria.mjs b/components/nocodb/actions/list-records-matching-criteria/list-records-matching-criteria.mjs index 14aabf15b1afa..ce15a1cef152c 100644 --- a/components/nocodb/actions/list-records-matching-criteria/list-records-matching-criteria.mjs +++ b/components/nocodb/actions/list-records-matching-criteria/list-records-matching-criteria.mjs @@ -5,7 +5,7 @@ export default { key: "nocodb-list-records-matching-criteria", name: "List Records in Table Matching Criteria", description: "This action lists all rows in a table. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-list)", - version: "0.0.6", + version: "0.0.7", type: "action", props: { ...common.props, diff --git a/components/nocodb/actions/update-record/update-record.mjs b/components/nocodb/actions/update-record/update-record.mjs index 8756f4f0c64d7..30edf83f62715 100644 --- a/components/nocodb/actions/update-record/update-record.mjs +++ b/components/nocodb/actions/update-record/update-record.mjs @@ -5,7 +5,7 @@ export default { key: "nocodb-update-record", name: "Update Record", description: "This action updates a record in a table. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-update)", - version: "0.0.5", + version: "0.0.6", type: "action", props: { ...common.props, diff --git a/components/nocodb/nocodb.app.mjs b/components/nocodb/nocodb.app.mjs index bc4326cafbb25..6292c6c44e530 100644 --- a/components/nocodb/nocodb.app.mjs +++ b/components/nocodb/nocodb.app.mjs @@ -91,7 +91,7 @@ export default { }, }, data: { - type: "any", + type: "string", label: "data", description: "Enter Json Formated data", }, diff --git a/components/nocodb/package.json b/components/nocodb/package.json index fd91c3e67f090..c748614c6e147 100644 --- a/components/nocodb/package.json +++ b/components/nocodb/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/nocodb", - "version": "0.1.0", + "version": "0.1.1", "description": "Pipedream Nocodb Components", "main": "nocodb.app.mjs", "keywords": [ diff --git a/components/nocodb/sources/new-record-in-view/new-record-in-view.mjs b/components/nocodb/sources/new-record-in-view/new-record-in-view.mjs index b3f67c758ed62..6a1e3bd66c9d7 100644 --- a/components/nocodb/sources/new-record-in-view/new-record-in-view.mjs +++ b/components/nocodb/sources/new-record-in-view/new-record-in-view.mjs @@ -5,7 +5,7 @@ export default { key: "nocodb-new-record-in-view", name: "New Record in View", description: "Emit new event for each new record in a view. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-list)", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", props: { diff --git a/components/nocodb/sources/new-record/new-record.mjs b/components/nocodb/sources/new-record/new-record.mjs index 64d836fcfe7e1..ce904e7457603 100644 --- a/components/nocodb/sources/new-record/new-record.mjs +++ b/components/nocodb/sources/new-record/new-record.mjs @@ -6,7 +6,7 @@ export default { name: "New Record in Table", key: "nocodb-new-record", description: "Emit new event for each new record in table. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-list)", - version: "0.0.6", + version: "0.0.7", dedupe: "unique", props: { ...common.props, diff --git a/components/nocodb/sources/updated-record/updated-record.mjs b/components/nocodb/sources/updated-record/updated-record.mjs index 18633ea71ead5..7a91b3cd0b7ee 100644 --- a/components/nocodb/sources/updated-record/updated-record.mjs +++ b/components/nocodb/sources/updated-record/updated-record.mjs @@ -6,7 +6,7 @@ export default { name: "New Update in Table", key: "nocodb-updated-record", description: "Emit new event for each update in table. [See the documentation](https://data-apis-v2.nocodb.com/#tag/Table-Records/operation/db-data-table-row-list)", - version: "0.0.6", + version: "0.0.7", dedupe: "unique", props: { ...common.props,