From 758937cc8da0a2b1cddaece34cefd301ea8688a3 Mon Sep 17 00:00:00 2001 From: oleksandravalko Date: Mon, 24 Nov 2025 18:09:40 +0100 Subject: [PATCH 1/2] fix(apify-set-key-value-store-record) 31: list only named KVS --- .../set-key-value-store-record.mjs | 5 ++++- components/apify/apify.app.mjs | 6 ++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs b/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs index 5a9c0b56004be..e8d4c76aa8224 100644 --- a/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs +++ b/components/apify/actions/set-key-value-store-record/set-key-value-store-record.mjs @@ -5,7 +5,7 @@ export default { name: "Set Key-Value Store Record", description: "Create or update a record in an Apify Key-Value Store. Supports strings, numbers, booleans, null, arrays, and objects. Automatically infers content type (JSON vs. plain text).", - version: "0.2.1", + version: "0.2.2", type: "action", props: { apify, @@ -13,6 +13,9 @@ export default { propDefinition: [ apify, "keyValueStoreId", + () => ({ + unnamed: false, + }), ], optional: false, }, diff --git a/components/apify/apify.app.mjs b/components/apify/apify.app.mjs index 8f9c2e6c3fbd9..b26de6924e5c6 100644 --- a/components/apify/apify.app.mjs +++ b/components/apify/apify.app.mjs @@ -9,11 +9,13 @@ export default { type: "string", label: "Key-Value Store Id", description: "The Id of the key-value store.", - async options({ page }) { + async options({ + page, unnamed = true, + }) { const { items } = await this.listKeyValueStores({ offset: LIMIT * page, limit: LIMIT, - unnamed: true, + unnamed, }); return items.map(({ From e94b4c174b40f344f7c9e42f2d470d72fc646e6b Mon Sep 17 00:00:00 2001 From: oleksandravalko Date: Fri, 28 Nov 2025 12:58:58 +0100 Subject: [PATCH 2/2] fix(apify-get-key-value-store-record) 31: list only named KVS --- components/apify/actions/get-kvs-record/get-kvs-record.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/apify/actions/get-kvs-record/get-kvs-record.mjs b/components/apify/actions/get-kvs-record/get-kvs-record.mjs index 2d22309a28630..9afafa301cf02 100644 --- a/components/apify/actions/get-kvs-record/get-kvs-record.mjs +++ b/components/apify/actions/get-kvs-record/get-kvs-record.mjs @@ -13,6 +13,9 @@ export default { propDefinition: [ apify, "keyValueStoreId", + () => ({ + unnamed: false, + }), ], }, key: {