Skip to content

[pull] main from baptisteArno:main #287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/landing-page/content/privacy-policy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ Typebot offers optional integrations with various third-party services to enhanc

**Data Retention**: Third-party credentials are retained as long as your Typebot account is active or until you disconnect the service. Integration data is processed in real-time and is not permanently stored on our servers. You can delete your account and all associated data at any time.

**Google Workspace APIs Compliance**: The use of information received from Google Workspace APIs will adhere to the [Google API Services User Data Policy](https://developers.google.com/terms/api-services-user-data-policy), including the [Limited Use requirements](https://developers.google.com/workspace/workspace-api-user-data-developer-policy#limited-use).

## As a user of a typebot (the web chatbot itself)

You are bound to what the chatbot creator has set up in terms of data collection and data handling. We do not collect any personal data from chatbot users. We do not use behavioral insights to sell advertisements. We will never collect or store any personally identifiable information and we will never abuse your user’s privacy.
Expand Down
4 changes: 2 additions & 2 deletions bun.lock
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@
},
"packages/embeds/js": {
"name": "@typebot.io/js",
"version": "0.8.13",
"version": "0.8.14",
"devDependencies": {
"@ai-sdk/ui-utils": "1.2.2",
"@ark-ui/solid": "5.11.0",
Expand Down Expand Up @@ -645,7 +645,7 @@
},
"packages/embeds/react": {
"name": "@typebot.io/react",
"version": "0.8.13",
"version": "0.8.14",
"dependencies": {
"@typebot.io/js": "workspace:*",
"react": "18.3.1",
Expand Down
24 changes: 14 additions & 10 deletions packages/prisma/scripts/executeCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,19 @@ export const executePrismaCommand = (command: string, options?: Options) => {
};

const executeCommand = (command: string) => {
exec(command, (error, stdout, stderr) => {
if (error) {
console.log(error.message);
return;
}
if (stderr) {
console.log(stderr);
return;
}
console.log(stdout);
return new Promise<void>((resolve, reject) => {
exec(command, (error, stdout, stderr) => {
if (error) {
console.log(error.message);
reject(error);
return;
}
if (stderr) {
console.log(stderr);
return;
}
console.log(stdout);
resolve();
});
});
};
Loading