twenty-sdk 2.3.1 → 2.4.1
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/cli/commands/dev.d.ts +1 -0
- package/dist/cli/constants/dev-api-key.d.ts +2 -0
- package/dist/cli/operations/index.d.ts +1 -0
- package/dist/cli/types.d.ts +1 -0
- package/dist/cli.cjs +11 -11
- package/dist/cli.mjs +372 -376
- package/dist/define/index.cjs +1 -1
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +2 -0
- package/dist/define/index.mjs +4 -2
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs +1 -1
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.d.ts +3 -1
- package/dist/front-component/index.mjs +23 -17
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-BZ7_XyUh-BdGyao4P.js → get-function-input-schema-BZ7_XyUh-DA45tC6Z.js} +1 -1
- package/dist/{get-function-input-schema-BZ7_XyUh-BLUL3vy8.mjs → get-function-input-schema-BZ7_XyUh-KX7PWzdV.mjs} +1 -1
- package/dist/logic-function/index.d.ts +2 -0
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +24 -22
- package/dist/{uninstall-x1qK0SyR.js → uninstall-C6NJA8FL.js} +9 -9
- package/dist/{uninstall-CWhPoI1i.mjs → uninstall-D_Xoz10Q.mjs} +111 -108
- package/package.json +2 -2
package/dist/define/index.d.ts
CHANGED
|
@@ -760,6 +760,7 @@ type InputJsonSchema = {
|
|
|
760
760
|
minimum?: number;
|
|
761
761
|
maximum?: number;
|
|
762
762
|
multiline?: boolean;
|
|
763
|
+
label?: string;
|
|
763
764
|
};
|
|
764
765
|
|
|
765
766
|
type ToolTriggerSettings = {
|
|
@@ -776,6 +777,7 @@ type InputSchemaProperty = {
|
|
|
776
777
|
items?: InputSchemaProperty;
|
|
777
778
|
properties?: Properties$1;
|
|
778
779
|
multiline?: boolean;
|
|
780
|
+
label?: string;
|
|
779
781
|
};
|
|
780
782
|
type Properties$1 = {
|
|
781
783
|
[name: string]: InputSchemaProperty;
|
package/dist/define/index.mjs
CHANGED
|
@@ -203,13 +203,15 @@ const vu = {
|
|
|
203
203
|
name: "primaryPhoneCountryCode",
|
|
204
204
|
type: L.TEXT,
|
|
205
205
|
hidden: !1,
|
|
206
|
-
isRequired: !1
|
|
206
|
+
isRequired: !1,
|
|
207
|
+
isIncludedInUniqueConstraint: !0
|
|
207
208
|
},
|
|
208
209
|
{
|
|
209
210
|
name: "primaryPhoneCallingCode",
|
|
210
211
|
type: L.TEXT,
|
|
211
212
|
hidden: !1,
|
|
212
|
-
isRequired: !1
|
|
213
|
+
isRequired: !1,
|
|
214
|
+
isIncludedInUniqueConstraint: !0
|
|
213
215
|
},
|
|
214
216
|
{
|
|
215
217
|
name: "additionalPhones",
|