get inherentMenuItems()

in marketing-analytics/activation/sheets-based-installer/src/apps_script/6_sheet/sentinel_task_config.js [76:113]


  get inherentMenuItems() {
    return [
      {
        name: 'Update selected config to Firestore',
        method: 'operateSingleRow',
      },
      {
        name: 'Trigger selected task with test parameters',
        method: 'triggerTask',
      },
      { separator: true },
      {
        name: 'Show workflow with latest execution of selected task',
        method: 'showLatestExecution',
      },
      {
        name: 'Show workflow starts with selected task',
        method: 'showWorkflow',
      },
      {
        name: 'Show workflow with latest execution of selected task (debug mode)',
        method: 'debugLatestExecution',
      },
      {
        name: 'Show workflow starts with selected task (debug mode)',
        method: 'debugWorkflow',
      },
      { separator: true },
      { name: 'Update all configs to Firestore', method: 'operateAllRows' },
      {
        name: 'Append all configs from Firestore to Sheets',
        method: 'loadFromFirestore',
      },
      { name: 'Download current sheet as a JSON file', method: 'export' },
      { separator: true },
      { name: 'Reset sheet (will lose monification)', method: 'initialize' },
    ];
  }