Initial import of zappier-edge from zapier monorepo

This commit is contained in:
George Lambert 2026-09-11 14:59:21 -04:00
commit 435de6414f
121 changed files with 19888 additions and 0 deletions

View file

@ -0,0 +1,23 @@
module.exports = {
type: 'custom',
test: (z, bundle) =>
z.request({ url: `${bundle.authData.baseUrl}/v1/status` }).then((r) => r.data),
fields: [
{
key: 'baseUrl',
label: 'API Base URL',
type: 'string',
required: true,
default: 'http://localhost:3000',
helpText: 'Where your Zappier API is running.',
},
{
key: 'apiKey',
label: 'API Key',
type: 'password',
required: true,
helpText: 'Your Zappier customer API key.',
},
],
connectionLabel: '{{bundle.authData.baseUrl}}',
};