twenty-sdk 2.23.0 → 2.25.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/billing/index.cjs.map +1 -1
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{catalog-sync-C8IFp0pB.js → catalog-sync-BQ4qqj5b.js} +1 -1
- package/dist/{catalog-sync-DEkMSrGS.mjs → catalog-sync-Bd0XMuNL.mjs} +1 -1
- package/dist/cli/commands/dev/exec.d.ts +2 -1
- package/dist/cli/operations/execute.d.ts +2 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +2 -0
- package/dist/cli.cjs +116 -116
- package/dist/cli.mjs +5216 -5201
- package/dist/define/index.cjs +3 -3
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +103 -14
- package/dist/define/index.mjs +2751 -2714
- 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 +2 -1
- package/dist/front-component/index.mjs +3 -3
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-GNk3NRLJ-CmJrBznd.mjs → get-function-input-schema-GNk3NRLJ-DmwN8d1n.mjs} +1 -1
- package/dist/logic-function/index.cjs +21 -1
- package/dist/logic-function/index.cjs.map +1 -1
- package/dist/logic-function/index.d.ts +28 -4
- package/dist/logic-function/index.mjs +36 -2
- package/dist/logic-function/index.mjs.map +1 -1
- package/dist/{login-DHQ1DFVF.js → login-C1meSrEJ.js} +53 -53
- package/dist/{login-DdR4uqe9.mjs → login-CjlKXuH6.mjs} +3932 -3888
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +1 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/define/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ type AgentManifest = SyncableEntityOptions$1 & {
|
|
|
33
33
|
prompt: string;
|
|
34
34
|
modelId?: string;
|
|
35
35
|
responseFormat?: AgentResponseFormat;
|
|
36
|
+
roleUniversalIdentifier?: string;
|
|
36
37
|
};
|
|
37
38
|
|
|
38
39
|
declare const APPLICATION_CATEGORIES: readonly ["Communication", "Productivity", "Product management", "Sales", "Marketing", "Enrichment", "Data", "Search", "Other"];
|
|
@@ -48,6 +49,12 @@ type PostInstallLogicFunctionApplicationManifest = PreInstallLogicFunctionApplic
|
|
|
48
49
|
shouldRunSynchronously?: boolean;
|
|
49
50
|
};
|
|
50
51
|
|
|
52
|
+
type SettingsFrontComponentApplicationManifest = {
|
|
53
|
+
universalIdentifier: string;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
type UninstallLogicFunctionApplicationManifest = SyncableEntityOptions$1;
|
|
57
|
+
|
|
51
58
|
declare enum FieldMetadataType {
|
|
52
59
|
ACTOR = "ACTOR",
|
|
53
60
|
ADDRESS = "ADDRESS",
|
|
@@ -133,10 +140,11 @@ type ApplicationManifest = SyncableEntityOptions$1 & {
|
|
|
133
140
|
issueReportUrl?: string;
|
|
134
141
|
postInstallLogicFunction?: PostInstallLogicFunctionApplicationManifest;
|
|
135
142
|
preInstallLogicFunction?: PreInstallLogicFunctionApplicationManifest;
|
|
143
|
+
uninstallLogicFunction?: UninstallLogicFunctionApplicationManifest;
|
|
144
|
+
settingsFrontComponent?: SettingsFrontComponentApplicationManifest;
|
|
136
145
|
/**
|
|
137
|
-
* @deprecated
|
|
138
|
-
*
|
|
139
|
-
* Use typed `applicationVariables` / `serverVariables` instead.
|
|
146
|
+
* @deprecated Use `defineSettingsFrontComponent()` (exposed on the manifest
|
|
147
|
+
* as `settingsFrontComponent`) instead. This property is ignored.
|
|
140
148
|
*/
|
|
141
149
|
settingsCustomTabFrontComponentUniversalIdentifier?: string;
|
|
142
150
|
packageJsonChecksum: string | null;
|
|
@@ -163,6 +171,7 @@ type ConnectionProviderManifest = SyncableEntityOptions$1 & {
|
|
|
163
171
|
displayName: string;
|
|
164
172
|
type: 'oauth';
|
|
165
173
|
oauth: OAuthConnectionProviderConfig;
|
|
174
|
+
onConnectLogicFunction?: SyncableEntityOptions$1;
|
|
166
175
|
};
|
|
167
176
|
|
|
168
177
|
declare const getFieldUniversalIdentifier: ({ applicationUniversalIdentifier, objectUniversalIdentifier, name, }: {
|
|
@@ -606,6 +615,13 @@ type LogicFunctionEvent<TBody = object> = {
|
|
|
606
615
|
userWorkspaceId: string | null;
|
|
607
616
|
};
|
|
608
617
|
|
|
618
|
+
type LogicFunctionHttpResponse = {
|
|
619
|
+
__twentyHttpResponse: true;
|
|
620
|
+
body: unknown;
|
|
621
|
+
status?: number;
|
|
622
|
+
headers?: Record<string, string>;
|
|
623
|
+
};
|
|
624
|
+
|
|
609
625
|
declare enum NavigationMenuItemType {
|
|
610
626
|
VIEW = "VIEW",
|
|
611
627
|
FOLDER = "FOLDER",
|
|
@@ -787,6 +803,12 @@ type EmailsConfiguration = {
|
|
|
787
803
|
type EmailThreadConfiguration = {
|
|
788
804
|
configurationType: 'EMAIL_THREAD';
|
|
789
805
|
};
|
|
806
|
+
type MessageCampaignBodyConfiguration = {
|
|
807
|
+
configurationType: 'MESSAGE_CAMPAIGN_BODY';
|
|
808
|
+
};
|
|
809
|
+
type MessageCampaignDetailsConfiguration = {
|
|
810
|
+
configurationType: 'MESSAGE_CAMPAIGN_DETAILS';
|
|
811
|
+
};
|
|
790
812
|
type CalendarConfiguration = {
|
|
791
813
|
configurationType: 'CALENDAR';
|
|
792
814
|
};
|
|
@@ -799,11 +821,16 @@ type WorkflowVersionConfiguration = {
|
|
|
799
821
|
type WorkflowRunConfiguration = {
|
|
800
822
|
configurationType: 'WORKFLOW_RUN';
|
|
801
823
|
};
|
|
802
|
-
type PageLayoutWidgetConfiguration = AggregateChartConfiguration | PieChartConfiguration | BarChartConfiguration | LineChartConfiguration | ViewConfiguration | RecordTableConfiguration | FieldConfiguration | FieldsConfiguration | FieldRichTextConfiguration | StandaloneRichTextConfiguration | IframeConfiguration | FrontComponentConfiguration | TimelineConfiguration | TasksConfiguration | NotesConfiguration | FilesConfiguration | EmailsConfiguration | CalendarConfiguration | WorkflowConfiguration | WorkflowVersionConfiguration | WorkflowRunConfiguration | EmailThreadConfiguration;
|
|
824
|
+
type PageLayoutWidgetConfiguration = AggregateChartConfiguration | PieChartConfiguration | BarChartConfiguration | LineChartConfiguration | ViewConfiguration | RecordTableConfiguration | FieldConfiguration | FieldsConfiguration | FieldRichTextConfiguration | StandaloneRichTextConfiguration | IframeConfiguration | FrontComponentConfiguration | TimelineConfiguration | TasksConfiguration | NotesConfiguration | FilesConfiguration | EmailsConfiguration | CalendarConfiguration | WorkflowConfiguration | WorkflowVersionConfiguration | WorkflowRunConfiguration | EmailThreadConfiguration | MessageCampaignBodyConfiguration | MessageCampaignDetailsConfiguration;
|
|
803
825
|
|
|
804
826
|
declare enum PageLayoutTabLayoutMode {
|
|
805
827
|
GRID = "GRID",
|
|
806
828
|
VERTICAL_LIST = "VERTICAL_LIST",
|
|
829
|
+
/**
|
|
830
|
+
* @deprecated Solo full-page tabs are no longer stored as a layout mode.
|
|
831
|
+
* Presentation (solo vs stack) is derived from the tab's widgets. Kept only to
|
|
832
|
+
* read layouts persisted before this change; nothing new should write it.
|
|
833
|
+
*/
|
|
807
834
|
CANVAS = "CANVAS"
|
|
808
835
|
}
|
|
809
836
|
|
|
@@ -1075,7 +1102,7 @@ type PageLayoutTabManifest = SyncableEntityOptions$1 & {
|
|
|
1075
1102
|
};
|
|
1076
1103
|
type PageLayoutManifest = SyncableEntityOptions$1 & {
|
|
1077
1104
|
name: string;
|
|
1078
|
-
type:
|
|
1105
|
+
type: `${PageLayoutType}`;
|
|
1079
1106
|
objectUniversalIdentifier?: string;
|
|
1080
1107
|
defaultTabToFocusOnMobileAndSidePanelUniversalIdentifier?: string;
|
|
1081
1108
|
tabs?: PageLayoutTabManifest[];
|
|
@@ -1214,7 +1241,13 @@ type ViewManifest = SyncableEntityOptions$1 & {
|
|
|
1214
1241
|
sorts?: ViewSortManifest[];
|
|
1215
1242
|
};
|
|
1216
1243
|
|
|
1217
|
-
type
|
|
1244
|
+
type ServerRouteDispatchResult = {
|
|
1245
|
+
workspaceId: string;
|
|
1246
|
+
targetLogicFunctionUniversalIdentifier: string;
|
|
1247
|
+
payload?: object;
|
|
1248
|
+
};
|
|
1249
|
+
|
|
1250
|
+
type ApplicationConfig = Omit<ApplicationManifest, 'packageJsonChecksum' | 'yarnLockChecksum' | 'requiredServerVersionRange' | 'postInstallLogicFunction' | 'preInstallLogicFunction' | 'settingsFrontComponent' | 'defaultRoleUniversalIdentifier' | 'aboutDescription'> & {
|
|
1218
1251
|
/**
|
|
1219
1252
|
* @deprecated Use `defineApplicationRole()` in your role file instead.
|
|
1220
1253
|
*/
|
|
@@ -1233,11 +1266,7 @@ type FrontComponentConfig = Omit<FrontComponentManifest, 'sourceComponentPath' |
|
|
|
1233
1266
|
type IndexConfig = IndexManifest;
|
|
1234
1267
|
|
|
1235
1268
|
type LogicFunctionHandler = (...args: any[]) => any | Promise<any>;
|
|
1236
|
-
type ServerRouteResolverResult =
|
|
1237
|
-
workspaceId: string;
|
|
1238
|
-
targetLogicFunctionUniversalIdentifier: string;
|
|
1239
|
-
payload?: object;
|
|
1240
|
-
};
|
|
1269
|
+
type ServerRouteResolverResult = ServerRouteDispatchResult | LogicFunctionHttpResponse;
|
|
1241
1270
|
type ServerRouteResolverHandler = (...args: any[]) => ServerRouteResolverResult | Promise<ServerRouteResolverResult>;
|
|
1242
1271
|
type LogicFunctionConfigBase = Omit<LogicFunctionManifest, 'sourceHandlerPath' | 'builtHandlerPath' | 'builtHandlerChecksum' | 'handlerName' | 'serverRouteTriggerSettings'>;
|
|
1243
1272
|
type LogicFunctionConfig = LogicFunctionConfigBase & ({
|
|
@@ -1277,6 +1306,15 @@ type PostInstallLogicFunctionConfig = PreInstallLogicFunctionConfig & {
|
|
|
1277
1306
|
shouldRunSynchronously?: boolean;
|
|
1278
1307
|
};
|
|
1279
1308
|
|
|
1309
|
+
type UninstallPayload = {
|
|
1310
|
+
version?: string;
|
|
1311
|
+
};
|
|
1312
|
+
type UninstallHandler = (payload: UninstallPayload) => any | Promise<any>;
|
|
1313
|
+
|
|
1314
|
+
type UninstallLogicFunctionConfig = Omit<LogicFunctionConfig, 'cronTriggerSettings' | 'databaseEventTriggerSettings' | 'httpRouteTriggerSettings' | 'toolTriggerSettings' | 'workflowActionTriggerSettings' | 'handler'> & {
|
|
1315
|
+
handler: UninstallHandler;
|
|
1316
|
+
};
|
|
1317
|
+
|
|
1280
1318
|
type RoleConfig = Omit<RoleManifest, 'objectPermissions' | 'fieldPermissions'> & {
|
|
1281
1319
|
objectPermissions?: Omit<ObjectPermissionManifest, 'universalIdentifier'>[];
|
|
1282
1320
|
fieldPermissions?: Omit<FieldPermissionManifest, 'universalIdentifier'>[];
|
|
@@ -1288,7 +1326,7 @@ type ValidationResult<T> = {
|
|
|
1288
1326
|
errors: string[];
|
|
1289
1327
|
warnings?: string[];
|
|
1290
1328
|
};
|
|
1291
|
-
type DefinableEntity = ApplicationConfig | ObjectConfig | FieldManifest | FrontComponentConfig | IndexConfig | LogicFunctionConfig | PostInstallLogicFunctionConfig | PreInstallLogicFunctionConfig | AgentManifest | ConnectionProviderManifest | RoleConfig | SkillManifest | ViewConfig | StandaloneViewFieldManifest | NavigationMenuItemManifest | PageLayoutConfig | PageLayoutTabConfig | PermissionFlagConfig | CommandMenuItemConfig;
|
|
1329
|
+
type DefinableEntity = ApplicationConfig | ObjectConfig | FieldManifest | FrontComponentConfig | IndexConfig | LogicFunctionConfig | PostInstallLogicFunctionConfig | PreInstallLogicFunctionConfig | UninstallLogicFunctionConfig | AgentManifest | ConnectionProviderManifest | RoleConfig | SkillManifest | ViewConfig | StandaloneViewFieldManifest | NavigationMenuItemManifest | PageLayoutConfig | PageLayoutTabConfig | PermissionFlagConfig | CommandMenuItemConfig;
|
|
1292
1330
|
type DefineEntity<T extends DefinableEntity = DefinableEntity> = (config: T) => ValidationResult<T>;
|
|
1293
1331
|
|
|
1294
1332
|
declare const defineAgent: DefineEntity<AgentManifest>;
|
|
@@ -1345,6 +1383,10 @@ declare const includesEvery: (array: unknown, prop: string, value: unknown) => b
|
|
|
1345
1383
|
|
|
1346
1384
|
declare const defineFrontComponent: DefineEntity<FrontComponentConfig>;
|
|
1347
1385
|
|
|
1386
|
+
type SettingsFrontComponentConfig = Omit<FrontComponentConfig, 'isHeadless'>;
|
|
1387
|
+
|
|
1388
|
+
declare const defineSettingsFrontComponent: DefineEntity<SettingsFrontComponentConfig>;
|
|
1389
|
+
|
|
1348
1390
|
declare const defineIndex: DefineEntity<IndexConfig>;
|
|
1349
1391
|
|
|
1350
1392
|
declare const defineLogicFunction: DefineEntity<LogicFunctionConfig>;
|
|
@@ -1353,6 +1395,8 @@ declare const definePostInstallLogicFunction: DefineEntity<PostInstallLogicFunct
|
|
|
1353
1395
|
|
|
1354
1396
|
declare const definePreInstallLogicFunction: DefineEntity<PreInstallLogicFunctionConfig>;
|
|
1355
1397
|
|
|
1398
|
+
declare const defineUninstallLogicFunction: DefineEntity<UninstallLogicFunctionConfig>;
|
|
1399
|
+
|
|
1356
1400
|
type CronPayload = Record<string, never>;
|
|
1357
1401
|
|
|
1358
1402
|
type ObjectRecordDiff<T> = {
|
|
@@ -2433,6 +2477,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
2433
2477
|
readonly messageCampaign: {
|
|
2434
2478
|
readonly universalIdentifier: "238acb94-dd4c-4036-bc55-19b99d821efd";
|
|
2435
2479
|
readonly fields: {
|
|
2480
|
+
readonly name: {
|
|
2481
|
+
readonly universalIdentifier: "dc8bca0e-37c4-4b78-814d-2e91124274e3";
|
|
2482
|
+
};
|
|
2436
2483
|
readonly subject: {
|
|
2437
2484
|
readonly universalIdentifier: "7251544c-b07a-4f0d-9d0a-48514367f230";
|
|
2438
2485
|
};
|
|
@@ -2515,6 +2562,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
2515
2562
|
readonly allMessageCampaigns: {
|
|
2516
2563
|
readonly universalIdentifier: "ffedb368-33f0-43a7-b84e-e622b4e97be9";
|
|
2517
2564
|
readonly viewFields: {
|
|
2565
|
+
readonly name: {
|
|
2566
|
+
readonly universalIdentifier: "4d40646c-853d-48e6-8ddb-81e6dedabc99";
|
|
2567
|
+
};
|
|
2518
2568
|
readonly subject: {
|
|
2519
2569
|
readonly universalIdentifier: "b017c851-e38d-4a81-ab38-0fb10e9f239e";
|
|
2520
2570
|
};
|
|
@@ -2550,6 +2600,34 @@ declare const STANDARD_OBJECTS: {
|
|
|
2550
2600
|
};
|
|
2551
2601
|
};
|
|
2552
2602
|
};
|
|
2603
|
+
readonly messageCampaignRecordPageFields: {
|
|
2604
|
+
readonly universalIdentifier: "20202020-a009-4a09-8a09-fa9de11ca901";
|
|
2605
|
+
readonly viewFieldGroups: {
|
|
2606
|
+
readonly stats: {
|
|
2607
|
+
readonly universalIdentifier: "20202020-a009-4a09-8a09-fa9de11ca902";
|
|
2608
|
+
};
|
|
2609
|
+
};
|
|
2610
|
+
readonly viewFields: {
|
|
2611
|
+
readonly status: {
|
|
2612
|
+
readonly universalIdentifier: "20202020-af09-4a09-8a09-fa9de11ca903";
|
|
2613
|
+
};
|
|
2614
|
+
readonly sentAt: {
|
|
2615
|
+
readonly universalIdentifier: "20202020-af09-4a09-8a09-fa9de11ca904";
|
|
2616
|
+
};
|
|
2617
|
+
readonly sentCount: {
|
|
2618
|
+
readonly universalIdentifier: "20202020-af09-4a09-8a09-fa9de11ca905";
|
|
2619
|
+
};
|
|
2620
|
+
readonly failedCount: {
|
|
2621
|
+
readonly universalIdentifier: "20202020-af09-4a09-8a09-fa9de11ca906";
|
|
2622
|
+
};
|
|
2623
|
+
readonly bouncedCount: {
|
|
2624
|
+
readonly universalIdentifier: "20202020-af09-4a09-8a09-fa9de11ca907";
|
|
2625
|
+
};
|
|
2626
|
+
readonly complainedCount: {
|
|
2627
|
+
readonly universalIdentifier: "20202020-af09-4a09-8a09-fa9de11ca908";
|
|
2628
|
+
};
|
|
2629
|
+
};
|
|
2630
|
+
};
|
|
2553
2631
|
};
|
|
2554
2632
|
};
|
|
2555
2633
|
readonly messageList: {
|
|
@@ -5372,12 +5450,23 @@ declare const STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS: {
|
|
|
5372
5450
|
messageCampaignRecordPage: {
|
|
5373
5451
|
universalIdentifier: string;
|
|
5374
5452
|
tabs: {
|
|
5453
|
+
composer: {
|
|
5454
|
+
universalIdentifier: string;
|
|
5455
|
+
widgets: {
|
|
5456
|
+
messageCampaign: {
|
|
5457
|
+
universalIdentifier: string;
|
|
5458
|
+
};
|
|
5459
|
+
};
|
|
5460
|
+
};
|
|
5375
5461
|
home: {
|
|
5376
5462
|
universalIdentifier: string;
|
|
5377
5463
|
widgets: {
|
|
5378
5464
|
fields: {
|
|
5379
5465
|
universalIdentifier: string;
|
|
5380
5466
|
};
|
|
5467
|
+
details: {
|
|
5468
|
+
universalIdentifier: string;
|
|
5469
|
+
};
|
|
5381
5470
|
messages: {
|
|
5382
5471
|
universalIdentifier: string;
|
|
5383
5472
|
};
|
|
@@ -5442,5 +5531,5 @@ declare const defineView: DefineEntity<ViewConfig>;
|
|
|
5442
5531
|
|
|
5443
5532
|
declare const defineViewField: DefineEntity<StandaloneViewFieldManifest>;
|
|
5444
5533
|
|
|
5445
|
-
export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, PageLayoutType, RelationType, RowLevelPermissionPredicateGroupLogicalOperator, RowLevelPermissionPredicateOperand, STANDARD_OBJECTS as STANDARD_OBJECT, STANDARD_OBJECTS as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS as STANDARD_PAGE_LAYOUT, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS, SystemPermissionFlag, ViewCalendarLayout, ViewFilterGroupLogicalOperator, ViewFilterOperand, ViewKey, ViewOpenRecordIn, ViewSortDirection, ViewType, ViewVisibility, canAccessFullAdminPanel, canImpersonate, createValidationResult, defineAgent, defineApplication, defineApplicationRole, defineCommandMenuItem, defineConnectionProvider, defineField, defineFrontComponent, defineIndex, defineLogicFunction, defineNavigationMenuItem, defineObject, definePageLayout, definePageLayoutTab, definePermissionFlag, definePostInstallLogicFunction, definePreInstallLogicFunction, defineRole, defineSkill, defineView, defineViewField, every, everyDefined, everyEquals, favoriteRecordIds, featureFlags, getFieldUniversalIdentifier, getSystemRelationFieldUniversalIdentifier, hasAnySoftDeleteFilterOnView, includes, includesEvery, isDashboardPageLayoutInEditMode, isDefined, isInSidePanel, isLayoutCustomizationModeEnabled, isNonEmptyString, isSelectAll, none, noneDefined, noneEquals, numberOfSelectedRecords, objectMetadataItem, objectMetadataLabel, objectPermissions, pageType, selectedRecords, some, someDefined, someEquals, someNonEmptyString, targetObjectReadPermissions, targetObjectWritePermissions, validateFields };
|
|
5446
|
-
export type { ActorMetadata as ActorField, AddressMetadata as AddressField, ApplicationConfig, CommandMenuItemConfig, CommandMenuItemManifest, CronPayload, CurrencyMetadata as CurrencyField, DatabaseEventPayload, DefinableEntity, DefineEntity, EmailsMetadata as EmailsField, FrontComponentConfig, FrontComponentType, FullNameMetadata as FullNameField, GridPosition, IndexConfig, IndexFieldManifest, IndexManifest, InputJsonSchema, InstallHandler, InstallPayload, LinksMetadata as LinksField, LogicFunctionConfig, LogicFunctionHandler, ObjectRecordEvent, PageLayoutConfig, PageLayoutManifest, PageLayoutTabConfig, PageLayoutTabManifest, PageLayoutWidgetConditionalDisplay, PageLayoutWidgetManifest, PageLayoutWidgetUniversalConfiguration, PermissionFlagConfig, PermissionFlagManifest, PermissionFlagPermissionType, PhonesMetadata as PhonesField, RichTextMetadata as RichTextField, LogicFunctionEvent as RoutePayload, RowLevelPermissionPredicateGroupManifest, RowLevelPermissionPredicateManifest, StandaloneViewFieldManifest, SyncableEntityOptions, TwentyRecord, ValidationResult, ViewConfig, ViewFieldGroupManifest, ViewFieldManifest, ViewFilterGroupManifest, ViewFilterManifest, ViewGroupManifest, ViewManifestFilterValue, ViewSortManifest };
|
|
5534
|
+
export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, PageLayoutType, RelationType, RowLevelPermissionPredicateGroupLogicalOperator, RowLevelPermissionPredicateOperand, STANDARD_OBJECTS as STANDARD_OBJECT, STANDARD_OBJECTS as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS as STANDARD_PAGE_LAYOUT, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS, SystemPermissionFlag, ViewCalendarLayout, ViewFilterGroupLogicalOperator, ViewFilterOperand, ViewKey, ViewOpenRecordIn, ViewSortDirection, ViewType, ViewVisibility, canAccessFullAdminPanel, canImpersonate, createValidationResult, defineAgent, defineApplication, defineApplicationRole, defineCommandMenuItem, defineConnectionProvider, defineField, defineFrontComponent, defineIndex, defineLogicFunction, defineNavigationMenuItem, defineObject, definePageLayout, definePageLayoutTab, definePermissionFlag, definePostInstallLogicFunction, definePreInstallLogicFunction, defineRole, defineSettingsFrontComponent, defineSkill, defineUninstallLogicFunction, defineView, defineViewField, every, everyDefined, everyEquals, favoriteRecordIds, featureFlags, getFieldUniversalIdentifier, getSystemRelationFieldUniversalIdentifier, hasAnySoftDeleteFilterOnView, includes, includesEvery, isDashboardPageLayoutInEditMode, isDefined, isInSidePanel, isLayoutCustomizationModeEnabled, isNonEmptyString, isSelectAll, none, noneDefined, noneEquals, numberOfSelectedRecords, objectMetadataItem, objectMetadataLabel, objectPermissions, pageType, selectedRecords, some, someDefined, someEquals, someNonEmptyString, targetObjectReadPermissions, targetObjectWritePermissions, validateFields };
|
|
5535
|
+
export type { ActorMetadata as ActorField, AddressMetadata as AddressField, ApplicationConfig, CommandMenuItemConfig, CommandMenuItemManifest, CronPayload, CurrencyMetadata as CurrencyField, DatabaseEventPayload, DefinableEntity, DefineEntity, EmailsMetadata as EmailsField, FrontComponentConfig, FrontComponentType, FullNameMetadata as FullNameField, GridPosition, IndexConfig, IndexFieldManifest, IndexManifest, InputJsonSchema, InstallHandler, InstallPayload, LinksMetadata as LinksField, LogicFunctionConfig, LogicFunctionHandler, ObjectRecordEvent, PageLayoutConfig, PageLayoutManifest, PageLayoutTabConfig, PageLayoutTabManifest, PageLayoutWidgetConditionalDisplay, PageLayoutWidgetManifest, PageLayoutWidgetUniversalConfiguration, PermissionFlagConfig, PermissionFlagManifest, PermissionFlagPermissionType, PhonesMetadata as PhonesField, RichTextMetadata as RichTextField, LogicFunctionEvent as RoutePayload, RowLevelPermissionPredicateGroupManifest, RowLevelPermissionPredicateManifest, ServerRouteDispatchResult, ServerRouteResolverResult, SettingsFrontComponentConfig, StandaloneViewFieldManifest, SyncableEntityOptions, TwentyRecord, UninstallHandler, UninstallPayload, ValidationResult, ViewConfig, ViewFieldGroupManifest, ViewFieldManifest, ViewFilterGroupManifest, ViewFilterManifest, ViewGroupManifest, ViewManifestFilterValue, ViewSortManifest };
|