Milestone 1: Add Numbers Zapier app, /v1/add, developer setup guide
packages/verae-activate is pushable with zapier-platform 19.1.0: local Add Numbers (number1+number2=sum) needs no hosted API. zapier-platform validate is clean (0 warnings). zappier POST /v1/add is a free metered endpoint for the optional hosted path. Tests: verae-activate 7/7, zappier 176/176, verae-zapier 5/5, middleware gate 1 11/11. Morning steps: docs/04-activate/SETUP-ZAPIER-DEVELOPER.md Learned: perform runs on Zapier cloud so arithmetic needs no public URL; CLI and zapier-platform-core majors must match; do not mix zapier-sdk.
This commit is contained in:
parent
b4150c8250
commit
b814501441
18 changed files with 1452 additions and 1 deletions
20
packages/verae-activate/index.js
Normal file
20
packages/verae-activate/index.js
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
* 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');
|
||||
|
||||
module.exports = {
|
||||
version: require('./package.json').version,
|
||||
platformVersion: require('zapier-platform-core').version,
|
||||
authentication,
|
||||
creates: {
|
||||
[addNumbers.key]: addNumbers,
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue