-
Notifications
You must be signed in to change notification settings - Fork 12k
fix: resolve circular dependencies in app-store package #23535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
3ab23a9
33d0dcf
568ac16
c02d316
7290c48
4aee884
142e57b
2001c3c
b6759d9
d9b36f8
cbf3ea6
ed488f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,12 @@ | ||
| import type { AppCategories } from "@prisma/client"; | ||
|
|
||
| export const MeetLocationType = "integrations:google:meet"; | ||
|
|
||
| export const MSTeamsLocationType = "integrations:office365_video"; | ||
|
|
||
| export const defaultVideoAppCategories: AppCategories[] = [ | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Having this in |
||
| "messaging", | ||
| "conferencing", | ||
| // Legacy name for conferencing | ||
| "video", | ||
| ]; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,6 @@ import { TRPCError } from "@trpc/server"; | |
| import { createFallbackRoute } from "../lib/createFallbackRoute"; | ||
| import { getSerializableForm } from "../lib/getSerializableForm"; | ||
| import { isFallbackRoute } from "../lib/isFallbackRoute"; | ||
| import { isFormCreateEditAllowed } from "../lib/isFormCreateEditAllowed"; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not used in file |
||
| import isRouter from "../lib/isRouter"; | ||
| import isRouterLinkedField from "../lib/isRouterLinkedField"; | ||
| import type { SerializableForm } from "../types/types"; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,8 +3,6 @@ import type { PrismaClient } from "@calcom/prisma"; | |
| import { MembershipRole } from "@calcom/prisma/enums"; | ||
| import type { TrpcSessionUser } from "@calcom/trpc/server/types"; | ||
|
|
||
| import { TRPCError } from "@trpc/server"; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not used in file |
||
|
|
||
| import { getSerializableForm } from "../lib/getSerializableForm"; | ||
| import type { TFormQueryInputSchema } from "./formQuery.schema"; | ||
| import { checkPermissionOnExistingRoutingForm } from "./permissions"; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.