twenty-sdk 2.13.0 → 2.15.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/CHANGELOG.md +17 -0
- package/README.md +4 -0
- package/dist/AllIcons-DEGfvqso-DwtvkCyL.js +1 -0
- package/dist/{AllIcons-BwIoyggb-DpmEuQAR.mjs → AllIcons-DEGfvqso-PUvdkUZm.mjs} +491 -492
- package/dist/catalog-sync-C5Bb1KSh.js +1 -0
- package/dist/{catalog-sync-BfaTQFam.mjs → catalog-sync-DcpUieU5.mjs} +1 -1
- package/dist/cli/commands/dev/dev.d.ts +1 -0
- package/dist/cli/operations/index.d.ts +2 -0
- package/dist/cli/operations/server-start.d.ts +1 -0
- package/dist/cli/utilities/api/api-client.d.ts +3 -1
- package/dist/cli/utilities/api/api-response-type.d.ts +1 -0
- package/dist/cli/utilities/auth/reauth-helper.d.ts +2 -0
- package/dist/cli/utilities/server/docker-container.d.ts +1 -0
- package/dist/cli/utilities/version/get-engine-version-range.d.ts +1 -0
- package/dist/cli/utilities/version/resolve-highest-engine-version.d.ts +1 -0
- package/dist/cli.cjs +34 -34
- package/dist/cli.mjs +1705 -1700
- package/dist/define/index.cjs +11 -11
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +127 -7
- package/dist/define/index.mjs +36081 -36039
- 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 +6 -3
- package/dist/front-component/index.mjs +8 -8
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/front-component-renderer.cjs +1 -1
- package/dist/get-function-input-schema-GNk3NRLJ-DMgchWCN.js +1 -0
- package/dist/{get-function-input-schema-NI9y_bIk-LH_O2OgF.mjs → get-function-input-schema-GNk3NRLJ-oMYSgib9.mjs} +31 -21
- package/dist/icon-BSeT8K5G-Cuhg-Bz6.js +1 -0
- package/dist/icon-BSeT8K5G-WVhoiRKN.mjs +10144 -0
- package/dist/logic-function/get-function-input-schema-GNk3NRLJ-D8x7FINz.js +2 -0
- package/dist/logic-function/get-function-input-schema-GNk3NRLJ-D8x7FINz.js.map +1 -0
- package/dist/logic-function/get-function-input-schema-GNk3NRLJ-DSc3lI49.mjs +75 -0
- package/dist/logic-function/get-function-input-schema-GNk3NRLJ-DSc3lI49.mjs.map +1 -0
- package/dist/logic-function/index.cjs +4 -4
- package/dist/logic-function/index.cjs.map +1 -1
- package/dist/logic-function/index.d.ts +18 -3
- package/dist/logic-function/index.mjs +143 -28
- package/dist/logic-function/index.mjs.map +1 -1
- package/dist/logic-function/isDefined-Dtu5EYqP-CMNeFg4z.mjs +7 -0
- package/dist/logic-function/isDefined-Dtu5EYqP-CMNeFg4z.mjs.map +1 -0
- package/dist/logic-function/isDefined-Dtu5EYqP-Dp026Ry1.js +2 -0
- package/dist/logic-function/isDefined-Dtu5EYqP-Dp026Ry1.js.map +1 -0
- package/dist/{login-oauth-BMTHndmD.mjs → login-Cm5IBGFm.mjs} +39521 -39320
- package/dist/login-LjERatsq.js +345 -0
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +4 -4
- package/dist/ui/index.cjs +33 -6
- package/dist/ui/index.d.ts +18 -12
- package/dist/ui/index.mjs +20408 -1123
- package/dist/utils/index.cjs +1 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.ts +3 -1
- package/dist/utils/index.mjs +9 -8
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +5 -3
- package/dist/AllIcons-BwIoyggb-Ck9DmOFs.js +0 -1
- package/dist/catalog-sync-MvJJHh7v.js +0 -1
- package/dist/display-Co0K-nTB-CPdyKmin.js +0 -83
- package/dist/display-Co0K-nTB-DIalVNdw.mjs +0 -54655
- package/dist/get-function-input-schema-NI9y_bIk-BZ2G7LIj.js +0 -1
- package/dist/login-oauth-DN2eTP67.js +0 -345
package/dist/define/index.d.ts
CHANGED
|
@@ -698,6 +698,7 @@ type ViewConfiguration = {
|
|
|
698
698
|
type RecordTableConfiguration = {
|
|
699
699
|
configurationType: 'RECORD_TABLE';
|
|
700
700
|
viewId?: string;
|
|
701
|
+
recordLimit?: number;
|
|
701
702
|
};
|
|
702
703
|
type FieldConfiguration = {
|
|
703
704
|
configurationType: 'FIELD';
|
|
@@ -907,8 +908,17 @@ type IndexManifest = SyncableEntityOptions$1 & {
|
|
|
907
908
|
fields: IndexFieldManifest[];
|
|
908
909
|
};
|
|
909
910
|
|
|
911
|
+
type WebhookWorkspaceIdSource = 'body' | 'query' | 'header';
|
|
912
|
+
type ServerWebhookTriggerSettings = {
|
|
913
|
+
workspaceIdResolver: {
|
|
914
|
+
source: WebhookWorkspaceIdSource;
|
|
915
|
+
path: string;
|
|
916
|
+
};
|
|
917
|
+
forwardedRequestHeaders?: string[];
|
|
918
|
+
};
|
|
919
|
+
|
|
910
920
|
type InputJsonSchema = {
|
|
911
|
-
type?: 'string' | 'number' | 'boolean' | 'object' | 'array' | 'integer' | 'null';
|
|
921
|
+
type?: 'string' | 'number' | 'boolean' | 'object' | 'array' | 'integer' | 'null' | 'record' | 'records';
|
|
912
922
|
description?: string;
|
|
913
923
|
enum?: unknown[];
|
|
914
924
|
items?: InputJsonSchema;
|
|
@@ -919,6 +929,7 @@ type InputJsonSchema = {
|
|
|
919
929
|
maximum?: number;
|
|
920
930
|
multiline?: boolean;
|
|
921
931
|
label?: string;
|
|
932
|
+
objectUniversalIdentifier?: string;
|
|
922
933
|
};
|
|
923
934
|
|
|
924
935
|
type ToolTriggerSettings = {
|
|
@@ -928,7 +939,8 @@ type ToolTriggerSettings = {
|
|
|
928
939
|
type LeafType = 'string' | 'number' | 'boolean' | 'array' | 'unknown';
|
|
929
940
|
type NodeType = 'object' | 'unknown';
|
|
930
941
|
|
|
931
|
-
type
|
|
942
|
+
type RecordSchemaType = 'record' | 'records';
|
|
943
|
+
type InputSchemaPropertyType = LeafType | NodeType | RecordSchemaType | FieldMetadataType;
|
|
932
944
|
type InputSchemaProperty = {
|
|
933
945
|
type: InputSchemaPropertyType;
|
|
934
946
|
enum?: string[];
|
|
@@ -936,6 +948,7 @@ type InputSchemaProperty = {
|
|
|
936
948
|
properties?: Properties$1;
|
|
937
949
|
multiline?: boolean;
|
|
938
950
|
label?: string;
|
|
951
|
+
objectUniversalIdentifier?: string;
|
|
939
952
|
};
|
|
940
953
|
type Properties$1 = {
|
|
941
954
|
[name: string]: InputSchemaProperty;
|
|
@@ -956,6 +969,7 @@ type LogicFunctionManifest = SyncableEntityOptions$1 & {
|
|
|
956
969
|
cronTriggerSettings?: CronTriggerSettings;
|
|
957
970
|
databaseEventTriggerSettings?: DatabaseEventTriggerSettings;
|
|
958
971
|
httpRouteTriggerSettings?: HttpRouteTriggerSettings;
|
|
972
|
+
serverWebhookTriggerSettings?: ServerWebhookTriggerSettings;
|
|
959
973
|
toolTriggerSettings?: ToolTriggerSettings;
|
|
960
974
|
workflowActionTriggerSettings?: WorkflowActionTriggerSettings;
|
|
961
975
|
sourceHandlerPath: string;
|
|
@@ -1052,6 +1066,23 @@ type FieldPermissionManifest = SyncableEntityOptions$1 & {
|
|
|
1052
1066
|
canReadFieldValue?: boolean;
|
|
1053
1067
|
canUpdateFieldValue?: boolean;
|
|
1054
1068
|
};
|
|
1069
|
+
type RowLevelPermissionPredicateGroupManifest = SyncableEntityOptions$1 & {
|
|
1070
|
+
objectUniversalIdentifier: string;
|
|
1071
|
+
logicalOperator: RowLevelPermissionPredicateGroupLogicalOperator;
|
|
1072
|
+
parentPredicateGroupUniversalIdentifier?: string | null;
|
|
1073
|
+
position?: number | null;
|
|
1074
|
+
};
|
|
1075
|
+
type RowLevelPermissionPredicateManifest = SyncableEntityOptions$1 & {
|
|
1076
|
+
objectUniversalIdentifier: string;
|
|
1077
|
+
fieldUniversalIdentifier: string;
|
|
1078
|
+
operand: RowLevelPermissionPredicateOperand;
|
|
1079
|
+
value?: RowLevelPermissionPredicateValue | null;
|
|
1080
|
+
subFieldName?: string | null;
|
|
1081
|
+
workspaceMemberFieldUniversalIdentifier?: string | null;
|
|
1082
|
+
workspaceMemberSubFieldName?: string | null;
|
|
1083
|
+
predicateGroupUniversalIdentifier?: string | null;
|
|
1084
|
+
position?: number | null;
|
|
1085
|
+
};
|
|
1055
1086
|
type RoleManifest = SyncableEntityOptions$1 & {
|
|
1056
1087
|
label: string;
|
|
1057
1088
|
description?: string;
|
|
@@ -1067,6 +1098,8 @@ type RoleManifest = SyncableEntityOptions$1 & {
|
|
|
1067
1098
|
canBeAssignedToApiKeys?: boolean;
|
|
1068
1099
|
objectPermissions?: ObjectPermissionManifest[];
|
|
1069
1100
|
fieldPermissions?: FieldPermissionManifest[];
|
|
1101
|
+
rowLevelPermissionPredicates?: RowLevelPermissionPredicateManifest[];
|
|
1102
|
+
rowLevelPermissionPredicateGroups?: RowLevelPermissionPredicateGroupManifest[];
|
|
1070
1103
|
permissionFlagUniversalIdentifiers?: string[];
|
|
1071
1104
|
};
|
|
1072
1105
|
|
|
@@ -1129,6 +1162,7 @@ type ViewManifest = SyncableEntityOptions$1 & {
|
|
|
1129
1162
|
openRecordIn?: ViewOpenRecordIn;
|
|
1130
1163
|
mainGroupByFieldMetadataUniversalIdentifier?: string;
|
|
1131
1164
|
shouldHideEmptyGroups?: boolean;
|
|
1165
|
+
kanbanColumnWidth?: number | null;
|
|
1132
1166
|
kanbanAggregateOperation?: AggregateOperations;
|
|
1133
1167
|
kanbanAggregateOperationFieldMetadataUniversalIdentifier?: string;
|
|
1134
1168
|
calendarLayout?: ViewCalendarLayout;
|
|
@@ -1896,9 +1930,6 @@ declare const STANDARD_OBJECTS: {
|
|
|
1896
1930
|
readonly calendarEventParticipants: {
|
|
1897
1931
|
readonly universalIdentifier: "20202020-e07e-4ccb-88f5-6f3d00458eec";
|
|
1898
1932
|
};
|
|
1899
|
-
readonly recordingPreference: {
|
|
1900
|
-
readonly universalIdentifier: "1d231e7e-9bbe-410b-8007-ea7678a83e58";
|
|
1901
|
-
};
|
|
1902
1933
|
readonly callRecordings: {
|
|
1903
1934
|
readonly universalIdentifier: "48d6d151-18e2-4111-b405-d85fb9d860d8";
|
|
1904
1935
|
};
|
|
@@ -1946,6 +1977,55 @@ declare const STANDARD_OBJECTS: {
|
|
|
1946
1977
|
};
|
|
1947
1978
|
};
|
|
1948
1979
|
};
|
|
1980
|
+
readonly calendarEventRecordPageFields: {
|
|
1981
|
+
readonly universalIdentifier: "c73668d1-022d-4eaf-b825-4e2548180db6";
|
|
1982
|
+
readonly viewFieldGroups: {
|
|
1983
|
+
readonly general: {
|
|
1984
|
+
readonly universalIdentifier: "aeadeb9e-3673-4c0c-8845-f59cb1e6ca42";
|
|
1985
|
+
};
|
|
1986
|
+
readonly system: {
|
|
1987
|
+
readonly universalIdentifier: "eb1aadeb-7feb-44d1-9f9a-e9929e8690fc";
|
|
1988
|
+
};
|
|
1989
|
+
};
|
|
1990
|
+
readonly viewFields: {
|
|
1991
|
+
readonly title: {
|
|
1992
|
+
readonly universalIdentifier: "d17fc76f-2c3a-4c84-8249-27227bf71638";
|
|
1993
|
+
};
|
|
1994
|
+
readonly startsAt: {
|
|
1995
|
+
readonly universalIdentifier: "7bbd3744-d870-4704-882c-071732ed23d9";
|
|
1996
|
+
};
|
|
1997
|
+
readonly endsAt: {
|
|
1998
|
+
readonly universalIdentifier: "ed7ca7e9-c8b3-4516-be4c-6491a27af847";
|
|
1999
|
+
};
|
|
2000
|
+
readonly isFullDay: {
|
|
2001
|
+
readonly universalIdentifier: "5d8f89b7-ec9e-41d6-9efe-96f9c32e6c20";
|
|
2002
|
+
};
|
|
2003
|
+
readonly isCanceled: {
|
|
2004
|
+
readonly universalIdentifier: "a01f490d-cf67-4458-801e-13d81e74b45a";
|
|
2005
|
+
};
|
|
2006
|
+
readonly conferenceLink: {
|
|
2007
|
+
readonly universalIdentifier: "5ad748ae-e1bb-47bb-ac34-d82663c31b6e";
|
|
2008
|
+
};
|
|
2009
|
+
readonly location: {
|
|
2010
|
+
readonly universalIdentifier: "66c73e74-56e6-40c3-b776-0081ee757b8a";
|
|
2011
|
+
};
|
|
2012
|
+
readonly description: {
|
|
2013
|
+
readonly universalIdentifier: "a09449be-b23f-48d4-b0dc-0bd36813220a";
|
|
2014
|
+
};
|
|
2015
|
+
readonly externalCreatedAt: {
|
|
2016
|
+
readonly universalIdentifier: "689c3eba-bedf-4a52-b9f1-3e34ce718251";
|
|
2017
|
+
};
|
|
2018
|
+
readonly externalUpdatedAt: {
|
|
2019
|
+
readonly universalIdentifier: "7823fa45-8cba-47ba-8dfb-5841bef44fc6";
|
|
2020
|
+
};
|
|
2021
|
+
readonly iCalUid: {
|
|
2022
|
+
readonly universalIdentifier: "8be763dd-6217-47fb-a7d2-ac223af881d2";
|
|
2023
|
+
};
|
|
2024
|
+
readonly conferenceSolution: {
|
|
2025
|
+
readonly universalIdentifier: "795905b6-c6f8-42cf-b8ea-3e5b6d32145f";
|
|
2026
|
+
};
|
|
2027
|
+
};
|
|
2028
|
+
};
|
|
1949
2029
|
};
|
|
1950
2030
|
};
|
|
1951
2031
|
readonly callRecording: {
|
|
@@ -1969,6 +2049,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
1969
2049
|
readonly status: {
|
|
1970
2050
|
readonly universalIdentifier: "3e617680-d93e-4309-a54f-90f69528bfd7";
|
|
1971
2051
|
};
|
|
2052
|
+
readonly recordingRequestStatus: {
|
|
2053
|
+
readonly universalIdentifier: "7fd681c9-244c-4e98-8939-7b175d472638";
|
|
2054
|
+
};
|
|
1972
2055
|
readonly applicationId: {
|
|
1973
2056
|
readonly universalIdentifier: "24ec1239-1240-42cb-8a2d-302632378e09";
|
|
1974
2057
|
};
|
|
@@ -2024,6 +2107,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
2024
2107
|
readonly status: {
|
|
2025
2108
|
readonly universalIdentifier: "6c4a81a2-d9c1-4f82-984c-f97e083ca710";
|
|
2026
2109
|
};
|
|
2110
|
+
readonly recordingRequestStatus: {
|
|
2111
|
+
readonly universalIdentifier: "3bdedacd-0fd5-4175-8d28-2fe41bb5aa77";
|
|
2112
|
+
};
|
|
2027
2113
|
readonly title: {
|
|
2028
2114
|
readonly universalIdentifier: "b1d5051b-071d-4514-93cf-704724cdc8f6";
|
|
2029
2115
|
};
|
|
@@ -2046,6 +2132,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
2046
2132
|
readonly status: {
|
|
2047
2133
|
readonly universalIdentifier: "93483569-fcd2-46cf-b576-9f0318ad2b3b";
|
|
2048
2134
|
};
|
|
2135
|
+
readonly recordingRequestStatus: {
|
|
2136
|
+
readonly universalIdentifier: "364a90b1-e9aa-4606-996b-46e579ebeb28";
|
|
2137
|
+
};
|
|
2049
2138
|
readonly startedAt: {
|
|
2050
2139
|
readonly universalIdentifier: "3fd00fbb-c153-45e3-b6e6-43d18d34052a";
|
|
2051
2140
|
};
|
|
@@ -4975,6 +5064,33 @@ declare const STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS: {
|
|
|
4975
5064
|
};
|
|
4976
5065
|
};
|
|
4977
5066
|
};
|
|
5067
|
+
calendarEventRecordPage: {
|
|
5068
|
+
universalIdentifier: string;
|
|
5069
|
+
tabs: {
|
|
5070
|
+
home: {
|
|
5071
|
+
universalIdentifier: string;
|
|
5072
|
+
widgets: {
|
|
5073
|
+
fields: {
|
|
5074
|
+
universalIdentifier: string;
|
|
5075
|
+
};
|
|
5076
|
+
participants: {
|
|
5077
|
+
universalIdentifier: string;
|
|
5078
|
+
};
|
|
5079
|
+
callRecordings: {
|
|
5080
|
+
universalIdentifier: string;
|
|
5081
|
+
};
|
|
5082
|
+
};
|
|
5083
|
+
};
|
|
5084
|
+
timeline: {
|
|
5085
|
+
universalIdentifier: string;
|
|
5086
|
+
widgets: {
|
|
5087
|
+
timeline: {
|
|
5088
|
+
universalIdentifier: string;
|
|
5089
|
+
};
|
|
5090
|
+
};
|
|
5091
|
+
};
|
|
5092
|
+
};
|
|
5093
|
+
};
|
|
4978
5094
|
calendarEventParticipantRecordPage: {
|
|
4979
5095
|
universalIdentifier: string;
|
|
4980
5096
|
tabs: {
|
|
@@ -5154,6 +5270,10 @@ declare const STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS: {
|
|
|
5154
5270
|
};
|
|
5155
5271
|
};
|
|
5156
5272
|
|
|
5273
|
+
type TwentyRecord<TObjectUniversalIdentifier extends string = string> = string & {
|
|
5274
|
+
readonly __object?: TObjectUniversalIdentifier;
|
|
5275
|
+
};
|
|
5276
|
+
|
|
5157
5277
|
declare const definePageLayout: DefineEntity<PageLayoutConfig>;
|
|
5158
5278
|
|
|
5159
5279
|
declare const definePageLayoutTab: DefineEntity<PageLayoutTabConfig>;
|
|
@@ -5198,5 +5318,5 @@ declare const defineView: DefineEntity<ViewConfig>;
|
|
|
5198
5318
|
|
|
5199
5319
|
declare const defineViewField: DefineEntity<StandaloneViewFieldManifest>;
|
|
5200
5320
|
|
|
5201
|
-
export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, RelationType, 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, generateDefaultFieldUniversalIdentifier, 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 };
|
|
5202
|
-
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, StandaloneViewFieldManifest, SyncableEntityOptions, ValidationResult, ViewConfig, ViewFieldGroupManifest, ViewFieldManifest, ViewFilterGroupManifest, ViewFilterManifest, ViewGroupManifest, ViewManifestFilterValue, ViewSortManifest };
|
|
5321
|
+
export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, 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, generateDefaultFieldUniversalIdentifier, 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 };
|
|
5322
|
+
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 };
|