5de5ed2cb4
i18n - docs translations ( #19228 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-04-02 05:20:37 +02:00
ae202a1b59
i18n - docs translations ( #19226 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-04-02 00:27:21 +02:00
a6cecdbd49
i18n - docs translations ( #19137 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-30 20:38:05 +02:00
369ae2862f
i18n - docs translations ( #19135 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-30 18:40:35 +02:00
cc7131b0b5
i18n - docs translations ( #18941 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-25 04:18:13 +01:00
01af7bc7fb
i18n - docs translations ( #18934 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-24 23:20:45 +01:00
a6519f2c97
i18n - docs translations ( #18931 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-24 19:41:27 +01:00
77bade8114
i18n - docs translations ( #18925 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-24 17:42:35 +01:00
960c80999e
i18n - docs translations ( #18903 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-24 11:41:29 +01:00
a370a26b79
i18n - docs translations ( #18749 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-19 09:36:37 +01:00
1b1d79b08f
i18n - docs translations ( #18625 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-13 17:32:09 +01:00
58f534939c
i18n - docs translations ( #18617 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-13 13:36:07 +01:00
e7fe435f60
i18n - docs translations ( #18541 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-10 17:44:34 +01:00
59e9563fc7
i18n - docs translations ( #18528 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
Co-authored-by: Charles Bochet <charles@twenty.com >
2026-03-10 14:15:51 +01:00
1993614637
i18n - docs translations ( #18496 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-09 16:11:29 +01:00
06451407ce
i18n - docs translations ( #18464 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-06 15:44:31 +01:00
90cced0e74
i18n - docs translations ( #18451 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-03-06 02:24:32 +01:00
Charles Bochet and GitHub
9d57bc39e5
Migrate from ESLint to OxLint ( #18443 )
...
## Summary
Fully replaces ESLint with OxLint across the entire monorepo:
- **Replaced all ESLint configs** (`eslint.config.mjs`) with OxLint
configs (`.oxlintrc.json`) for every package: `twenty-front`,
`twenty-server`, `twenty-emails`, `twenty-ui`, `twenty-shared`,
`twenty-sdk`, `twenty-zapier`, `twenty-docs`, `twenty-website`,
`twenty-apps/*`, `create-twenty-app`
- **Migrated custom lint rules** from ESLint plugin format to OxLint JS
plugin system (`@oxlint/plugins`), including
`styled-components-prefixed-with-styled`, `no-hardcoded-colors`,
`sort-css-properties-alphabetically`,
`graphql-resolvers-should-be-guarded`,
`rest-api-methods-should-be-guarded`, `max-consts-per-file`, and
Jotai-related rules
- **Migrated custom rule tests** from ESLint `RuleTester` + Jest to
`oxlint/plugins-dev` `RuleTester` + Vitest
- **Removed all ESLint dependencies** from `package.json` files and
regenerated lockfiles
- **Updated Nx targets** (`lint`, `lint:diff-with-main`, `fmt`) in
`nx.json` and per-project `project.json` to use `oxlint` commands with
proper `dependsOn` for plugin builds
- **Updated CI workflows** (`.github/workflows/ci-*.yaml`) — no more
ESLint executor
- **Updated IDE setup**: replaced `dbaeumer.vscode-eslint` with
`oxc.oxc-vscode` extension, configured `source.fixAll.oxc` and
format-on-save with Prettier
- **Replaced all `eslint-disable` comments** with `oxlint-disable`
equivalents across the codebase
- **Updated docs** (`twenty-docs`) to reference OxLint instead of ESLint
- **Renamed** `twenty-eslint-rules` package to `twenty-oxlint-rules`
### Temporarily disabled rules (tracked in `OXLINT_MIGRATION_TODO.md`)
| Rule | Package | Violations | Auto-fixable |
|------|---------|-----------|-------------|
| `twenty/sort-css-properties-alphabetically` | twenty-front | 578 | Yes
|
| `typescript/consistent-type-imports` | twenty-server | 3814 | Yes |
| `twenty/max-consts-per-file` | twenty-server | 94 | No |
### Dropped plugins (no OxLint equivalent)
`eslint-plugin-project-structure`, `lingui/*`, `@stylistic/*`,
`import/order`, `prefer-arrow/prefer-arrow-functions`,
`eslint-plugin-mdx`, `@next/eslint-plugin-next`,
`eslint-plugin-storybook`, `eslint-plugin-react-refresh`. Partial
coverage for `jsx-a11y` and `unused-imports`.
### Additional fixes (pre-existing issues exposed by merge)
- Fixed `EmailThreadPreview.tsx` broken import from main rename
(`useOpenEmailThreadInSidePanel`)
- Restored truthiness guard in `getActivityTargetObjectRecords.ts`
- Fixed `AgentTurnResolver` return types to match entity (virtual
`fileMediaType`/`fileUrl` are resolved via `@ResolveField()`)
## Test plan
- [x] `npx nx lint twenty-front` passes
- [x] `npx nx lint twenty-server` passes
- [x] `npx nx lint twenty-docs` passes
- [x] Custom oxlint rules validated with Vitest: `npx nx test
twenty-oxlint-rules`
- [x] `npx nx typecheck twenty-front` passes
- [x] `npx nx typecheck twenty-server` passes
- [x] CI workflows trigger correctly with `dependsOn:
["twenty-oxlint-rules:build"]`
- [x] IDE linting works with `oxc.oxc-vscode` extension
2026-03-06 01:03:50 +01:00
9f5a8735c9
i18n - docs translations ( #18280 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-27 23:12:39 +01:00
81698ff32c
i18n - docs translations ( #18274 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
Co-authored-by: Charles Bochet <charles@twenty.com >
2026-02-26 16:52:43 +01:00
4ea8245387
i18n - docs translations ( #18245 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-25 23:42:24 +01:00
001c2097a3
i18n - docs translations ( #18231 )
...
Created by Github action
<!-- mintlify-editor-comments:start -->
Mintlify
---
0 threads from 0 users in Mintlify
- No unresolved comments
<!-- mintlify-editor-comments:end -->
<!-- mintlify-comment-->
<a
href="https://dashboard.mintlify.com/twenty/twenty/editor/i18n-docs?source=pr_comment "
target="_blank" rel="noopener noreferrer"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-dark.svg "><source
media="(prefers-color-scheme: light)"
srcset="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-light.svg "><img
src="https://d3gk2c5xim1je2.cloudfront.net/assets/open-mintlify-editor-light.svg "
alt="Open in Mintlify Editor"></picture></a>
<!-- /mintlify-comment -->
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-25 16:50:28 +01:00
a900b4a4b4
i18n - docs translations ( #18141 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-22 12:36:36 +01:00
9f3f2e21d8
i18n - docs translations ( #18122 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-20 13:51:43 +01:00
6b3ef404b0
i18n - docs translations ( #18050 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-18 21:31:54 +01:00
e9b5cb830c
i18n - docs translations ( #18040 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-18 17:54:40 +01:00
3d362e6e01
i18n - docs translations ( #18014 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-17 19:33:21 +01:00
Charles Bochet and GitHub
c0cc0689d6
Add Client Api generation ( #17961 )
...
## Add API client generation to SDK dev mode and refactor orchestrator
into step-based pipeline
### Why
The SDK dev mode lacked typed API client generation, forcing developers
to work without auto-generated GraphQL types when building applications.
Additionally, the orchestrator was a monolithic class that mixed watcher
management, token handling, and sync logic — making it difficult to
extend with new steps like client generation.
### How
- **Refactored the orchestrator** into a step-based pipeline with
dedicated classes: `CheckServer`, `EnsureValidTokens`,
`ResolveApplication`, `BuildManifest`, `UploadFiles`,
`GenerateApiClient`, `SyncApplication`, and `StartWatchers`. Each step
has typed input/output/status, managed by a new `OrchestratorState`
class.
- **Added `GenerateApiClientOrchestratorStep`** that detects
object/field schema changes and regenerates a typed GraphQL client (via
`@genql/cli`) into `node_modules/twenty-sdk/generated` for seamless
imports.
- **Replaced `checkApplicationExist`** with `findOneApplication` on both
server resolver and SDK API service, returning the entity data instead
of a boolean.
- **Added application token pair mutations**
(`generateApplicationToken`, `renewApplicationToken`) to the API
service, with the server now returning `ApplicationTokenPairDTO`
containing both access and refresh tokens.
- **Restructured the dev UI** into `dev/ui/components/` with dedicated
panel, section, and event log components.
- **Simplified `AppDevCommand`** from ~180 lines of watcher management
down to ~40 lines that delegate entirely to the orchestrator.
2026-02-17 18:45:52 +01:00
7523143f12
i18n - docs translations ( #17981 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-17 09:29:37 +01:00
4b3c58e013
i18n - docs translations ( #17972 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-16 13:51:12 +01:00
b80146c890
i18n - docs translations ( #17967 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-16 12:11:24 +01:00
2072d5f720
i18n - docs translations ( #17939 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-14 00:03:59 +01:00
a48b69d1e5
i18n - docs translations ( #17930 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-13 17:33:48 +01:00
9aba2f62e1
i18n - docs translations ( #17692 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-04 00:22:17 +01:00
60b48339b9
i18n - docs translations ( #17689 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-02-03 20:14:58 +01:00
be8629d8f6
i18n - docs translations ( #17597 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-30 22:07:41 +01:00
6462ff6c5f
i18n - docs translations ( #17586 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-30 17:25:52 +01:00
martmull and GitHub
f46da3eefd
Update manifest structure ( #17547 )
...
Move all sync entities in an `entities` key. Rename functions to
logicFunctions
```json
{
application: {
...
},
entities: {
objects: [],
logicFunctions: [],
...
}
}
```
2026-01-30 16:26:45 +01:00
c9a826aba1
i18n - docs translations ( #17542 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-29 12:12:27 +01:00
f7908de4c1
i18n - docs translations ( #17502 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-28 14:17:07 +01:00
59d123d2b1
i18n - docs translations ( #17499 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-27 23:33:44 +01:00
60d61555cc
i18n - docs translations ( #17320 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-22 10:51:43 +01:00
6bc64f78fc
i18n - docs translations ( #17261 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-21 21:48:49 +01:00
b7fbe1c49e
i18n - docs translations ( #17199 )
...
Created by Github action
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-16 18:36:39 +01:00
c3dff19f5d
i18n - docs translations ( #17134 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-14 09:29:34 +01:00
878e040907
i18n - docs translations ( #17070 )
...
Created by Github action
<!-- CURSOR_SUMMARY -->
---
> [!NOTE]
> Enhances Apps documentation across multiple locales by clarifying
object base fields behavior.
>
> - Adds a `Note` in localized `apps.mdx` pages (ar, cs, de, it, ro, ru,
tr) stating that standard base fields (e.g., `name`, `createdAt`,
`updatedAt`, `createdBy`, `position`, `deletedAt`) are created
automatically and should not be included in `fields` when using
`defineObject()`.
>
> <sup>Written by [Cursor
Bugbot](https://cursor.com/dashboard?tab=bugbot ) for commit
87a5ecd0b6 . This will update automatically
on new commits. Configure
[here](https://cursor.com/dashboard?tab=bugbot ).</sup>
<!-- /CURSOR_SUMMARY -->
Co-authored-by: github-actions <github-actions@twenty.com >
Co-authored-by: Félix Malfait <felix.malfait@gmail.com >
2026-01-12 08:11:42 +00:00
d4d5f57347
i18n - docs translations ( #17064 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-10 14:36:59 +01:00
5a33b36b85
i18n - docs translations ( #17059 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-10 10:41:34 +01:00
308973d7ca
i18n - docs translations ( #17036 )
...
Created by Github action
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2026-01-09 17:26:06 +01:00
3dd858c91e
i18n - docs translations ( #16774 )
...
Created by Github action
Pulls the latest documentation translations from Crowdin for all
supported languages:
- French (fr)
- Arabic (ar)
- Czech (cs)
- German (de)
- Spanish (es)
- Italian (it)
- Japanese (ja)
- Korean (ko)
- Portuguese (pt)
- Romanian (ro)
- Russian (ru)
- Turkish (tr)
- Chinese (zh-CN)
---------
Co-authored-by: github-actions <github-actions@twenty.com >
2025-12-23 14:26:11 +01:00