Skip to content

Commit a7c26a0

Browse files
committed
some adjusts
1 parent b90d7d4 commit a7c26a0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

components/signaturit/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
},
1515
"dependencies": {
1616
"@pipedream/platform": "^3.0.3",
17+
"form-data": "^4.0.1",
1718
"fs": "^0.0.1-security"
1819
}
1920
}

components/signaturit/signaturit.app.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,13 @@ export default {
124124
...opts,
125125
});
126126
},
127-
sendReminder({ signatureRequestId }) {
127+
sendReminder({
128+
signatureRequestId, ...opts
129+
}) {
128130
return this._makeRequest({
129131
method: "POST",
130132
path: `/signatures/${signatureRequestId}/reminder.json`,
133+
...opts,
131134
});
132135
},
133136
listSignatureRequests(opts = {}) {

0 commit comments

Comments
 (0)