-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/delete-booking-history-past' of https://github.com…
…/PAVANNAIK25/cal.com into feat/delete-booking-history-past
- Loading branch information
Showing
36 changed files
with
354 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,6 +85,4 @@ function ConnectAndJoin() { | |
); | ||
} | ||
|
||
ConnectAndJoin.requiresLicense = true; | ||
|
||
export default ConnectAndJoin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: 'Set up your availability' | ||
--- | ||
|
||
Follow these step-by-step instructions to configure your availability in Cal.com based on your individual preferences: | ||
|
||
<Steps> | ||
<Step title="Access availability settings"> | ||
* Log in to your Cal.com account. | ||
* Click Availability in the sidebar. You’ll see your existing availability schedules, such as "Working Hours" or any other you’ve added before. | ||
</Step> | ||
<Step title="Create a new availability schedule"> | ||
* Click New in the top-right corner. | ||
* Enter a name for your schedule (e.g., "Test Availability"). | ||
* Click Continue to create your schedule. | ||
By default, the schedule is set to 9:00 AM to 5:00 PM. | ||
</Step> | ||
<Step title="Customize your availability"> | ||
* Enable/Disable Days: | ||
Toggle days on or off based on when you're available. | ||
For example, you can set availability until 1:00 PM on a Saturday. | ||
* Edit Times for Specific Days: | ||
Click a time box to adjust availability for specific days. | ||
For example, change Monday’s availability to 9:00 AM to 6:00 PM. | ||
* Copy Times to Other Days: | ||
After setting times for one day, click Copy Times To and select other days (e.g., Tuesday–Friday). | ||
* Add Multiple Time Slots: | ||
Add additional time slots to split your availability (e.g., 9:00 AM–11:00 AM and 5:00 PM–7:30 PM). | ||
</Step> | ||
<Step title="Add Day overrides"> | ||
Use day overrides for special cases when your availability changes for specific dates. | ||
* Click Add an Override. | ||
Example: Choose a date (e.g., Wednesday) and mark yourself as completely unavailable. | ||
Overrides are automatically archived once the date has passed. | ||
</Step> | ||
<Step title="Adjust your time zone"> | ||
Set a specific time zone for your availability. | ||
Useful if your availability changes when traveling to another country. | ||
</Step> | ||
<Step title="Troubleshoot availability issues"> | ||
If you notice times not showing up as expected, click Launch Troubleshooter. | ||
This tool helps identify issues based on how Cal.com determines your availability. | ||
</Step> | ||
</Steps> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
items: | ||
- 0.jpg | ||
- 1.jpg | ||
- 2.jpg | ||
- 3.jpg | ||
- 4.jpg | ||
--- | ||
|
||
{DESCRIPTION} | ||
|
||
Effortlessly create advanced LLM-based voice applications with ultra-low latency — The Fastest on the Market. | ||
|
||
Millis AI gives you everything you need to create instant, human-like, and affordable voice agents. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { createDefaultInstallation } from "@calcom/app-store/_utils/installation"; | ||
import type { AppDeclarativeHandler } from "@calcom/types/AppHandler"; | ||
|
||
import appConfig from "../config.json"; | ||
|
||
const handler: AppDeclarativeHandler = { | ||
appType: appConfig.type, | ||
variant: appConfig.variant, | ||
slug: appConfig.slug, | ||
supportsMultipleInstalls: false, | ||
handlerType: "add", | ||
redirect: { | ||
newTab: true, | ||
url: "https://www.millis.ai/integrations/cal-com", | ||
}, | ||
createCredential: ({ appType, user, slug, teamId }) => | ||
createDefaultInstallation({ appType, user: user, slug, key: {}, teamId }), | ||
}; | ||
|
||
export default handler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as add } from "./add"; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"/*": "Don't modify slug - If required, do it using cli edit command", | ||
"name": "Millis AI", | ||
"slug": "millis-ai", | ||
"type": "millis-ai_automation", | ||
"logo": "icon.png", | ||
"url": "https://docs.millis.ai/tutorials/create-voice-agent-for-appointment-scheduling", | ||
"variant": "automation", | ||
"categories": ["automation"], | ||
"publisher": "Millis AI", | ||
"email": "[email protected]", | ||
"description": "Build next-gen voice agents with 500ms latency\r", | ||
"isTemplate": false, | ||
"__createdUsingCli": true, | ||
"__template": "link-as-an-app" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * as api from "./api"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"private": true, | ||
"name": "@calcom/millis-ai", | ||
"version": "0.0.0", | ||
"main": "./index.ts", | ||
"dependencies": { | ||
"@calcom/lib": "*" | ||
}, | ||
"devDependencies": { | ||
"@calcom/types": "*" | ||
}, | ||
"description": "Build next-gen voice agents with 500ms latency\r" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
items: | ||
- iframe: { src: https://www.youtube.com/watch?v=Jm2elbC9UmI } | ||
- 1.jpeg | ||
- 2.jpeg | ||
- 3.jpeg | ||
--- | ||
|
||
{DESCRIPTION} | ||
|
||
Monobot allows you to setup versatile AI Virtual Assistants for chat and voice in minutes. | ||
|
||
### Easy-to-Use Intuitive Configuration UI | ||
Dozens of industries are already covered by our comprehensive Virtual Assistant template library to give you a head start. | ||
|
||
### Human-like Voice Experience in Many Languages | ||
Our bots sound just like humans, can speak over 20 languages plus you can choose from many voices! | ||
|
||
### Integrations | ||
Integrations with calendars, messengers, external APIs and much more is already included at no extra cost. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { createDefaultInstallation } from "@calcom/app-store/_utils/installation"; | ||
import type { AppDeclarativeHandler } from "@calcom/types/AppHandler"; | ||
|
||
import appConfig from "../config.json"; | ||
|
||
const handler: AppDeclarativeHandler = { | ||
appType: appConfig.type, | ||
variant: appConfig.variant, | ||
slug: appConfig.slug, | ||
supportsMultipleInstalls: false, | ||
handlerType: "add", | ||
redirect: { | ||
newTab: true, | ||
url: "https://monobot.ai/?referralId=cal.com", | ||
}, | ||
createCredential: ({ appType, user, slug, teamId }) => | ||
createDefaultInstallation({ appType, user: user, slug, key: {}, teamId }), | ||
}; | ||
|
||
export default handler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as add } from "./add"; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"/*": "Don't modify slug - If required, do it using cli edit command", | ||
"name": "Monobot CX", | ||
"slug": "monobot", | ||
"type": "monobot_automation", | ||
"logo": "icon.svg", | ||
"url": "https://monobot.ai/?referralId=cal.com", | ||
"variant": "automation", | ||
"categories": ["automation"], | ||
"publisher": "Monobot CX", | ||
"email": "[email protected]", | ||
"description": "Crafting your personalized AI-driven assistant is easy and fast.", | ||
"isTemplate": false, | ||
"__createdUsingCli": true, | ||
"__template": "link-as-an-app" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * as api from "./api"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"private": true, | ||
"name": "@calcom/monobot", | ||
"version": "0.0.0", | ||
"main": "./index.ts", | ||
"dependencies": { | ||
"@calcom/lib": "*" | ||
}, | ||
"devDependencies": { | ||
"@calcom/types": "*" | ||
}, | ||
"description": "Crafting your personalized AI-driven assistant is easy and fast." | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.