Initial import of verae-activate from zapier monorepo
This commit is contained in:
commit
0166c80bbf
12 changed files with 1363 additions and 0 deletions
26
index.js
Normal file
26
index.js
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* Verae Time Zapier app — activate-now definition.
|
||||
*
|
||||
* Morning path: connect with empty API fields, run Add Numbers.
|
||||
* Later: same app grows timestamp creates against middleware/zappier.
|
||||
*
|
||||
* @module index
|
||||
*/
|
||||
|
||||
const authentication = require('./authentication');
|
||||
const addNumbers = require('./creates/add_numbers');
|
||||
const echo = require('./creates/echo');
|
||||
const sha256Hash = require('./creates/sha256');
|
||||
const createTimestamp = require('./creates/timestamp');
|
||||
|
||||
module.exports = {
|
||||
version: require('./package.json').version,
|
||||
platformVersion: require('zapier-platform-core').version,
|
||||
authentication,
|
||||
creates: {
|
||||
[addNumbers.key]: addNumbers,
|
||||
[echo.key]: echo,
|
||||
[sha256Hash.key]: sha256Hash,
|
||||
[createTimestamp.key]: createTimestamp,
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue