Skip to content

Commit 9c5d2c1

Browse files
committed
(feat) @pipedream/sdk 1.3.4 — Adds description and component_type to V1Component
1 parent 006c9ee commit 9c5d2c1

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.3.4] - 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.3.4",
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
@@ -90,6 +90,8 @@ export type ConfiguredProps<T extends ConfigurableProps> = {
9090
// as returned by API (configurable_props_json from `afterSave`)
9191
export type V1Component<T extends ConfigurableProps = any> = { // eslint-disable-line @typescript-eslint/no-explicit-any
9292
name: string;
93+
description: string;
94+
component_type: string;
9395
key: string;
9496
version: string;
9597
configurable_props: T;

0 commit comments

Comments
 (0)