Compose-ready workspace: packages/zappier (rate card, portal, Stripe), packages/verae-zapier-middleware (timestamp + NATS), packages/verae-zapier (CLI app), vendor/zapier-platform, and research/zapier vendor corpus. Gate 0 structure checks pass. Product code and research are not yet wired.
17 lines
536 B
JavaScript
17 lines
536 B
JavaScript
const prediction = require('./creates/prediction');
|
|
|
|
// Now we can roll up all our behaviors in an App.
|
|
const App = {
|
|
// This is just shorthand to reference the installed dependencies you have. Zapier will
|
|
// need to know these before we can upload
|
|
version: require('./package.json').version,
|
|
platformVersion: require('zapier-platform-core').version,
|
|
|
|
// If you want your creates to show up, you better include it here!
|
|
creates: {
|
|
[prediction.key]: prediction,
|
|
},
|
|
};
|
|
|
|
// Finally, export the app.
|
|
module.exports = App;
|