twenty-sdk 2.10.1 → 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-hdRK4nlg.mjs → catalog-sync-DmIzcse2.mjs} +1 -1
- package/dist/{catalog-sync-BjFX6eQu.js → catalog-sync-GJcaViDU.js} +1 -1
- package/dist/cli/commands/dev/generate-client.d.ts +6 -0
- package/dist/cli/utilities/dev/orchestrator/dev-mode-orchestrator-state.d.ts +1 -0
- package/dist/cli/utilities/entity/entity-field-template.d.ts +5 -1
- package/dist/cli.cjs +113 -94
- package/dist/cli.mjs +2178 -2085
- 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-CYRpYtm8.mjs → get-function-input-schema-DTlcRJz3-B0eNO1qG.mjs} +1 -1
- package/dist/{get-function-input-schema-DTlcRJz3-Cpo6yw4B.js → get-function-input-schema-DTlcRJz3-DAkVg26G.js} +1 -1
- package/dist/{login-oauth-wSHikxei.mjs → login-oauth-C0VXFL7H.mjs} +449 -440
- package/dist/{login-oauth-CU95X9A-.js → login-oauth-DzHcV9F2.js} +35 -28
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +2 -2
- package/dist/ui/index.cjs +25 -25
- package/dist/ui/index.mjs +5414 -5425
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./login-oauth-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./login-oauth-DzHcV9F2.js"),l=require("chalk"),n=e=>e&&e.__esModule?e:{default:e},a=n(l);class s{async execute(c){c.remote&&o.ConfigService.setActiveRemote(c.remote);const r=o.ConfigService.getActiveRemote();console.log(a.default.blue(`Syncing marketplace catalog on ${r}...`));const t=await new o.ApiService().syncMarketplaceCatalog();t.success||(console.error(a.default.red(`Catalog sync failed: ${t.error instanceof Error?t.error.message:String(t.error)}`)),process.exit(1)),console.log(a.default.green("✓ Marketplace catalog synced successfully"))}}exports.CatalogSyncCommand=s;
|
|
@@ -10,6 +10,7 @@ import { type FileFolder } from 'twenty-shared/types';
|
|
|
10
10
|
export type OrchestratorStateStepEvent = {
|
|
11
11
|
message: string;
|
|
12
12
|
status: 'info' | 'success' | 'error' | 'warning';
|
|
13
|
+
spacingBefore?: boolean;
|
|
13
14
|
};
|
|
14
15
|
export type OrchestratorStateEvent = OrchestratorStateStepEvent & {
|
|
15
16
|
id: number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { FieldMetadataType, type RelationOnDeleteAction, type RelationType } from 'twenty-shared/types';
|
|
2
2
|
export declare const getFieldBaseFile: ({ data, }: {
|
|
3
3
|
data: {
|
|
4
4
|
name: string;
|
|
@@ -6,6 +6,10 @@ export declare const getFieldBaseFile: ({ data, }: {
|
|
|
6
6
|
type: FieldMetadataType;
|
|
7
7
|
objectUniversalIdentifier: string;
|
|
8
8
|
description?: string | undefined;
|
|
9
|
+
relationTargetObjectMetadataUniversalIdentifier?: string | undefined;
|
|
10
|
+
relationTargetFieldMetadataUniversalIdentifier?: string | undefined;
|
|
11
|
+
relationType?: RelationType | undefined;
|
|
12
|
+
onDelete?: "None" | RelationOnDeleteAction | undefined;
|
|
9
13
|
};
|
|
10
14
|
name: string;
|
|
11
15
|
}) => string;
|