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 12, 2024
1 parent 25fc867 commit 765b10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 88 files
+2 −0 apps/web/components/PageWrapper.tsx
+2 −0 apps/web/components/PageWrapperAppDir.tsx
+129 −12 apps/web/lib/team/[slug]/[type]/getServerSideProps.tsx
+17 −2 apps/web/modules/bookings/views/bookings-single-view.tsx
+1 −1 apps/web/package.json
+30 −0 apps/web/pages/403.tsx
+ apps/web/playwright/icons.e2e.ts-snapshots/icons--calcom-web-linux.png
+4 −0 apps/web/public/icons/sprite.svg
+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
+16 −1 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
+6 −0 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
+1 −1 docs/developing/guides/automation/webhooks.mdx
+13 −6 docs/platform/atoms/apple-calendar-connect.mdx
+4 −4 docs/platform/atoms/availability-settings.mdx
+4 −4 docs/platform/atoms/booker.mdx
+3 −3 docs/platform/atoms/calendar-settings.mdx
+5 −5 docs/platform/atoms/event-type.mdx
+6 −6 docs/platform/atoms/google-calendar-connect.mdx
+6 −6 docs/platform/atoms/outlook-calendar-connect.mdx
+2 −2 docs/platform/atoms/payment-form.mdx
+1 −0 docs/platform/booking-redirects.mdx
+6 −0 i18n.lock
+0 −1 packages/app-store/googlecalendar/api/callback.ts
+14 −0 packages/app-store/routing-forms/appBookingFormHandler.ts
+5 −0 packages/app-store/routing-forms/appComponents.ts
+5 −0 packages/app-store/routing-forms/appDataSchemas.ts
+29 −0 packages/app-store/routing-forms/components/DynamicAppComponent.tsx
+4 −1 packages/app-store/routing-forms/components/getServerSidePropsSingleForm.ts
+1 −0 packages/app-store/routing-forms/lib/constants.ts
+2 −0 packages/app-store/routing-forms/lib/enabledApps.ts
+26 −0 packages/app-store/routing-forms/lib/getEventTypeAppMetadata.ts
+59 −73 packages/app-store/routing-forms/pages/route-builder/[...appPages].tsx
+22 −2 packages/app-store/routing-forms/pages/routing-link/getUrlSearchParamsToForward.ts
+8 −6 packages/app-store/routing-forms/playwright/tests/basic.e2e.ts
+5 −1 packages/app-store/routing-forms/trpc/report.handler.ts
+25 −0 packages/app-store/routing-forms/types/types.d.ts
+12 −5 packages/app-store/routing-forms/zod.ts
+152 −0 packages/app-store/salesforce/components/RoutingFormOptions.tsx
+45 −5 packages/app-store/salesforce/lib/CrmService.ts
+40 −0 packages/app-store/salesforce/lib/routingFormBookingFormHandler.ts
+7 −0 packages/app-store/salesforce/zod.ts
+1 −1 packages/features/bookings/lib/getBookingResponsesSchema.ts
+47 −0 packages/features/ee/organizations/pages/settings/attributes/DeleteAttributeModal.tsx
+22 −20 packages/features/ee/organizations/pages/settings/attributes/attributes-list-view.tsx
+3 −8 packages/features/ee/workflows/components/WorkflowStepContainer.tsx
+26 −2 packages/features/eventtypes/lib/getPublicEvent.ts
+6 −6 packages/features/settings/layouts/SettingsLayout.tsx
+6 −6 packages/features/shell/Shell.tsx
+0 −2 packages/lib/server/repository/credential.ts
+3 −2 packages/lib/server/repository/event.ts
+34 −0 packages/lib/server/service/eventType.ts
+0 −1 packages/lib/turndownService.ts
+1 −1 packages/trpc/server/middlewares/sessionMiddleware.ts
+3 −2 packages/trpc/server/routers/publicViewer/event.handler.ts
+3 −1 packages/trpc/server/routers/publicViewer/procedures/event.ts
+4 −8 packages/trpc/server/routers/viewer/slots/util.ts
+39 −8 packages/ui/components/card/FormCard.tsx
+4 −0 packages/ui/components/editor/Editor.tsx
+27 −0 packages/ui/components/editor/plugins/PlainTextPlugin.tsx
+2 −1 packages/ui/components/icon/icon-list.mjs
+1 −0 packages/ui/components/icon/icon-names.ts
+1,799 −23 yarn.lock

0 comments on commit 765b10b

Please sign in to comment.