* Adds available apps * Adds App Model * WIP * Create meta mask app folder * Add description and images * Remove credential from installed apps page * Updates seeder script * Seeder fixes * lowercase categories * Upgrades prisma * WIP * WIP * Hopefully fixes circular deps * Type fixes * Fixes seeder * Adds migration to connect Credentials to Apps * Updates app store callbacks * Updates google credentials * Uses dirName from DB * Type fixes * Update reschedule.ts * Seeder fixes * Fixes categories listing * Update index.ts * Update schema.prisma * Updates dependencies * Renames giphy app * Uses dynamic imports for app metadata * Fixes credentials error * Uses dynamic import for api handlers * Dynamic import fixes * Allows for simple folder names in app store * Remove video adaptor * Squashes app migrations * seeder fixes * Renames to metamask * Updates metamask metadata * Fixes dyamic imports * Remove comments * Create migration.sql Co-authored-by: zomars <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { metadata as applecalendar } from "./applecalendar/_metadata";
 | 
						|
import { metadata as caldavcalendar } from "./caldavcalendar/_metadata";
 | 
						|
import { metadata as dailyvideo } from "./dailyvideo/_metadata";
 | 
						|
import { metadata as giphy } from "./giphy/_metadata";
 | 
						|
import { metadata as googlecalendar } from "./googlecalendar/_metadata";
 | 
						|
import { metadata as googlevideo } from "./googlevideo/_metadata";
 | 
						|
import { metadata as hubspotothercalendar } from "./hubspotothercalendar/_metadata";
 | 
						|
import { metadata as huddle01video } from "./huddle01video/_metadata";
 | 
						|
import { metadata as jitsivideo } from "./jitsivideo/_metadata";
 | 
						|
import { metadata as metamask } from "./metamask/_metadata";
 | 
						|
import { metadata as office365calendar } from "./office365calendar/_metadata";
 | 
						|
import { metadata as office365video } from "./office365video/_metadata";
 | 
						|
import { metadata as slackmessaging } from "./slackmessaging/_metadata";
 | 
						|
import { metadata as stripepayment } from "./stripepayment/_metadata";
 | 
						|
import { metadata as tandemvideo } from "./tandemvideo/_metadata";
 | 
						|
import { metadata as wipemycalother } from "./wipemycalother/_metadata";
 | 
						|
import { metadata as zoomvideo } from "./zoomvideo/_metadata";
 | 
						|
 | 
						|
export const appStoreMetadata = {
 | 
						|
  applecalendar,
 | 
						|
  caldavcalendar,
 | 
						|
  dailyvideo,
 | 
						|
  googlecalendar,
 | 
						|
  googlevideo,
 | 
						|
  hubspotothercalendar,
 | 
						|
  huddle01video,
 | 
						|
  jitsivideo,
 | 
						|
  office365calendar,
 | 
						|
  office365video,
 | 
						|
  slackmessaging,
 | 
						|
  stripepayment,
 | 
						|
  tandemvideo,
 | 
						|
  zoomvideo,
 | 
						|
  wipemycalother,
 | 
						|
  metamask,
 | 
						|
  giphy,
 | 
						|
};
 | 
						|
 | 
						|
export default appStoreMetadata;
 |