Skip to content

Commit

Permalink
Auto updated submodule references
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 1, 2024
1 parent 9c7b2a9 commit 0735b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 99 files
+4 −0 .env.example
+2 −0 apps/api/v2/src/modules/atoms/atoms.module.ts
+17 −0 apps/api/v2/src/modules/atoms/atoms.repository.ts
+12 −0 apps/api/v2/src/modules/atoms/controllers/atoms.controller.ts
+43 −0 apps/api/v2/src/modules/atoms/services/event-types-atom.service.ts
+30 −14 apps/web/components/dialog/ReassignDialog.tsx
+1 −1 apps/web/components/dialog/RerouteDialog.tsx
+1 −1 apps/web/package.json
+2 −6 apps/web/playwright/out-of-office.e2e.ts
+14 −0 apps/web/public/static/locales/ar/common.json
+14 −0 apps/web/public/static/locales/az/common.json
+14 −0 apps/web/public/static/locales/cs/common.json
+14 −0 apps/web/public/static/locales/da/common.json
+14 −0 apps/web/public/static/locales/de/common.json
+14 −0 apps/web/public/static/locales/en/common.json
+14 −0 apps/web/public/static/locales/es-419/common.json
+14 −0 apps/web/public/static/locales/es/common.json
+14 −0 apps/web/public/static/locales/et/common.json
+14 −0 apps/web/public/static/locales/fr/common.json
+14 −0 apps/web/public/static/locales/he/common.json
+14 −0 apps/web/public/static/locales/hu/common.json
+14 −0 apps/web/public/static/locales/it/common.json
+14 −0 apps/web/public/static/locales/ja/common.json
+14 −0 apps/web/public/static/locales/km/common.json
+14 −0 apps/web/public/static/locales/ko/common.json
+14 −0 apps/web/public/static/locales/nl/common.json
+14 −0 apps/web/public/static/locales/no/common.json
+14 −0 apps/web/public/static/locales/pl/common.json
+14 −0 apps/web/public/static/locales/pt-BR/common.json
+14 −0 apps/web/public/static/locales/pt/common.json
+14 −0 apps/web/public/static/locales/ro/common.json
+14 −0 apps/web/public/static/locales/sr/common.json
+14 −0 apps/web/public/static/locales/sv/common.json
+14 −0 apps/web/public/static/locales/tr/common.json
+14 −0 apps/web/public/static/locales/uk/common.json
+14 −0 apps/web/public/static/locales/vi/common.json
+14 −0 apps/web/public/static/locales/zh-CN/common.json
+14 −0 apps/web/public/static/locales/zh-TW/common.json
+1 −0 apps/web/sentry.server.config.ts
+4 −0 apps/web/test-results/.last-run.json
+14 −0 i18n.lock
+7 −2 packages/app-store/huddle01video/lib/VideoApiAdapter.ts
+0 −18 packages/app-store/huddle01video/utils/storage.ts
+2 −1 packages/app-store/routing-forms/TODO.md
+297 −0 packages/app-store/routing-forms/__tests__/TestFormDialog.test.tsx
+113 −59 packages/app-store/routing-forms/__tests__/jsonLogicToPrisma.test.ts
+268 −116 packages/app-store/routing-forms/components/SingleForm.tsx
+4 −4 packages/app-store/routing-forms/components/getServerSidePropsSingleForm.ts
+75 −27 packages/app-store/routing-forms/jsonLogicToPrisma.ts
+214 −120 packages/app-store/routing-forms/lib/__tests__/findTeamMembersMatchingAttributeLogicOfRoute.test.ts
+480 −0 packages/app-store/routing-forms/lib/findTeamMembersMatchingAttributeLogicOfRoute.ts
+4 −6 packages/app-store/routing-forms/lib/raqbUtils.ts
+2 −2 packages/app-store/routing-forms/pages/form-edit/[...appPages].tsx
+2 −4 packages/app-store/routing-forms/pages/reporting/[...appPages].tsx
+222 −82 packages/app-store/routing-forms/pages/route-builder/[...appPages].tsx
+3 −1 packages/app-store/routing-forms/playwright/tests/basic.e2e.ts
+14 −11 packages/app-store/routing-forms/trpc/findTeamMembersMatchingAttributeLogic.handler.ts
+3 −1 packages/app-store/routing-forms/trpc/findTeamMembersMatchingAttributeLogic.schema.ts
+22 −6 packages/app-store/routing-forms/trpc/formMutation.handler.ts
+11 −10 packages/app-store/routing-forms/trpc/response.handler.ts
+1 −318 packages/app-store/routing-forms/trpc/utils.ts
+10 −0 packages/app-store/routing-forms/zod.ts
+22 −0 packages/app-store/salesforce/components/EventTypeAppCardInterface.tsx
+79 −3 packages/app-store/salesforce/lib/CrmService.ts
+2 −0 packages/app-store/salesforce/zod.ts
+7 −0 packages/core/crmManager/crmManager.ts
+29 −12 packages/features/bookings/components/PeopleFilter.tsx
+1 −1 packages/features/bookings/components/event-meta/Duration.tsx
+2 −0 packages/features/bookings/lib/handleNewBooking/ensureAvailableUsers.ts
+2 −0 packages/features/bookings/lib/handleNewBooking/getEventTypesFromDB.ts
+95 −0 packages/features/bookings/lib/handleNewBooking/test/booking-limits.test.ts
+101 −66 packages/features/ee/payments/components/Payment.tsx
+2 −62 packages/features/ee/payments/pages/payment.tsx
+3 −0 packages/features/ee/round-robin/roundRobinManualReassignment.ts
+7 −1 packages/features/handleMarkNoShow.ts
+85 −0 packages/features/noShow/handleSendingAttendeeNoShowDataToApps.ts
+2 −0 packages/features/noShow/noShowEnabledApps.ts
+75 −23 packages/features/settings/outOfOffice/CreateOrEditOutOfOfficeModal.tsx
+1 −0 packages/lib/test/builder.ts
+4 −1 packages/platform/atoms/booker/BookerPlatformWrapper.tsx
+37 −0 packages/platform/atoms/event-types/hooks/useAtomEventTypePaymentInfo.ts
+1 −0 packages/platform/atoms/event-types/hooks/usePlatformTabsNavigations.tsx
+151 −0 packages/platform/atoms/event-types/payments/PaymentForm.tsx
+131 −0 packages/platform/atoms/event-types/payments/StripePaymentForm.tsx
+1 −0 packages/platform/atoms/index.ts
+5 −1 packages/platform/examples/base/src/pages/booking.tsx
+30 −0 packages/platform/examples/base/src/pages/payment/[paymentUid].tsx
+5 −0 packages/platform/libraries/index.ts
+5 −0 packages/prisma/migrations/20241031084229_add_reassign_by_column_to_booking/migration.sql
+3 −0 packages/prisma/schema.prisma
+64 −0 packages/prisma/selects/payment.ts
+2 −0 packages/trpc/server/routers/viewer/bookings/get.handler.ts
+85 −33 packages/trpc/server/routers/viewer/teams/legacyListMembers.handler.ts
+3 −0 packages/trpc/server/routers/viewer/teams/legacyListMembers.schema.ts
+1 −0 packages/trpc/server/routers/viewer/teams/roundRobin/roundRobinManualReassign.handler.ts
+4 −0 packages/types/CrmService.d.ts
+1 −1 packages/ui/components/dialog/ConfirmationDialogContent.tsx
+1 −0 turbo.json
+2 −2 vitest.workspace.ts

0 comments on commit 0735b66

Please sign in to comment.