zapier-platform-cli
Version:
The CLI for apps in the Zapier Developer Platform.
14 lines (13 loc) • 310 B
JavaScript
const Recipe = {
// `key` is the unique identifier the Zapier backend references
key: 'recipe',
// `noun` is the user-friendly name displayed in the Zapier UI
noun: 'Recipe',
// `list` and `create` are just a couple of the methods you can define
list: {
//...
},
create: {
//...
}
};