zapier-platform-cli 15.16.0 → 15.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,10 @@ module.exports = {
4
4
  analytics: require('./commands/analytics'),
5
5
  apps: true,
6
6
  build: require('./commands/build'),
7
+ canary: true,
8
+ 'canary:create': require('./commands/canary/create'),
9
+ 'canary:delete': require('./commands/canary/delete'),
10
+ 'canary:list': require('./commands/canary/list'),
7
11
  cache: true,
8
12
  'cache:clear': require('./commands/cache/clear'),
9
13
  convert: require('./commands/convert'),
@@ -20,6 +24,7 @@ module.exports = {
20
24
  jobs: require('./commands/jobs'),
21
25
  init: require('./commands/init'),
22
26
  integrations: require('./commands/integrations'),
27
+ invoke: require('./commands/invoke'),
23
28
  link: require('./commands/link'),
24
29
  login: require('./commands/login'),
25
30
  logs: require('./commands/logs'),
@@ -251,6 +251,7 @@ const renderIndex = async (appDefinition) => {
251
251
  triggers: 'Trigger',
252
252
  creates: 'Create',
253
253
  searches: 'Search',
254
+ bulkReads: 'BulkRead',
254
255
  },
255
256
  (importNameSuffix, stepType) => {
256
257
  _.each(appDefinition[stepType], (definition, key) => {
@@ -380,7 +381,7 @@ const convertApp = async (appInfo, appDefinition, newAppDir) => {
380
381
 
381
382
  const promises = [];
382
383
 
383
- ['triggers', 'creates', 'searches'].forEach((stepType) => {
384
+ ['triggers', 'creates', 'searches', 'bulkReads'].forEach((stepType) => {
384
385
  _.each(appDefinition[stepType], (definition, key) => {
385
386
  promises.push(
386
387
  writeStep(stepType, definition, key, newAppDir),