Skip to content

Commit efd909f

Browse files
authored
Merging pull request #18481
* update data prop type * versions
1 parent e02dfcc commit efd909f

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

components/nocodb/actions/add-record/add-record.mjs

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

components/nocodb/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: "nocodb-delete-record",
66
name: "Delete Record",
77
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)",
8-
version: "0.0.5",
8+
version: "0.0.6",
99
type: "action",
1010
props: {
1111
...common.props,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "nocodb-get-record",
66
name: "Get Record (from row number)",
77
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)",
8-
version: "0.0.5",
8+
version: "0.0.6",
99
type: "action",
1010
props: {
1111
...common.props,

components/nocodb/actions/list-records-matching-criteria/list-records-matching-criteria.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "nocodb-list-records-matching-criteria",
66
name: "List Records in Table Matching Criteria",
77
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)",
8-
version: "0.0.6",
8+
version: "0.0.7",
99
type: "action",
1010
props: {
1111
...common.props,

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

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

components/nocodb/nocodb.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default {
9191
},
9292
},
9393
data: {
94-
type: "any",
94+
type: "string",
9595
label: "data",
9696
description: "Enter Json Formated data",
9797
},

components/nocodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/nocodb",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Nocodb Components",
55
"main": "nocodb.app.mjs",
66
"keywords": [

components/nocodb/sources/new-record-in-view/new-record-in-view.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "nocodb-new-record-in-view",
66
name: "New Record in View",
77
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)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "source",
1010
dedupe: "unique",
1111
props: {

components/nocodb/sources/new-record/new-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "New Record in Table",
77
key: "nocodb-new-record",
88
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)",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,

components/nocodb/sources/updated-record/updated-record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "New Update in Table",
77
key: "nocodb-updated-record",
88
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)",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,

0 commit comments

Comments
 (0)