File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export default {
55 name : "List calls" ,
66 description : "List calls. [See the documentation](https://us-66463.app.gong.io/settings/api/documentation#get-/v2/calls)" ,
77 type : "action" ,
8- version : "0.0.3 " ,
8+ version : "0.0.4 " ,
99 props : {
1010 app,
1111 fromDateTime : {
@@ -22,16 +22,26 @@ export default {
2222 "toDateTime" ,
2323 ] ,
2424 } ,
25+ cursor : {
26+ optional : true ,
27+ type : "string" ,
28+ label : "Cursor" ,
29+ description : "The cursor to start from. This is returned by the previous step" ,
30+ } ,
2531 } ,
2632 run ( { $ : step } ) {
2733 const {
2834 app,
35+ cursor,
2936 ...params
3037 } = this ;
3138
3239 return app . listCalls ( {
3340 step,
34- params,
41+ params : {
42+ ...params ,
43+ cursor,
44+ } ,
3545 summary : ( response ) => `Successfully listed calls with request ID \`${ response . requestId } \`` ,
3646 } ) ;
3747 } ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @pipedream/gong" ,
3- "version" : " 0.3.0 " ,
3+ "version" : " 0.3.1 " ,
44 "description" : " Pipedream Gong Components" ,
55 "main" : " gong.app.mjs" ,
66 "keywords" : [
You can’t perform that action at this time.
0 commit comments