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 Dec 17, 2024
1 parent 8547540 commit 8c01617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calcom
Submodule calcom updated 85 files
+8 −0 .yarn/versions/4a56dcaa.yml
+2 −2 apps/api/v2/src/ee/bookings/2024-08-13/services/input.service.ts
+48 −15 apps/api/v2/src/ee/bookings/2024-08-13/services/output.service.ts
+12 −0 apps/api/v2/src/lib/safe-parse/default-responses-booking.ts
+23 −0 apps/api/v2/src/lib/safe-parse/safe-parse.ts
+2 −0 apps/api/v2/src/modules/conferencing/conferencing.module.ts
+22 −4 apps/api/v2/src/modules/conferencing/controllers/conferencing.controller.ts
+121 −0 apps/api/v2/src/modules/conferencing/services/office365-video.service.ts
+1 −1 apps/api/v2/src/modules/conferencing/services/zoom-video.service.ts
+1 −1 apps/api/v2/swagger/documentation.json
+88 −0 apps/web/components/getting-started/steps-views/SetupAvailability.tsx
+7 −3 apps/web/modules/bookings/views/bookings-single-view.tsx
+19 −28 apps/web/modules/getting-started/[[...step]]/onboarding-view.tsx
+3 −19 apps/web/modules/insights/insights-routing-view.tsx
+1 −1 apps/web/package.json
+5 −4 apps/web/pages/api/cron/monthlyDigestEmail.ts
+ apps/web/playwright/icons.e2e.ts-snapshots/icons--calcom-web-linux.png
+12 −3 apps/web/playwright/onboarding.e2e.ts
+12 −0 apps/web/public/icons/sprite.svg
+1 −0 apps/web/public/static/locales/en/common.json
+3 −0 apps/web/test/utils/bookingScenario/bookingScenario.ts
+2 −1 docs/mint.json
+93 −0 docs/platform/atoms/conferencing-apps.mdx
+ packages/app-store-cli/.yarn/ci-cache/install-state.gz
+6 −22 packages/app-store/office365video/components/AccountDialog.tsx
+21 −2 packages/app-store/office365video/components/InstallAppButton.tsx
+265 −0 packages/app-store/salesforce/lib/CrmService.test.ts
+181 −90 packages/app-store/salesforce/lib/CrmService.ts
+1 −1 packages/features/apps/AdminAppsList.tsx
+9 −2 packages/features/data-table/components/DataTable.tsx
+4 −1 packages/features/data-table/components/DataTableToolbar.tsx
+14 −48 packages/features/data-table/components/filters/FilterOptions.tsx
+20 −21 packages/features/data-table/components/filters/MultiSelectFilterOptions.tsx
+103 −0 packages/features/data-table/components/filters/NumberFilterOptions.tsx
+72 −0 packages/features/data-table/components/filters/SingleSelectFilterOptions.tsx
+10 −12 packages/features/data-table/components/filters/TextFilterOptions.tsx
+98 −56 packages/features/data-table/components/filters/index.tsx
+1 −0 packages/features/data-table/index.ts
+80 −0 packages/features/data-table/lib/context.tsx
+15 −15 packages/features/data-table/lib/resizing.ts
+91 −14 packages/features/data-table/lib/server.ts
+93 −5 packages/features/data-table/lib/types.ts
+129 −39 packages/features/data-table/lib/utils.ts
+14 −5 packages/features/ee/teams/components/MemberList.tsx
+2 −1 packages/features/insights/components/FailedBookingsByField.tsx
+10 −1 packages/features/insights/components/RoutedToPerPeriod.tsx
+206 −37 packages/features/insights/components/RoutingFormResponsesTable.tsx
+2 −1 packages/features/insights/components/RoutingKPICards.tsx
+1 −0 packages/features/insights/context/FiltersProvider.tsx
+48 −0 packages/features/insights/filters/ClearFilters.tsx
+3 −2 packages/features/insights/filters/DateSelect.tsx
+1 −0 packages/features/insights/filters/Download/RoutingDownload.tsx
+1 −0 packages/features/insights/filters/FilterType.tsx
+2 −1 packages/features/insights/filters/RoutingFormFieldFilter.tsx
+33 −30 packages/features/insights/filters/RoutingFormFilterList.tsx
+15 −3 packages/features/insights/filters/TeamAndSelfList.tsx
+18 −3 packages/features/insights/filters/UserListInTeam.tsx
+2 −2 packages/features/insights/filters/index.tsx
+0 −77 packages/features/insights/filters/routing/FilterBar.tsx
+3 −0 packages/features/insights/hooks/useDefaultRoutingForm.ts
+5 −8 packages/features/insights/server/events.ts
+111 −41 packages/features/insights/server/routing-events.ts
+42 −17 packages/features/insights/server/trpc-router.ts
+1 −1 packages/features/tasker/tasks/triggerNoShow/common.ts
+692 −0 packages/features/tasker/tasks/triggerNoShow/triggerGuestNoShow.test.ts
+6 −13 packages/features/tasker/tasks/triggerNoShow/triggerHostNoShow.test.ts
+3 −7 packages/features/users/components/UserTable/BulkActions/MassAssignAttributes.tsx
+94 −55 packages/features/users/components/UserTable/UserListTable.tsx
+19 −2 packages/platform/atoms/connect/conferencing-apps/ConferencingAppsViewPlatformWrapper.tsx
+42 −6 packages/platform/atoms/connect/conferencing-apps/hooks/useConnect.ts
+ packages/platform/constants/.yarn/ci-cache/install-state.gz
+5 −1 packages/platform/constants/apps.ts
+ packages/platform/enums/.yarn/ci-cache/install-state.gz
+ packages/platform/types/.yarn/ci-cache/install-state.gz
+ packages/platform/utils/.yarn/ci-cache/install-state.gz
+ packages/prisma/.yarn/ci-cache/install-state.gz
+1 −0 packages/prisma/package.json
+20 −0 packages/prisma/seed-insights.ts
+95 −7 packages/prisma/seed-utils.ts
+2 −1 packages/prisma/zod-utils.ts
+22 −16 packages/trpc/server/routers/viewer/organizations/listMembers.handler.ts
+3 −1 packages/types/tanstack-table.d.ts
+2 −0 packages/ui/components/icon/icon-list.mjs
+2 −0 packages/ui/components/icon/icon-names.ts
+8 −0 yarn.lock

0 comments on commit 8c01617

Please sign in to comment.