
* 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>
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
// import * as example from "./_example";
|
|
import * as applecalendar from "./applecalendar";
|
|
import * as caldavcalendar from "./caldavcalendar";
|
|
import * as dailyvideo from "./dailyvideo";
|
|
import * as giphy from "./giphy";
|
|
import * as googlecalendar from "./googlecalendar";
|
|
import * as googlevideo from "./googlevideo";
|
|
import * as hubspotothercalendar from "./hubspotothercalendar";
|
|
import * as huddle01video from "./huddle01video";
|
|
import * as jitsivideo from "./jitsivideo";
|
|
import * as metamask from "./metamask";
|
|
import * as office365calendar from "./office365calendar";
|
|
import * as office365video from "./office365video";
|
|
import * as slackmessaging from "./slackmessaging";
|
|
import * as spacebooking from "./spacebooking";
|
|
import * as stripepayment from "./stripepayment";
|
|
import * as tandemvideo from "./tandemvideo";
|
|
import * as vital from "./vital";
|
|
import * as wipemycalother from "./wipemycalother";
|
|
import * as zapier from "./zapier";
|
|
import * as zoomvideo from "./zoomvideo";
|
|
|
|
const appStore = {
|
|
// example,
|
|
applecalendar,
|
|
caldavcalendar,
|
|
dailyvideo,
|
|
googlecalendar,
|
|
googlevideo,
|
|
hubspotothercalendar,
|
|
huddle01video,
|
|
jitsivideo,
|
|
office365calendar,
|
|
office365video,
|
|
slackmessaging,
|
|
stripepayment,
|
|
spacebooking,
|
|
tandemvideo,
|
|
vital,
|
|
zoomvideo,
|
|
wipemycalother,
|
|
metamask,
|
|
giphy,
|
|
zapier,
|
|
};
|
|
|
|
export default appStore;
|