Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/emails/src/templates/VerifyEmailChangeEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import type { TFunction } from "i18next";

import { APP_NAME, SENDER_NAME, SUPPORT_MAIL_ADDRESS } from "@calcom/lib/constants";

import { BaseEmailHtml, CallToAction } from "../components";
import { BaseEmailHtml } from "../components/BaseEmailHtml";
import { CallToAction } from "../components/CallToAction";

export type EmailVerifyLink = {
language: TFunction;
Expand Down
3 changes: 2 additions & 1 deletion packages/embeds/embed-react/inline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import ReactDom from "react-dom";

// Because we don't import from @calcom/embed-react, this file isn't able to test if the build is successful or not and thus npm package would work or not correctly.
// There are tests in test/built which verify that the types from built package are correctly generated and exported correctly.
import Cal, { getCalApi, type EmbedEvent } from "./src/index";
import { getCalApi, type EmbedEvent } from "./src/index";
import { Cal } from "./src/Cal";

const api = getCalApi({
namespace: "inline",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { describe, test, expect, vi, beforeEach } from "vitest";
import { WatchlistType } from "@calcom/prisma/enums";

import { WatchlistFeature } from "../lib/facade/WatchlistFeature";
import type { SpanFn } from "../lib/telemetry";
import type { SpanFn } from "../lib/telemetry/types";
import { checkIfEmailIsBlockedInWatchlistController } from "./check-if-email-in-watchlist.controller";

// Mock the DI container
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getWatchlistFeature } from "@calcom/features/di/watchlist/containers/watchlist";

import type { SpanFn } from "../lib/telemetry";
import type { SpanFn } from "../lib/telemetry/types";
import { normalizeEmail } from "../lib/utils/normalization";

interface CheckEmailBlockedParams {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { describe, test, expect, vi, beforeEach } from "vitest";

import { WatchlistType } from "@calcom/prisma/enums";

import type { SpanFn } from "../lib/telemetry";
import type { SpanFn } from "../lib/telemetry/types";
import { checkIfUsersAreBlocked } from "./check-if-users-are-blocked.controller";

// Mock the DI container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { describe, test, expect, vi, beforeEach } from "vitest";

import { WatchlistType, WatchlistAction, WatchlistSource } from "@calcom/prisma/enums";

import type { SpanFn } from "../lib/telemetry";
import type { SpanFn } from "../lib/telemetry/types";
import { listAllSystemEntriesController } from "./list-all-system-entries.controller";

// Mock the DI container
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getWatchlistFeature } from "@calcom/features/di/watchlist/containers/watchlist";

import type { SpanFn } from "../lib/telemetry";
import type { SpanFn } from "../lib/telemetry/types";
import type { WatchlistEntry } from "../lib/types";

interface ListAllSystemEntriesParams {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { DestinationCalendarClassNames } from "../../destination-calendar/DestinationCalendar";
import { DestinationCalendarSettingsPlatformWrapper } from "../../destination-calendar/index";
import { SelectedCalendarsSettingsPlatformWrapper } from "../../selected-calendars/index";
import { DestinationCalendarSettingsPlatformWrapper } from "../../destination-calendar/wrappers/DestinationCalendarSettingsPlatformWrapper";
import { SelectedCalendarsSettingsPlatformWrapper } from "../../selected-calendars/wrappers/SelectedCalendarsSettingsPlatformWrapper";
import type {
CalendarRedirectUrls,
SelectedCalendarsClassNames,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,7 @@ import { IsBoolean, IsOptional, IsString } from "class-validator";
import type { ValidationOptions, ValidatorConstraintInterface } from "class-validator";
import { registerDecorator, validate, ValidatorConstraint } from "class-validator";

import {
PhoneFieldInput_2024_06_14,
AddressFieldInput_2024_06_14,
TextFieldInput_2024_06_14,
NumberFieldInput_2024_06_14,
TextAreaFieldInput_2024_06_14,
SelectFieldInput_2024_06_14,
MultiSelectFieldInput_2024_06_14,
MultiEmailFieldInput_2024_06_14,
CheckboxGroupFieldInput_2024_06_14,
RadioGroupFieldInput_2024_06_14,
BooleanFieldInput_2024_06_14,
NameDefaultFieldInput_2024_06_14,
EmailDefaultFieldInput_2024_06_14,
GuestsDefaultFieldInput_2024_06_14,
NotesDefaultFieldInput_2024_06_14,
RescheduleReasonDefaultFieldInput_2024_06_14,
TitleDefaultFieldInput_2024_06_14,
SplitNameDefaultFieldInput_2024_06_14,
UrlFieldInput_2024_06_14,
} from "../inputs";
import { PhoneFieldInput_2024_06_14, AddressFieldInput_2024_06_14, TextFieldInput_2024_06_14, NumberFieldInput_2024_06_14, TextAreaFieldInput_2024_06_14, SelectFieldInput_2024_06_14, MultiSelectFieldInput_2024_06_14, MultiEmailFieldInput_2024_06_14, CheckboxGroupFieldInput_2024_06_14, RadioGroupFieldInput_2024_06_14, BooleanFieldInput_2024_06_14, NameDefaultFieldInput_2024_06_14, EmailDefaultFieldInput_2024_06_14, GuestsDefaultFieldInput_2024_06_14, NotesDefaultFieldInput_2024_06_14, RescheduleReasonDefaultFieldInput_2024_06_14, TitleDefaultFieldInput_2024_06_14, SplitNameDefaultFieldInput_2024_06_14, UrlFieldInput_2024_06_14 } from "../inputs/booking-fields.input";

export class NameDefaultFieldOutput_2024_06_14 extends NameDefaultFieldInput_2024_06_14 {
@IsBoolean()
Expand Down