master-zapier-plan-draft/vendor/zapier-platform/example-apps/github/index.js
George Lambert b4150c8250 Milestone 0: import zappier billing, Verae middleware, and Zapier research
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.
2026-09-09 02:37:36 -04:00

41 lines
1.2 KiB
JavaScript

const repoTrigger = require('./triggers/repo');
const issueCreate = require('./creates/issue');
const issueTrigger = require('./triggers/issue');
const {
config: authentication,
befores = [],
afters = [],
} = require('./authentication');
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,
authentication,
// beforeRequest & afterResponse are optional hooks into the provided HTTP client
beforeRequest: [...befores],
afterResponse: [...afters],
// If you want to define optional resources to simplify creation of triggers, searches, creates - do that here!
resources: {},
// If you want your trigger to show up, you better include it here!
triggers: {
[repoTrigger.key]: repoTrigger,
[issueTrigger.key]: issueTrigger,
},
// 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: {
[issueCreate.key]: issueCreate,
},
};
// Finally, export the app.
module.exports = App;