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.
20 lines
610 B
JavaScript
20 lines
610 B
JavaScript
import packageJson from './package.json' with { type: 'json' };
|
|
import zapier from 'zapier-platform-core';
|
|
|
|
export default {
|
|
// This is just shorthand to reference the installed dependencies you have.
|
|
// Zapier will need to know these before we can upload.
|
|
version: packageJson.version,
|
|
platformVersion: zapier.version,
|
|
|
|
// If you want your trigger to show up, you better include it here!
|
|
triggers: {},
|
|
|
|
// 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: {},
|
|
|
|
resources: {},
|
|
};
|