
* Add vital integration * Tidy up client_user_id creation * Rename vital app to vitalother to follow name rules * Added env var * App vital reschedule * Fix on app structure and api calls * Implemented user identification from webhook * WIP fix api call and read me * Save vital settings via api * Now saving userVitalSettings and trigger reschedule on selected param * Added translations * Fix type for vitalSettings * Using api to get env vars required for url, fix display of vital settings * Fix hours placeholder, translation not working * Renames vital app * Update seed-app-store.ts * Update package.json * Update yarn.lock * Refactored env variables * Update README.md * Migrates to api_keys * Extracts AppConfiguration * vitalClient fixes * Update index.ts * Update metadata.ts * Update index.ts * Update metadata.ts * Added namespace vital for translations Co-authored-by: Maitham <maithamdib@gmail.com> Co-authored-by: zomars <zomars@me.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
24 lines
992 B
TypeScript
24 lines
992 B
TypeScript
export const apiHandlers = {
|
|
// examplevideo: import("./_example/api"),
|
|
applecalendar: import("./applecalendar/api"),
|
|
caldavcalendar: import("./caldavcalendar/api"),
|
|
googlecalendar: import("./googlecalendar/api"),
|
|
hubspotothercalendar: import("./hubspotothercalendar/api"),
|
|
office365calendar: import("./office365calendar/api"),
|
|
slackmessaging: import("./slackmessaging/api"),
|
|
stripepayment: import("./stripepayment/api"),
|
|
tandemvideo: import("./tandemvideo/api"),
|
|
vital: import("./vital/api"),
|
|
zoomvideo: import("@calcom/zoomvideo/api"),
|
|
office365video: import("@calcom/office365video/api"),
|
|
wipemycalother: import("./wipemycalother/api"),
|
|
jitsivideo: import("./jitsivideo/api"),
|
|
huddle01video: import("./huddle01video/api"),
|
|
metamask: import("./metamask/api"),
|
|
giphy: import("./giphy/api"),
|
|
spacebookingother: import("./spacebooking/api"),
|
|
// @todo Until we use DB slugs everywhere
|
|
zapierother: import("./zapier/api"),
|
|
};
|
|
|
|
export default apiHandlers;
|