- Zapier Document Refresh action (create) added

This commit is contained in:
Josako
2024-12-17 16:40:21 +01:00
parent 53c625599a
commit f7cd58ed2a
9 changed files with 381 additions and 194 deletions

View File

@@ -1,5 +1,6 @@
const authentication = require('./authentication');
const addDocument = require('./creates/add_document');
const refreshDocument = require('./creates/refresh_document'); // Add this line
module.exports = {
// This is just shorthand to reference the installed dependencies you have.
@@ -18,7 +19,8 @@ module.exports = {
// If you want your creates to show up, you better include it here!
creates: {
[addDocument.key]: addDocument
[addDocument.key]: addDocument,
[refreshDocument.key]: refreshDocument,
},
resources: {},