twenty-sdk 2.22.0 → 2.23.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/billing/index.cjs.map +1 -1
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{catalog-sync-DUkU-swN.mjs → catalog-sync-Duh0toYz.mjs} +1 -1
- package/dist/{catalog-sync-DoUCfPkC.js → catalog-sync-vCny1eqz.js} +1 -1
- package/dist/cli/utilities/build/manifest/utils/get-default-fields-in-object-fields.d.ts +1 -2
- package/dist/cli.cjs +7 -7
- package/dist/cli.mjs +56 -56
- package/dist/define/index.cjs +18 -18
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +58 -50
- package/dist/define/index.mjs +5575 -5268
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.mjs +1 -1
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-GNk3NRLJ-DqaAG8sQ.mjs → get-function-input-schema-GNk3NRLJ-CINgHnhw.mjs} +1 -1
- package/dist/logic-function/index.cjs.map +1 -1
- package/dist/logic-function/index.mjs.map +1 -1
- package/dist/{login-DSHFFVyM.mjs → login-C1WTDmkF.mjs} +3215 -3008
- package/dist/{login-BCfjgngD.js → login-DRLsbxdb.js} +26 -26
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +1 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +2 -2
- package/dist/cli/utilities/build/manifest/utils/get-default-relation-object-fields.d.ts +0 -9
package/dist/define/index.d.ts
CHANGED
|
@@ -171,6 +171,12 @@ declare const getFieldUniversalIdentifier: ({ applicationUniversalIdentifier, ob
|
|
|
171
171
|
name: string;
|
|
172
172
|
}) => string;
|
|
173
173
|
|
|
174
|
+
declare const getSystemRelationFieldUniversalIdentifier: ({ applicationUniversalIdentifier, objectUniversalIdentifier, relationTargetObjectUniversalIdentifier, }: {
|
|
175
|
+
applicationUniversalIdentifier: string;
|
|
176
|
+
objectUniversalIdentifier: string;
|
|
177
|
+
relationTargetObjectUniversalIdentifier: string;
|
|
178
|
+
}) => string;
|
|
179
|
+
|
|
174
180
|
declare const ALLOWED_ADDRESS_SUBFIELDS: readonly ["addressStreet1", "addressStreet2", "addressCity", "addressState", "addressPostcode", "addressCountry", "addressLat", "addressLng"];
|
|
175
181
|
type AllowedAddressSubField = (typeof ALLOWED_ADDRESS_SUBFIELDS)[number];
|
|
176
182
|
|
|
@@ -864,7 +870,9 @@ declare enum ViewType {
|
|
|
864
870
|
KANBAN = "KANBAN",
|
|
865
871
|
CALENDAR = "CALENDAR",
|
|
866
872
|
FIELDS_WIDGET = "FIELDS_WIDGET",
|
|
867
|
-
TABLE_WIDGET = "TABLE_WIDGET"
|
|
873
|
+
TABLE_WIDGET = "TABLE_WIDGET",
|
|
874
|
+
KANBAN_WIDGET = "KANBAN_WIDGET",
|
|
875
|
+
CALENDAR_WIDGET = "CALENDAR_WIDGET"
|
|
868
876
|
}
|
|
869
877
|
|
|
870
878
|
declare enum ViewVisibility {
|
|
@@ -1485,25 +1493,25 @@ declare const STANDARD_OBJECTS: {
|
|
|
1485
1493
|
readonly universalIdentifier: "20202020-8c3f-4d9e-9a1b-2e5f7a8c9d0e";
|
|
1486
1494
|
};
|
|
1487
1495
|
readonly targetTask: {
|
|
1488
|
-
readonly universalIdentifier:
|
|
1496
|
+
readonly universalIdentifier: string;
|
|
1489
1497
|
};
|
|
1490
1498
|
readonly targetNote: {
|
|
1491
|
-
readonly universalIdentifier:
|
|
1499
|
+
readonly universalIdentifier: string;
|
|
1492
1500
|
};
|
|
1493
1501
|
readonly targetPerson: {
|
|
1494
|
-
readonly universalIdentifier:
|
|
1502
|
+
readonly universalIdentifier: string;
|
|
1495
1503
|
};
|
|
1496
1504
|
readonly targetCompany: {
|
|
1497
|
-
readonly universalIdentifier:
|
|
1505
|
+
readonly universalIdentifier: string;
|
|
1498
1506
|
};
|
|
1499
1507
|
readonly targetOpportunity: {
|
|
1500
|
-
readonly universalIdentifier:
|
|
1508
|
+
readonly universalIdentifier: string;
|
|
1501
1509
|
};
|
|
1502
1510
|
readonly targetDashboard: {
|
|
1503
|
-
readonly universalIdentifier:
|
|
1511
|
+
readonly universalIdentifier: string;
|
|
1504
1512
|
};
|
|
1505
1513
|
readonly targetWorkflow: {
|
|
1506
|
-
readonly universalIdentifier:
|
|
1514
|
+
readonly universalIdentifier: string;
|
|
1507
1515
|
};
|
|
1508
1516
|
readonly createdAt: {
|
|
1509
1517
|
universalIdentifier: string;
|
|
@@ -2214,19 +2222,19 @@ declare const STANDARD_OBJECTS: {
|
|
|
2214
2222
|
readonly universalIdentifier: "20202020-95b8-4e10-9881-edb5d4765f9d";
|
|
2215
2223
|
};
|
|
2216
2224
|
readonly taskTargets: {
|
|
2217
|
-
readonly universalIdentifier:
|
|
2225
|
+
readonly universalIdentifier: string;
|
|
2218
2226
|
};
|
|
2219
2227
|
readonly noteTargets: {
|
|
2220
|
-
readonly universalIdentifier:
|
|
2228
|
+
readonly universalIdentifier: string;
|
|
2221
2229
|
};
|
|
2222
2230
|
readonly opportunities: {
|
|
2223
2231
|
readonly universalIdentifier: "20202020-add3-4658-8e23-d70dccb6d0ec";
|
|
2224
2232
|
};
|
|
2225
2233
|
readonly attachments: {
|
|
2226
|
-
readonly universalIdentifier:
|
|
2234
|
+
readonly universalIdentifier: string;
|
|
2227
2235
|
};
|
|
2228
2236
|
readonly timelineActivities: {
|
|
2229
|
-
readonly universalIdentifier:
|
|
2237
|
+
readonly universalIdentifier: string;
|
|
2230
2238
|
};
|
|
2231
2239
|
readonly createdAt: {
|
|
2232
2240
|
universalIdentifier: string;
|
|
@@ -2367,10 +2375,10 @@ declare const STANDARD_OBJECTS: {
|
|
|
2367
2375
|
readonly universalIdentifier: "20202020-bb53-4648-aa36-1d9d54e6f7f2";
|
|
2368
2376
|
};
|
|
2369
2377
|
readonly timelineActivities: {
|
|
2370
|
-
readonly universalIdentifier:
|
|
2378
|
+
readonly universalIdentifier: string;
|
|
2371
2379
|
};
|
|
2372
2380
|
readonly attachments: {
|
|
2373
|
-
readonly universalIdentifier:
|
|
2381
|
+
readonly universalIdentifier: string;
|
|
2374
2382
|
};
|
|
2375
2383
|
readonly createdAt: {
|
|
2376
2384
|
universalIdentifier: string;
|
|
@@ -2459,7 +2467,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
2459
2467
|
readonly universalIdentifier: "cb24dcdf-f0e8-4c71-8cff-70b714e86530";
|
|
2460
2468
|
};
|
|
2461
2469
|
readonly timelineActivities: {
|
|
2462
|
-
readonly universalIdentifier:
|
|
2470
|
+
readonly universalIdentifier: string;
|
|
2463
2471
|
};
|
|
2464
2472
|
readonly messages: {
|
|
2465
2473
|
readonly universalIdentifier: "e5a177a7-512b-4778-928e-69777a528f7c";
|
|
@@ -2557,7 +2565,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
2557
2565
|
readonly universalIdentifier: "e098d838-31ab-4812-91a8-f055f45a6832";
|
|
2558
2566
|
};
|
|
2559
2567
|
readonly timelineActivities: {
|
|
2560
|
-
readonly universalIdentifier:
|
|
2568
|
+
readonly universalIdentifier: string;
|
|
2561
2569
|
};
|
|
2562
2570
|
readonly createdAt: {
|
|
2563
2571
|
universalIdentifier: string;
|
|
@@ -3145,10 +3153,10 @@ declare const STANDARD_OBJECTS: {
|
|
|
3145
3153
|
readonly universalIdentifier: "20202020-1f25-43fe-8b00-af212fdde823";
|
|
3146
3154
|
};
|
|
3147
3155
|
readonly attachments: {
|
|
3148
|
-
readonly universalIdentifier:
|
|
3156
|
+
readonly universalIdentifier: string;
|
|
3149
3157
|
};
|
|
3150
3158
|
readonly timelineActivities: {
|
|
3151
|
-
readonly universalIdentifier:
|
|
3159
|
+
readonly universalIdentifier: string;
|
|
3152
3160
|
};
|
|
3153
3161
|
readonly createdAt: {
|
|
3154
3162
|
universalIdentifier: string;
|
|
@@ -3247,13 +3255,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3247
3255
|
readonly universalIdentifier: "20202020-57f3-4f50-9599-fc0f671df003";
|
|
3248
3256
|
};
|
|
3249
3257
|
readonly targetPerson: {
|
|
3250
|
-
readonly universalIdentifier:
|
|
3258
|
+
readonly universalIdentifier: string;
|
|
3251
3259
|
};
|
|
3252
3260
|
readonly targetCompany: {
|
|
3253
|
-
readonly universalIdentifier:
|
|
3261
|
+
readonly universalIdentifier: string;
|
|
3254
3262
|
};
|
|
3255
3263
|
readonly targetOpportunity: {
|
|
3256
|
-
readonly universalIdentifier:
|
|
3264
|
+
readonly universalIdentifier: string;
|
|
3257
3265
|
};
|
|
3258
3266
|
readonly createdAt: {
|
|
3259
3267
|
universalIdentifier: string;
|
|
@@ -3347,16 +3355,16 @@ declare const STANDARD_OBJECTS: {
|
|
|
3347
3355
|
readonly universalIdentifier: "20202020-be7e-4d1e-8e19-3d5c7c4b9f2a";
|
|
3348
3356
|
};
|
|
3349
3357
|
readonly taskTargets: {
|
|
3350
|
-
readonly universalIdentifier:
|
|
3358
|
+
readonly universalIdentifier: string;
|
|
3351
3359
|
};
|
|
3352
3360
|
readonly noteTargets: {
|
|
3353
|
-
readonly universalIdentifier:
|
|
3361
|
+
readonly universalIdentifier: string;
|
|
3354
3362
|
};
|
|
3355
3363
|
readonly attachments: {
|
|
3356
|
-
readonly universalIdentifier:
|
|
3364
|
+
readonly universalIdentifier: string;
|
|
3357
3365
|
};
|
|
3358
3366
|
readonly timelineActivities: {
|
|
3359
|
-
readonly universalIdentifier:
|
|
3367
|
+
readonly universalIdentifier: string;
|
|
3360
3368
|
};
|
|
3361
3369
|
readonly createdAt: {
|
|
3362
3370
|
universalIdentifier: string;
|
|
@@ -3552,13 +3560,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3552
3560
|
readonly universalIdentifier: "20202020-911b-4a7d-b67b-918aa9a5b33a";
|
|
3553
3561
|
};
|
|
3554
3562
|
readonly taskTargets: {
|
|
3555
|
-
readonly universalIdentifier:
|
|
3563
|
+
readonly universalIdentifier: string;
|
|
3556
3564
|
};
|
|
3557
3565
|
readonly noteTargets: {
|
|
3558
|
-
readonly universalIdentifier:
|
|
3566
|
+
readonly universalIdentifier: string;
|
|
3559
3567
|
};
|
|
3560
3568
|
readonly attachments: {
|
|
3561
|
-
readonly universalIdentifier:
|
|
3569
|
+
readonly universalIdentifier: string;
|
|
3562
3570
|
};
|
|
3563
3571
|
readonly messageParticipants: {
|
|
3564
3572
|
readonly universalIdentifier: "20202020-498e-4c61-8158-fa04f0638334";
|
|
@@ -3567,7 +3575,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
3567
3575
|
readonly universalIdentifier: "20202020-52ee-45e9-a702-b64b3753e3a9";
|
|
3568
3576
|
};
|
|
3569
3577
|
readonly timelineActivities: {
|
|
3570
|
-
readonly universalIdentifier:
|
|
3578
|
+
readonly universalIdentifier: string;
|
|
3571
3579
|
};
|
|
3572
3580
|
readonly listMemberships: {
|
|
3573
3581
|
readonly universalIdentifier: "8b8d1be0-4c94-4413-a2c9-c7ede205a81d";
|
|
@@ -3732,13 +3740,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3732
3740
|
readonly universalIdentifier: "20202020-de9c-4d0e-a452-713d4a3e5fc7";
|
|
3733
3741
|
};
|
|
3734
3742
|
readonly attachments: {
|
|
3735
|
-
readonly universalIdentifier:
|
|
3743
|
+
readonly universalIdentifier: string;
|
|
3736
3744
|
};
|
|
3737
3745
|
readonly assignee: {
|
|
3738
3746
|
readonly universalIdentifier: "20202020-065a-4f42-a906-e20422c1753f";
|
|
3739
3747
|
};
|
|
3740
3748
|
readonly timelineActivities: {
|
|
3741
|
-
readonly universalIdentifier:
|
|
3749
|
+
readonly universalIdentifier: string;
|
|
3742
3750
|
};
|
|
3743
3751
|
readonly createdAt: {
|
|
3744
3752
|
universalIdentifier: string;
|
|
@@ -3934,13 +3942,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3934
3942
|
readonly universalIdentifier: "20202020-e881-457a-8758-74aaef4ae78a";
|
|
3935
3943
|
};
|
|
3936
3944
|
readonly targetPerson: {
|
|
3937
|
-
readonly universalIdentifier:
|
|
3945
|
+
readonly universalIdentifier: string;
|
|
3938
3946
|
};
|
|
3939
3947
|
readonly targetCompany: {
|
|
3940
|
-
readonly universalIdentifier:
|
|
3948
|
+
readonly universalIdentifier: string;
|
|
3941
3949
|
};
|
|
3942
3950
|
readonly targetOpportunity: {
|
|
3943
|
-
readonly universalIdentifier:
|
|
3951
|
+
readonly universalIdentifier: string;
|
|
3944
3952
|
};
|
|
3945
3953
|
readonly createdAt: {
|
|
3946
3954
|
universalIdentifier: string;
|
|
@@ -4025,37 +4033,37 @@ declare const STANDARD_OBJECTS: {
|
|
|
4025
4033
|
readonly universalIdentifier: "20202020-af23-4479-9a30-868edc474b36";
|
|
4026
4034
|
};
|
|
4027
4035
|
readonly targetPerson: {
|
|
4028
|
-
readonly universalIdentifier:
|
|
4036
|
+
readonly universalIdentifier: string;
|
|
4029
4037
|
};
|
|
4030
4038
|
readonly targetCompany: {
|
|
4031
|
-
readonly universalIdentifier:
|
|
4039
|
+
readonly universalIdentifier: string;
|
|
4032
4040
|
};
|
|
4033
4041
|
readonly targetOpportunity: {
|
|
4034
|
-
readonly universalIdentifier:
|
|
4042
|
+
readonly universalIdentifier: string;
|
|
4035
4043
|
};
|
|
4036
4044
|
readonly targetTask: {
|
|
4037
|
-
readonly universalIdentifier:
|
|
4045
|
+
readonly universalIdentifier: string;
|
|
4038
4046
|
};
|
|
4039
4047
|
readonly targetNote: {
|
|
4040
|
-
readonly universalIdentifier:
|
|
4048
|
+
readonly universalIdentifier: string;
|
|
4041
4049
|
};
|
|
4042
4050
|
readonly targetWorkflow: {
|
|
4043
|
-
readonly universalIdentifier:
|
|
4051
|
+
readonly universalIdentifier: string;
|
|
4044
4052
|
};
|
|
4045
4053
|
readonly targetWorkflowVersion: {
|
|
4046
|
-
readonly universalIdentifier:
|
|
4054
|
+
readonly universalIdentifier: string;
|
|
4047
4055
|
};
|
|
4048
4056
|
readonly targetWorkflowRun: {
|
|
4049
|
-
readonly universalIdentifier:
|
|
4057
|
+
readonly universalIdentifier: string;
|
|
4050
4058
|
};
|
|
4051
4059
|
readonly targetDashboard: {
|
|
4052
|
-
readonly universalIdentifier:
|
|
4060
|
+
readonly universalIdentifier: string;
|
|
4053
4061
|
};
|
|
4054
4062
|
readonly targetMessageList: {
|
|
4055
|
-
readonly universalIdentifier:
|
|
4063
|
+
readonly universalIdentifier: string;
|
|
4056
4064
|
};
|
|
4057
4065
|
readonly targetMessageCampaign: {
|
|
4058
|
-
readonly universalIdentifier:
|
|
4066
|
+
readonly universalIdentifier: string;
|
|
4059
4067
|
};
|
|
4060
4068
|
readonly linkedRecordCachedName: {
|
|
4061
4069
|
readonly universalIdentifier: "20202020-cfdb-4bef-bbce-a29f41230934";
|
|
@@ -4203,10 +4211,10 @@ declare const STANDARD_OBJECTS: {
|
|
|
4203
4211
|
readonly universalIdentifier: "20202020-3319-4234-a34c-117ecad2b8a9";
|
|
4204
4212
|
};
|
|
4205
4213
|
readonly timelineActivities: {
|
|
4206
|
-
readonly universalIdentifier:
|
|
4214
|
+
readonly universalIdentifier: string;
|
|
4207
4215
|
};
|
|
4208
4216
|
readonly attachments: {
|
|
4209
|
-
readonly universalIdentifier:
|
|
4217
|
+
readonly universalIdentifier: string;
|
|
4210
4218
|
};
|
|
4211
4219
|
readonly createdAt: {
|
|
4212
4220
|
universalIdentifier: string;
|
|
@@ -4379,7 +4387,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
4379
4387
|
readonly universalIdentifier: "20202020-7c4e-4e1a-8fc1-1e3a55d6c2a1";
|
|
4380
4388
|
};
|
|
4381
4389
|
readonly timelineActivities: {
|
|
4382
|
-
readonly universalIdentifier:
|
|
4390
|
+
readonly universalIdentifier: string;
|
|
4383
4391
|
};
|
|
4384
4392
|
readonly createdAt: {
|
|
4385
4393
|
universalIdentifier: string;
|
|
@@ -4517,7 +4525,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
4517
4525
|
readonly universalIdentifier: "20202020-58b4-46e8-b6d2-f1f3c74cf7f4";
|
|
4518
4526
|
};
|
|
4519
4527
|
readonly timelineActivities: {
|
|
4520
|
-
readonly universalIdentifier:
|
|
4528
|
+
readonly universalIdentifier: string;
|
|
4521
4529
|
};
|
|
4522
4530
|
readonly createdAt: {
|
|
4523
4531
|
universalIdentifier: string;
|
|
@@ -5434,5 +5442,5 @@ declare const defineView: DefineEntity<ViewConfig>;
|
|
|
5434
5442
|
|
|
5435
5443
|
declare const defineViewField: DefineEntity<StandaloneViewFieldManifest>;
|
|
5436
5444
|
|
|
5437
|
-
export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, PageLayoutType, RelationType, RowLevelPermissionPredicateGroupLogicalOperator, RowLevelPermissionPredicateOperand, STANDARD_OBJECTS as STANDARD_OBJECT, STANDARD_OBJECTS as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS as STANDARD_PAGE_LAYOUT, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS, SystemPermissionFlag, ViewCalendarLayout, ViewFilterGroupLogicalOperator, ViewFilterOperand, ViewKey, ViewOpenRecordIn, ViewSortDirection, ViewType, ViewVisibility, canAccessFullAdminPanel, canImpersonate, createValidationResult, defineAgent, defineApplication, defineApplicationRole, defineCommandMenuItem, defineConnectionProvider, defineField, defineFrontComponent, defineIndex, defineLogicFunction, defineNavigationMenuItem, defineObject, definePageLayout, definePageLayoutTab, definePermissionFlag, definePostInstallLogicFunction, definePreInstallLogicFunction, defineRole, defineSkill, defineView, defineViewField, every, everyDefined, everyEquals, favoriteRecordIds, featureFlags, getFieldUniversalIdentifier, 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 };
|
|
5445
|
+
export { AggregateOperations, DateDisplayFormat, FieldMetadataSettingsOnClickAction, FieldMetadataType as FieldType, HTTPMethod, NavigationMenuItemType, NumberDataType, ObjectRecordBaseEvent, ObjectRecordCreateEvent, ObjectRecordDeleteEvent, ObjectRecordDestroyEvent, ObjectRecordGroupByDateGranularity, ObjectRecordRestoreEvent, ObjectRecordUpdateEvent, ObjectRecordUpsertEvent, RelationOnDeleteAction as OnDeleteAction, PageLayoutTabLayoutMode, PageLayoutType, RelationType, RowLevelPermissionPredicateGroupLogicalOperator, RowLevelPermissionPredicateOperand, STANDARD_OBJECTS as STANDARD_OBJECT, STANDARD_OBJECTS as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS as STANDARD_PAGE_LAYOUT, STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS, SystemPermissionFlag, ViewCalendarLayout, ViewFilterGroupLogicalOperator, ViewFilterOperand, ViewKey, ViewOpenRecordIn, ViewSortDirection, ViewType, ViewVisibility, canAccessFullAdminPanel, canImpersonate, createValidationResult, defineAgent, defineApplication, defineApplicationRole, defineCommandMenuItem, defineConnectionProvider, defineField, defineFrontComponent, defineIndex, defineLogicFunction, defineNavigationMenuItem, defineObject, definePageLayout, definePageLayoutTab, definePermissionFlag, definePostInstallLogicFunction, definePreInstallLogicFunction, defineRole, defineSkill, defineView, defineViewField, every, everyDefined, everyEquals, favoriteRecordIds, featureFlags, getFieldUniversalIdentifier, getSystemRelationFieldUniversalIdentifier, hasAnySoftDeleteFilterOnView, includes, includesEvery, isDashboardPageLayoutInEditMode, isDefined, isInSidePanel, isLayoutCustomizationModeEnabled, isNonEmptyString, isSelectAll, none, noneDefined, noneEquals, numberOfSelectedRecords, objectMetadataItem, objectMetadataLabel, objectPermissions, pageType, selectedRecords, some, someDefined, someEquals, someNonEmptyString, targetObjectReadPermissions, targetObjectWritePermissions, validateFields };
|
|
5438
5446
|
export type { ActorMetadata as ActorField, AddressMetadata as AddressField, ApplicationConfig, CommandMenuItemConfig, CommandMenuItemManifest, CronPayload, CurrencyMetadata as CurrencyField, DatabaseEventPayload, DefinableEntity, DefineEntity, EmailsMetadata as EmailsField, FrontComponentConfig, FrontComponentType, FullNameMetadata as FullNameField, GridPosition, IndexConfig, IndexFieldManifest, IndexManifest, InputJsonSchema, InstallHandler, InstallPayload, LinksMetadata as LinksField, LogicFunctionConfig, LogicFunctionHandler, ObjectRecordEvent, PageLayoutConfig, PageLayoutManifest, PageLayoutTabConfig, PageLayoutTabManifest, PageLayoutWidgetConditionalDisplay, PageLayoutWidgetManifest, PageLayoutWidgetUniversalConfiguration, PermissionFlagConfig, PermissionFlagManifest, PermissionFlagPermissionType, PhonesMetadata as PhonesField, RichTextMetadata as RichTextField, LogicFunctionEvent as RoutePayload, RowLevelPermissionPredicateGroupManifest, RowLevelPermissionPredicateManifest, StandaloneViewFieldManifest, SyncableEntityOptions, TwentyRecord, ValidationResult, ViewConfig, ViewFieldGroupManifest, ViewFieldManifest, ViewFilterGroupManifest, ViewFilterManifest, ViewGroupManifest, ViewManifestFilterValue, ViewSortManifest };
|