twenty-sdk 2.9.0 → 2.10.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/billing/index.cjs.map +1 -1
  3. package/dist/billing/index.mjs.map +1 -1
  4. package/dist/catalog-sync-BHD2q_KA.mjs +18 -0
  5. package/dist/catalog-sync-Dp2RKu2c.js +1 -0
  6. package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +2 -0
  7. package/dist/cli/utilities/build/manifest/utils/validate-conditional-availability-usage.d.ts +1 -0
  8. package/dist/cli/utilities/build/manifest/utils/validate-package-json-dependencies.d.ts +1 -0
  9. package/dist/cli/utilities/entity/entity-view-field-template.d.ts +3 -0
  10. package/dist/cli.cjs +93 -77
  11. package/dist/cli.mjs +1868 -1830
  12. package/dist/define/index.cjs +38 -16
  13. package/dist/define/index.cjs.map +1 -1
  14. package/dist/define/index.d.ts +871 -52
  15. package/dist/define/index.mjs +13655 -3526
  16. package/dist/define/index.mjs.map +1 -1
  17. package/dist/front-component/index.cjs +37 -15
  18. package/dist/front-component/index.cjs.map +1 -1
  19. package/dist/front-component/index.d.ts +1 -135
  20. package/dist/front-component/index.mjs +12833 -3490
  21. package/dist/front-component/index.mjs.map +1 -1
  22. package/dist/get-function-input-schema-DTlcRJz3-BweFaTLz.mjs +73 -0
  23. package/dist/get-function-input-schema-DTlcRJz3-DWdkAlue.js +1 -0
  24. package/dist/logic-function/index.cjs +37 -1
  25. package/dist/logic-function/index.cjs.map +1 -1
  26. package/dist/logic-function/index.d.ts +33 -2
  27. package/dist/logic-function/index.mjs +97 -28
  28. package/dist/logic-function/index.mjs.map +1 -1
  29. package/dist/{login-oauth-DSC3zo9c.mjs → login-oauth-BPSmh2dn.mjs} +15214 -4936
  30. package/dist/login-oauth-DnF6U1Ak.js +340 -0
  31. package/dist/operations.cjs +1 -1
  32. package/dist/operations.mjs +2 -2
  33. package/dist/ui/index.cjs +48 -26
  34. package/dist/ui/index.mjs +20941 -11460
  35. package/dist/utils/index.cjs.map +1 -1
  36. package/dist/utils/index.mjs.map +1 -1
  37. package/package.json +11 -9
  38. package/dist/catalog-sync-CanLpG9v.js +0 -1
  39. package/dist/catalog-sync-DyCidT5d.mjs +0 -16
  40. package/dist/get-function-input-schema-BZ7_XyUh-COeGJwHh.js +0 -1
  41. package/dist/get-function-input-schema-BZ7_XyUh-Dql7-b-j.mjs +0 -62
  42. package/dist/login-oauth-BESuSxoP.js +0 -298
@@ -1,6 +1,26 @@
1
1
  import { CountryCode } from 'libphonenumber-js';
2
2
  import { z } from 'zod';
3
3
 
4
+ type AgentResponseFieldType = 'string' | 'number' | 'boolean';
5
+ type AgentResponseSchema = {
6
+ type: 'object';
7
+ properties: Record<string, {
8
+ type: AgentResponseFieldType;
9
+ description?: string;
10
+ }>;
11
+ required?: string[];
12
+ additionalProperties?: false;
13
+ };
14
+
15
+ type AgentTextResponseFormat = {
16
+ type: 'text';
17
+ };
18
+ type AgentJsonResponseFormat = {
19
+ type: 'json';
20
+ schema: AgentResponseSchema;
21
+ };
22
+ type AgentResponseFormat = AgentTextResponseFormat | AgentJsonResponseFormat;
23
+
4
24
  type SyncableEntityOptions$1 = {
5
25
  universalIdentifier: string;
6
26
  };
@@ -12,6 +32,7 @@ type AgentManifest = SyncableEntityOptions$1 & {
12
32
  description?: string;
13
33
  prompt: string;
14
34
  modelId?: string;
35
+ responseFormat?: AgentResponseFormat;
15
36
  };
16
37
 
17
38
  type SecretApplicationVariable = SyncableEntityOptions$1 & {
@@ -103,6 +124,109 @@ declare enum AggregateOperations {
103
124
  PERCENTAGE_NOT_EMPTY = "PERCENTAGE_NOT_EMPTY"
104
125
  }
105
126
 
127
+ declare enum ContextStorePageType {
128
+ Index = "INDEX_PAGE",
129
+ Record = "RECORD_PAGE",
130
+ Standalone = "STANDALONE_PAGE",
131
+ Settings = "SETTINGS_PAGE"
132
+ }
133
+
134
+ type RestrictedFieldPermissions = {
135
+ canRead?: boolean | null;
136
+ canUpdate?: boolean | null;
137
+ };
138
+
139
+ type RestrictedFieldsPermissions = Record<string, RestrictedFieldPermissions>;
140
+
141
+ declare enum RowLevelPermissionPredicateOperand {
142
+ IS = "IS",
143
+ IS_NOT_NULL = "IS_NOT_NULL",
144
+ IS_NOT = "IS_NOT",
145
+ LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
146
+ GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
147
+ IS_BEFORE = "IS_BEFORE",
148
+ IS_AFTER = "IS_AFTER",
149
+ CONTAINS = "CONTAINS",
150
+ DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
151
+ IS_EMPTY = "IS_EMPTY",
152
+ IS_NOT_EMPTY = "IS_NOT_EMPTY",
153
+ IS_RELATIVE = "IS_RELATIVE",
154
+ IS_IN_PAST = "IS_IN_PAST",
155
+ IS_IN_FUTURE = "IS_IN_FUTURE",
156
+ IS_TODAY = "IS_TODAY",
157
+ VECTOR_SEARCH = "VECTOR_SEARCH"
158
+ }
159
+
160
+ type RelationPredicateValue = {
161
+ isCurrentWorkspaceMemberSelected?: boolean;
162
+ selectedRecordIds: string[];
163
+ };
164
+ type RowLevelPermissionPredicateValue = string | string[] | boolean | number | RelationPredicateValue | Record<string, unknown> | null;
165
+
166
+ type RowLevelPermissionPredicate = {
167
+ id: string;
168
+ fieldMetadataId: string;
169
+ objectMetadataId: string;
170
+ operand: RowLevelPermissionPredicateOperand;
171
+ value: RowLevelPermissionPredicateValue;
172
+ subFieldName: string | null;
173
+ workspaceMemberFieldMetadataId: string | null;
174
+ workspaceMemberSubFieldName: string | null;
175
+ roleId: string;
176
+ };
177
+
178
+ declare enum RowLevelPermissionPredicateGroupLogicalOperator {
179
+ AND = "AND",
180
+ OR = "OR"
181
+ }
182
+
183
+ type RowLevelPermissionPredicateGroup = {
184
+ id: string;
185
+ logicalOperator: RowLevelPermissionPredicateGroupLogicalOperator;
186
+ objectMetadataId: string;
187
+ parentRowLevelPermissionPredicateGroupId: string | null;
188
+ positionInRowLevelPermissionPredicateGroup: number | null;
189
+ roleId: string;
190
+ };
191
+
192
+ type ObjectPermissions = {
193
+ canReadObjectRecords: boolean;
194
+ canUpdateObjectRecords: boolean;
195
+ canSoftDeleteObjectRecords: boolean;
196
+ canDestroyObjectRecords: boolean;
197
+ restrictedFields: RestrictedFieldsPermissions;
198
+ rowLevelPermissionPredicates: RowLevelPermissionPredicate[];
199
+ rowLevelPermissionPredicateGroups: RowLevelPermissionPredicateGroup[];
200
+ };
201
+
202
+ interface ObjectRecord {
203
+ id: string;
204
+ [key: string]: any;
205
+ }
206
+
207
+ type CommandMenuContextApi = {
208
+ pageType: ContextStorePageType;
209
+ isInSidePanel: boolean;
210
+ isDashboardPageLayoutInEditMode: boolean;
211
+ isLayoutCustomizationModeEnabled: boolean;
212
+ favoriteRecordIds: string[];
213
+ isSelectAll: boolean;
214
+ hasAnySoftDeleteFilterOnView: boolean;
215
+ numberOfSelectedRecords: number;
216
+ objectPermissions: ObjectPermissions & {
217
+ objectMetadataId: string;
218
+ };
219
+ selectedRecords: ObjectRecord[];
220
+ featureFlags: Record<string, boolean>;
221
+ permissionFlags: Record<string, boolean>;
222
+ targetObjectReadPermissions: Record<string, boolean>;
223
+ targetObjectWritePermissions: Record<string, boolean>;
224
+ canImpersonate: boolean;
225
+ canAccessFullAdminPanel: boolean;
226
+ objectMetadataItem: Record<string, unknown>;
227
+ objectMetadataLabel: string;
228
+ };
229
+
106
230
  declare enum FieldMetadataType {
107
231
  ACTOR = "ACTOR",
108
232
  ADDRESS = "ADDRESS",
@@ -133,7 +257,7 @@ declare enum FieldMetadataType {
133
257
 
134
258
  type IsExactly<T, U> = [T] extends [U] ? [U] extends [T] ? true : false : false;
135
259
 
136
- type TagColor = 'green' | 'turquoise' | 'sky' | 'blue' | 'purple' | 'pink' | 'red' | 'orange' | 'yellow' | 'gray';
260
+ type TagColor = 'red' | 'ruby' | 'crimson' | 'tomato' | 'orange' | 'amber' | 'yellow' | 'lime' | 'grass' | 'green' | 'jade' | 'mint' | 'turquoise' | 'cyan' | 'sky' | 'blue' | 'iris' | 'violet' | 'purple' | 'plum' | 'pink' | 'bronze' | 'gold' | 'brown' | 'gray';
137
261
  declare class FieldMetadataDefaultOption {
138
262
  id?: string;
139
263
  position: number;
@@ -354,11 +478,16 @@ declare enum DateDisplayFormat {
354
478
  CUSTOM = "CUSTOM"
355
479
  }
356
480
  type FieldNumberVariant = 'number' | 'percentage';
481
+ type FieldCurrencyFormat = 'short' | 'full';
357
482
  type FieldMetadataNumberSettings = {
358
483
  dataType?: NumberDataType;
359
484
  decimals?: number;
360
485
  type?: FieldNumberVariant;
361
486
  };
487
+ type FieldMetadataCurrencySettings = {
488
+ format?: FieldCurrencyFormat;
489
+ decimals?: number;
490
+ };
362
491
  type FieldMetadataTextSettings = {
363
492
  displayedMaxRows?: number;
364
493
  };
@@ -386,6 +515,7 @@ type FieldMetadataTsVectorSettings = {
386
515
  };
387
516
  type FieldMetadataSettingsMapping = {
388
517
  [FieldMetadataType.NUMBER]: FieldMetadataNumberSettings | null;
518
+ [FieldMetadataType.CURRENCY]: FieldMetadataCurrencySettings | null;
389
519
  [FieldMetadataType.DATE]: FieldMetadataDateSettings | null;
390
520
  [FieldMetadataType.DATE_TIME]: FieldMetadataDateTimeSettings | null;
391
521
  [FieldMetadataType.TEXT]: FieldMetadataTextSettings | null;
@@ -507,9 +637,6 @@ type AggregateChartConfiguration = BaseChartConfiguration & {
507
637
  suffix?: string;
508
638
  ratioAggregateConfig?: RatioAggregateConfig;
509
639
  };
510
- type GaugeChartConfiguration = BaseChartConfiguration & {
511
- configurationType: 'GAUGE_CHART';
512
- };
513
640
  type PieChartConfiguration = BaseChartConfiguration & {
514
641
  configurationType: 'PIE_CHART';
515
642
  groupByFieldMetadataId: SerializedRelation;
@@ -575,7 +702,8 @@ type RecordTableConfiguration = {
575
702
  type FieldConfiguration = {
576
703
  configurationType: 'FIELD';
577
704
  fieldMetadataId: string;
578
- fieldDisplayMode: 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW';
705
+ fieldDisplayMode: 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW' | 'TABLE';
706
+ viewId?: string;
579
707
  };
580
708
  type FieldsConfiguration = {
581
709
  configurationType: 'FIELDS';
@@ -631,7 +759,7 @@ type WorkflowVersionConfiguration = {
631
759
  type WorkflowRunConfiguration = {
632
760
  configurationType: 'WORKFLOW_RUN';
633
761
  };
634
- type PageLayoutWidgetConfiguration = AggregateChartConfiguration | GaugeChartConfiguration | PieChartConfiguration | BarChartConfiguration | LineChartConfiguration | ViewConfiguration | RecordTableConfiguration | FieldConfiguration | FieldsConfiguration | FieldRichTextConfiguration | StandaloneRichTextConfiguration | IframeConfiguration | FrontComponentConfiguration | TimelineConfiguration | TasksConfiguration | NotesConfiguration | FilesConfiguration | EmailsConfiguration | CalendarConfiguration | WorkflowConfiguration | WorkflowVersionConfiguration | WorkflowRunConfiguration | EmailThreadConfiguration;
762
+ type PageLayoutWidgetConfiguration = AggregateChartConfiguration | PieChartConfiguration | BarChartConfiguration | LineChartConfiguration | ViewConfiguration | RecordTableConfiguration | FieldConfiguration | FieldsConfiguration | FieldRichTextConfiguration | StandaloneRichTextConfiguration | IframeConfiguration | FrontComponentConfiguration | TimelineConfiguration | TasksConfiguration | NotesConfiguration | FilesConfiguration | EmailsConfiguration | CalendarConfiguration | WorkflowConfiguration | WorkflowVersionConfiguration | WorkflowRunConfiguration | EmailThreadConfiguration;
635
763
 
636
764
  declare enum PageLayoutTabLayoutMode {
637
765
  GRID = "GRID",
@@ -737,6 +865,7 @@ type FieldManifest<T extends FieldMetadataType = FieldMetadataType> = T extends
737
865
  type CommandMenuItemManifest = SyncableEntityOptions$1 & {
738
866
  label: string;
739
867
  shortLabel?: string;
868
+ /** @deprecated icon will be ignored in favor of application icon */
740
869
  icon?: string;
741
870
  isPinned?: boolean;
742
871
  availabilityType?: 'GLOBAL' | 'GLOBAL_OBJECT_CONTEXT' | 'RECORD_SELECTION' | 'FALLBACK';
@@ -946,6 +1075,9 @@ type ViewFieldManifest = SyncableEntityOptions$1 & {
946
1075
  aggregateOperation?: AggregateOperations;
947
1076
  viewFieldGroupUniversalIdentifier?: string;
948
1077
  };
1078
+ type StandaloneViewFieldManifest = ViewFieldManifest & {
1079
+ viewUniversalIdentifier: string;
1080
+ };
949
1081
  type ViewFilterManifest = SyncableEntityOptions$1 & {
950
1082
  fieldMetadataUniversalIdentifier: string;
951
1083
  operand: ViewFilterOperand;
@@ -1059,7 +1191,7 @@ type ValidationResult<T> = {
1059
1191
  errors: string[];
1060
1192
  warnings?: string[];
1061
1193
  };
1062
- type DefinableEntity = ApplicationConfig | ObjectConfig | FieldManifest | FrontComponentConfig | IndexConfig | LogicFunctionConfig | PostInstallLogicFunctionConfig | PreInstallLogicFunctionConfig | AgentManifest | ConnectionProviderManifest | RoleConfig | SkillManifest | ViewConfig | NavigationMenuItemManifest | PageLayoutConfig | PageLayoutTabConfig | PermissionFlagConfig | CommandMenuItemConfig;
1194
+ type DefinableEntity = ApplicationConfig | ObjectConfig | FieldManifest | FrontComponentConfig | IndexConfig | LogicFunctionConfig | PostInstallLogicFunctionConfig | PreInstallLogicFunctionConfig | AgentManifest | ConnectionProviderManifest | RoleConfig | SkillManifest | ViewConfig | StandaloneViewFieldManifest | NavigationMenuItemManifest | PageLayoutConfig | PageLayoutTabConfig | PermissionFlagConfig | CommandMenuItemConfig;
1063
1195
  type DefineEntity<T extends DefinableEntity = DefinableEntity> = (config: T) => ValidationResult<T>;
1064
1196
 
1065
1197
  declare const defineAgent: DefineEntity<AgentManifest>;
@@ -1082,6 +1214,38 @@ declare const validateFields: (fields: ObjectFieldManifest[] | undefined) => str
1082
1214
 
1083
1215
  declare const defineCommandMenuItem: DefineEntity<CommandMenuItemConfig>;
1084
1216
 
1217
+ declare const pageType: CommandMenuContextApi["pageType"];
1218
+ declare const isInSidePanel: CommandMenuContextApi["isInSidePanel"];
1219
+ declare const isDashboardPageLayoutInEditMode: CommandMenuContextApi["isDashboardPageLayoutInEditMode"];
1220
+ declare const isLayoutCustomizationModeEnabled: CommandMenuContextApi["isLayoutCustomizationModeEnabled"];
1221
+ declare const favoriteRecordIds: CommandMenuContextApi["favoriteRecordIds"];
1222
+ declare const isSelectAll: CommandMenuContextApi["isSelectAll"];
1223
+ declare const hasAnySoftDeleteFilterOnView: CommandMenuContextApi["hasAnySoftDeleteFilterOnView"];
1224
+ declare const numberOfSelectedRecords: CommandMenuContextApi["numberOfSelectedRecords"];
1225
+ declare const objectPermissions: CommandMenuContextApi["objectPermissions"];
1226
+ declare const selectedRecords: CommandMenuContextApi["selectedRecords"];
1227
+ declare const featureFlags: CommandMenuContextApi["featureFlags"];
1228
+ declare const targetObjectReadPermissions: CommandMenuContextApi["targetObjectReadPermissions"];
1229
+ declare const targetObjectWritePermissions: CommandMenuContextApi["targetObjectWritePermissions"];
1230
+ declare const canImpersonate: CommandMenuContextApi["canImpersonate"];
1231
+ declare const canAccessFullAdminPanel: CommandMenuContextApi["canAccessFullAdminPanel"];
1232
+ declare const objectMetadataItem: CommandMenuContextApi["objectMetadataItem"];
1233
+ declare const objectMetadataLabel: CommandMenuContextApi["objectMetadataLabel"];
1234
+ declare const isDefined: (value: unknown) => boolean;
1235
+ declare const isNonEmptyString: (value: unknown) => boolean;
1236
+ declare const includes: (array: unknown, value: unknown) => boolean;
1237
+ declare const every: (array: unknown, prop: string) => boolean;
1238
+ declare const everyDefined: (array: unknown, prop: string) => boolean;
1239
+ declare const everyEquals: (array: unknown, prop: string, value: unknown) => boolean;
1240
+ declare const some: (array: unknown, prop: string) => boolean;
1241
+ declare const someDefined: (array: unknown, prop: string) => boolean;
1242
+ declare const someEquals: (array: unknown, prop: string, value: unknown) => boolean;
1243
+ declare const none: (array: unknown, prop: string) => boolean;
1244
+ declare const noneDefined: (array: unknown, prop: string) => boolean;
1245
+ declare const noneEquals: (array: unknown, prop: string, value: unknown) => boolean;
1246
+ declare const someNonEmptyString: (array: unknown, prop: string) => boolean;
1247
+ declare const includesEvery: (array: unknown, prop: string, value: unknown) => boolean;
1248
+
1085
1249
  declare const defineFrontComponent: DefineEntity<FrontComponentConfig>;
1086
1250
 
1087
1251
  declare const defineIndex: DefineEntity<IndexConfig>;
@@ -1718,6 +1882,12 @@ declare const STANDARD_OBJECTS: {
1718
1882
  readonly calendarEventParticipants: {
1719
1883
  readonly universalIdentifier: "20202020-e07e-4ccb-88f5-6f3d00458eec";
1720
1884
  };
1885
+ readonly recordingPreference: {
1886
+ readonly universalIdentifier: "1d231e7e-9bbe-410b-8007-ea7678a83e58";
1887
+ };
1888
+ readonly callRecordings: {
1889
+ readonly universalIdentifier: "48d6d151-18e2-4111-b405-d85fb9d860d8";
1890
+ };
1721
1891
  readonly createdBy: {
1722
1892
  readonly universalIdentifier: "664a9500-2641-4caa-8d95-069807bb2eb4";
1723
1893
  };
@@ -1764,6 +1934,126 @@ declare const STANDARD_OBJECTS: {
1764
1934
  };
1765
1935
  };
1766
1936
  };
1937
+ readonly callRecording: {
1938
+ readonly universalIdentifier: "ce19efb9-710f-45b2-b141-473abbeea60b";
1939
+ readonly fields: {
1940
+ readonly id: {
1941
+ readonly universalIdentifier: "9767180b-76c2-47d5-b7b9-5dc60f14391d";
1942
+ };
1943
+ readonly createdAt: {
1944
+ readonly universalIdentifier: "d1adb2a9-9da3-4656-93b7-db79780b77eb";
1945
+ };
1946
+ readonly updatedAt: {
1947
+ readonly universalIdentifier: "5db0a477-5715-4ffd-bdbe-854dfaccfe22";
1948
+ };
1949
+ readonly deletedAt: {
1950
+ readonly universalIdentifier: "cf22a652-390a-4f55-b3a0-615c8fd8c7ed";
1951
+ };
1952
+ readonly title: {
1953
+ readonly universalIdentifier: "4cff8863-a1d1-45fd-a370-4eb6aa1f2a5b";
1954
+ };
1955
+ readonly status: {
1956
+ readonly universalIdentifier: "3e617680-d93e-4309-a54f-90f69528bfd7";
1957
+ };
1958
+ readonly applicationId: {
1959
+ readonly universalIdentifier: "24ec1239-1240-42cb-8a2d-302632378e09";
1960
+ };
1961
+ readonly externalBotId: {
1962
+ readonly universalIdentifier: "0a2da128-9bcc-488b-bc31-65318c41bdf9";
1963
+ };
1964
+ readonly externalRecordingId: {
1965
+ readonly universalIdentifier: "6d17fb71-324b-4625-a5be-b3580607e2c7";
1966
+ };
1967
+ readonly startedAt: {
1968
+ readonly universalIdentifier: "6c56c23f-1987-410a-860a-df3b2b3f9a33";
1969
+ };
1970
+ readonly endedAt: {
1971
+ readonly universalIdentifier: "7a38a9cf-8424-4d6e-b80a-6883d3c662ef";
1972
+ };
1973
+ readonly video: {
1974
+ readonly universalIdentifier: "bb9523d3-457e-4f4b-8c79-27a77afb87da";
1975
+ };
1976
+ readonly audio: {
1977
+ readonly universalIdentifier: "2eafc2d0-8fec-430c-a939-65ca5fbc0f08";
1978
+ };
1979
+ readonly transcript: {
1980
+ readonly universalIdentifier: "27b86d68-57d1-4607-aca0-191896b1ad43";
1981
+ };
1982
+ readonly summary: {
1983
+ readonly universalIdentifier: "adb0f472-756b-4d3f-b21e-ea32bf73a5e4";
1984
+ };
1985
+ readonly calendarEvent: {
1986
+ readonly universalIdentifier: "49e64b28-bd98-4775-80ea-4781bdd45e35";
1987
+ };
1988
+ readonly createdBy: {
1989
+ readonly universalIdentifier: "cb84ce87-ccd4-4901-9b9e-25e3cbfce3ba";
1990
+ };
1991
+ readonly updatedBy: {
1992
+ readonly universalIdentifier: "02309262-b6dc-4cbd-936b-d851a7deec79";
1993
+ };
1994
+ readonly position: {
1995
+ readonly universalIdentifier: "eeae3145-3696-41ae-b0ed-1370ad35b33c";
1996
+ };
1997
+ readonly searchVector: {
1998
+ readonly universalIdentifier: "d6fd4ad0-4aec-4969-bdb5-945fda0fcf45";
1999
+ };
2000
+ };
2001
+ readonly indexes: {
2002
+ readonly calendarEventIdIndex: {
2003
+ readonly universalIdentifier: "8be3cc47-9352-4a1b-ad19-bb186bc0865d";
2004
+ };
2005
+ };
2006
+ readonly views: {
2007
+ readonly allCallRecordings: {
2008
+ readonly universalIdentifier: "c395b55e-88f0-4d5b-a1fb-0d38b50e0b19";
2009
+ readonly viewFields: {
2010
+ readonly status: {
2011
+ readonly universalIdentifier: "6c4a81a2-d9c1-4f82-984c-f97e083ca710";
2012
+ };
2013
+ readonly title: {
2014
+ readonly universalIdentifier: "b1d5051b-071d-4514-93cf-704724cdc8f6";
2015
+ };
2016
+ readonly startedAt: {
2017
+ readonly universalIdentifier: "3b96351f-66ed-4fa6-acb6-698647573af7";
2018
+ };
2019
+ };
2020
+ };
2021
+ readonly callRecordingRecordPageFields: {
2022
+ readonly universalIdentifier: "99fa8b47-3b11-4f9b-8fbc-e67a9e1da682";
2023
+ readonly viewFieldGroups: {
2024
+ readonly general: {
2025
+ readonly universalIdentifier: "068426eb-dd20-49b0-ae9c-68727f3be2fb";
2026
+ };
2027
+ };
2028
+ readonly viewFields: {
2029
+ readonly title: {
2030
+ readonly universalIdentifier: "6308d574-8579-4cf2-a020-c208df97cf3e";
2031
+ };
2032
+ readonly status: {
2033
+ readonly universalIdentifier: "93483569-fcd2-46cf-b576-9f0318ad2b3b";
2034
+ };
2035
+ readonly startedAt: {
2036
+ readonly universalIdentifier: "3fd00fbb-c153-45e3-b6e6-43d18d34052a";
2037
+ };
2038
+ readonly endedAt: {
2039
+ readonly universalIdentifier: "ba8c8d41-c112-4173-b927-5b5c5a5c047b";
2040
+ };
2041
+ readonly video: {
2042
+ readonly universalIdentifier: "acc54ade-cd26-4be2-9391-a42715ad1523";
2043
+ };
2044
+ readonly audio: {
2045
+ readonly universalIdentifier: "9445a547-1d1e-4da3-916b-2c2269c951c9";
2046
+ };
2047
+ readonly transcript: {
2048
+ readonly universalIdentifier: "782c97f6-e6b1-472b-8992-bbb60d25791b";
2049
+ };
2050
+ readonly summary: {
2051
+ readonly universalIdentifier: "a0ace064-cc72-4631-ade3-07cdded86b0e";
2052
+ };
2053
+ };
2054
+ };
2055
+ };
2056
+ };
1767
2057
  readonly company: {
1768
2058
  readonly universalIdentifier: "20202020-b374-4779-a561-80086cb2e17f";
1769
2059
  readonly fields: {
@@ -1788,20 +2078,11 @@ declare const STANDARD_OBJECTS: {
1788
2078
  readonly address: {
1789
2079
  readonly universalIdentifier: "20202020-c5ce-4adc-b7b6-9c0979fc55e7";
1790
2080
  };
1791
- readonly employees: {
1792
- readonly universalIdentifier: "20202020-8965-464a-8a75-74bafc152a0b";
1793
- };
1794
2081
  readonly linkedinLink: {
1795
2082
  readonly universalIdentifier: "20202020-ebeb-4beb-b9ad-6848036fb451";
1796
2083
  };
1797
- readonly xLink: {
1798
- readonly universalIdentifier: "20202020-6f64-4fd9-9580-9c1991c7d8c3";
1799
- };
1800
- readonly annualRecurringRevenue: {
1801
- readonly universalIdentifier: "20202020-602a-495c-9776-f5d5b11d227b";
1802
- };
1803
- readonly idealCustomerProfile: {
1804
- readonly universalIdentifier: "20202020-ba6b-438a-8213-2c5ba28d76a2";
2084
+ readonly annualRevenue: {
2085
+ readonly universalIdentifier: "60f533b7-2166-4071-a767-ceb0286822fd";
1805
2086
  };
1806
2087
  readonly position: {
1807
2088
  readonly universalIdentifier: "20202020-9b4e-462b-991d-a0ee33326454";
@@ -1867,9 +2148,6 @@ declare const STANDARD_OBJECTS: {
1867
2148
  readonly createdAt: {
1868
2149
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf005";
1869
2150
  };
1870
- readonly employees: {
1871
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf006";
1872
- };
1873
2151
  readonly linkedinLink: {
1874
2152
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf007";
1875
2153
  };
@@ -1901,21 +2179,12 @@ declare const STANDARD_OBJECTS: {
1901
2179
  readonly accountOwner: {
1902
2180
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1202";
1903
2181
  };
1904
- readonly annualRecurringRevenue: {
1905
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1203";
1906
- };
1907
- readonly idealCustomerProfile: {
1908
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1204";
1909
- };
1910
- readonly employees: {
1911
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1205";
2182
+ readonly annualRevenue: {
2183
+ readonly universalIdentifier: "2a35f734-dea2-4de9-8395-acbce8df0f97";
1912
2184
  };
1913
2185
  readonly linkedinLink: {
1914
2186
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1206";
1915
2187
  };
1916
- readonly xLink: {
1917
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1207";
1918
- };
1919
2188
  readonly address: {
1920
2189
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1208";
1921
2190
  };
@@ -2893,18 +3162,12 @@ declare const STANDARD_OBJECTS: {
2893
3162
  readonly linkedinLink: {
2894
3163
  readonly universalIdentifier: "20202020-f1af-48f7-893b-2007a73dd508";
2895
3164
  };
2896
- readonly xLink: {
2897
- readonly universalIdentifier: "20202020-8fc2-487c-b84a-55a99b145cfd";
2898
- };
2899
3165
  readonly jobTitle: {
2900
3166
  readonly universalIdentifier: "20202020-b0d0-415a-bef9-640a26dacd9b";
2901
3167
  };
2902
3168
  readonly phones: {
2903
3169
  readonly universalIdentifier: "20202020-0638-448e-8825-439134618022";
2904
3170
  };
2905
- readonly city: {
2906
- readonly universalIdentifier: "20202020-5243-4ffb-afc5-2c675da41346";
2907
- };
2908
3171
  readonly avatarUrl: {
2909
3172
  readonly universalIdentifier: "20202020-b8a6-40df-961c-373dc5d2ec21";
2910
3173
  };
@@ -2981,18 +3244,12 @@ declare const STANDARD_OBJECTS: {
2981
3244
  readonly createdAt: {
2982
3245
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af5";
2983
3246
  };
2984
- readonly city: {
2985
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af6";
2986
- };
2987
3247
  readonly jobTitle: {
2988
3248
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af7";
2989
3249
  };
2990
3250
  readonly linkedinLink: {
2991
3251
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af8";
2992
3252
  };
2993
- readonly xLink: {
2994
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af9";
2995
- };
2996
3253
  };
2997
3254
  };
2998
3255
  readonly personRecordPageFields: {
@@ -3027,12 +3284,6 @@ declare const STANDARD_OBJECTS: {
3027
3284
  readonly linkedinLink: {
3028
3285
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12205";
3029
3286
  };
3030
- readonly xLink: {
3031
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12206";
3032
- };
3033
- readonly city: {
3034
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12207";
3035
- };
3036
3287
  readonly avatarUrl: {
3037
3288
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12208";
3038
3289
  };
@@ -3750,6 +4001,9 @@ declare const STANDARD_OBJECTS: {
3750
4001
  readonly state: {
3751
4002
  readonly universalIdentifier: "20202020-611f-45f3-9cde-d64927e8ec57";
3752
4003
  };
4004
+ readonly stepLogs: {
4005
+ readonly universalIdentifier: "20202020-7c4e-4e1a-8fc1-1e3a55d6c2a1";
4006
+ };
3753
4007
  readonly timelineActivities: {
3754
4008
  readonly universalIdentifier: "20202020-af4d-4eb0-babc-eb960a45b356";
3755
4009
  };
@@ -4099,6 +4353,569 @@ declare const STANDARD_OBJECTS: {
4099
4353
  };
4100
4354
  };
4101
4355
 
4356
+ declare const STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS: {
4357
+ myFirstDashboard: {
4358
+ universalIdentifier: string;
4359
+ tabs: {
4360
+ tab1: {
4361
+ universalIdentifier: string;
4362
+ widgets: {
4363
+ welcomeRichText: {
4364
+ universalIdentifier: string;
4365
+ };
4366
+ dealsByCompany: {
4367
+ universalIdentifier: string;
4368
+ };
4369
+ pipelineValueByStage: {
4370
+ universalIdentifier: string;
4371
+ };
4372
+ revenueTimeline: {
4373
+ universalIdentifier: string;
4374
+ };
4375
+ opportunitiesByOwner: {
4376
+ universalIdentifier: string;
4377
+ };
4378
+ stockMarketIframe: {
4379
+ universalIdentifier: string;
4380
+ };
4381
+ dealsCreatedThisMonth: {
4382
+ universalIdentifier: string;
4383
+ };
4384
+ dealValueCreatedThisMonth: {
4385
+ universalIdentifier: string;
4386
+ };
4387
+ };
4388
+ };
4389
+ };
4390
+ };
4391
+ companyRecordPage: {
4392
+ universalIdentifier: string;
4393
+ tabs: {
4394
+ home: {
4395
+ universalIdentifier: string;
4396
+ widgets: {
4397
+ fields: {
4398
+ universalIdentifier: string;
4399
+ };
4400
+ people: {
4401
+ universalIdentifier: string;
4402
+ };
4403
+ opportunities: {
4404
+ universalIdentifier: string;
4405
+ };
4406
+ };
4407
+ };
4408
+ timeline: {
4409
+ universalIdentifier: string;
4410
+ widgets: {
4411
+ timeline: {
4412
+ universalIdentifier: string;
4413
+ };
4414
+ };
4415
+ };
4416
+ tasks: {
4417
+ universalIdentifier: string;
4418
+ widgets: {
4419
+ tasks: {
4420
+ universalIdentifier: string;
4421
+ };
4422
+ };
4423
+ };
4424
+ notes: {
4425
+ universalIdentifier: string;
4426
+ widgets: {
4427
+ notes: {
4428
+ universalIdentifier: string;
4429
+ };
4430
+ };
4431
+ };
4432
+ files: {
4433
+ universalIdentifier: string;
4434
+ widgets: {
4435
+ files: {
4436
+ universalIdentifier: string;
4437
+ };
4438
+ };
4439
+ };
4440
+ emails: {
4441
+ universalIdentifier: string;
4442
+ widgets: {
4443
+ emails: {
4444
+ universalIdentifier: string;
4445
+ };
4446
+ };
4447
+ };
4448
+ calendar: {
4449
+ universalIdentifier: string;
4450
+ widgets: {
4451
+ calendar: {
4452
+ universalIdentifier: string;
4453
+ };
4454
+ };
4455
+ };
4456
+ };
4457
+ };
4458
+ personRecordPage: {
4459
+ universalIdentifier: string;
4460
+ tabs: {
4461
+ home: {
4462
+ universalIdentifier: string;
4463
+ widgets: {
4464
+ fields: {
4465
+ universalIdentifier: string;
4466
+ };
4467
+ company: {
4468
+ universalIdentifier: string;
4469
+ };
4470
+ pointOfContactForOpportunities: {
4471
+ universalIdentifier: string;
4472
+ };
4473
+ };
4474
+ };
4475
+ timeline: {
4476
+ universalIdentifier: string;
4477
+ widgets: {
4478
+ timeline: {
4479
+ universalIdentifier: string;
4480
+ };
4481
+ };
4482
+ };
4483
+ tasks: {
4484
+ universalIdentifier: string;
4485
+ widgets: {
4486
+ tasks: {
4487
+ universalIdentifier: string;
4488
+ };
4489
+ };
4490
+ };
4491
+ notes: {
4492
+ universalIdentifier: string;
4493
+ widgets: {
4494
+ notes: {
4495
+ universalIdentifier: string;
4496
+ };
4497
+ };
4498
+ };
4499
+ files: {
4500
+ universalIdentifier: string;
4501
+ widgets: {
4502
+ files: {
4503
+ universalIdentifier: string;
4504
+ };
4505
+ };
4506
+ };
4507
+ emails: {
4508
+ universalIdentifier: string;
4509
+ widgets: {
4510
+ emails: {
4511
+ universalIdentifier: string;
4512
+ };
4513
+ };
4514
+ };
4515
+ calendar: {
4516
+ universalIdentifier: string;
4517
+ widgets: {
4518
+ calendar: {
4519
+ universalIdentifier: string;
4520
+ };
4521
+ };
4522
+ };
4523
+ };
4524
+ };
4525
+ opportunityRecordPage: {
4526
+ universalIdentifier: string;
4527
+ tabs: {
4528
+ home: {
4529
+ universalIdentifier: string;
4530
+ widgets: {
4531
+ fields: {
4532
+ universalIdentifier: string;
4533
+ };
4534
+ pointOfContact: {
4535
+ universalIdentifier: string;
4536
+ };
4537
+ company: {
4538
+ universalIdentifier: string;
4539
+ };
4540
+ owner: {
4541
+ universalIdentifier: string;
4542
+ };
4543
+ };
4544
+ };
4545
+ timeline: {
4546
+ universalIdentifier: string;
4547
+ widgets: {
4548
+ timeline: {
4549
+ universalIdentifier: string;
4550
+ };
4551
+ };
4552
+ };
4553
+ tasks: {
4554
+ universalIdentifier: string;
4555
+ widgets: {
4556
+ tasks: {
4557
+ universalIdentifier: string;
4558
+ };
4559
+ };
4560
+ };
4561
+ notes: {
4562
+ universalIdentifier: string;
4563
+ widgets: {
4564
+ notes: {
4565
+ universalIdentifier: string;
4566
+ };
4567
+ };
4568
+ };
4569
+ files: {
4570
+ universalIdentifier: string;
4571
+ widgets: {
4572
+ files: {
4573
+ universalIdentifier: string;
4574
+ };
4575
+ };
4576
+ };
4577
+ emails: {
4578
+ universalIdentifier: string;
4579
+ widgets: {
4580
+ emails: {
4581
+ universalIdentifier: string;
4582
+ };
4583
+ };
4584
+ };
4585
+ calendar: {
4586
+ universalIdentifier: string;
4587
+ widgets: {
4588
+ calendar: {
4589
+ universalIdentifier: string;
4590
+ };
4591
+ };
4592
+ };
4593
+ };
4594
+ };
4595
+ noteRecordPage: {
4596
+ universalIdentifier: string;
4597
+ tabs: {
4598
+ home: {
4599
+ universalIdentifier: string;
4600
+ widgets: {
4601
+ fields: {
4602
+ universalIdentifier: string;
4603
+ };
4604
+ noteRichText: {
4605
+ universalIdentifier: string;
4606
+ };
4607
+ };
4608
+ };
4609
+ note: {
4610
+ universalIdentifier: string;
4611
+ widgets: {
4612
+ noteRichText: {
4613
+ universalIdentifier: string;
4614
+ };
4615
+ };
4616
+ };
4617
+ timeline: {
4618
+ universalIdentifier: string;
4619
+ widgets: {
4620
+ timeline: {
4621
+ universalIdentifier: string;
4622
+ };
4623
+ };
4624
+ };
4625
+ files: {
4626
+ universalIdentifier: string;
4627
+ widgets: {
4628
+ files: {
4629
+ universalIdentifier: string;
4630
+ };
4631
+ };
4632
+ };
4633
+ };
4634
+ };
4635
+ taskRecordPage: {
4636
+ universalIdentifier: string;
4637
+ tabs: {
4638
+ home: {
4639
+ universalIdentifier: string;
4640
+ widgets: {
4641
+ fields: {
4642
+ universalIdentifier: string;
4643
+ };
4644
+ taskRichText: {
4645
+ universalIdentifier: string;
4646
+ };
4647
+ };
4648
+ };
4649
+ note: {
4650
+ universalIdentifier: string;
4651
+ widgets: {
4652
+ taskRichText: {
4653
+ universalIdentifier: string;
4654
+ };
4655
+ };
4656
+ };
4657
+ timeline: {
4658
+ universalIdentifier: string;
4659
+ widgets: {
4660
+ timeline: {
4661
+ universalIdentifier: string;
4662
+ };
4663
+ };
4664
+ };
4665
+ files: {
4666
+ universalIdentifier: string;
4667
+ widgets: {
4668
+ files: {
4669
+ universalIdentifier: string;
4670
+ };
4671
+ };
4672
+ };
4673
+ };
4674
+ };
4675
+ workflowRecordPage: {
4676
+ universalIdentifier: string;
4677
+ tabs: {
4678
+ flow: {
4679
+ universalIdentifier: string;
4680
+ widgets: {
4681
+ workflow: {
4682
+ universalIdentifier: string;
4683
+ };
4684
+ };
4685
+ };
4686
+ };
4687
+ };
4688
+ workflowVersionRecordPage: {
4689
+ universalIdentifier: string;
4690
+ tabs: {
4691
+ home: {
4692
+ universalIdentifier: string;
4693
+ widgets: {
4694
+ fields: {
4695
+ universalIdentifier: string;
4696
+ };
4697
+ workflow: {
4698
+ universalIdentifier: string;
4699
+ };
4700
+ };
4701
+ };
4702
+ flow: {
4703
+ universalIdentifier: string;
4704
+ widgets: {
4705
+ workflowVersion: {
4706
+ universalIdentifier: string;
4707
+ };
4708
+ };
4709
+ };
4710
+ };
4711
+ };
4712
+ workflowRunRecordPage: {
4713
+ universalIdentifier: string;
4714
+ tabs: {
4715
+ home: {
4716
+ universalIdentifier: string;
4717
+ widgets: {
4718
+ fields: {
4719
+ universalIdentifier: string;
4720
+ };
4721
+ workflow: {
4722
+ universalIdentifier: string;
4723
+ };
4724
+ };
4725
+ };
4726
+ flow: {
4727
+ universalIdentifier: string;
4728
+ widgets: {
4729
+ workflowRun: {
4730
+ universalIdentifier: string;
4731
+ };
4732
+ };
4733
+ };
4734
+ };
4735
+ };
4736
+ blocklistRecordPage: {
4737
+ universalIdentifier: string;
4738
+ tabs: {
4739
+ home: {
4740
+ universalIdentifier: string;
4741
+ widgets: {
4742
+ fields: {
4743
+ universalIdentifier: string;
4744
+ };
4745
+ };
4746
+ };
4747
+ timeline: {
4748
+ universalIdentifier: string;
4749
+ widgets: {
4750
+ timeline: {
4751
+ universalIdentifier: string;
4752
+ };
4753
+ };
4754
+ };
4755
+ };
4756
+ };
4757
+ calendarChannelEventAssociationRecordPage: {
4758
+ universalIdentifier: string;
4759
+ tabs: {
4760
+ home: {
4761
+ universalIdentifier: string;
4762
+ widgets: {
4763
+ fields: {
4764
+ universalIdentifier: string;
4765
+ };
4766
+ };
4767
+ };
4768
+ timeline: {
4769
+ universalIdentifier: string;
4770
+ widgets: {
4771
+ timeline: {
4772
+ universalIdentifier: string;
4773
+ };
4774
+ };
4775
+ };
4776
+ };
4777
+ };
4778
+ calendarEventParticipantRecordPage: {
4779
+ universalIdentifier: string;
4780
+ tabs: {
4781
+ home: {
4782
+ universalIdentifier: string;
4783
+ widgets: {
4784
+ fields: {
4785
+ universalIdentifier: string;
4786
+ };
4787
+ };
4788
+ };
4789
+ timeline: {
4790
+ universalIdentifier: string;
4791
+ widgets: {
4792
+ timeline: {
4793
+ universalIdentifier: string;
4794
+ };
4795
+ };
4796
+ };
4797
+ };
4798
+ };
4799
+ callRecordingRecordPage: {
4800
+ universalIdentifier: string;
4801
+ tabs: {
4802
+ home: {
4803
+ universalIdentifier: string;
4804
+ widgets: {
4805
+ fields: {
4806
+ universalIdentifier: string;
4807
+ };
4808
+ };
4809
+ };
4810
+ timeline: {
4811
+ universalIdentifier: string;
4812
+ widgets: {
4813
+ timeline: {
4814
+ universalIdentifier: string;
4815
+ };
4816
+ };
4817
+ };
4818
+ };
4819
+ };
4820
+ messageChannelMessageAssociationRecordPage: {
4821
+ universalIdentifier: string;
4822
+ tabs: {
4823
+ home: {
4824
+ universalIdentifier: string;
4825
+ widgets: {
4826
+ fields: {
4827
+ universalIdentifier: string;
4828
+ };
4829
+ };
4830
+ };
4831
+ timeline: {
4832
+ universalIdentifier: string;
4833
+ widgets: {
4834
+ timeline: {
4835
+ universalIdentifier: string;
4836
+ };
4837
+ };
4838
+ };
4839
+ };
4840
+ };
4841
+ messageChannelMessageAssociationMessageFolderRecordPage: {
4842
+ universalIdentifier: string;
4843
+ tabs: {
4844
+ home: {
4845
+ universalIdentifier: string;
4846
+ widgets: {
4847
+ fields: {
4848
+ universalIdentifier: string;
4849
+ };
4850
+ };
4851
+ };
4852
+ timeline: {
4853
+ universalIdentifier: string;
4854
+ widgets: {
4855
+ timeline: {
4856
+ universalIdentifier: string;
4857
+ };
4858
+ };
4859
+ };
4860
+ };
4861
+ };
4862
+ messageParticipantRecordPage: {
4863
+ universalIdentifier: string;
4864
+ tabs: {
4865
+ home: {
4866
+ universalIdentifier: string;
4867
+ widgets: {
4868
+ fields: {
4869
+ universalIdentifier: string;
4870
+ };
4871
+ };
4872
+ };
4873
+ timeline: {
4874
+ universalIdentifier: string;
4875
+ widgets: {
4876
+ timeline: {
4877
+ universalIdentifier: string;
4878
+ };
4879
+ };
4880
+ };
4881
+ };
4882
+ };
4883
+ workflowAutomatedTriggerRecordPage: {
4884
+ universalIdentifier: string;
4885
+ tabs: {
4886
+ home: {
4887
+ universalIdentifier: string;
4888
+ widgets: {
4889
+ fields: {
4890
+ universalIdentifier: string;
4891
+ };
4892
+ };
4893
+ };
4894
+ timeline: {
4895
+ universalIdentifier: string;
4896
+ widgets: {
4897
+ timeline: {
4898
+ universalIdentifier: string;
4899
+ };
4900
+ };
4901
+ };
4902
+ };
4903
+ };
4904
+ messageThreadRecordPage: {
4905
+ universalIdentifier: string;
4906
+ tabs: {
4907
+ home: {
4908
+ universalIdentifier: string;
4909
+ widgets: {
4910
+ emailThread: {
4911
+ universalIdentifier: string;
4912
+ };
4913
+ };
4914
+ };
4915
+ };
4916
+ };
4917
+ };
4918
+
4102
4919
  declare const definePageLayout: DefineEntity<PageLayoutConfig>;
4103
4920
 
4104
4921
  declare const definePageLayoutTab: DefineEntity<PageLayoutTabConfig>;
@@ -4141,5 +4958,7 @@ declare const defineSkill: DefineEntity<SkillManifest>;
4141
4958
 
4142
4959
  declare const defineView: DefineEntity<ViewConfig>;
4143
4960
 
4144
- 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, SystemPermissionFlag, ViewCalendarLayout, ViewFilterGroupLogicalOperator, ViewFilterOperand, ViewKey, ViewOpenRecordIn, ViewSortDirection, ViewType, ViewVisibility, createValidationResult, defineAgent, defineApplication, defineApplicationRole, defineCommandMenuItem, defineConnectionProvider, defineField, defineFrontComponent, defineIndex, defineLogicFunction, defineNavigationMenuItem, defineObject, definePageLayout, definePageLayoutTab, definePermissionFlag, definePostInstallLogicFunction, definePreInstallLogicFunction, defineRole, defineSkill, defineView, generateDefaultFieldUniversalIdentifier, validateFields };
4145
- 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, SyncableEntityOptions, ValidationResult, ViewConfig, ViewFieldGroupManifest, ViewFieldManifest, ViewFilterGroupManifest, ViewFilterManifest, ViewGroupManifest, ViewManifestFilterValue, ViewSortManifest };
4961
+ declare const defineViewField: DefineEntity<StandaloneViewFieldManifest>;
4962
+
4963
+ 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 };
4964
+ 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 };