Skip to content

Commit d7325b0

Browse files
Update TTL max limit to 1 year and increment versions of all data store actions
1 parent cc8c838 commit d7325b0

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

components/data_stores/actions/delete-all-records/delete-all-records.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "data_stores-delete-all-records",
55
name: "Delete All Records",
66
description: "Delete all records in your [Pipedream Data Store](https://pipedream.com/data-stores/).",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
app,

components/data_stores/actions/delete-single-record/delete-single-record.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "data_stores-delete-single-record",
55
name: "Delete a single record",
66
description: "Delete a single record in your [Pipedream Data Store](https://pipedream.com/data-stores/).",
7-
version: "0.0.8",
7+
version: "0.0.9",
88
type: "action",
99
props: {
1010
app,

components/data_stores/actions/get-all-records/get-all-records.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "data_stores-get-all-records",
55
name: "Get all records",
66
description: "Get all records in your [Pipedream Data Store](https://pipedream.com/data-stores/). The memory consumption of the workflow can be affected, since this action will be exposing, to the workflow, the entire data from the selected datastore.",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
props: {
1010
app,

components/data_stores/actions/get-difference/get-difference.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "data_stores-get-difference",
66
name: "Get Difference",
77
description: "Get the difference between two data stores. Result contains key/value pairs where the key exists in one data store, but not the other. [Pipedream Data Stores](https://pipedream.com/data-stores/).",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
type: "action",
1010
props: {
1111
app,

components/data_stores/actions/get-record-keys/get-record-keys.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "data_stores-get-record-keys",
55
name: "Get Record Keys",
66
description: "Get all record keys in your [Pipedream Data Store](https://pipedream.com/data-stores/) that matches with your query. The memory consumption of the workflow can be affected, since this action will be exposing, to the workflow, the entire data from the selected datastore",
7-
version: "0.0.3",
7+
version: "0.0.4",
88
type: "action",
99
props: {
1010
app,

components/data_stores/actions/list-keys/list-keys.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "data_stores-list-keys",
55
name: "List keys",
66
description: "List all keys in your [Pipedream Data Store](https://pipedream.com/data-stores/).",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
app,

components/data_stores/actions/list-records/list-records.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "data_stores-list-records",
77
name: "List Records",
88
description: "List all records in your [Pipedream Data Store](https://pipedream.com/data-stores/).",
9-
version: "0.0.3",
9+
version: "0.0.4",
1010
type: "action",
1111
props: {
1212
app,

components/data_stores/actions/update-ttl/update-ttl.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default {
7373
label: "Custom TTL (seconds)",
7474
description: "The number of seconds until this record expires and is automatically deleted. Use 0 to remove expiration.",
7575
min: 0,
76-
max: 63072000, // 2 years (safe upper limit)
76+
max: 31536000, // 1 year (safe upper limit)
7777
};
7878
}
7979
return props;

components/data_stores/data_stores.app.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default {
3333
description: "The number of seconds until this record expires and is automatically deleted. Examples: 3600 (1 hour), 86400 (1 day), 604800 (1 week). Leave blank for records that should not expire.",
3434
optional: true,
3535
min: 0,
36-
max: 63072000, // 2 years (safe upper limit)
36+
max: 31536000, // 1 year (safe upper limit)
3737
},
3838
addRecordIfNotFound: {
3939
label: "Create a new record if the key is not found?",

components/data_stores/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/data_stores",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "Pipedream Data Stores Components",
55
"main": "data_stores.app.js",
66
"keywords": [

0 commit comments

Comments
 (0)