master-zapier-plan-draft/packages/verae-activate/index.js
George Lambert 5925e76c72 Keep-going: tree shares, health flags, CI, compose, timestamp Zapier action
Directory-tree encrypted share mock; /health reports mockVerae/nats;
middleware OpenAPI extended; zappier receipt by jobId; activate Create
Timestamp (local mock or hosted); GitHub Actions test:offline; compose
builds zappier image; seed-demo.mjs.

No Zapier login or live Verae required.
2026-09-09 03:02:08 -04:00

26 lines
770 B
JavaScript

/**
* 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,
},
};