twenty-sdk 2.6.0 → 2.9.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 (51) hide show
  1. package/README.md +2 -2
  2. package/dist/catalog-sync-CanLpG9v.js +1 -0
  3. package/dist/catalog-sync-DyCidT5d.mjs +16 -0
  4. package/dist/cli/commands/{deploy.d.ts → app/deploy.d.ts} +4 -0
  5. package/dist/cli/commands/app/index.d.ts +2 -0
  6. package/dist/cli/commands/{uninstall.d.ts → app/uninstall.d.ts} +1 -1
  7. package/dist/cli/commands/deprecated.d.ts +2 -0
  8. package/dist/cli/commands/{dev.d.ts → dev/dev.d.ts} +1 -1
  9. package/dist/cli/commands/dev/function/index.d.ts +2 -0
  10. package/dist/cli/commands/dev/index.d.ts +2 -0
  11. package/dist/cli/utilities/api/api-client.d.ts +3 -0
  12. package/dist/cli/utilities/api/api-service.d.ts +1 -0
  13. package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +4 -0
  14. package/dist/cli/utilities/build/manifest/utils/validate-view-filter-operands.d.ts +6 -0
  15. package/dist/cli/utilities/dev/orchestrator/dev-mode-orchestrator-state.d.ts +0 -1
  16. package/dist/cli.cjs +110 -110
  17. package/dist/cli.mjs +3045 -2931
  18. package/dist/define/index.cjs +14 -14
  19. package/dist/define/index.cjs.map +1 -1
  20. package/dist/define/index.d.ts +68 -553
  21. package/dist/define/index.mjs +1623 -1977
  22. package/dist/define/index.mjs.map +1 -1
  23. package/dist/front-component/index.cjs +13 -13
  24. package/dist/front-component/index.cjs.map +1 -1
  25. package/dist/front-component/index.d.ts +10 -2
  26. package/dist/front-component/index.mjs +1420 -1312
  27. package/dist/front-component/index.mjs.map +1 -1
  28. package/dist/get-function-input-schema-BZ7_XyUh-COeGJwHh.js +1 -0
  29. package/dist/{get-function-input-schema-BZ7_XyUh-dQlwid60.mjs → get-function-input-schema-BZ7_XyUh-Dql7-b-j.mjs} +1 -1
  30. package/dist/logic-function/index.d.ts +2 -7
  31. package/dist/login-oauth-BESuSxoP.js +298 -0
  32. package/dist/{uninstall-D3ZmcXyd.mjs → login-oauth-DSC3zo9c.mjs} +4181 -4391
  33. package/dist/operations.cjs +1 -1
  34. package/dist/operations.mjs +8 -8
  35. package/dist/ui/index.cjs +20 -20
  36. package/dist/ui/index.mjs +6277 -6170
  37. package/package.json +2 -2
  38. package/dist/get-function-input-schema-BZ7_XyUh-DmvaQHSU.js +0 -1
  39. package/dist/uninstall-BwJTMGOV.js +0 -287
  40. /package/dist/cli/commands/{install.d.ts → app/install.d.ts} +0 -0
  41. /package/dist/cli/commands/{publish.d.ts → app/publish.d.ts} +0 -0
  42. /package/dist/cli/commands/{add.d.ts → dev/add.d.ts} +0 -0
  43. /package/dist/cli/commands/{build.d.ts → dev/build.d.ts} +0 -0
  44. /package/dist/cli/commands/{catalog-sync.d.ts → dev/catalog-sync.d.ts} +0 -0
  45. /package/dist/cli/commands/{dev-once.d.ts → dev/dev-once.d.ts} +0 -0
  46. /package/dist/cli/commands/{exec.d.ts → dev/exec.d.ts} +0 -0
  47. /package/dist/cli/commands/{logs.d.ts → dev/logs.d.ts} +0 -0
  48. /package/dist/cli/commands/{typecheck.d.ts → dev/typecheck.d.ts} +0 -0
  49. /package/dist/cli/commands/{server.d.ts → docker/index.d.ts} +0 -0
  50. /package/dist/cli/commands/{app-command.d.ts → index.d.ts} +0 -0
  51. /package/dist/cli/commands/{remote.d.ts → remote/index.d.ts} +0 -0
@@ -713,6 +713,12 @@ type RegularFieldManifest<T extends FieldMetadataType = Exclude<FieldMetadataTyp
713
713
  options?: FieldMetadataOptions<T>;
714
714
  universalSettings?: FieldMetadataUniversalSettings<T>;
715
715
  isNullable?: boolean;
716
+ /**
717
+ * @deprecated Use defineIndex({ isUnique: true, fields: [...] }) instead.
718
+ * Indexes are the SDK primitive for uniqueness — they support both single-
719
+ * and multi-column unique constraints with a single, consistent API. This
720
+ * field still works but will be removed in a future release.
721
+ */
716
722
  isUnique?: boolean;
717
723
  objectUniversalIdentifier: string;
718
724
  };
@@ -750,6 +756,18 @@ type FrontComponentManifest = {
750
756
  usesSdkClient?: boolean;
751
757
  };
752
758
 
759
+ type IndexFieldManifest = SyncableEntityOptions$1 & {
760
+ fieldUniversalIdentifier: string;
761
+ subFieldName?: string;
762
+ };
763
+
764
+ type IndexManifest = SyncableEntityOptions$1 & {
765
+ objectUniversalIdentifier: string;
766
+ indexType?: 'BTREE' | 'GIN';
767
+ isUnique?: boolean;
768
+ fields: IndexFieldManifest[];
769
+ };
770
+
753
771
  type InputJsonSchema = {
754
772
  type?: 'string' | 'number' | 'boolean' | 'object' | 'array' | 'integer' | 'null';
755
773
  description?: string;
@@ -872,33 +890,13 @@ type PageLayoutManifest = SyncableEntityOptions$1 & {
872
890
  tabs?: PageLayoutTabManifest[];
873
891
  };
874
892
 
875
- declare enum PermissionFlagType {
876
- API_KEYS_AND_WEBHOOKS = "API_KEYS_AND_WEBHOOKS",
877
- WORKSPACE = "WORKSPACE",
878
- WORKSPACE_MEMBERS = "WORKSPACE_MEMBERS",
879
- ROLES = "ROLES",
880
- DATA_MODEL = "DATA_MODEL",
881
- SECURITY = "SECURITY",
882
- WORKFLOWS = "WORKFLOWS",
883
- IMPERSONATE = "IMPERSONATE",
884
- SSO_BYPASS = "SSO_BYPASS",
885
- APPLICATIONS = "APPLICATIONS",
886
- MARKETPLACE_APPS = "MARKETPLACE_APPS",
887
- LAYOUTS = "LAYOUTS",
888
- BILLING = "BILLING",
889
- AI_SETTINGS = "AI_SETTINGS",
890
- AI = "AI",
891
- VIEWS = "VIEWS",
892
- UPLOAD_FILE = "UPLOAD_FILE",
893
- DOWNLOAD_FILE = "DOWNLOAD_FILE",
894
- SEND_EMAIL_TOOL = "SEND_EMAIL_TOOL",
895
- HTTP_REQUEST_TOOL = "HTTP_REQUEST_TOOL",
896
- CODE_INTERPRETER_TOOL = "CODE_INTERPRETER_TOOL",
897
- IMPORT_CSV = "IMPORT_CSV",
898
- EXPORT_CSV = "EXPORT_CSV",
899
- CONNECTED_ACCOUNTS = "CONNECTED_ACCOUNTS",
900
- PROFILE_INFORMATION = "PROFILE_INFORMATION"
901
- }
893
+ type PermissionFlagPermissionType = 'settings' | 'tool';
894
+ type PermissionFlagManifest = SyncableEntityOptions$1 & {
895
+ key: string;
896
+ label: string;
897
+ description?: string | null;
898
+ icon?: string | null;
899
+ };
902
900
 
903
901
  type ObjectPermissionManifest = SyncableEntityOptions$1 & {
904
902
  objectUniversalIdentifier: string;
@@ -913,9 +911,6 @@ type FieldPermissionManifest = SyncableEntityOptions$1 & {
913
911
  canReadFieldValue?: boolean;
914
912
  canUpdateFieldValue?: boolean;
915
913
  };
916
- type PermissionFlagManifest = SyncableEntityOptions$1 & {
917
- flag: PermissionFlagType;
918
- };
919
914
  type RoleManifest = SyncableEntityOptions$1 & {
920
915
  label: string;
921
916
  description?: string;
@@ -931,7 +926,7 @@ type RoleManifest = SyncableEntityOptions$1 & {
931
926
  canBeAssignedToApiKeys?: boolean;
932
927
  objectPermissions?: ObjectPermissionManifest[];
933
928
  fieldPermissions?: FieldPermissionManifest[];
934
- permissionFlags?: PermissionFlagManifest[];
929
+ permissionFlagUniversalIdentifiers?: string[];
935
930
  };
936
931
 
937
932
  type SkillManifest = SyncableEntityOptions$1 & {
@@ -1017,6 +1012,8 @@ type FrontComponentConfig = Omit<FrontComponentManifest, 'sourceComponentPath' |
1017
1012
  component: FrontComponentType;
1018
1013
  };
1019
1014
 
1015
+ type IndexConfig = IndexManifest;
1016
+
1020
1017
  type LogicFunctionHandler = (...args: any[]) => any | Promise<any>;
1021
1018
  type LogicFunctionConfig = Omit<LogicFunctionManifest, 'sourceHandlerPath' | 'builtHandlerPath' | 'builtHandlerChecksum' | 'handlerName'> & {
1022
1019
  handler: LogicFunctionHandler;
@@ -1032,6 +1029,8 @@ type PageLayoutTabConfig = Omit<PageLayoutTabManifest, 'pageLayoutUniversalIdent
1032
1029
  pageLayoutUniversalIdentifier: string;
1033
1030
  };
1034
1031
 
1032
+ type PermissionFlagConfig = PermissionFlagManifest;
1033
+
1035
1034
  type ViewConfig = ViewManifest;
1036
1035
 
1037
1036
  type InstallPayload = {
@@ -1049,10 +1048,9 @@ type PostInstallLogicFunctionConfig = PreInstallLogicFunctionConfig & {
1049
1048
  shouldRunSynchronously?: boolean;
1050
1049
  };
1051
1050
 
1052
- type RoleConfig = Omit<RoleManifest, 'objectPermissions' | 'fieldPermissions' | 'permissionFlags'> & {
1051
+ type RoleConfig = Omit<RoleManifest, 'objectPermissions' | 'fieldPermissions'> & {
1053
1052
  objectPermissions?: Omit<ObjectPermissionManifest, 'universalIdentifier'>[];
1054
1053
  fieldPermissions?: Omit<FieldPermissionManifest, 'universalIdentifier'>[];
1055
- permissionFlags?: PermissionFlagType[];
1056
1054
  };
1057
1055
 
1058
1056
  type ValidationResult<T> = {
@@ -1061,7 +1059,7 @@ type ValidationResult<T> = {
1061
1059
  errors: string[];
1062
1060
  warnings?: string[];
1063
1061
  };
1064
- type DefinableEntity = ApplicationConfig | ObjectConfig | FieldManifest | FrontComponentConfig | LogicFunctionConfig | PostInstallLogicFunctionConfig | PreInstallLogicFunctionConfig | AgentManifest | ConnectionProviderManifest | RoleConfig | SkillManifest | ViewConfig | NavigationMenuItemManifest | PageLayoutConfig | PageLayoutTabConfig | CommandMenuItemConfig;
1062
+ type DefinableEntity = ApplicationConfig | ObjectConfig | FieldManifest | FrontComponentConfig | IndexConfig | LogicFunctionConfig | PostInstallLogicFunctionConfig | PreInstallLogicFunctionConfig | AgentManifest | ConnectionProviderManifest | RoleConfig | SkillManifest | ViewConfig | NavigationMenuItemManifest | PageLayoutConfig | PageLayoutTabConfig | PermissionFlagConfig | CommandMenuItemConfig;
1065
1063
  type DefineEntity<T extends DefinableEntity = DefinableEntity> = (config: T) => ValidationResult<T>;
1066
1064
 
1067
1065
  declare const defineAgent: DefineEntity<AgentManifest>;
@@ -1086,6 +1084,8 @@ declare const defineCommandMenuItem: DefineEntity<CommandMenuItemConfig>;
1086
1084
 
1087
1085
  declare const defineFrontComponent: DefineEntity<FrontComponentConfig>;
1088
1086
 
1087
+ declare const defineIndex: DefineEntity<IndexConfig>;
1088
+
1089
1089
  declare const defineLogicFunction: DefineEntity<LogicFunctionConfig>;
1090
1090
 
1091
1091
  declare const definePostInstallLogicFunction: DefineEntity<PostInstallLogicFunctionConfig>;
@@ -1201,17 +1201,12 @@ type SimplifiedFlatObjectMetadata = {
1201
1201
  indexMetadataUniversalIdentifiers: string[];
1202
1202
  viewUniversalIdentifiers: string[];
1203
1203
  };
1204
- type WorkspaceEventBatch<WorkspaceEvent> = {
1204
+ type DatabaseEventMetadata = {
1205
1205
  name: string;
1206
1206
  workspaceId: string;
1207
1207
  objectMetadata: SimplifiedFlatObjectMetadata;
1208
- userId: string;
1209
- userWorkspaceId: string;
1210
- workspaceMemberId: string;
1211
- recordId: string;
1212
- events: WorkspaceEvent[];
1213
1208
  };
1214
- type DatabaseEventPayload<T = ObjectRecordEvent> = Omit<WorkspaceEventBatch<T>, 'events'> & T;
1209
+ type DatabaseEventPayload<T = ObjectRecordEvent> = DatabaseEventMetadata & T;
1215
1210
 
1216
1211
  declare const defineConnectionProvider: DefineEntity<ConnectionProviderManifest>;
1217
1212
 
@@ -1534,132 +1529,6 @@ declare const STANDARD_OBJECTS: {
1534
1529
  };
1535
1530
  };
1536
1531
  };
1537
- readonly calendarChannel: {
1538
- readonly universalIdentifier: "20202020-e8f2-40e1-a39c-c0e0039c5034";
1539
- readonly fields: {
1540
- readonly id: {
1541
- readonly universalIdentifier: "20202020-c02a-4031-8a31-1a2f3b4c5d6e";
1542
- };
1543
- readonly createdAt: {
1544
- readonly universalIdentifier: "20202020-c02b-4032-9b32-2b3f4c5d6e7f";
1545
- };
1546
- readonly updatedAt: {
1547
- readonly universalIdentifier: "20202020-c02c-4033-8c33-3c4f5d6e7f8a";
1548
- };
1549
- readonly deletedAt: {
1550
- readonly universalIdentifier: "20202020-c02d-4034-9d34-4d5f6e7f8a9b";
1551
- };
1552
- readonly connectedAccount: {
1553
- readonly universalIdentifier: "20202020-95b1-4f44-82dc-61b042ae2414";
1554
- };
1555
- readonly handle: {
1556
- readonly universalIdentifier: "20202020-1d08-420a-9aa7-22e0f298232d";
1557
- };
1558
- readonly visibility: {
1559
- readonly universalIdentifier: "20202020-1b07-4796-9f01-d626bab7ca4d";
1560
- };
1561
- readonly isContactAutoCreationEnabled: {
1562
- readonly universalIdentifier: "20202020-50fb-404b-ba28-369911a3793a";
1563
- };
1564
- readonly contactAutoCreationPolicy: {
1565
- readonly universalIdentifier: "20202020-b55d-447d-b4df-226319058775";
1566
- };
1567
- readonly isSyncEnabled: {
1568
- readonly universalIdentifier: "20202020-fe19-4818-8854-21f7b1b43395";
1569
- };
1570
- readonly syncCursor: {
1571
- readonly universalIdentifier: "20202020-bac2-4852-a5cb-7a7898992b70";
1572
- };
1573
- readonly throttleFailureCount: {
1574
- readonly universalIdentifier: "20202020-525c-4b76-b9bd-0dd57fd11d61";
1575
- };
1576
- readonly syncStatus: {
1577
- readonly universalIdentifier: "20202020-7116-41da-8b4b-035975c4eb6a";
1578
- };
1579
- readonly syncStage: {
1580
- readonly universalIdentifier: "20202020-6246-42e6-b5cd-003bd921782c";
1581
- };
1582
- readonly syncStageStartedAt: {
1583
- readonly universalIdentifier: "20202020-a934-46f1-a8e7-9568b1e3a53e";
1584
- };
1585
- readonly syncedAt: {
1586
- readonly universalIdentifier: "20202020-2ff5-4f70-953a-3d0d36357576";
1587
- };
1588
- readonly createdBy: {
1589
- readonly universalIdentifier: "664db1a0-76f4-4429-8452-f8e250ab7545";
1590
- };
1591
- readonly updatedBy: {
1592
- readonly universalIdentifier: "6a397eab-3700-4b08-9eb9-d16b61876193";
1593
- };
1594
- readonly position: {
1595
- readonly universalIdentifier: "566609c9-1c8b-4899-91bb-0af140a89004";
1596
- };
1597
- readonly searchVector: {
1598
- readonly universalIdentifier: "bc9a982c-c314-49d6-818a-2661ce7e918f";
1599
- };
1600
- };
1601
- readonly indexes: {
1602
- readonly connectedAccountIdIndex: {
1603
- readonly universalIdentifier: "58b4d9e3-0a25-4c7f-9d6e-2b3c4a5f6d70";
1604
- };
1605
- };
1606
- readonly views: {
1607
- readonly allCalendarChannels: {
1608
- readonly universalIdentifier: "2d11659c-68ae-4ff2-882f-f1cccde372d0";
1609
- readonly viewFields: {
1610
- readonly handle: {
1611
- readonly universalIdentifier: "dc7ea888-79d6-4b8c-acdd-a72abe8e6326";
1612
- };
1613
- readonly connectedAccount: {
1614
- readonly universalIdentifier: "0fff693f-2149-4fdb-a85c-52f2d89322f2";
1615
- };
1616
- readonly visibility: {
1617
- readonly universalIdentifier: "a308409d-ee09-4588-b3b2-31b71bced64d";
1618
- };
1619
- readonly isSyncEnabled: {
1620
- readonly universalIdentifier: "120065b8-bcba-4088-b3a8-8ae66def4219";
1621
- };
1622
- readonly syncStatus: {
1623
- readonly universalIdentifier: "ee3bafb8-6374-44f3-b328-c705c16220ac";
1624
- };
1625
- readonly createdAt: {
1626
- readonly universalIdentifier: "b2ef299a-b996-4f44-8c75-fad854d7df7f";
1627
- };
1628
- };
1629
- };
1630
- readonly calendarChannelRecordPageFields: {
1631
- readonly universalIdentifier: "74813eac-7b7e-4483-9d2c-6e14cdc2eeee";
1632
- readonly viewFieldGroups: {
1633
- readonly general: {
1634
- readonly universalIdentifier: "e015afb4-bb6b-44ab-8077-01196c70bd1b";
1635
- };
1636
- readonly system: {
1637
- readonly universalIdentifier: "a7e61a73-68b3-46a2-8624-54a4f0a81710";
1638
- };
1639
- };
1640
- readonly viewFields: {
1641
- readonly connectedAccount: {
1642
- readonly universalIdentifier: "bdb40f41-f9ba-4b59-a8cf-878c23701ab3";
1643
- };
1644
- readonly visibility: {
1645
- readonly universalIdentifier: "2d9f8c64-12be-4bb1-b0d4-977d89853498";
1646
- };
1647
- readonly isSyncEnabled: {
1648
- readonly universalIdentifier: "819312c0-3441-42a2-a638-8800e353b72f";
1649
- };
1650
- readonly syncStatus: {
1651
- readonly universalIdentifier: "b95949f7-e4f7-4708-bfd5-6ec66d772465";
1652
- };
1653
- readonly createdAt: {
1654
- readonly universalIdentifier: "8c0e4a82-9846-46b2-988b-8b651395fc52";
1655
- };
1656
- readonly createdBy: {
1657
- readonly universalIdentifier: "35af4126-06bd-43a1-88cb-b1e2a170ccd2";
1658
- };
1659
- };
1660
- };
1661
- };
1662
- };
1663
1532
  readonly calendarEventParticipant: {
1664
1533
  readonly universalIdentifier: "20202020-a1c3-47a6-9732-27e5b1e8436d";
1665
1534
  readonly fields: {
@@ -2084,129 +1953,6 @@ declare const STANDARD_OBJECTS: {
2084
1953
  };
2085
1954
  };
2086
1955
  };
2087
- readonly connectedAccount: {
2088
- readonly universalIdentifier: "20202020-977e-46b2-890b-c3002ddfd5c5";
2089
- readonly fields: {
2090
- readonly id: {
2091
- readonly universalIdentifier: "20202020-c06a-4071-8a71-5c6d7e8f9aab";
2092
- };
2093
- readonly createdAt: {
2094
- readonly universalIdentifier: "20202020-c06b-4072-9b72-6d7e8f9aabbc";
2095
- };
2096
- readonly updatedAt: {
2097
- readonly universalIdentifier: "20202020-c06c-4073-8c73-7e8f9aabbccd";
2098
- };
2099
- readonly deletedAt: {
2100
- readonly universalIdentifier: "20202020-c06d-4074-9d74-8f9aabbccdde";
2101
- };
2102
- readonly handle: {
2103
- readonly universalIdentifier: "20202020-c804-4a50-bb05-b3a9e24f1dec";
2104
- };
2105
- readonly provider: {
2106
- readonly universalIdentifier: "20202020-ebb0-4516-befc-a9e95935efd5";
2107
- };
2108
- readonly accessToken: {
2109
- readonly universalIdentifier: "20202020-707b-4a0a-8753-2ad42efe1e29";
2110
- };
2111
- readonly refreshToken: {
2112
- readonly universalIdentifier: "20202020-532d-48bd-80a5-c4be6e7f6e49";
2113
- };
2114
- readonly accountOwner: {
2115
- readonly universalIdentifier: "20202020-3517-4896-afac-b1d0aa362af6";
2116
- };
2117
- readonly lastSyncHistoryId: {
2118
- readonly universalIdentifier: "20202020-115c-4a87-b50f-ac4367a971b9";
2119
- };
2120
- readonly authFailedAt: {
2121
- readonly universalIdentifier: "20202020-d268-4c6b-baff-400d402b430a";
2122
- };
2123
- readonly lastCredentialsRefreshedAt: {
2124
- readonly universalIdentifier: "20202020-aa5e-4e85-903b-fdf90a941941";
2125
- };
2126
- readonly messageChannels: {
2127
- readonly universalIdentifier: "20202020-24f7-4362-8468-042204d1e445";
2128
- };
2129
- readonly calendarChannels: {
2130
- readonly universalIdentifier: "20202020-af4a-47bb-99ec-51911c1d3977";
2131
- };
2132
- readonly handleAliases: {
2133
- readonly universalIdentifier: "20202020-8a3d-46be-814f-6228af16c47b";
2134
- };
2135
- readonly scopes: {
2136
- readonly universalIdentifier: "20202020-8a3d-46be-814f-6228af16c47c";
2137
- };
2138
- readonly connectionParameters: {
2139
- readonly universalIdentifier: "20202020-a1b2-46be-814f-6228af16c481";
2140
- };
2141
- readonly createdBy: {
2142
- readonly universalIdentifier: "e09c2463-9ca6-4004-97ce-6039e3161a5d";
2143
- };
2144
- readonly updatedBy: {
2145
- readonly universalIdentifier: "0a84c0e1-f9fc-47d5-8ac9-58538e50a9f9";
2146
- };
2147
- readonly position: {
2148
- readonly universalIdentifier: "66b7bc3e-c99e-42b6-82e6-6f43142c0f2f";
2149
- };
2150
- readonly searchVector: {
2151
- readonly universalIdentifier: "140767fe-0aa4-4573-a0bd-67cb657c9452";
2152
- };
2153
- };
2154
- readonly indexes: {
2155
- readonly accountOwnerIdIndex: {
2156
- readonly universalIdentifier: "8e7ca28e-6002-4304-9dcc-0a8da93ca198";
2157
- };
2158
- };
2159
- readonly views: {
2160
- readonly allConnectedAccounts: {
2161
- readonly universalIdentifier: "0f47f1d8-63bf-443a-a29a-319ff4543abb";
2162
- readonly viewFields: {
2163
- readonly handle: {
2164
- readonly universalIdentifier: "84515ac3-6154-4860-8b29-10316ba3b6fb";
2165
- };
2166
- readonly provider: {
2167
- readonly universalIdentifier: "dde13525-685c-4476-adba-6d4fd3c92672";
2168
- };
2169
- readonly accountOwner: {
2170
- readonly universalIdentifier: "7b5b84e1-8441-4c8c-a113-4fc184b24ba8";
2171
- };
2172
- readonly authFailedAt: {
2173
- readonly universalIdentifier: "66c8d3d4-3505-46a4-85ec-8bad314aa257";
2174
- };
2175
- readonly createdAt: {
2176
- readonly universalIdentifier: "8ff5aa14-69d3-4294-b266-d141d7e12dae";
2177
- };
2178
- };
2179
- };
2180
- readonly connectedAccountRecordPageFields: {
2181
- readonly universalIdentifier: "1cc895ca-fe99-44bc-bc1e-19c935ef2595";
2182
- readonly viewFieldGroups: {
2183
- readonly general: {
2184
- readonly universalIdentifier: "428a9949-71f4-4ebf-9160-1da43f1113ff";
2185
- };
2186
- readonly system: {
2187
- readonly universalIdentifier: "ce9f7f72-583e-4415-a82f-e1f4b2cc8e2f";
2188
- };
2189
- };
2190
- readonly viewFields: {
2191
- readonly provider: {
2192
- readonly universalIdentifier: "83171d2a-0d11-42b1-991d-8d4346b02cff";
2193
- };
2194
- readonly accountOwner: {
2195
- readonly universalIdentifier: "399a5e57-abab-42b1-b3f6-029a33d62e30";
2196
- };
2197
- readonly authFailedAt: {
2198
- readonly universalIdentifier: "ad52cc4e-fd75-4b11-8915-c8a7c96ce500";
2199
- };
2200
- readonly createdAt: {
2201
- readonly universalIdentifier: "eda84724-d30e-406d-9858-016dcd46ac49";
2202
- };
2203
- readonly createdBy: {
2204
- readonly universalIdentifier: "1335696e-31cf-4a5e-aabf-89b45dd80b33";
2205
- };
2206
- };
2207
- };
2208
- };
2209
- };
2210
1956
  readonly dashboard: {
2211
1957
  readonly universalIdentifier: "20202020-3840-4b6d-9425-0c5188b05ca8";
2212
1958
  readonly fields: {
@@ -2473,264 +2219,6 @@ declare const STANDARD_OBJECTS: {
2473
2219
  };
2474
2220
  };
2475
2221
  };
2476
- readonly messageChannel: {
2477
- readonly universalIdentifier: "20202020-fe8c-40bc-a681-b80b771449b7";
2478
- readonly fields: {
2479
- readonly id: {
2480
- readonly universalIdentifier: "20202020-b02a-40c1-8ac1-9eafbacbdced";
2481
- };
2482
- readonly createdAt: {
2483
- readonly universalIdentifier: "20202020-b02b-40c2-9bc2-afbacbdcedfe";
2484
- };
2485
- readonly updatedAt: {
2486
- readonly universalIdentifier: "20202020-b02c-40c3-8cc3-bacbdcedfefa";
2487
- };
2488
- readonly deletedAt: {
2489
- readonly universalIdentifier: "20202020-b02d-40c4-9dc4-cbdcedfefaab";
2490
- };
2491
- readonly visibility: {
2492
- readonly universalIdentifier: "20202020-6a6b-4532-9767-cbc61b469453";
2493
- };
2494
- readonly handle: {
2495
- readonly universalIdentifier: "20202020-2c96-43c3-93e3-ed6b1acb69bc";
2496
- };
2497
- readonly connectedAccount: {
2498
- readonly universalIdentifier: "20202020-49a2-44a4-b470-282c0440d15d";
2499
- };
2500
- readonly type: {
2501
- readonly universalIdentifier: "20202020-ae95-42d9-a3f1-797a2ea22122";
2502
- };
2503
- readonly isContactAutoCreationEnabled: {
2504
- readonly universalIdentifier: "20202020-fabd-4f14-b7c6-3310f6d132c6";
2505
- };
2506
- readonly contactAutoCreationPolicy: {
2507
- readonly universalIdentifier: "20202020-fc0e-4ba6-b259-a66ca89cfa38";
2508
- };
2509
- readonly excludeNonProfessionalEmails: {
2510
- readonly universalIdentifier: "20202020-1df5-445d-b4f3-2413ad178431";
2511
- };
2512
- readonly excludeGroupEmails: {
2513
- readonly universalIdentifier: "20202020-45a0-4be4-9164-5820a6a109fb";
2514
- };
2515
- readonly messageFolderImportPolicy: {
2516
- readonly universalIdentifier: "20202020-cc39-4432-9fe8-ec8ab8bbed95";
2517
- };
2518
- readonly pendingGroupEmailsAction: {
2519
- readonly universalIdentifier: "20202020-17c5-4e9f-bc50-af46a89fdd42";
2520
- };
2521
- readonly isSyncEnabled: {
2522
- readonly universalIdentifier: "20202020-d9a6-48e9-990b-b97fdf22e8dd";
2523
- };
2524
- readonly syncCursor: {
2525
- readonly universalIdentifier: "20202020-79d1-41cf-b738-bcf5ed61e256";
2526
- };
2527
- readonly syncedAt: {
2528
- readonly universalIdentifier: "20202020-263d-4c6b-ad51-137ada56f7d4";
2529
- };
2530
- readonly syncStatus: {
2531
- readonly universalIdentifier: "20202020-56a1-4f7e-9880-a8493bb899cc";
2532
- };
2533
- readonly syncStage: {
2534
- readonly universalIdentifier: "20202020-7979-4b08-89fe-99cb5e698767";
2535
- };
2536
- readonly syncStageStartedAt: {
2537
- readonly universalIdentifier: "20202020-8c61-4a42-ae63-73c1c3c52e06";
2538
- };
2539
- readonly throttleFailureCount: {
2540
- readonly universalIdentifier: "20202020-0291-42be-9ad0-d578a51684ab";
2541
- };
2542
- readonly throttleRetryAfter: {
2543
- readonly universalIdentifier: "20202020-a1e3-4d7f-b5c2-9f8e6d4c3b2a";
2544
- };
2545
- readonly createdBy: {
2546
- readonly universalIdentifier: "b7de8fcc-a7c6-4122-b3fa-1fcf8f30931c";
2547
- };
2548
- readonly updatedBy: {
2549
- readonly universalIdentifier: "88bb6ff1-b8a1-4313-95d4-7879acca0b93";
2550
- };
2551
- readonly position: {
2552
- readonly universalIdentifier: "bc8a36af-8b9c-4548-a0da-c90e899e7243";
2553
- };
2554
- readonly searchVector: {
2555
- readonly universalIdentifier: "5e84794c-6f14-4bdf-81a6-76ee11cda51f";
2556
- };
2557
- };
2558
- readonly indexes: {
2559
- readonly connectedAccountIdIndex: {
2560
- readonly universalIdentifier: "ab09a386-4dcc-41f7-8dc6-a6071e9c64b7";
2561
- };
2562
- };
2563
- readonly views: {
2564
- readonly allMessageChannels: {
2565
- readonly universalIdentifier: "95f57f8e-eaac-46f7-b364-4ef8208f165f";
2566
- readonly viewFields: {
2567
- readonly handle: {
2568
- readonly universalIdentifier: "f71a30b0-ee4a-4d36-847a-d0c99134fbb8";
2569
- };
2570
- readonly connectedAccount: {
2571
- readonly universalIdentifier: "0128fd40-7958-4cc5-9c73-7ddb7820d3ec";
2572
- };
2573
- readonly type: {
2574
- readonly universalIdentifier: "fa480cec-938c-4216-95fe-ba4335e20a41";
2575
- };
2576
- readonly visibility: {
2577
- readonly universalIdentifier: "2c43e4f6-7024-47a0-a91a-7d491b1fac84";
2578
- };
2579
- readonly isSyncEnabled: {
2580
- readonly universalIdentifier: "69884c47-0c2e-4988-bbc1-23242993634e";
2581
- };
2582
- readonly syncStatus: {
2583
- readonly universalIdentifier: "6189c285-d390-4fd9-ae7a-ca011d8ad98f";
2584
- };
2585
- readonly createdAt: {
2586
- readonly universalIdentifier: "45044b65-b17b-468d-a23d-075733c6b631";
2587
- };
2588
- };
2589
- };
2590
- readonly messageChannelRecordPageFields: {
2591
- readonly universalIdentifier: "1350eb34-7ef0-4b25-8a3e-23b4a959c3a2";
2592
- readonly viewFieldGroups: {
2593
- readonly general: {
2594
- readonly universalIdentifier: "96113215-6bf2-476c-ae69-c70274257913";
2595
- };
2596
- readonly system: {
2597
- readonly universalIdentifier: "2f08a624-e1a7-4f79-b5f7-1a8e92f4c07e";
2598
- };
2599
- };
2600
- readonly viewFields: {
2601
- readonly connectedAccount: {
2602
- readonly universalIdentifier: "19079cf6-2a9c-40b9-b6c2-58d63c6e37ad";
2603
- };
2604
- readonly type: {
2605
- readonly universalIdentifier: "280b9097-0bcf-4389-9ee7-fa89990d1369";
2606
- };
2607
- readonly visibility: {
2608
- readonly universalIdentifier: "8dd39475-f109-4117-bce4-9e183382b475";
2609
- };
2610
- readonly isSyncEnabled: {
2611
- readonly universalIdentifier: "5136d071-3b11-48cd-b7be-4910bd6264f9";
2612
- };
2613
- readonly syncStatus: {
2614
- readonly universalIdentifier: "76db0713-06d3-4133-9144-9d0300a2824e";
2615
- };
2616
- readonly createdAt: {
2617
- readonly universalIdentifier: "8636c740-3282-4a6b-99f6-f3f48e59b0af";
2618
- };
2619
- readonly createdBy: {
2620
- readonly universalIdentifier: "cdf294ce-4c52-4987-a301-8219fa81ab2e";
2621
- };
2622
- };
2623
- };
2624
- };
2625
- };
2626
- readonly messageFolder: {
2627
- readonly universalIdentifier: "20202020-4955-4fd9-8e59-2dbd373f2a46";
2628
- readonly fields: {
2629
- readonly id: {
2630
- readonly universalIdentifier: "20202020-b03a-40d1-8ad1-dcedfefaabbc";
2631
- };
2632
- readonly createdAt: {
2633
- readonly universalIdentifier: "20202020-b03b-40d2-9bd2-edfefaabbccd";
2634
- };
2635
- readonly updatedAt: {
2636
- readonly universalIdentifier: "20202020-b03c-40d3-8cd3-fefaabbccdde";
2637
- };
2638
- readonly deletedAt: {
2639
- readonly universalIdentifier: "20202020-b03d-40d4-9dd4-faabbccddeef";
2640
- };
2641
- readonly name: {
2642
- readonly universalIdentifier: "20202020-7cf8-40bc-a681-b80b771449b7";
2643
- };
2644
- readonly parentFolderId: {
2645
- readonly universalIdentifier: "20202020-e45d-49de-a4aa-587bbf9601f3";
2646
- };
2647
- readonly messageChannelId: {
2648
- readonly universalIdentifier: "20202020-c9f8-43db-a3e7-7f2e8b5d9c1a";
2649
- };
2650
- readonly syncCursor: {
2651
- readonly universalIdentifier: "20202020-98cd-49ed-8dfc-cb5796400e64";
2652
- };
2653
- readonly isSentFolder: {
2654
- readonly universalIdentifier: "20202020-2af5-4a25-b2de-3c9386da941b";
2655
- };
2656
- readonly isSynced: {
2657
- readonly universalIdentifier: "20202020-764f-4e09-8f95-cd46b6bfe3c4";
2658
- };
2659
- readonly externalId: {
2660
- readonly universalIdentifier: "20202020-f3a8-4d2b-9c7e-1b5f9a8e4c6d";
2661
- };
2662
- readonly pendingSyncAction: {
2663
- readonly universalIdentifier: "20202020-4f97-4c79-9517-16387fe237f7";
2664
- };
2665
- readonly createdBy: {
2666
- readonly universalIdentifier: "bfe19f84-b640-4ce3-b771-4e7bf18bad14";
2667
- };
2668
- readonly updatedBy: {
2669
- readonly universalIdentifier: "7ec7eea8-8715-4656-a602-3cb4256aaca1";
2670
- };
2671
- readonly position: {
2672
- readonly universalIdentifier: "5317d4f4-12c5-469d-8e47-0f3b2ffc95b4";
2673
- };
2674
- readonly searchVector: {
2675
- readonly universalIdentifier: "5f2d3937-bafd-4d71-b4cb-b34037efd2e1";
2676
- };
2677
- };
2678
- readonly indexes: {
2679
- readonly messageChannelIdIndex: {
2680
- readonly universalIdentifier: "6217f2a5-28ac-4b88-8a2a-45eee4580e57";
2681
- };
2682
- };
2683
- readonly views: {
2684
- readonly allMessageFolders: {
2685
- readonly universalIdentifier: "6774ebf5-a300-4bcc-8f22-f5e7c58bfccf";
2686
- readonly viewFields: {
2687
- readonly name: {
2688
- readonly universalIdentifier: "72b2d56f-5245-4cb6-933c-3d5031de0778";
2689
- };
2690
- readonly messageChannelId: {
2691
- readonly universalIdentifier: "121abdf0-c89f-4313-b156-e8a3c0cb77ec";
2692
- };
2693
- readonly isSentFolder: {
2694
- readonly universalIdentifier: "e884a006-e166-434d-82aa-247052165e4d";
2695
- };
2696
- readonly isSynced: {
2697
- readonly universalIdentifier: "d7e705f4-c2be-4f4e-bcc3-1cdc9e07990b";
2698
- };
2699
- readonly createdAt: {
2700
- readonly universalIdentifier: "afd4f595-c1a7-4afd-b0fd-b2f0b59203c6";
2701
- };
2702
- };
2703
- };
2704
- readonly messageFolderRecordPageFields: {
2705
- readonly universalIdentifier: "82dc204f-a48d-4985-9259-a79b3a1b230f";
2706
- readonly viewFieldGroups: {
2707
- readonly general: {
2708
- readonly universalIdentifier: "c55a9366-bb2c-4ae7-8345-115c790f56b1";
2709
- };
2710
- readonly system: {
2711
- readonly universalIdentifier: "51b6af5e-9f76-4fb2-811b-6193761d7702";
2712
- };
2713
- };
2714
- readonly viewFields: {
2715
- readonly messageChannelId: {
2716
- readonly universalIdentifier: "2fb6ff09-bed5-4b31-af0f-7fa3df5612da";
2717
- };
2718
- readonly isSentFolder: {
2719
- readonly universalIdentifier: "ec8a2e3e-0736-41f5-8c8b-d36778d52a94";
2720
- };
2721
- readonly isSynced: {
2722
- readonly universalIdentifier: "a68f286c-5d13-4794-9354-e282913930f5";
2723
- };
2724
- readonly createdAt: {
2725
- readonly universalIdentifier: "8b63749b-922d-4164-b0f4-65d716b3d75d";
2726
- };
2727
- readonly createdBy: {
2728
- readonly universalIdentifier: "2a93e132-3c92-4b94-acf0-076e4af75df2";
2729
- };
2730
- };
2731
- };
2732
- };
2733
- };
2734
2222
  readonly messageParticipant: {
2735
2223
  readonly universalIdentifier: "20202020-a433-4456-aa2d-fd9cb26b774a";
2736
2224
  readonly fields: {
@@ -4523,9 +4011,6 @@ declare const STANDARD_OBJECTS: {
4523
4011
  readonly accountOwnerForCompanies: {
4524
4012
  readonly universalIdentifier: "20202020-dc29-4bd4-a3c1-29eafa324bee";
4525
4013
  };
4526
- readonly connectedAccounts: {
4527
- readonly universalIdentifier: "20202020-e322-4bde-a525-727079b4a100";
4528
- };
4529
4014
  readonly messageParticipants: {
4530
4015
  readonly universalIdentifier: "20202020-8f99-48bc-a5eb-edd33dd54188";
4531
4016
  };
@@ -4618,13 +4103,43 @@ declare const definePageLayout: DefineEntity<PageLayoutConfig>;
4618
4103
 
4619
4104
  declare const definePageLayoutTab: DefineEntity<PageLayoutTabConfig>;
4620
4105
 
4106
+ declare const definePermissionFlag: DefineEntity<PermissionFlagConfig>;
4107
+
4621
4108
  declare const defineApplicationRole: DefineEntity<RoleConfig>;
4622
4109
 
4623
4110
  declare const defineRole: DefineEntity<RoleConfig>;
4624
4111
 
4112
+ declare const SystemPermissionFlag: {
4113
+ readonly API_KEYS_AND_WEBHOOKS: "beb99803-9a0e-588d-9c4b-3dd14d9cdf21";
4114
+ readonly WORKSPACE: "86a58859-a539-5fa8-ba18-a6aaddc811b6";
4115
+ readonly WORKSPACE_MEMBERS: "ec342166-2df7-53e7-aa9b-64992d6cb35f";
4116
+ readonly ROLES: "80f1e5ab-484c-5660-a5a1-0ee7413d8190";
4117
+ readonly DATA_MODEL: "f0c08013-3c9a-5489-bd45-a641fe5f085d";
4118
+ readonly SECURITY: "4a8b6016-1d3d-5c94-bbe8-a74c5f32335a";
4119
+ readonly WORKFLOWS: "6189e7bd-4051-5752-b6b1-5f31358fbaf1";
4120
+ readonly IMPERSONATE: "dd2274d1-bbd5-551d-bcf2-3147539cef11";
4121
+ readonly SSO_BYPASS: "2e9cfdc0-4669-58ab-b241-b6c3c14d96df";
4122
+ readonly APPLICATIONS: "9faa55f7-2606-566b-9e1d-aefbedbd0136";
4123
+ readonly MARKETPLACE_APPS: "3a37e2f5-d3e4-56d6-b541-adf0237468ff";
4124
+ readonly LAYOUTS: "458d1ee5-ba12-5f4e-9d17-6f8c11fcd7fd";
4125
+ readonly BILLING: "24b66701-ed97-51e4-aa63-794e1b31414c";
4126
+ readonly AI_SETTINGS: "e8cc4a30-c120-5925-8f5d-73d6a2247fee";
4127
+ readonly AI: "1c7f09a7-367d-568b-a0e8-c274eccd6ee3";
4128
+ readonly VIEWS: "c68354c4-535d-53a9-848a-e3a6774b5fb8";
4129
+ readonly UPLOAD_FILE: "dc6931a9-44bd-5164-a983-3db5db837f54";
4130
+ readonly DOWNLOAD_FILE: "6edf252f-228e-5e2f-9706-7bab7a796fd3";
4131
+ readonly SEND_EMAIL_TOOL: "19f382a8-689d-5792-a18c-737f0ce9025f";
4132
+ readonly HTTP_REQUEST_TOOL: "1bf49cf1-bb8f-5eb9-809a-5f34ea79fc6a";
4133
+ readonly CODE_INTERPRETER_TOOL: "11f31c3a-7042-54b7-a2dd-ae31dd9e9fa2";
4134
+ readonly IMPORT_CSV: "c4912536-a4db-5af9-85ac-be2919c24c5e";
4135
+ readonly EXPORT_CSV: "88efced9-ca6d-5316-a695-f1b9158e7370";
4136
+ readonly CONNECTED_ACCOUNTS: "e5f63b2d-5369-5df6-8f32-a8bd9e79e653";
4137
+ readonly PROFILE_INFORMATION: "7c13f23f-78d8-5e7d-8963-a7c8772fb4e8";
4138
+ };
4139
+
4625
4140
  declare const defineSkill: DefineEntity<SkillManifest>;
4626
4141
 
4627
4142
  declare const defineView: DefineEntity<ViewConfig>;
4628
4143
 
4629
- export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, PermissionFlagType as PermissionFlag, RelationType, STANDARD_OBJECTS as STANDARD_OBJECT, STANDARD_OBJECTS as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS, ViewCalendarLayout, ViewFilterGroupLogicalOperator, ViewFilterOperand, ViewKey, ViewOpenRecordIn, ViewSortDirection, ViewType, ViewVisibility, createValidationResult, defineAgent, defineApplication, defineApplicationRole, defineCommandMenuItem, defineConnectionProvider, defineField, defineFrontComponent, defineLogicFunction, defineNavigationMenuItem, defineObject, definePageLayout, definePageLayoutTab, definePostInstallLogicFunction, definePreInstallLogicFunction, defineRole, defineSkill, defineView, generateDefaultFieldUniversalIdentifier, validateFields };
4630
- 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, InputJsonSchema, InstallHandler, InstallPayload, LinksMetadata as LinksField, LogicFunctionConfig, LogicFunctionHandler, ObjectRecordEvent, PageLayoutConfig, PageLayoutManifest, PageLayoutTabConfig, PageLayoutTabManifest, PageLayoutWidgetConditionalDisplay, PageLayoutWidgetManifest, PageLayoutWidgetUniversalConfiguration, PhonesMetadata as PhonesField, RichTextMetadata as RichTextField, LogicFunctionEvent as RoutePayload, SyncableEntityOptions, ValidationResult, ViewConfig, ViewFieldGroupManifest, ViewFieldManifest, ViewFilterGroupManifest, ViewFilterManifest, ViewGroupManifest, ViewManifestFilterValue, ViewSortManifest };
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 };