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.
33 lines
919 B
JavaScript
33 lines
919 B
JavaScript
/* eslint-disable camelcase */
|
|
const authentication = require('./authentication');
|
|
const middleware = require('./middleware');
|
|
const dynamic_dropdowns = require('./dynamic_dropdowns');
|
|
const creates = require('./creates');
|
|
|
|
module.exports = {
|
|
// 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,
|
|
|
|
authentication,
|
|
|
|
beforeRequest: [...middleware.befores],
|
|
|
|
afterResponse: [...middleware.afters],
|
|
|
|
// If you want your trigger to show up, you better include it here!
|
|
triggers: {
|
|
...dynamic_dropdowns,
|
|
},
|
|
|
|
// If you want your searches to show up, you better include it here!
|
|
searches: {},
|
|
|
|
// If you want your creates to show up, you better include it here!
|
|
creates: {
|
|
...creates,
|
|
},
|
|
|
|
resources: {},
|
|
};
|