twenty-sdk 2.10.0 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{catalog-sync-BHD2q_KA.mjs → catalog-sync-DmIzcse2.mjs} +1 -1
- package/dist/{catalog-sync-Dp2RKu2c.js → catalog-sync-GJcaViDU.js} +1 -1
- package/dist/cli/commands/dev/dev-once.d.ts +1 -0
- package/dist/cli/commands/dev/generate-client.d.ts +6 -0
- package/dist/cli/operations/dev-once.d.ts +1 -0
- package/dist/cli/utilities/api/api-response-type.d.ts +5 -5
- package/dist/cli/utilities/api/api-service.d.ts +8 -2
- package/dist/cli/utilities/api/application-api.d.ts +7 -1
- package/dist/cli/utilities/api/file-api.d.ts +2 -1
- package/dist/cli/utilities/dev/orchestrator/dev-mode-orchestrator-state.d.ts +1 -0
- package/dist/cli/utilities/dev/orchestrator/steps/format-sync-actions-summary.d.ts +3 -0
- package/dist/cli/utilities/dev/ui/components/dev-ui-application-panel.d.ts +2 -1
- package/dist/cli/utilities/dev/ui/components/dev-ui-entity-section.d.ts +3 -0
- package/dist/cli/utilities/dev/ui/components/dev-ui.d.ts +1 -1
- package/dist/cli/utilities/dev/ui/dev-ui-constants.d.ts +6 -0
- package/dist/cli/utilities/entity/entity-field-template.d.ts +5 -1
- package/dist/cli/utilities/error/format-manifest-validation-errors.d.ts +2 -1
- package/dist/cli/utilities/error/get-sync-error-recovery-hint.d.ts +1 -0
- package/dist/cli.cjs +107 -87
- package/dist/cli.mjs +2712 -2546
- package/dist/define/index.cjs +10 -10
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +1 -0
- package/dist/define/index.mjs +568 -566
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs +5 -5
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.mjs +126 -123
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-DTlcRJz3-BweFaTLz.mjs → get-function-input-schema-DTlcRJz3-B0eNO1qG.mjs} +1 -1
- package/dist/{get-function-input-schema-DTlcRJz3-DWdkAlue.js → get-function-input-schema-DTlcRJz3-DAkVg26G.js} +1 -1
- package/dist/{login-oauth-BPSmh2dn.mjs → login-oauth-C0VXFL7H.mjs} +2747 -2675
- package/dist/{login-oauth-DnF6U1Ak.js → login-oauth-DzHcV9F2.js} +61 -51
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +2 -2
- package/dist/ui/index.cjs +25 -25
- package/dist/ui/index.d.ts +12 -12
- package/dist/ui/index.mjs +5414 -5425
- package/package.json +7 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "twenty-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"twenty": "dist/cli.cjs"
|
|
@@ -71,9 +71,8 @@
|
|
|
71
71
|
},
|
|
72
72
|
"license": "AGPL-3.0",
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@genql/runtime": "^2.10.0",
|
|
75
74
|
"@sniptt/guards": "^0.2.0",
|
|
76
|
-
"axios": "^1.
|
|
75
|
+
"axios": "^1.16.0",
|
|
77
76
|
"chalk": "^5.3.0",
|
|
78
77
|
"chokidar": "^4.0.0",
|
|
79
78
|
"commander": "^12.0.0",
|
|
@@ -81,20 +80,18 @@
|
|
|
81
80
|
"graphql": "^16.8.1",
|
|
82
81
|
"graphql-sse": "^2.5.4",
|
|
83
82
|
"ink": "^6.8.0",
|
|
84
|
-
"inquirer": "^
|
|
83
|
+
"inquirer": "^14.0.0",
|
|
85
84
|
"jsonc-parser": "^3.2.0",
|
|
86
85
|
"preact": "^10.28.3",
|
|
87
86
|
"react": "^19.0.0",
|
|
88
87
|
"react-dom": "^19.0.0",
|
|
89
88
|
"tinyglobby": "^0.2.15",
|
|
90
|
-
"twenty-client-sdk": "2.
|
|
89
|
+
"twenty-client-sdk": "2.12.0",
|
|
91
90
|
"typescript": "^5.9.3",
|
|
92
|
-
"uuid": "^13.0.
|
|
91
|
+
"uuid": "^13.0.2"
|
|
93
92
|
},
|
|
94
93
|
"devDependencies": {
|
|
95
|
-
"@genql/cli": "^3.0.3",
|
|
96
94
|
"@prettier/sync": "^0.5.2",
|
|
97
|
-
"@types/inquirer": "^9.0.0",
|
|
98
95
|
"@types/node": "^24.0.0",
|
|
99
96
|
"@types/react": "^19.0.0",
|
|
100
97
|
"@types/react-dom": "^19.0.0",
|
|
@@ -106,11 +103,11 @@
|
|
|
106
103
|
"tsc-alias": "^1.8.16",
|
|
107
104
|
"tsx": "^4.7.0",
|
|
108
105
|
"twenty-shared": "0.0.0",
|
|
109
|
-
"twenty-ui": "0.0.0",
|
|
106
|
+
"twenty-ui-deprecated": "0.0.0",
|
|
110
107
|
"vite": "^7.0.0",
|
|
111
108
|
"vite-plugin-dts": "^4.5.4",
|
|
112
109
|
"vite-tsconfig-paths": "^4.2.1",
|
|
113
|
-
"wait-on": "^
|
|
110
|
+
"wait-on": "^9.0.10"
|
|
114
111
|
},
|
|
115
112
|
"engines": {
|
|
116
113
|
"node": "^24.5.0",
|