diff --git a/components/gong/actions/list-calls/list-calls.mjs b/components/gong/actions/list-calls/list-calls.mjs index 544547add7ab4..d72b67a8f2dfa 100644 --- a/components/gong/actions/list-calls/list-calls.mjs +++ b/components/gong/actions/list-calls/list-calls.mjs @@ -5,7 +5,7 @@ export default { name: "List calls", description: "List calls. [See the documentation](https://us-66463.app.gong.io/settings/api/documentation#get-/v2/calls)", type: "action", - version: "0.0.3", + version: "0.0.4", props: { app, fromDateTime: { @@ -22,16 +22,26 @@ export default { "toDateTime", ], }, + cursor: { + optional: true, + type: "string", + label: "Cursor", + description: "The cursor to start from. This is returned by the previous step", + }, }, run({ $: step }) { const { app, + cursor, ...params } = this; return app.listCalls({ step, - params, + params: { + ...params, + cursor, + }, summary: (response) => `Successfully listed calls with request ID \`${response.requestId}\``, }); }, diff --git a/components/gong/package.json b/components/gong/package.json index 1c039a6a039ef..e35e1d3e7b62d 100644 --- a/components/gong/package.json +++ b/components/gong/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/gong", - "version": "0.3.0", + "version": "0.3.1", "description": "Pipedream Gong Components", "main": "gong.app.mjs", "keywords": [