twenty-sdk 2.9.1 → 2.10.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.
Files changed (45) hide show
  1. package/dist/billing/index.cjs.map +1 -1
  2. package/dist/billing/index.mjs.map +1 -1
  3. package/dist/{catalog-sync-BCebNxby.js → catalog-sync-BjFX6eQu.js} +1 -1
  4. package/dist/{catalog-sync-Zp1B_jdA.mjs → catalog-sync-hdRK4nlg.mjs} +1 -1
  5. package/dist/cli/commands/dev/dev-once.d.ts +1 -0
  6. package/dist/cli/operations/dev-once.d.ts +1 -0
  7. package/dist/cli/utilities/api/api-response-type.d.ts +5 -5
  8. package/dist/cli/utilities/api/api-service.d.ts +8 -2
  9. package/dist/cli/utilities/api/application-api.d.ts +7 -1
  10. package/dist/cli/utilities/api/file-api.d.ts +2 -1
  11. package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +2 -0
  12. package/dist/cli/utilities/dev/orchestrator/steps/format-sync-actions-summary.d.ts +3 -0
  13. package/dist/cli/utilities/dev/ui/components/dev-ui-application-panel.d.ts +2 -1
  14. package/dist/cli/utilities/dev/ui/components/dev-ui-entity-section.d.ts +3 -0
  15. package/dist/cli/utilities/dev/ui/components/dev-ui.d.ts +1 -1
  16. package/dist/cli/utilities/dev/ui/dev-ui-constants.d.ts +6 -0
  17. package/dist/cli/utilities/entity/entity-view-field-template.d.ts +3 -0
  18. package/dist/cli/utilities/error/format-manifest-validation-errors.d.ts +2 -1
  19. package/dist/cli/utilities/error/get-sync-error-recovery-hint.d.ts +1 -0
  20. package/dist/cli.cjs +117 -100
  21. package/dist/cli.mjs +2383 -2286
  22. package/dist/define/index.cjs +7 -7
  23. package/dist/define/index.cjs.map +1 -1
  24. package/dist/define/index.d.ts +181 -47
  25. package/dist/define/index.mjs +367 -247
  26. package/dist/define/index.mjs.map +1 -1
  27. package/dist/front-component/index.cjs.map +1 -1
  28. package/dist/front-component/index.mjs.map +1 -1
  29. package/dist/{get-function-input-schema-DTlcRJz3-Dv2yR3dh.mjs → get-function-input-schema-DTlcRJz3-CYRpYtm8.mjs} +1 -1
  30. package/dist/{get-function-input-schema-DTlcRJz3-dBL33k9U.js → get-function-input-schema-DTlcRJz3-Cpo6yw4B.js} +1 -1
  31. package/dist/logic-function/index.cjs +37 -1
  32. package/dist/logic-function/index.cjs.map +1 -1
  33. package/dist/logic-function/index.d.ts +33 -2
  34. package/dist/logic-function/index.mjs +97 -28
  35. package/dist/logic-function/index.mjs.map +1 -1
  36. package/dist/{login-oauth-CR6NzLmb.js → login-oauth-CU95X9A-.js} +55 -52
  37. package/dist/{login-oauth-rznAUORX.mjs → login-oauth-wSHikxei.mjs} +3608 -3414
  38. package/dist/operations.cjs +1 -1
  39. package/dist/operations.mjs +2 -2
  40. package/dist/ui/index.cjs +28 -28
  41. package/dist/ui/index.d.ts +12 -12
  42. package/dist/ui/index.mjs +7582 -7474
  43. package/dist/utils/index.cjs.map +1 -1
  44. package/dist/utils/index.mjs.map +1 -1
  45. package/package.json +5 -8
@@ -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 & {
@@ -236,7 +257,7 @@ declare enum FieldMetadataType {
236
257
 
237
258
  type IsExactly<T, U> = [T] extends [U] ? [U] extends [T] ? true : false : false;
238
259
 
239
- 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';
240
261
  declare class FieldMetadataDefaultOption {
241
262
  id?: string;
242
263
  position: number;
@@ -1054,6 +1075,9 @@ type ViewFieldManifest = SyncableEntityOptions$1 & {
1054
1075
  aggregateOperation?: AggregateOperations;
1055
1076
  viewFieldGroupUniversalIdentifier?: string;
1056
1077
  };
1078
+ type StandaloneViewFieldManifest = ViewFieldManifest & {
1079
+ viewUniversalIdentifier: string;
1080
+ };
1057
1081
  type ViewFilterManifest = SyncableEntityOptions$1 & {
1058
1082
  fieldMetadataUniversalIdentifier: string;
1059
1083
  operand: ViewFilterOperand;
@@ -1167,7 +1191,7 @@ type ValidationResult<T> = {
1167
1191
  errors: string[];
1168
1192
  warnings?: string[];
1169
1193
  };
1170
- 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;
1171
1195
  type DefineEntity<T extends DefinableEntity = DefinableEntity> = (config: T) => ValidationResult<T>;
1172
1196
 
1173
1197
  declare const defineAgent: DefineEntity<AgentManifest>;
@@ -1858,6 +1882,12 @@ declare const STANDARD_OBJECTS: {
1858
1882
  readonly calendarEventParticipants: {
1859
1883
  readonly universalIdentifier: "20202020-e07e-4ccb-88f5-6f3d00458eec";
1860
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
+ };
1861
1891
  readonly createdBy: {
1862
1892
  readonly universalIdentifier: "664a9500-2641-4caa-8d95-069807bb2eb4";
1863
1893
  };
@@ -1904,6 +1934,126 @@ declare const STANDARD_OBJECTS: {
1904
1934
  };
1905
1935
  };
1906
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
+ };
1907
2057
  readonly company: {
1908
2058
  readonly universalIdentifier: "20202020-b374-4779-a561-80086cb2e17f";
1909
2059
  readonly fields: {
@@ -1928,20 +2078,11 @@ declare const STANDARD_OBJECTS: {
1928
2078
  readonly address: {
1929
2079
  readonly universalIdentifier: "20202020-c5ce-4adc-b7b6-9c0979fc55e7";
1930
2080
  };
1931
- readonly employees: {
1932
- readonly universalIdentifier: "20202020-8965-464a-8a75-74bafc152a0b";
1933
- };
1934
2081
  readonly linkedinLink: {
1935
2082
  readonly universalIdentifier: "20202020-ebeb-4beb-b9ad-6848036fb451";
1936
2083
  };
1937
- readonly xLink: {
1938
- readonly universalIdentifier: "20202020-6f64-4fd9-9580-9c1991c7d8c3";
1939
- };
1940
- readonly annualRecurringRevenue: {
1941
- readonly universalIdentifier: "20202020-602a-495c-9776-f5d5b11d227b";
1942
- };
1943
- readonly idealCustomerProfile: {
1944
- readonly universalIdentifier: "20202020-ba6b-438a-8213-2c5ba28d76a2";
2084
+ readonly annualRevenue: {
2085
+ readonly universalIdentifier: "60f533b7-2166-4071-a767-ceb0286822fd";
1945
2086
  };
1946
2087
  readonly position: {
1947
2088
  readonly universalIdentifier: "20202020-9b4e-462b-991d-a0ee33326454";
@@ -2007,9 +2148,6 @@ declare const STANDARD_OBJECTS: {
2007
2148
  readonly createdAt: {
2008
2149
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf005";
2009
2150
  };
2010
- readonly employees: {
2011
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf006";
2012
- };
2013
2151
  readonly linkedinLink: {
2014
2152
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf007";
2015
2153
  };
@@ -2041,21 +2179,12 @@ declare const STANDARD_OBJECTS: {
2041
2179
  readonly accountOwner: {
2042
2180
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1202";
2043
2181
  };
2044
- readonly annualRecurringRevenue: {
2045
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1203";
2046
- };
2047
- readonly idealCustomerProfile: {
2048
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1204";
2049
- };
2050
- readonly employees: {
2051
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1205";
2182
+ readonly annualRevenue: {
2183
+ readonly universalIdentifier: "2a35f734-dea2-4de9-8395-acbce8df0f97";
2052
2184
  };
2053
2185
  readonly linkedinLink: {
2054
2186
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1206";
2055
2187
  };
2056
- readonly xLink: {
2057
- readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1207";
2058
- };
2059
2188
  readonly address: {
2060
2189
  readonly universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1208";
2061
2190
  };
@@ -3033,18 +3162,12 @@ declare const STANDARD_OBJECTS: {
3033
3162
  readonly linkedinLink: {
3034
3163
  readonly universalIdentifier: "20202020-f1af-48f7-893b-2007a73dd508";
3035
3164
  };
3036
- readonly xLink: {
3037
- readonly universalIdentifier: "20202020-8fc2-487c-b84a-55a99b145cfd";
3038
- };
3039
3165
  readonly jobTitle: {
3040
3166
  readonly universalIdentifier: "20202020-b0d0-415a-bef9-640a26dacd9b";
3041
3167
  };
3042
3168
  readonly phones: {
3043
3169
  readonly universalIdentifier: "20202020-0638-448e-8825-439134618022";
3044
3170
  };
3045
- readonly city: {
3046
- readonly universalIdentifier: "20202020-5243-4ffb-afc5-2c675da41346";
3047
- };
3048
3171
  readonly avatarUrl: {
3049
3172
  readonly universalIdentifier: "20202020-b8a6-40df-961c-373dc5d2ec21";
3050
3173
  };
@@ -3121,18 +3244,12 @@ declare const STANDARD_OBJECTS: {
3121
3244
  readonly createdAt: {
3122
3245
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af5";
3123
3246
  };
3124
- readonly city: {
3125
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af6";
3126
- };
3127
3247
  readonly jobTitle: {
3128
3248
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af7";
3129
3249
  };
3130
3250
  readonly linkedinLink: {
3131
3251
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af8";
3132
3252
  };
3133
- readonly xLink: {
3134
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af9";
3135
- };
3136
3253
  };
3137
3254
  };
3138
3255
  readonly personRecordPageFields: {
@@ -3167,12 +3284,6 @@ declare const STANDARD_OBJECTS: {
3167
3284
  readonly linkedinLink: {
3168
3285
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12205";
3169
3286
  };
3170
- readonly xLink: {
3171
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12206";
3172
- };
3173
- readonly city: {
3174
- readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12207";
3175
- };
3176
3287
  readonly avatarUrl: {
3177
3288
  readonly universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12208";
3178
3289
  };
@@ -4685,6 +4796,27 @@ declare const STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS: {
4685
4796
  };
4686
4797
  };
4687
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
+ };
4688
4820
  messageChannelMessageAssociationRecordPage: {
4689
4821
  universalIdentifier: string;
4690
4822
  tabs: {
@@ -4826,5 +4958,7 @@ declare const defineSkill: DefineEntity<SkillManifest>;
4826
4958
 
4827
4959
  declare const defineView: DefineEntity<ViewConfig>;
4828
4960
 
4829
- 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, 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 };
4830
- 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 };