diff --git a/apps/docs/openapi/viewer.json b/apps/docs/openapi/viewer.json index 941ebda64..debc75c34 100644 --- a/apps/docs/openapi/viewer.json +++ b/apps/docs/openapi/viewer.json @@ -12055,9 +12055,6 @@ "url": { "type": "string" }, - "maxBubbleWidth": { - "type": "number" - }, "waitForEventFunction": { "type": "object", "properties": { diff --git a/apps/docs/self-hosting/get-started.mdx b/apps/docs/self-hosting/get-started.mdx index 0748eeedf..24ddf07fa 100644 --- a/apps/docs/self-hosting/get-started.mdx +++ b/apps/docs/self-hosting/get-started.mdx @@ -29,7 +29,7 @@ You can find the full license [here](https://raw.githubusercontent.com/baptisteA Here is a summary of the license: -All content that resides under the [ee](https://github.com/baptisteArno/typebot.io/tree/main/ee) directory of this repository is licensed under the license defined in [ee/LICENSE](./ee/LICENSE). The [ee](https://github.com/baptisteArno/typebot.io/tree/main/ee) folder contains the code for the [landing page](https://typebot.io) and the billing feature. We restrict these to a Commercial License to make sure other companies can't simply clone Typebot's homepage and billing system and offer the same service without contributing to the open-source project. +All content that resides under the [ee](https://github.com/baptisteArno/typebot.io/tree/main/ee) directory of this repository is licensed under the license defined in [ee/LICENSE](https://raw.githubusercontent.com/baptisteArno/typebot.io/main/ee/LICENSE). The [ee](https://github.com/baptisteArno/typebot.io/tree/main/ee) folder contains the code for the [landing page](https://typebot.io) and the billing feature. We restrict these to a Commercial License to make sure other companies can't simply clone Typebot's homepage and billing system and offer the same service without contributing to the open-source project. Content outside of this directory is available under the GNU Affero General Public License Version 3 (AGPLv3). The goal of the AGPLv3 license is to: diff --git a/packages/bot-engine/forge/executeForgedBlock.ts b/packages/bot-engine/forge/executeForgedBlock.ts index 05d004f91..a5406bf17 100644 --- a/packages/bot-engine/forge/executeForgedBlock.ts +++ b/packages/bot-engine/forge/executeForgedBlock.ts @@ -153,7 +153,6 @@ export const executeForgedBlock = async ( url: action.run.web.displayEmbedBubble.parseUrl({ options: parsedOptions, }), - maxBubbleWidth: action.run.web.displayEmbedBubble.maxBubbleWidth, initFunction: action.run.web.displayEmbedBubble.parseInitFunction({ options: parsedOptions, }), diff --git a/packages/embeds/js/package.json b/packages/embeds/js/package.json index 0eeaeb973..6733d8e38 100644 --- a/packages/embeds/js/package.json +++ b/packages/embeds/js/package.json @@ -1,6 +1,6 @@ { "name": "@typebot.io/js", - "version": "0.2.83", + "version": "0.2.84", "description": "Javascript library to display typebots on your website", "type": "module", "main": "dist/index.js", diff --git a/packages/embeds/js/src/features/blocks/bubbles/embed/components/CustomEmbedBubble.tsx b/packages/embeds/js/src/features/blocks/bubbles/embed/components/CustomEmbedBubble.tsx index a255e236d..4e080c60f 100644 --- a/packages/embeds/js/src/features/blocks/bubbles/embed/components/CustomEmbedBubble.tsx +++ b/packages/embeds/js/src/features/blocks/bubbles/embed/components/CustomEmbedBubble.tsx @@ -60,14 +60,7 @@ export const CustomEmbedBubble = (props: Props) => { ref={ref} >
-
+
options.link, - maxBubbleWidth: 780, waitForEvent: { getSaveVariableId: ({ saveBookedDateInVariableId }) => saveBookedDateInVariableId, diff --git a/packages/forge/core/types.ts b/packages/forge/core/types.ts index e2f9612e5..907f1ea6f 100644 --- a/packages/forge/core/types.ts +++ b/packages/forge/core/types.ts @@ -85,7 +85,6 @@ export type ActionDefinition< parseInitFunction: (params: { options: z.infer & z.infer }) => FunctionToExecute - maxBubbleWidth?: number } parseFunction?: (params: { options: z.infer & z.infer diff --git a/packages/schemas/features/chat/schema.ts b/packages/schemas/features/chat/schema.ts index cee1f0e42..f3f27e856 100644 --- a/packages/schemas/features/chat/schema.ts +++ b/packages/schemas/features/chat/schema.ts @@ -100,7 +100,6 @@ const embedMessageSchema = z const displayEmbedBubbleSchema = z.object({ url: z.string().optional(), - maxBubbleWidth: z.number().optional(), waitForEventFunction: z .object({ args: z.record(z.string(), z.unknown()),