twenty-sdk 2.21.0 → 2.23.0-alpha.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.
- package/dist/billing/index.cjs.map +1 -1
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{catalog-sync-DoBWDnCd.js → catalog-sync-Cq0X-dtP.js} +1 -1
- package/dist/{catalog-sync-CjqZ81jv.mjs → catalog-sync-DMB2-zfb.mjs} +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 +62 -49
- package/dist/define/index.mjs +5575 -5266
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.d.ts +1 -0
- package/dist/front-component/index.mjs +1 -1
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-GNk3NRLJ-C4DmUxTK.mjs → get-function-input-schema-GNk3NRLJ-DvySDoB9.mjs} +1 -1
- package/dist/logic-function/index.cjs.map +1 -1
- package/dist/logic-function/index.mjs.map +1 -1
- package/dist/{login-CIXRVsRD.mjs → login-CBkilp_U.mjs} +3213 -3006
- package/dist/{login-CZP9z64V.js → login-DiBaFL7M.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
|
|
|
@@ -1197,6 +1203,7 @@ type ViewManifest = SyncableEntityOptions$1 & {
|
|
|
1197
1203
|
kanbanAggregateOperationFieldMetadataUniversalIdentifier?: string;
|
|
1198
1204
|
calendarLayout?: ViewCalendarLayout;
|
|
1199
1205
|
calendarFieldMetadataUniversalIdentifier?: string;
|
|
1206
|
+
calendarEndFieldMetadataUniversalIdentifier?: string;
|
|
1200
1207
|
fields?: ViewFieldManifest[];
|
|
1201
1208
|
filters?: ViewFilterManifest[];
|
|
1202
1209
|
filterGroups?: ViewFilterGroupManifest[];
|
|
@@ -1484,25 +1491,25 @@ declare const STANDARD_OBJECTS: {
|
|
|
1484
1491
|
readonly universalIdentifier: "20202020-8c3f-4d9e-9a1b-2e5f7a8c9d0e";
|
|
1485
1492
|
};
|
|
1486
1493
|
readonly targetTask: {
|
|
1487
|
-
readonly universalIdentifier:
|
|
1494
|
+
readonly universalIdentifier: string;
|
|
1488
1495
|
};
|
|
1489
1496
|
readonly targetNote: {
|
|
1490
|
-
readonly universalIdentifier:
|
|
1497
|
+
readonly universalIdentifier: string;
|
|
1491
1498
|
};
|
|
1492
1499
|
readonly targetPerson: {
|
|
1493
|
-
readonly universalIdentifier:
|
|
1500
|
+
readonly universalIdentifier: string;
|
|
1494
1501
|
};
|
|
1495
1502
|
readonly targetCompany: {
|
|
1496
|
-
readonly universalIdentifier:
|
|
1503
|
+
readonly universalIdentifier: string;
|
|
1497
1504
|
};
|
|
1498
1505
|
readonly targetOpportunity: {
|
|
1499
|
-
readonly universalIdentifier:
|
|
1506
|
+
readonly universalIdentifier: string;
|
|
1500
1507
|
};
|
|
1501
1508
|
readonly targetDashboard: {
|
|
1502
|
-
readonly universalIdentifier:
|
|
1509
|
+
readonly universalIdentifier: string;
|
|
1503
1510
|
};
|
|
1504
1511
|
readonly targetWorkflow: {
|
|
1505
|
-
readonly universalIdentifier:
|
|
1512
|
+
readonly universalIdentifier: string;
|
|
1506
1513
|
};
|
|
1507
1514
|
readonly createdAt: {
|
|
1508
1515
|
universalIdentifier: string;
|
|
@@ -2213,19 +2220,19 @@ declare const STANDARD_OBJECTS: {
|
|
|
2213
2220
|
readonly universalIdentifier: "20202020-95b8-4e10-9881-edb5d4765f9d";
|
|
2214
2221
|
};
|
|
2215
2222
|
readonly taskTargets: {
|
|
2216
|
-
readonly universalIdentifier:
|
|
2223
|
+
readonly universalIdentifier: string;
|
|
2217
2224
|
};
|
|
2218
2225
|
readonly noteTargets: {
|
|
2219
|
-
readonly universalIdentifier:
|
|
2226
|
+
readonly universalIdentifier: string;
|
|
2220
2227
|
};
|
|
2221
2228
|
readonly opportunities: {
|
|
2222
2229
|
readonly universalIdentifier: "20202020-add3-4658-8e23-d70dccb6d0ec";
|
|
2223
2230
|
};
|
|
2224
2231
|
readonly attachments: {
|
|
2225
|
-
readonly universalIdentifier:
|
|
2232
|
+
readonly universalIdentifier: string;
|
|
2226
2233
|
};
|
|
2227
2234
|
readonly timelineActivities: {
|
|
2228
|
-
readonly universalIdentifier:
|
|
2235
|
+
readonly universalIdentifier: string;
|
|
2229
2236
|
};
|
|
2230
2237
|
readonly createdAt: {
|
|
2231
2238
|
universalIdentifier: string;
|
|
@@ -2366,10 +2373,10 @@ declare const STANDARD_OBJECTS: {
|
|
|
2366
2373
|
readonly universalIdentifier: "20202020-bb53-4648-aa36-1d9d54e6f7f2";
|
|
2367
2374
|
};
|
|
2368
2375
|
readonly timelineActivities: {
|
|
2369
|
-
readonly universalIdentifier:
|
|
2376
|
+
readonly universalIdentifier: string;
|
|
2370
2377
|
};
|
|
2371
2378
|
readonly attachments: {
|
|
2372
|
-
readonly universalIdentifier:
|
|
2379
|
+
readonly universalIdentifier: string;
|
|
2373
2380
|
};
|
|
2374
2381
|
readonly createdAt: {
|
|
2375
2382
|
universalIdentifier: string;
|
|
@@ -2458,7 +2465,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
2458
2465
|
readonly universalIdentifier: "cb24dcdf-f0e8-4c71-8cff-70b714e86530";
|
|
2459
2466
|
};
|
|
2460
2467
|
readonly timelineActivities: {
|
|
2461
|
-
readonly universalIdentifier:
|
|
2468
|
+
readonly universalIdentifier: string;
|
|
2462
2469
|
};
|
|
2463
2470
|
readonly messages: {
|
|
2464
2471
|
readonly universalIdentifier: "e5a177a7-512b-4778-928e-69777a528f7c";
|
|
@@ -2556,7 +2563,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
2556
2563
|
readonly universalIdentifier: "e098d838-31ab-4812-91a8-f055f45a6832";
|
|
2557
2564
|
};
|
|
2558
2565
|
readonly timelineActivities: {
|
|
2559
|
-
readonly universalIdentifier:
|
|
2566
|
+
readonly universalIdentifier: string;
|
|
2560
2567
|
};
|
|
2561
2568
|
readonly createdAt: {
|
|
2562
2569
|
universalIdentifier: string;
|
|
@@ -3144,10 +3151,10 @@ declare const STANDARD_OBJECTS: {
|
|
|
3144
3151
|
readonly universalIdentifier: "20202020-1f25-43fe-8b00-af212fdde823";
|
|
3145
3152
|
};
|
|
3146
3153
|
readonly attachments: {
|
|
3147
|
-
readonly universalIdentifier:
|
|
3154
|
+
readonly universalIdentifier: string;
|
|
3148
3155
|
};
|
|
3149
3156
|
readonly timelineActivities: {
|
|
3150
|
-
readonly universalIdentifier:
|
|
3157
|
+
readonly universalIdentifier: string;
|
|
3151
3158
|
};
|
|
3152
3159
|
readonly createdAt: {
|
|
3153
3160
|
universalIdentifier: string;
|
|
@@ -3246,13 +3253,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3246
3253
|
readonly universalIdentifier: "20202020-57f3-4f50-9599-fc0f671df003";
|
|
3247
3254
|
};
|
|
3248
3255
|
readonly targetPerson: {
|
|
3249
|
-
readonly universalIdentifier:
|
|
3256
|
+
readonly universalIdentifier: string;
|
|
3250
3257
|
};
|
|
3251
3258
|
readonly targetCompany: {
|
|
3252
|
-
readonly universalIdentifier:
|
|
3259
|
+
readonly universalIdentifier: string;
|
|
3253
3260
|
};
|
|
3254
3261
|
readonly targetOpportunity: {
|
|
3255
|
-
readonly universalIdentifier:
|
|
3262
|
+
readonly universalIdentifier: string;
|
|
3256
3263
|
};
|
|
3257
3264
|
readonly createdAt: {
|
|
3258
3265
|
universalIdentifier: string;
|
|
@@ -3346,16 +3353,16 @@ declare const STANDARD_OBJECTS: {
|
|
|
3346
3353
|
readonly universalIdentifier: "20202020-be7e-4d1e-8e19-3d5c7c4b9f2a";
|
|
3347
3354
|
};
|
|
3348
3355
|
readonly taskTargets: {
|
|
3349
|
-
readonly universalIdentifier:
|
|
3356
|
+
readonly universalIdentifier: string;
|
|
3350
3357
|
};
|
|
3351
3358
|
readonly noteTargets: {
|
|
3352
|
-
readonly universalIdentifier:
|
|
3359
|
+
readonly universalIdentifier: string;
|
|
3353
3360
|
};
|
|
3354
3361
|
readonly attachments: {
|
|
3355
|
-
readonly universalIdentifier:
|
|
3362
|
+
readonly universalIdentifier: string;
|
|
3356
3363
|
};
|
|
3357
3364
|
readonly timelineActivities: {
|
|
3358
|
-
readonly universalIdentifier:
|
|
3365
|
+
readonly universalIdentifier: string;
|
|
3359
3366
|
};
|
|
3360
3367
|
readonly createdAt: {
|
|
3361
3368
|
universalIdentifier: string;
|
|
@@ -3551,13 +3558,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3551
3558
|
readonly universalIdentifier: "20202020-911b-4a7d-b67b-918aa9a5b33a";
|
|
3552
3559
|
};
|
|
3553
3560
|
readonly taskTargets: {
|
|
3554
|
-
readonly universalIdentifier:
|
|
3561
|
+
readonly universalIdentifier: string;
|
|
3555
3562
|
};
|
|
3556
3563
|
readonly noteTargets: {
|
|
3557
|
-
readonly universalIdentifier:
|
|
3564
|
+
readonly universalIdentifier: string;
|
|
3558
3565
|
};
|
|
3559
3566
|
readonly attachments: {
|
|
3560
|
-
readonly universalIdentifier:
|
|
3567
|
+
readonly universalIdentifier: string;
|
|
3561
3568
|
};
|
|
3562
3569
|
readonly messageParticipants: {
|
|
3563
3570
|
readonly universalIdentifier: "20202020-498e-4c61-8158-fa04f0638334";
|
|
@@ -3566,7 +3573,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
3566
3573
|
readonly universalIdentifier: "20202020-52ee-45e9-a702-b64b3753e3a9";
|
|
3567
3574
|
};
|
|
3568
3575
|
readonly timelineActivities: {
|
|
3569
|
-
readonly universalIdentifier:
|
|
3576
|
+
readonly universalIdentifier: string;
|
|
3570
3577
|
};
|
|
3571
3578
|
readonly listMemberships: {
|
|
3572
3579
|
readonly universalIdentifier: "8b8d1be0-4c94-4413-a2c9-c7ede205a81d";
|
|
@@ -3731,13 +3738,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3731
3738
|
readonly universalIdentifier: "20202020-de9c-4d0e-a452-713d4a3e5fc7";
|
|
3732
3739
|
};
|
|
3733
3740
|
readonly attachments: {
|
|
3734
|
-
readonly universalIdentifier:
|
|
3741
|
+
readonly universalIdentifier: string;
|
|
3735
3742
|
};
|
|
3736
3743
|
readonly assignee: {
|
|
3737
3744
|
readonly universalIdentifier: "20202020-065a-4f42-a906-e20422c1753f";
|
|
3738
3745
|
};
|
|
3739
3746
|
readonly timelineActivities: {
|
|
3740
|
-
readonly universalIdentifier:
|
|
3747
|
+
readonly universalIdentifier: string;
|
|
3741
3748
|
};
|
|
3742
3749
|
readonly createdAt: {
|
|
3743
3750
|
universalIdentifier: string;
|
|
@@ -3933,13 +3940,13 @@ declare const STANDARD_OBJECTS: {
|
|
|
3933
3940
|
readonly universalIdentifier: "20202020-e881-457a-8758-74aaef4ae78a";
|
|
3934
3941
|
};
|
|
3935
3942
|
readonly targetPerson: {
|
|
3936
|
-
readonly universalIdentifier:
|
|
3943
|
+
readonly universalIdentifier: string;
|
|
3937
3944
|
};
|
|
3938
3945
|
readonly targetCompany: {
|
|
3939
|
-
readonly universalIdentifier:
|
|
3946
|
+
readonly universalIdentifier: string;
|
|
3940
3947
|
};
|
|
3941
3948
|
readonly targetOpportunity: {
|
|
3942
|
-
readonly universalIdentifier:
|
|
3949
|
+
readonly universalIdentifier: string;
|
|
3943
3950
|
};
|
|
3944
3951
|
readonly createdAt: {
|
|
3945
3952
|
universalIdentifier: string;
|
|
@@ -4024,37 +4031,37 @@ declare const STANDARD_OBJECTS: {
|
|
|
4024
4031
|
readonly universalIdentifier: "20202020-af23-4479-9a30-868edc474b36";
|
|
4025
4032
|
};
|
|
4026
4033
|
readonly targetPerson: {
|
|
4027
|
-
readonly universalIdentifier:
|
|
4034
|
+
readonly universalIdentifier: string;
|
|
4028
4035
|
};
|
|
4029
4036
|
readonly targetCompany: {
|
|
4030
|
-
readonly universalIdentifier:
|
|
4037
|
+
readonly universalIdentifier: string;
|
|
4031
4038
|
};
|
|
4032
4039
|
readonly targetOpportunity: {
|
|
4033
|
-
readonly universalIdentifier:
|
|
4040
|
+
readonly universalIdentifier: string;
|
|
4034
4041
|
};
|
|
4035
4042
|
readonly targetTask: {
|
|
4036
|
-
readonly universalIdentifier:
|
|
4043
|
+
readonly universalIdentifier: string;
|
|
4037
4044
|
};
|
|
4038
4045
|
readonly targetNote: {
|
|
4039
|
-
readonly universalIdentifier:
|
|
4046
|
+
readonly universalIdentifier: string;
|
|
4040
4047
|
};
|
|
4041
4048
|
readonly targetWorkflow: {
|
|
4042
|
-
readonly universalIdentifier:
|
|
4049
|
+
readonly universalIdentifier: string;
|
|
4043
4050
|
};
|
|
4044
4051
|
readonly targetWorkflowVersion: {
|
|
4045
|
-
readonly universalIdentifier:
|
|
4052
|
+
readonly universalIdentifier: string;
|
|
4046
4053
|
};
|
|
4047
4054
|
readonly targetWorkflowRun: {
|
|
4048
|
-
readonly universalIdentifier:
|
|
4055
|
+
readonly universalIdentifier: string;
|
|
4049
4056
|
};
|
|
4050
4057
|
readonly targetDashboard: {
|
|
4051
|
-
readonly universalIdentifier:
|
|
4058
|
+
readonly universalIdentifier: string;
|
|
4052
4059
|
};
|
|
4053
4060
|
readonly targetMessageList: {
|
|
4054
|
-
readonly universalIdentifier:
|
|
4061
|
+
readonly universalIdentifier: string;
|
|
4055
4062
|
};
|
|
4056
4063
|
readonly targetMessageCampaign: {
|
|
4057
|
-
readonly universalIdentifier:
|
|
4064
|
+
readonly universalIdentifier: string;
|
|
4058
4065
|
};
|
|
4059
4066
|
readonly linkedRecordCachedName: {
|
|
4060
4067
|
readonly universalIdentifier: "20202020-cfdb-4bef-bbce-a29f41230934";
|
|
@@ -4186,6 +4193,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
4186
4193
|
readonly lastPublishedVersionId: {
|
|
4187
4194
|
readonly universalIdentifier: "20202020-326a-4fba-8639-3456c0a169e8";
|
|
4188
4195
|
};
|
|
4196
|
+
readonly coreWorkflowId: {
|
|
4197
|
+
readonly universalIdentifier: "20202020-058a-42ad-8eb8-0662a5552aad";
|
|
4198
|
+
};
|
|
4189
4199
|
readonly statuses: {
|
|
4190
4200
|
readonly universalIdentifier: "20202020-357c-4432-8c50-8c31b4a552d9";
|
|
4191
4201
|
};
|
|
@@ -4199,10 +4209,10 @@ declare const STANDARD_OBJECTS: {
|
|
|
4199
4209
|
readonly universalIdentifier: "20202020-3319-4234-a34c-117ecad2b8a9";
|
|
4200
4210
|
};
|
|
4201
4211
|
readonly timelineActivities: {
|
|
4202
|
-
readonly universalIdentifier:
|
|
4212
|
+
readonly universalIdentifier: string;
|
|
4203
4213
|
};
|
|
4204
4214
|
readonly attachments: {
|
|
4205
|
-
readonly universalIdentifier:
|
|
4215
|
+
readonly universalIdentifier: string;
|
|
4206
4216
|
};
|
|
4207
4217
|
readonly createdAt: {
|
|
4208
4218
|
universalIdentifier: string;
|
|
@@ -4375,7 +4385,7 @@ declare const STANDARD_OBJECTS: {
|
|
|
4375
4385
|
readonly universalIdentifier: "20202020-7c4e-4e1a-8fc1-1e3a55d6c2a1";
|
|
4376
4386
|
};
|
|
4377
4387
|
readonly timelineActivities: {
|
|
4378
|
-
readonly universalIdentifier:
|
|
4388
|
+
readonly universalIdentifier: string;
|
|
4379
4389
|
};
|
|
4380
4390
|
readonly createdAt: {
|
|
4381
4391
|
universalIdentifier: string;
|
|
@@ -4509,8 +4519,11 @@ declare const STANDARD_OBJECTS: {
|
|
|
4509
4519
|
readonly steps: {
|
|
4510
4520
|
readonly universalIdentifier: "20202020-5988-4a64-b94a-1f9b7b989039";
|
|
4511
4521
|
};
|
|
4522
|
+
readonly coreWorkflowVersionId: {
|
|
4523
|
+
readonly universalIdentifier: "20202020-58b4-46e8-b6d2-f1f3c74cf7f4";
|
|
4524
|
+
};
|
|
4512
4525
|
readonly timelineActivities: {
|
|
4513
|
-
readonly universalIdentifier:
|
|
4526
|
+
readonly universalIdentifier: string;
|
|
4514
4527
|
};
|
|
4515
4528
|
readonly createdAt: {
|
|
4516
4529
|
universalIdentifier: string;
|
|
@@ -5427,5 +5440,5 @@ declare const defineView: DefineEntity<ViewConfig>;
|
|
|
5427
5440
|
|
|
5428
5441
|
declare const defineViewField: DefineEntity<StandaloneViewFieldManifest>;
|
|
5429
5442
|
|
|
5430
|
-
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 };
|
|
5443
|
+
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 };
|
|
5431
5444
|
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 };
|