File tree Expand file tree Collapse file tree 4 files changed +397
-8
lines changed Expand file tree Collapse file tree 4 files changed +397
-8
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @pipedream/sdk" ,
3- "version" : " 1.1.6 " ,
3+ "version" : " 1.2.0 " ,
44 "description" : " Pipedream SDK" ,
55 "main" : " dist/server/server/index.js" ,
66 "module" : " dist/server/server/index.js" ,
Original file line number Diff line number Diff line change @@ -108,3 +108,25 @@ export type V1DeployedComponent<T extends ConfigurableProps = any> = { // eslint
108108 name_slug : string ;
109109 callback_observations ?: unknown ;
110110} ;
111+
112+ export type V1EmittedEvent = {
113+ /**
114+ * The event's payload.
115+ */
116+ e : Record < string , any > ; // eslint-disable-line @typescript-eslint/no-explicit-any
117+
118+ /**
119+ * The event's type (set to "emit" currently).
120+ */
121+ k : string ;
122+
123+ /**
124+ * The event's timestamp in epoch milliseconds.
125+ */
126+ ts : number ;
127+
128+ /**
129+ * The event's unique ID.
130+ */
131+ id : string ;
132+ }
You can’t perform that action at this time.
0 commit comments