Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
7971dad
fix: pagination prop and params struct
Jun 3, 2025
0eaba8e
fix: no need for paginate here
Jun 3, 2025
330430e
chore: update version
Jun 3, 2025
3d6802e
Merge branch 'master' into master
jocarino Jun 3, 2025
379e23d
chore: cleanup
Jun 4, 2025
6f320c1
chore: update package
joaocoform Jun 17, 2025
39e9dfe
Merge remote-tracking branch 'upstream/master'
jocarino Jun 27, 2025
a051253
feat: allow raw response
jocarino Jun 30, 2025
77b2e13
chore: bump package
jocarino Jun 30, 2025
05d29c5
fix: buffer response instead
jocarino Jul 1, 2025
0303c22
Update components/google_drive/actions/download-file/download-file.mjs
jocarino Jul 1, 2025
a9a743d
Merge remote-tracking branch 'upstream/master'
jocarino Jul 3, 2025
7a7cb53
Merge branches 'master' and 'master' of github-personal:jocarino/pipe…
jocarino Jul 3, 2025
8bedd60
versions
michelle0927 Jul 3, 2025
5e2888c
pnpm-lock.yaml
michelle0927 Jul 3, 2025
033fb6d
pnpm-lock.yaml
michelle0927 Jul 3, 2025
8412b56
Merge remote-tracking branch 'upstream/master'
michelle0927 Jul 3, 2025
3fa1060
pnpm-lock.yaml
michelle0927 Jul 3, 2025
e08c027
Merge remote-tracking branch 'upstream/master'
jocarino Aug 15, 2025
63c13d8
feat: add content selector
jocarino Aug 18, 2025
5cd0755
Merge branch 'master' of github-personal:jocarino/pipedream
jocarino Aug 18, 2025
be9cca9
Merge remote-tracking branch 'upstream/master'
jocarino Aug 18, 2025
066dae1
chore: bump package
jocarino Aug 18, 2025
700c9eb
Merge branch 'master' into master
luancazarine Aug 18, 2025
ef77de5
fix: comments
jocarino Aug 19, 2025
8581a8f
Merge branch 'master' of github-personal:jocarino/pipedream
jocarino Aug 19, 2025
78f78e2
Merge remote-tracking branch 'upstream/master'
jocarino Aug 19, 2025
ec8d317
chore: bump versions
jocarino Aug 19, 2025
aa2aa24
chore: fix versions
jocarino Aug 19, 2025
5de5e9e
fixes: QA fixes
jocarino Aug 21, 2025
d673426
Merge remote-tracking branch 'upstream/master'
jocarino Aug 21, 2025
d1e6e3b
Merge remote-tracking branch 'upstream/master'
jocarino Sep 12, 2025
7f32907
feat: add cursor to req
jocarino Sep 12, 2025
307ae04
Merge branch 'master' into master
jocarino Sep 12, 2025
6677182
package.json
michelle0927 Sep 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions components/gong/actions/list-calls/list-calls.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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}\``,
});
},
Expand Down
2 changes: 1 addition & 1 deletion components/gong/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/gong",
"version": "0.3.0",
"version": "0.3.1",
"description": "Pipedream Gong Components",
"main": "gong.app.mjs",
"keywords": [
Expand Down
Loading