Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/nocodb/actions/add-record/add-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/nocodb/actions/delete-record/delete-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/nocodb/actions/get-record/get-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/nocodb/actions/update-record/update-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/nocodb/nocodb.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default {
},
},
data: {
type: "any",
type: "string",
label: "data",
description: "Enter Json Formated data",
},
Expand Down
2 changes: 1 addition & 1 deletion components/nocodb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/nocodb",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Nocodb Components",
"main": "nocodb.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion components/nocodb/sources/new-record/new-record.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading