
* create basic app structure * add zapierSubscription model to prisma.schema * change column name triggerEvent to lower case * add zapier functionality + enpoints + adjust prisma.schema * add subscriptionType + refactor code * add app store information * create setup page to generate api key * clean code * add copy functionality in setup page * clean code * add apiKeyType and delte key when uninstalled or new key generated * clean code * use Promise.all * only approve zapier api key * clean code * fix findValidApiKey for api keys that don't expire * fix migrations * clean code * small fixes * add i18n * add README.md file * add setup guide to README.md * fix yarn.lock * Renames zapierother to zapier * Typo * Updates package name * Rename fixes * Adds zapier to the App Store seeder * Adds missing zapier to apiHandlers * Adds credential relationship to App * Rename fixes * Allows tailwind to pick up custom app-store components * Consolidates zapier_setup_instructions * Webhook fixes * Uses app relationship instead of custom type * Refactors sendPayload to accept webhook object Instead of individual parameters * refactoring * Removes unused zapier check * Update cancel.ts * Refactoring * Removes example comments * Update InstallAppButton.tsx * Type fixes * E2E fixes * Deletes all user zapier webhooks on integration removal Co-authored-by: CarinaWolli <wollencarina@gmail.com> Co-authored-by: zomars <zomars@me.com>
41 lines
1.6 KiB
TypeScript
41 lines
1.6 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 zapier } from "./zapier/_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,
|
|
zapier,
|
|
};
|
|
|
|
export default appStoreMetadata;
|