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 Oct 3, 2024
1 parent 36ef264 commit a1e5b3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 93 files
+11 −2 apps/api/v2/src/modules/oauth-clients/controllers/oauth-flow/oauth-flow.controller.ts
+2 −0 apps/api/v2/src/modules/oauth-clients/inputs/refresh-token.input.ts
+64 −1 apps/api/v2/src/modules/slots/controllers/slots.controller.ts
+319 −145 apps/api/v2/swagger/documentation.json
+5 −3 apps/web/lib/app-providers-app-dir.tsx
+1 −0 apps/web/lib/d/[link]/[slug]/getServerSideProps.tsx
+2 −0 apps/web/modules/d/[link]/d-type-view.tsx
+11 −3 apps/web/modules/event-types/views/event-types-listing-view.tsx
+2 −1 apps/web/modules/more/more-page-view.tsx
+0 −2 apps/web/playwright/fixtures/users.ts
+8 −4 apps/web/playwright/hash-my-url.e2e.ts
+12 −8 apps/web/playwright/organization/organization-redirection.e2e.ts
+2 −1 apps/web/playwright/signup.e2e.ts
+6 −0 apps/web/public/static/locales/ar/common.json
+6 −0 apps/web/public/static/locales/az/common.json
+6 −0 apps/web/public/static/locales/cs/common.json
+6 −0 apps/web/public/static/locales/da/common.json
+6 −0 apps/web/public/static/locales/de/common.json
+6 −0 apps/web/public/static/locales/en/common.json
+6 −0 apps/web/public/static/locales/es-419/common.json
+6 −0 apps/web/public/static/locales/es/common.json
+6 −0 apps/web/public/static/locales/et/common.json
+6 −0 apps/web/public/static/locales/fr/common.json
+6 −0 apps/web/public/static/locales/he/common.json
+6 −0 apps/web/public/static/locales/hu/common.json
+6 −0 apps/web/public/static/locales/it/common.json
+6 −0 apps/web/public/static/locales/ja/common.json
+6 −0 apps/web/public/static/locales/km/common.json
+7 −1 apps/web/public/static/locales/ko/common.json
+6 −0 apps/web/public/static/locales/nl/common.json
+6 −0 apps/web/public/static/locales/no/common.json
+6 −0 apps/web/public/static/locales/pl/common.json
+6 −0 apps/web/public/static/locales/pt-BR/common.json
+6 −0 apps/web/public/static/locales/pt/common.json
+6 −0 apps/web/public/static/locales/ro/common.json
+6 −0 apps/web/public/static/locales/sr/common.json
+6 −0 apps/web/public/static/locales/sv/common.json
+6 −0 apps/web/public/static/locales/tr/common.json
+6 −0 apps/web/public/static/locales/uk/common.json
+6 −0 apps/web/public/static/locales/vi/common.json
+6 −0 apps/web/public/static/locales/zh-CN/common.json
+6 −0 apps/web/public/static/locales/zh-TW/common.json
+11 −24 apps/web/test/lib/handleChildrenEventTypes.test.ts
+6 −0 i18n.lock
+28 −0 packages/features/auth/lib/hooks/useRedirectToLoginIfUnauthenticated.tsx
+53 −0 packages/features/auth/lib/hooks/useRedirectToOnboardingIfNeeded.tsx
+96 −310 packages/features/bookings/lib/handleNewBooking.ts
+24 −0 packages/features/bookings/lib/handleNewBooking/addVideoCallDataToEvent.ts
+43 −0 packages/features/bookings/lib/handleNewBooking/checkBookingAndDurationLimits.ts
+63 −113 packages/features/bookings/lib/handleNewBooking/createBooking.ts
+49 −0 packages/features/bookings/lib/handleNewBooking/getCustomInputsResponses.ts
+30 −0 packages/features/bookings/lib/handleNewBooking/getLocationValuesForDb.ts
+7 −52 packages/features/bookings/lib/handleNewBooking/getOriginalRescheduledBooking.ts
+0 −2 packages/features/bookings/lib/handleNewBooking/getRequiresConfirmationFlags.ts
+16 −0 packages/features/bookings/lib/handleNewBooking/getSeatedBooking.ts
+32 −0 packages/features/bookings/lib/handleNewBooking/getVideoCallDetails.ts
+89 −0 packages/features/bookings/lib/handleNewBooking/loadAndValidateUsers.ts
+1 −1 packages/features/bookings/lib/handleNewBooking/loadUsers.ts
+5 −8 packages/features/bookings/lib/handleNewBooking/types.ts
+62 −0 packages/features/bookings/lib/handleNewBooking/validateBookingTimeIsNotOutOfBounds.ts
+27 −0 packages/features/bookings/lib/handleNewBooking/validateEventLength.ts
+20 −0 packages/features/bookings/lib/handleNewBooking/validateOriginalRescheduledBooking.ts
+1 −1 packages/features/bookings/lib/handleSeats/reschedule/owner/combineTwoSeatedBookings.ts
+1 −1 packages/features/bookings/lib/handleSeats/reschedule/owner/moveSeatedBookingToNewTimeSlot.ts
+1 −1 packages/features/bookings/lib/handleSeats/types.d.ts
+1 −1 packages/features/calendars/CalendarSwitch.tsx
+6 −18 packages/features/ee/managed-event-types/lib/handleChildrenEventTypes.ts
+14 −0 packages/features/ee/support/lib/intercom/useIntercom.ts
+94 −0 packages/features/eventtypes/components/MultiplePrivateLinksController.tsx
+1 −0 packages/features/eventtypes/components/index.ts
+51 −82 packages/features/eventtypes/components/tabs/advanced/EventAdvancedTab.tsx
+1 −1 packages/features/eventtypes/lib/types.ts
+1 −1 packages/features/instant-meeting/handleInstantMeeting.ts
+18 −1,150 packages/features/shell/Shell.tsx
+342 −0 packages/features/shell/SideBar.tsx
+43 −0 packages/features/shell/TopNav.tsx
+86 −0 packages/features/shell/banners/LayoutBanner.tsx
+47 −0 packages/features/shell/banners/useBanners.ts
+205 −0 packages/features/shell/navigation/Navigation.tsx
+160 −0 packages/features/shell/navigation/NavigationItem.tsx
+10 −0 packages/features/shell/navigation/useShouldDisplayNavigationItem.ts
+14 −0 packages/features/shell/useAppTheme.ts
+111 −0 packages/features/shell/user-dropdown/ProfileDropdown.tsx
+218 −0 packages/features/shell/user-dropdown/UserDropdown.tsx
+1 −1 packages/lib/defaultEvents.ts
+1 −1 packages/lib/generateHashedLink.ts
+53 −0 packages/lib/server/repository/booking.ts
+2 −1 packages/platform/atoms/event-types/hooks/useEventTypeForm.ts
+29 −0 packages/platform/types/slots.ts
+2 −0 packages/prisma/migrations/20240816160101_support_multiple_hashed_links_for_an_event_type/migration.sql
+2 −2 packages/prisma/schema.prisma
+1 −1 packages/trpc/server/routers/viewer/eventTypes/types.ts
+32 −21 packages/trpc/server/routers/viewer/eventTypes/update.handler.ts

0 comments on commit a1e5b3a

Please sign in to comment.