Skip to content

Commit bd8da41

Browse files
authored
feat(sdk): add stash to V1Component type (#17245)
1 parent 19d4e10 commit bd8da41

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

packages/sdk/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Changelog
44

5+
## [1.6.11] - 2025-07-02
6+
7+
### Added
8+
9+
- Added `stash` to `V1Component`
10+
511
## [1.6.10] - 2025-07-01
612

713
### Added

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pipedream/sdk",
33
"type": "module",
4-
"version": "1.6.10",
4+
"version": "1.6.11",
55
"description": "Pipedream SDK",
66
"main": "./dist/server.js",
77
"module": "./dist/server.js",

packages/sdk/src/shared/component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ export type V1Component<T extends ConfigurableProps = any> = { // eslint-disable
234234
configurable_props: T;
235235
description?: string;
236236
component_type?: string;
237+
stash?: "optional" | "required";
237238
};
238239

239240
export type V1DeployedComponent<T extends ConfigurableProps = any> = { // eslint-disable-line @typescript-eslint/no-explicit-any

0 commit comments

Comments
 (0)