Skip to content

Commit e31def9

Browse files
author
Lucas BERGERON
committed
Increment version
1 parent 7910d70 commit e31def9

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
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.3",
8+
version: "0.0.4",
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.3",
8+
version: "0.0.4",
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.3",
8+
version: "0.0.4",
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.4",
8+
version: "0.0.5",
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.3",
8+
version: "0.0.4",
99
type: "action",
1010
props: {
1111
...common.props,

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.0.6",
3+
"version": "0.0.7",
44
"description": "Pipedream Nocodb Components",
55
"main": "nocodb.app.mjs",
66
"keywords": [

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.4",
9+
version: "0.0.5",
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.4",
9+
version: "0.0.5",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,

0 commit comments

Comments
 (0)