Around remaining blockers (Zapier login, live Verae): generate PDF receipts without extra deps; AES-256-GCM object store with tenant isolation and share tokens; scripts/nats-tunnel.sh to NS1; SHA256 Hash Text local Zapier action; scripts/test-offline.sh for the no-login suite. Learned: other-tenant object GET is 403; share token is the mock unwrap path.
24 lines
670 B
JavaScript
24 lines
670 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');
|
|
|
|
module.exports = {
|
|
version: require('./package.json').version,
|
|
platformVersion: require('zapier-platform-core').version,
|
|
authentication,
|
|
creates: {
|
|
[addNumbers.key]: addNumbers,
|
|
[echo.key]: echo,
|
|
[sha256Hash.key]: sha256Hash,
|
|
},
|
|
};
|