Skip to content

Commit ce0224b

Browse files
authored
(feat) @pipedream/sdk 1.3.4 — Adds description and component_typeto V1Component (#15904)
1 parent 006c9ee commit ce0224b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-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.4.0] - 2025-03-12
6+
7+
### Changed
8+
9+
- Added `description` and `component_type` to `V1Component`
10+
511
## [1.3.3] - 2025-02-5
612

713
### Changed

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.3.3",
4+
"version": "1.4.0",
55
"description": "Pipedream SDK",
66
"main": "./dist/server.js",
77
"module": "./dist/server.js",

packages/sdk/src/shared/component.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ export type V1Component<T extends ConfigurableProps = any> = { // eslint-disable
9393
key: string;
9494
version: string;
9595
configurable_props: T;
96+
description?: string;
97+
component_type?: string;
9698
};
9799

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

0 commit comments

Comments
 (0)