Skip to content

Commit b52e6af

Browse files
jocarinojoaojoaocoformjcortesmichelle0927
authored andcommitted
Merging pull request PipedreamHQ#18359
* fix: pagination prop and params struct * fix: no need for paginate here * chore: update version * chore: cleanup * chore: update package * feat: allow raw response * chore: bump package * fix: buffer response instead * Update components/google_drive/actions/download-file/download-file.mjs Co-authored-by: Jorge Cortes <[email protected]> * versions * pnpm-lock.yaml * pnpm-lock.yaml * pnpm-lock.yaml * feat: add content selector * chore: bump package * fix: comments * chore: bump versions * chore: fix versions * fixes: QA fixes * feat: add cursor to req * package.json --------- Co-authored-by: joao <[email protected]> Co-authored-by: joaocoform <[email protected]> Co-authored-by: Jorge Cortes <[email protected]> Co-authored-by: Michelle Bergeron <[email protected]> Co-authored-by: Luan Cazarine <[email protected]>
1 parent 185b2cd commit b52e6af

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

components/gong/actions/list-calls/list-calls.mjs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff 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
},

components/gong/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": [

0 commit comments

Comments
 (0)