
* Moves locations to App Store and Core * LocationType fixes * Update App.d.ts * Re-add Google Meet * Moves location labels to the app store * Renames labels to locationLabels * Update utils.ts Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
19 lines
593 B
TypeScript
19 lines
593 B
TypeScript
export enum DefaultLocationType {
|
|
InPerson = "inPerson",
|
|
Phone = "phone",
|
|
Link = "link",
|
|
}
|
|
|
|
/** If your App has a location option, add it here */
|
|
export enum AppStoreLocationType {
|
|
GoogleMeet = "integrations:google:meet",
|
|
Zoom = "integrations:zoom",
|
|
Daily = "integrations:daily",
|
|
Jitsi = "integrations:jitsi",
|
|
Huddle01 = "integrations:huddle01",
|
|
Tandem = "integrations:tandem",
|
|
Teams = "integrations:office365_video",
|
|
}
|
|
|
|
export const LocationType = { ...DefaultLocationType, ...AppStoreLocationType };
|
|
export type LocationType = DefaultLocationType | AppStoreLocationType;
|