File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 22
33# Changelog
44
5+ ## [ 1.5.0] - 2025-04-08
6+
7+ ### Added
8+
9+ - Added support for the ` query ` option to the ` configureComponent ` method,
10+ enabling API-based search using the specified query.
11+
512## [ 1.4.0] - 2025-03-12
613
714### Changed
Original file line number Diff line number Diff line change 11{
22 "name" : " @pipedream/sdk" ,
33 "type" : " module" ,
4- "version" : " 1.4 .0" ,
4+ "version" : " 1.5 .0" ,
55 "description" : " Pipedream SDK" ,
66 "main" : " ./dist/server.js" ,
77 "module" : " ./dist/server.js" ,
Original file line number Diff line number Diff line change @@ -394,6 +394,10 @@ export type ConfigureComponentOpts = ExternalUserId & {
394394 */
395395 dynamicPropsId ?: string ;
396396
397+ /**
398+ * A string with the user input if the prop has the useQuery property set to
399+ * true. Use with APIs that return items based on a query or search parameter.
400+ */
397401 query ?: string ;
398402
399403 /**
@@ -1228,6 +1232,7 @@ export abstract class BaseClient {
12281232 dynamic_props_id : opts . dynamicPropsId ,
12291233 page : opts . page ,
12301234 prev_context : opts . prevContext ,
1235+ query : opts . query ,
12311236 } ;
12321237 return this . makeConnectRequest < ConfigureComponentResponse > ( "/components/configure" , {
12331238 method : "POST" ,
You can’t perform that action at this time.
0 commit comments