twenty-sdk 2.8.0 → 2.9.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/CHANGELOG.md +25 -0
- package/dist/catalog-sync-BCebNxby.js +1 -0
- package/dist/catalog-sync-Zp1B_jdA.mjs +18 -0
- package/dist/cli/utilities/build/manifest/utils/validate-conditional-availability-usage.d.ts +1 -0
- package/dist/cli/utilities/build/manifest/utils/validate-package-json-dependencies.d.ts +1 -0
- package/dist/cli.cjs +61 -61
- package/dist/cli.mjs +1529 -1515
- package/dist/define/index.cjs +38 -16
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +691 -6
- package/dist/define/index.mjs +13487 -3478
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs +37 -15
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.d.ts +1 -135
- package/dist/front-component/index.mjs +12833 -3490
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/get-function-input-schema-DTlcRJz3-Dv2yR3dh.mjs +73 -0
- package/dist/get-function-input-schema-DTlcRJz3-dBL33k9U.js +1 -0
- package/dist/login-oauth-CR6NzLmb.js +340 -0
- package/dist/{login-oauth-DxrMUIpb.mjs → login-oauth-rznAUORX.mjs} +15029 -4882
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +2 -2
- package/dist/ui/index.cjs +48 -26
- package/dist/ui/index.mjs +20852 -11479
- package/package.json +11 -9
- package/dist/catalog-sync-C3eVfUoF.mjs +0 -16
- package/dist/catalog-sync-CPVoL1dR.js +0 -1
- package/dist/get-function-input-schema-BZ7_XyUh-CTltddyp.mjs +0 -62
- package/dist/get-function-input-schema-BZ7_XyUh-CsGwFW9C.js +0 -1
- package/dist/login-oauth-Bjd38X4F.js +0 -298
package/dist/define/index.d.ts
CHANGED
|
@@ -103,6 +103,109 @@ declare enum AggregateOperations {
|
|
|
103
103
|
PERCENTAGE_NOT_EMPTY = "PERCENTAGE_NOT_EMPTY"
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
declare enum ContextStorePageType {
|
|
107
|
+
Index = "INDEX_PAGE",
|
|
108
|
+
Record = "RECORD_PAGE",
|
|
109
|
+
Standalone = "STANDALONE_PAGE",
|
|
110
|
+
Settings = "SETTINGS_PAGE"
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
type RestrictedFieldPermissions = {
|
|
114
|
+
canRead?: boolean | null;
|
|
115
|
+
canUpdate?: boolean | null;
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
type RestrictedFieldsPermissions = Record<string, RestrictedFieldPermissions>;
|
|
119
|
+
|
|
120
|
+
declare enum RowLevelPermissionPredicateOperand {
|
|
121
|
+
IS = "IS",
|
|
122
|
+
IS_NOT_NULL = "IS_NOT_NULL",
|
|
123
|
+
IS_NOT = "IS_NOT",
|
|
124
|
+
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
125
|
+
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
126
|
+
IS_BEFORE = "IS_BEFORE",
|
|
127
|
+
IS_AFTER = "IS_AFTER",
|
|
128
|
+
CONTAINS = "CONTAINS",
|
|
129
|
+
DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
|
|
130
|
+
IS_EMPTY = "IS_EMPTY",
|
|
131
|
+
IS_NOT_EMPTY = "IS_NOT_EMPTY",
|
|
132
|
+
IS_RELATIVE = "IS_RELATIVE",
|
|
133
|
+
IS_IN_PAST = "IS_IN_PAST",
|
|
134
|
+
IS_IN_FUTURE = "IS_IN_FUTURE",
|
|
135
|
+
IS_TODAY = "IS_TODAY",
|
|
136
|
+
VECTOR_SEARCH = "VECTOR_SEARCH"
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
type RelationPredicateValue = {
|
|
140
|
+
isCurrentWorkspaceMemberSelected?: boolean;
|
|
141
|
+
selectedRecordIds: string[];
|
|
142
|
+
};
|
|
143
|
+
type RowLevelPermissionPredicateValue = string | string[] | boolean | number | RelationPredicateValue | Record<string, unknown> | null;
|
|
144
|
+
|
|
145
|
+
type RowLevelPermissionPredicate = {
|
|
146
|
+
id: string;
|
|
147
|
+
fieldMetadataId: string;
|
|
148
|
+
objectMetadataId: string;
|
|
149
|
+
operand: RowLevelPermissionPredicateOperand;
|
|
150
|
+
value: RowLevelPermissionPredicateValue;
|
|
151
|
+
subFieldName: string | null;
|
|
152
|
+
workspaceMemberFieldMetadataId: string | null;
|
|
153
|
+
workspaceMemberSubFieldName: string | null;
|
|
154
|
+
roleId: string;
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
declare enum RowLevelPermissionPredicateGroupLogicalOperator {
|
|
158
|
+
AND = "AND",
|
|
159
|
+
OR = "OR"
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
type RowLevelPermissionPredicateGroup = {
|
|
163
|
+
id: string;
|
|
164
|
+
logicalOperator: RowLevelPermissionPredicateGroupLogicalOperator;
|
|
165
|
+
objectMetadataId: string;
|
|
166
|
+
parentRowLevelPermissionPredicateGroupId: string | null;
|
|
167
|
+
positionInRowLevelPermissionPredicateGroup: number | null;
|
|
168
|
+
roleId: string;
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
type ObjectPermissions = {
|
|
172
|
+
canReadObjectRecords: boolean;
|
|
173
|
+
canUpdateObjectRecords: boolean;
|
|
174
|
+
canSoftDeleteObjectRecords: boolean;
|
|
175
|
+
canDestroyObjectRecords: boolean;
|
|
176
|
+
restrictedFields: RestrictedFieldsPermissions;
|
|
177
|
+
rowLevelPermissionPredicates: RowLevelPermissionPredicate[];
|
|
178
|
+
rowLevelPermissionPredicateGroups: RowLevelPermissionPredicateGroup[];
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
interface ObjectRecord {
|
|
182
|
+
id: string;
|
|
183
|
+
[key: string]: any;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
type CommandMenuContextApi = {
|
|
187
|
+
pageType: ContextStorePageType;
|
|
188
|
+
isInSidePanel: boolean;
|
|
189
|
+
isDashboardPageLayoutInEditMode: boolean;
|
|
190
|
+
isLayoutCustomizationModeEnabled: boolean;
|
|
191
|
+
favoriteRecordIds: string[];
|
|
192
|
+
isSelectAll: boolean;
|
|
193
|
+
hasAnySoftDeleteFilterOnView: boolean;
|
|
194
|
+
numberOfSelectedRecords: number;
|
|
195
|
+
objectPermissions: ObjectPermissions & {
|
|
196
|
+
objectMetadataId: string;
|
|
197
|
+
};
|
|
198
|
+
selectedRecords: ObjectRecord[];
|
|
199
|
+
featureFlags: Record<string, boolean>;
|
|
200
|
+
permissionFlags: Record<string, boolean>;
|
|
201
|
+
targetObjectReadPermissions: Record<string, boolean>;
|
|
202
|
+
targetObjectWritePermissions: Record<string, boolean>;
|
|
203
|
+
canImpersonate: boolean;
|
|
204
|
+
canAccessFullAdminPanel: boolean;
|
|
205
|
+
objectMetadataItem: Record<string, unknown>;
|
|
206
|
+
objectMetadataLabel: string;
|
|
207
|
+
};
|
|
208
|
+
|
|
106
209
|
declare enum FieldMetadataType {
|
|
107
210
|
ACTOR = "ACTOR",
|
|
108
211
|
ADDRESS = "ADDRESS",
|
|
@@ -354,11 +457,16 @@ declare enum DateDisplayFormat {
|
|
|
354
457
|
CUSTOM = "CUSTOM"
|
|
355
458
|
}
|
|
356
459
|
type FieldNumberVariant = 'number' | 'percentage';
|
|
460
|
+
type FieldCurrencyFormat = 'short' | 'full';
|
|
357
461
|
type FieldMetadataNumberSettings = {
|
|
358
462
|
dataType?: NumberDataType;
|
|
359
463
|
decimals?: number;
|
|
360
464
|
type?: FieldNumberVariant;
|
|
361
465
|
};
|
|
466
|
+
type FieldMetadataCurrencySettings = {
|
|
467
|
+
format?: FieldCurrencyFormat;
|
|
468
|
+
decimals?: number;
|
|
469
|
+
};
|
|
362
470
|
type FieldMetadataTextSettings = {
|
|
363
471
|
displayedMaxRows?: number;
|
|
364
472
|
};
|
|
@@ -386,6 +494,7 @@ type FieldMetadataTsVectorSettings = {
|
|
|
386
494
|
};
|
|
387
495
|
type FieldMetadataSettingsMapping = {
|
|
388
496
|
[FieldMetadataType.NUMBER]: FieldMetadataNumberSettings | null;
|
|
497
|
+
[FieldMetadataType.CURRENCY]: FieldMetadataCurrencySettings | null;
|
|
389
498
|
[FieldMetadataType.DATE]: FieldMetadataDateSettings | null;
|
|
390
499
|
[FieldMetadataType.DATE_TIME]: FieldMetadataDateTimeSettings | null;
|
|
391
500
|
[FieldMetadataType.TEXT]: FieldMetadataTextSettings | null;
|
|
@@ -507,9 +616,6 @@ type AggregateChartConfiguration = BaseChartConfiguration & {
|
|
|
507
616
|
suffix?: string;
|
|
508
617
|
ratioAggregateConfig?: RatioAggregateConfig;
|
|
509
618
|
};
|
|
510
|
-
type GaugeChartConfiguration = BaseChartConfiguration & {
|
|
511
|
-
configurationType: 'GAUGE_CHART';
|
|
512
|
-
};
|
|
513
619
|
type PieChartConfiguration = BaseChartConfiguration & {
|
|
514
620
|
configurationType: 'PIE_CHART';
|
|
515
621
|
groupByFieldMetadataId: SerializedRelation;
|
|
@@ -575,7 +681,8 @@ type RecordTableConfiguration = {
|
|
|
575
681
|
type FieldConfiguration = {
|
|
576
682
|
configurationType: 'FIELD';
|
|
577
683
|
fieldMetadataId: string;
|
|
578
|
-
fieldDisplayMode: 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW';
|
|
684
|
+
fieldDisplayMode: 'CARD' | 'EDITOR' | 'FIELD' | 'VIEW' | 'TABLE';
|
|
685
|
+
viewId?: string;
|
|
579
686
|
};
|
|
580
687
|
type FieldsConfiguration = {
|
|
581
688
|
configurationType: 'FIELDS';
|
|
@@ -631,7 +738,7 @@ type WorkflowVersionConfiguration = {
|
|
|
631
738
|
type WorkflowRunConfiguration = {
|
|
632
739
|
configurationType: 'WORKFLOW_RUN';
|
|
633
740
|
};
|
|
634
|
-
type PageLayoutWidgetConfiguration = AggregateChartConfiguration |
|
|
741
|
+
type PageLayoutWidgetConfiguration = AggregateChartConfiguration | PieChartConfiguration | BarChartConfiguration | LineChartConfiguration | ViewConfiguration | RecordTableConfiguration | FieldConfiguration | FieldsConfiguration | FieldRichTextConfiguration | StandaloneRichTextConfiguration | IframeConfiguration | FrontComponentConfiguration | TimelineConfiguration | TasksConfiguration | NotesConfiguration | FilesConfiguration | EmailsConfiguration | CalendarConfiguration | WorkflowConfiguration | WorkflowVersionConfiguration | WorkflowRunConfiguration | EmailThreadConfiguration;
|
|
635
742
|
|
|
636
743
|
declare enum PageLayoutTabLayoutMode {
|
|
637
744
|
GRID = "GRID",
|
|
@@ -737,6 +844,7 @@ type FieldManifest<T extends FieldMetadataType = FieldMetadataType> = T extends
|
|
|
737
844
|
type CommandMenuItemManifest = SyncableEntityOptions$1 & {
|
|
738
845
|
label: string;
|
|
739
846
|
shortLabel?: string;
|
|
847
|
+
/** @deprecated icon will be ignored in favor of application icon */
|
|
740
848
|
icon?: string;
|
|
741
849
|
isPinned?: boolean;
|
|
742
850
|
availabilityType?: 'GLOBAL' | 'GLOBAL_OBJECT_CONTEXT' | 'RECORD_SELECTION' | 'FALLBACK';
|
|
@@ -1082,6 +1190,38 @@ declare const validateFields: (fields: ObjectFieldManifest[] | undefined) => str
|
|
|
1082
1190
|
|
|
1083
1191
|
declare const defineCommandMenuItem: DefineEntity<CommandMenuItemConfig>;
|
|
1084
1192
|
|
|
1193
|
+
declare const pageType: CommandMenuContextApi["pageType"];
|
|
1194
|
+
declare const isInSidePanel: CommandMenuContextApi["isInSidePanel"];
|
|
1195
|
+
declare const isDashboardPageLayoutInEditMode: CommandMenuContextApi["isDashboardPageLayoutInEditMode"];
|
|
1196
|
+
declare const isLayoutCustomizationModeEnabled: CommandMenuContextApi["isLayoutCustomizationModeEnabled"];
|
|
1197
|
+
declare const favoriteRecordIds: CommandMenuContextApi["favoriteRecordIds"];
|
|
1198
|
+
declare const isSelectAll: CommandMenuContextApi["isSelectAll"];
|
|
1199
|
+
declare const hasAnySoftDeleteFilterOnView: CommandMenuContextApi["hasAnySoftDeleteFilterOnView"];
|
|
1200
|
+
declare const numberOfSelectedRecords: CommandMenuContextApi["numberOfSelectedRecords"];
|
|
1201
|
+
declare const objectPermissions: CommandMenuContextApi["objectPermissions"];
|
|
1202
|
+
declare const selectedRecords: CommandMenuContextApi["selectedRecords"];
|
|
1203
|
+
declare const featureFlags: CommandMenuContextApi["featureFlags"];
|
|
1204
|
+
declare const targetObjectReadPermissions: CommandMenuContextApi["targetObjectReadPermissions"];
|
|
1205
|
+
declare const targetObjectWritePermissions: CommandMenuContextApi["targetObjectWritePermissions"];
|
|
1206
|
+
declare const canImpersonate: CommandMenuContextApi["canImpersonate"];
|
|
1207
|
+
declare const canAccessFullAdminPanel: CommandMenuContextApi["canAccessFullAdminPanel"];
|
|
1208
|
+
declare const objectMetadataItem: CommandMenuContextApi["objectMetadataItem"];
|
|
1209
|
+
declare const objectMetadataLabel: CommandMenuContextApi["objectMetadataLabel"];
|
|
1210
|
+
declare const isDefined: (value: unknown) => boolean;
|
|
1211
|
+
declare const isNonEmptyString: (value: unknown) => boolean;
|
|
1212
|
+
declare const includes: (array: unknown, value: unknown) => boolean;
|
|
1213
|
+
declare const every: (array: unknown, prop: string) => boolean;
|
|
1214
|
+
declare const everyDefined: (array: unknown, prop: string) => boolean;
|
|
1215
|
+
declare const everyEquals: (array: unknown, prop: string, value: unknown) => boolean;
|
|
1216
|
+
declare const some: (array: unknown, prop: string) => boolean;
|
|
1217
|
+
declare const someDefined: (array: unknown, prop: string) => boolean;
|
|
1218
|
+
declare const someEquals: (array: unknown, prop: string, value: unknown) => boolean;
|
|
1219
|
+
declare const none: (array: unknown, prop: string) => boolean;
|
|
1220
|
+
declare const noneDefined: (array: unknown, prop: string) => boolean;
|
|
1221
|
+
declare const noneEquals: (array: unknown, prop: string, value: unknown) => boolean;
|
|
1222
|
+
declare const someNonEmptyString: (array: unknown, prop: string) => boolean;
|
|
1223
|
+
declare const includesEvery: (array: unknown, prop: string, value: unknown) => boolean;
|
|
1224
|
+
|
|
1085
1225
|
declare const defineFrontComponent: DefineEntity<FrontComponentConfig>;
|
|
1086
1226
|
|
|
1087
1227
|
declare const defineIndex: DefineEntity<IndexConfig>;
|
|
@@ -3750,6 +3890,9 @@ declare const STANDARD_OBJECTS: {
|
|
|
3750
3890
|
readonly state: {
|
|
3751
3891
|
readonly universalIdentifier: "20202020-611f-45f3-9cde-d64927e8ec57";
|
|
3752
3892
|
};
|
|
3893
|
+
readonly stepLogs: {
|
|
3894
|
+
readonly universalIdentifier: "20202020-7c4e-4e1a-8fc1-1e3a55d6c2a1";
|
|
3895
|
+
};
|
|
3753
3896
|
readonly timelineActivities: {
|
|
3754
3897
|
readonly universalIdentifier: "20202020-af4d-4eb0-babc-eb960a45b356";
|
|
3755
3898
|
};
|
|
@@ -4099,6 +4242,548 @@ declare const STANDARD_OBJECTS: {
|
|
|
4099
4242
|
};
|
|
4100
4243
|
};
|
|
4101
4244
|
|
|
4245
|
+
declare const STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS: {
|
|
4246
|
+
myFirstDashboard: {
|
|
4247
|
+
universalIdentifier: string;
|
|
4248
|
+
tabs: {
|
|
4249
|
+
tab1: {
|
|
4250
|
+
universalIdentifier: string;
|
|
4251
|
+
widgets: {
|
|
4252
|
+
welcomeRichText: {
|
|
4253
|
+
universalIdentifier: string;
|
|
4254
|
+
};
|
|
4255
|
+
dealsByCompany: {
|
|
4256
|
+
universalIdentifier: string;
|
|
4257
|
+
};
|
|
4258
|
+
pipelineValueByStage: {
|
|
4259
|
+
universalIdentifier: string;
|
|
4260
|
+
};
|
|
4261
|
+
revenueTimeline: {
|
|
4262
|
+
universalIdentifier: string;
|
|
4263
|
+
};
|
|
4264
|
+
opportunitiesByOwner: {
|
|
4265
|
+
universalIdentifier: string;
|
|
4266
|
+
};
|
|
4267
|
+
stockMarketIframe: {
|
|
4268
|
+
universalIdentifier: string;
|
|
4269
|
+
};
|
|
4270
|
+
dealsCreatedThisMonth: {
|
|
4271
|
+
universalIdentifier: string;
|
|
4272
|
+
};
|
|
4273
|
+
dealValueCreatedThisMonth: {
|
|
4274
|
+
universalIdentifier: string;
|
|
4275
|
+
};
|
|
4276
|
+
};
|
|
4277
|
+
};
|
|
4278
|
+
};
|
|
4279
|
+
};
|
|
4280
|
+
companyRecordPage: {
|
|
4281
|
+
universalIdentifier: string;
|
|
4282
|
+
tabs: {
|
|
4283
|
+
home: {
|
|
4284
|
+
universalIdentifier: string;
|
|
4285
|
+
widgets: {
|
|
4286
|
+
fields: {
|
|
4287
|
+
universalIdentifier: string;
|
|
4288
|
+
};
|
|
4289
|
+
people: {
|
|
4290
|
+
universalIdentifier: string;
|
|
4291
|
+
};
|
|
4292
|
+
opportunities: {
|
|
4293
|
+
universalIdentifier: string;
|
|
4294
|
+
};
|
|
4295
|
+
};
|
|
4296
|
+
};
|
|
4297
|
+
timeline: {
|
|
4298
|
+
universalIdentifier: string;
|
|
4299
|
+
widgets: {
|
|
4300
|
+
timeline: {
|
|
4301
|
+
universalIdentifier: string;
|
|
4302
|
+
};
|
|
4303
|
+
};
|
|
4304
|
+
};
|
|
4305
|
+
tasks: {
|
|
4306
|
+
universalIdentifier: string;
|
|
4307
|
+
widgets: {
|
|
4308
|
+
tasks: {
|
|
4309
|
+
universalIdentifier: string;
|
|
4310
|
+
};
|
|
4311
|
+
};
|
|
4312
|
+
};
|
|
4313
|
+
notes: {
|
|
4314
|
+
universalIdentifier: string;
|
|
4315
|
+
widgets: {
|
|
4316
|
+
notes: {
|
|
4317
|
+
universalIdentifier: string;
|
|
4318
|
+
};
|
|
4319
|
+
};
|
|
4320
|
+
};
|
|
4321
|
+
files: {
|
|
4322
|
+
universalIdentifier: string;
|
|
4323
|
+
widgets: {
|
|
4324
|
+
files: {
|
|
4325
|
+
universalIdentifier: string;
|
|
4326
|
+
};
|
|
4327
|
+
};
|
|
4328
|
+
};
|
|
4329
|
+
emails: {
|
|
4330
|
+
universalIdentifier: string;
|
|
4331
|
+
widgets: {
|
|
4332
|
+
emails: {
|
|
4333
|
+
universalIdentifier: string;
|
|
4334
|
+
};
|
|
4335
|
+
};
|
|
4336
|
+
};
|
|
4337
|
+
calendar: {
|
|
4338
|
+
universalIdentifier: string;
|
|
4339
|
+
widgets: {
|
|
4340
|
+
calendar: {
|
|
4341
|
+
universalIdentifier: string;
|
|
4342
|
+
};
|
|
4343
|
+
};
|
|
4344
|
+
};
|
|
4345
|
+
};
|
|
4346
|
+
};
|
|
4347
|
+
personRecordPage: {
|
|
4348
|
+
universalIdentifier: string;
|
|
4349
|
+
tabs: {
|
|
4350
|
+
home: {
|
|
4351
|
+
universalIdentifier: string;
|
|
4352
|
+
widgets: {
|
|
4353
|
+
fields: {
|
|
4354
|
+
universalIdentifier: string;
|
|
4355
|
+
};
|
|
4356
|
+
company: {
|
|
4357
|
+
universalIdentifier: string;
|
|
4358
|
+
};
|
|
4359
|
+
pointOfContactForOpportunities: {
|
|
4360
|
+
universalIdentifier: string;
|
|
4361
|
+
};
|
|
4362
|
+
};
|
|
4363
|
+
};
|
|
4364
|
+
timeline: {
|
|
4365
|
+
universalIdentifier: string;
|
|
4366
|
+
widgets: {
|
|
4367
|
+
timeline: {
|
|
4368
|
+
universalIdentifier: string;
|
|
4369
|
+
};
|
|
4370
|
+
};
|
|
4371
|
+
};
|
|
4372
|
+
tasks: {
|
|
4373
|
+
universalIdentifier: string;
|
|
4374
|
+
widgets: {
|
|
4375
|
+
tasks: {
|
|
4376
|
+
universalIdentifier: string;
|
|
4377
|
+
};
|
|
4378
|
+
};
|
|
4379
|
+
};
|
|
4380
|
+
notes: {
|
|
4381
|
+
universalIdentifier: string;
|
|
4382
|
+
widgets: {
|
|
4383
|
+
notes: {
|
|
4384
|
+
universalIdentifier: string;
|
|
4385
|
+
};
|
|
4386
|
+
};
|
|
4387
|
+
};
|
|
4388
|
+
files: {
|
|
4389
|
+
universalIdentifier: string;
|
|
4390
|
+
widgets: {
|
|
4391
|
+
files: {
|
|
4392
|
+
universalIdentifier: string;
|
|
4393
|
+
};
|
|
4394
|
+
};
|
|
4395
|
+
};
|
|
4396
|
+
emails: {
|
|
4397
|
+
universalIdentifier: string;
|
|
4398
|
+
widgets: {
|
|
4399
|
+
emails: {
|
|
4400
|
+
universalIdentifier: string;
|
|
4401
|
+
};
|
|
4402
|
+
};
|
|
4403
|
+
};
|
|
4404
|
+
calendar: {
|
|
4405
|
+
universalIdentifier: string;
|
|
4406
|
+
widgets: {
|
|
4407
|
+
calendar: {
|
|
4408
|
+
universalIdentifier: string;
|
|
4409
|
+
};
|
|
4410
|
+
};
|
|
4411
|
+
};
|
|
4412
|
+
};
|
|
4413
|
+
};
|
|
4414
|
+
opportunityRecordPage: {
|
|
4415
|
+
universalIdentifier: string;
|
|
4416
|
+
tabs: {
|
|
4417
|
+
home: {
|
|
4418
|
+
universalIdentifier: string;
|
|
4419
|
+
widgets: {
|
|
4420
|
+
fields: {
|
|
4421
|
+
universalIdentifier: string;
|
|
4422
|
+
};
|
|
4423
|
+
pointOfContact: {
|
|
4424
|
+
universalIdentifier: string;
|
|
4425
|
+
};
|
|
4426
|
+
company: {
|
|
4427
|
+
universalIdentifier: string;
|
|
4428
|
+
};
|
|
4429
|
+
owner: {
|
|
4430
|
+
universalIdentifier: string;
|
|
4431
|
+
};
|
|
4432
|
+
};
|
|
4433
|
+
};
|
|
4434
|
+
timeline: {
|
|
4435
|
+
universalIdentifier: string;
|
|
4436
|
+
widgets: {
|
|
4437
|
+
timeline: {
|
|
4438
|
+
universalIdentifier: string;
|
|
4439
|
+
};
|
|
4440
|
+
};
|
|
4441
|
+
};
|
|
4442
|
+
tasks: {
|
|
4443
|
+
universalIdentifier: string;
|
|
4444
|
+
widgets: {
|
|
4445
|
+
tasks: {
|
|
4446
|
+
universalIdentifier: string;
|
|
4447
|
+
};
|
|
4448
|
+
};
|
|
4449
|
+
};
|
|
4450
|
+
notes: {
|
|
4451
|
+
universalIdentifier: string;
|
|
4452
|
+
widgets: {
|
|
4453
|
+
notes: {
|
|
4454
|
+
universalIdentifier: string;
|
|
4455
|
+
};
|
|
4456
|
+
};
|
|
4457
|
+
};
|
|
4458
|
+
files: {
|
|
4459
|
+
universalIdentifier: string;
|
|
4460
|
+
widgets: {
|
|
4461
|
+
files: {
|
|
4462
|
+
universalIdentifier: string;
|
|
4463
|
+
};
|
|
4464
|
+
};
|
|
4465
|
+
};
|
|
4466
|
+
emails: {
|
|
4467
|
+
universalIdentifier: string;
|
|
4468
|
+
widgets: {
|
|
4469
|
+
emails: {
|
|
4470
|
+
universalIdentifier: string;
|
|
4471
|
+
};
|
|
4472
|
+
};
|
|
4473
|
+
};
|
|
4474
|
+
calendar: {
|
|
4475
|
+
universalIdentifier: string;
|
|
4476
|
+
widgets: {
|
|
4477
|
+
calendar: {
|
|
4478
|
+
universalIdentifier: string;
|
|
4479
|
+
};
|
|
4480
|
+
};
|
|
4481
|
+
};
|
|
4482
|
+
};
|
|
4483
|
+
};
|
|
4484
|
+
noteRecordPage: {
|
|
4485
|
+
universalIdentifier: string;
|
|
4486
|
+
tabs: {
|
|
4487
|
+
home: {
|
|
4488
|
+
universalIdentifier: string;
|
|
4489
|
+
widgets: {
|
|
4490
|
+
fields: {
|
|
4491
|
+
universalIdentifier: string;
|
|
4492
|
+
};
|
|
4493
|
+
noteRichText: {
|
|
4494
|
+
universalIdentifier: string;
|
|
4495
|
+
};
|
|
4496
|
+
};
|
|
4497
|
+
};
|
|
4498
|
+
note: {
|
|
4499
|
+
universalIdentifier: string;
|
|
4500
|
+
widgets: {
|
|
4501
|
+
noteRichText: {
|
|
4502
|
+
universalIdentifier: string;
|
|
4503
|
+
};
|
|
4504
|
+
};
|
|
4505
|
+
};
|
|
4506
|
+
timeline: {
|
|
4507
|
+
universalIdentifier: string;
|
|
4508
|
+
widgets: {
|
|
4509
|
+
timeline: {
|
|
4510
|
+
universalIdentifier: string;
|
|
4511
|
+
};
|
|
4512
|
+
};
|
|
4513
|
+
};
|
|
4514
|
+
files: {
|
|
4515
|
+
universalIdentifier: string;
|
|
4516
|
+
widgets: {
|
|
4517
|
+
files: {
|
|
4518
|
+
universalIdentifier: string;
|
|
4519
|
+
};
|
|
4520
|
+
};
|
|
4521
|
+
};
|
|
4522
|
+
};
|
|
4523
|
+
};
|
|
4524
|
+
taskRecordPage: {
|
|
4525
|
+
universalIdentifier: string;
|
|
4526
|
+
tabs: {
|
|
4527
|
+
home: {
|
|
4528
|
+
universalIdentifier: string;
|
|
4529
|
+
widgets: {
|
|
4530
|
+
fields: {
|
|
4531
|
+
universalIdentifier: string;
|
|
4532
|
+
};
|
|
4533
|
+
taskRichText: {
|
|
4534
|
+
universalIdentifier: string;
|
|
4535
|
+
};
|
|
4536
|
+
};
|
|
4537
|
+
};
|
|
4538
|
+
note: {
|
|
4539
|
+
universalIdentifier: string;
|
|
4540
|
+
widgets: {
|
|
4541
|
+
taskRichText: {
|
|
4542
|
+
universalIdentifier: string;
|
|
4543
|
+
};
|
|
4544
|
+
};
|
|
4545
|
+
};
|
|
4546
|
+
timeline: {
|
|
4547
|
+
universalIdentifier: string;
|
|
4548
|
+
widgets: {
|
|
4549
|
+
timeline: {
|
|
4550
|
+
universalIdentifier: string;
|
|
4551
|
+
};
|
|
4552
|
+
};
|
|
4553
|
+
};
|
|
4554
|
+
files: {
|
|
4555
|
+
universalIdentifier: string;
|
|
4556
|
+
widgets: {
|
|
4557
|
+
files: {
|
|
4558
|
+
universalIdentifier: string;
|
|
4559
|
+
};
|
|
4560
|
+
};
|
|
4561
|
+
};
|
|
4562
|
+
};
|
|
4563
|
+
};
|
|
4564
|
+
workflowRecordPage: {
|
|
4565
|
+
universalIdentifier: string;
|
|
4566
|
+
tabs: {
|
|
4567
|
+
flow: {
|
|
4568
|
+
universalIdentifier: string;
|
|
4569
|
+
widgets: {
|
|
4570
|
+
workflow: {
|
|
4571
|
+
universalIdentifier: string;
|
|
4572
|
+
};
|
|
4573
|
+
};
|
|
4574
|
+
};
|
|
4575
|
+
};
|
|
4576
|
+
};
|
|
4577
|
+
workflowVersionRecordPage: {
|
|
4578
|
+
universalIdentifier: string;
|
|
4579
|
+
tabs: {
|
|
4580
|
+
home: {
|
|
4581
|
+
universalIdentifier: string;
|
|
4582
|
+
widgets: {
|
|
4583
|
+
fields: {
|
|
4584
|
+
universalIdentifier: string;
|
|
4585
|
+
};
|
|
4586
|
+
workflow: {
|
|
4587
|
+
universalIdentifier: string;
|
|
4588
|
+
};
|
|
4589
|
+
};
|
|
4590
|
+
};
|
|
4591
|
+
flow: {
|
|
4592
|
+
universalIdentifier: string;
|
|
4593
|
+
widgets: {
|
|
4594
|
+
workflowVersion: {
|
|
4595
|
+
universalIdentifier: string;
|
|
4596
|
+
};
|
|
4597
|
+
};
|
|
4598
|
+
};
|
|
4599
|
+
};
|
|
4600
|
+
};
|
|
4601
|
+
workflowRunRecordPage: {
|
|
4602
|
+
universalIdentifier: string;
|
|
4603
|
+
tabs: {
|
|
4604
|
+
home: {
|
|
4605
|
+
universalIdentifier: string;
|
|
4606
|
+
widgets: {
|
|
4607
|
+
fields: {
|
|
4608
|
+
universalIdentifier: string;
|
|
4609
|
+
};
|
|
4610
|
+
workflow: {
|
|
4611
|
+
universalIdentifier: string;
|
|
4612
|
+
};
|
|
4613
|
+
};
|
|
4614
|
+
};
|
|
4615
|
+
flow: {
|
|
4616
|
+
universalIdentifier: string;
|
|
4617
|
+
widgets: {
|
|
4618
|
+
workflowRun: {
|
|
4619
|
+
universalIdentifier: string;
|
|
4620
|
+
};
|
|
4621
|
+
};
|
|
4622
|
+
};
|
|
4623
|
+
};
|
|
4624
|
+
};
|
|
4625
|
+
blocklistRecordPage: {
|
|
4626
|
+
universalIdentifier: string;
|
|
4627
|
+
tabs: {
|
|
4628
|
+
home: {
|
|
4629
|
+
universalIdentifier: string;
|
|
4630
|
+
widgets: {
|
|
4631
|
+
fields: {
|
|
4632
|
+
universalIdentifier: string;
|
|
4633
|
+
};
|
|
4634
|
+
};
|
|
4635
|
+
};
|
|
4636
|
+
timeline: {
|
|
4637
|
+
universalIdentifier: string;
|
|
4638
|
+
widgets: {
|
|
4639
|
+
timeline: {
|
|
4640
|
+
universalIdentifier: string;
|
|
4641
|
+
};
|
|
4642
|
+
};
|
|
4643
|
+
};
|
|
4644
|
+
};
|
|
4645
|
+
};
|
|
4646
|
+
calendarChannelEventAssociationRecordPage: {
|
|
4647
|
+
universalIdentifier: string;
|
|
4648
|
+
tabs: {
|
|
4649
|
+
home: {
|
|
4650
|
+
universalIdentifier: string;
|
|
4651
|
+
widgets: {
|
|
4652
|
+
fields: {
|
|
4653
|
+
universalIdentifier: string;
|
|
4654
|
+
};
|
|
4655
|
+
};
|
|
4656
|
+
};
|
|
4657
|
+
timeline: {
|
|
4658
|
+
universalIdentifier: string;
|
|
4659
|
+
widgets: {
|
|
4660
|
+
timeline: {
|
|
4661
|
+
universalIdentifier: string;
|
|
4662
|
+
};
|
|
4663
|
+
};
|
|
4664
|
+
};
|
|
4665
|
+
};
|
|
4666
|
+
};
|
|
4667
|
+
calendarEventParticipantRecordPage: {
|
|
4668
|
+
universalIdentifier: string;
|
|
4669
|
+
tabs: {
|
|
4670
|
+
home: {
|
|
4671
|
+
universalIdentifier: string;
|
|
4672
|
+
widgets: {
|
|
4673
|
+
fields: {
|
|
4674
|
+
universalIdentifier: string;
|
|
4675
|
+
};
|
|
4676
|
+
};
|
|
4677
|
+
};
|
|
4678
|
+
timeline: {
|
|
4679
|
+
universalIdentifier: string;
|
|
4680
|
+
widgets: {
|
|
4681
|
+
timeline: {
|
|
4682
|
+
universalIdentifier: string;
|
|
4683
|
+
};
|
|
4684
|
+
};
|
|
4685
|
+
};
|
|
4686
|
+
};
|
|
4687
|
+
};
|
|
4688
|
+
messageChannelMessageAssociationRecordPage: {
|
|
4689
|
+
universalIdentifier: string;
|
|
4690
|
+
tabs: {
|
|
4691
|
+
home: {
|
|
4692
|
+
universalIdentifier: string;
|
|
4693
|
+
widgets: {
|
|
4694
|
+
fields: {
|
|
4695
|
+
universalIdentifier: string;
|
|
4696
|
+
};
|
|
4697
|
+
};
|
|
4698
|
+
};
|
|
4699
|
+
timeline: {
|
|
4700
|
+
universalIdentifier: string;
|
|
4701
|
+
widgets: {
|
|
4702
|
+
timeline: {
|
|
4703
|
+
universalIdentifier: string;
|
|
4704
|
+
};
|
|
4705
|
+
};
|
|
4706
|
+
};
|
|
4707
|
+
};
|
|
4708
|
+
};
|
|
4709
|
+
messageChannelMessageAssociationMessageFolderRecordPage: {
|
|
4710
|
+
universalIdentifier: string;
|
|
4711
|
+
tabs: {
|
|
4712
|
+
home: {
|
|
4713
|
+
universalIdentifier: string;
|
|
4714
|
+
widgets: {
|
|
4715
|
+
fields: {
|
|
4716
|
+
universalIdentifier: string;
|
|
4717
|
+
};
|
|
4718
|
+
};
|
|
4719
|
+
};
|
|
4720
|
+
timeline: {
|
|
4721
|
+
universalIdentifier: string;
|
|
4722
|
+
widgets: {
|
|
4723
|
+
timeline: {
|
|
4724
|
+
universalIdentifier: string;
|
|
4725
|
+
};
|
|
4726
|
+
};
|
|
4727
|
+
};
|
|
4728
|
+
};
|
|
4729
|
+
};
|
|
4730
|
+
messageParticipantRecordPage: {
|
|
4731
|
+
universalIdentifier: string;
|
|
4732
|
+
tabs: {
|
|
4733
|
+
home: {
|
|
4734
|
+
universalIdentifier: string;
|
|
4735
|
+
widgets: {
|
|
4736
|
+
fields: {
|
|
4737
|
+
universalIdentifier: string;
|
|
4738
|
+
};
|
|
4739
|
+
};
|
|
4740
|
+
};
|
|
4741
|
+
timeline: {
|
|
4742
|
+
universalIdentifier: string;
|
|
4743
|
+
widgets: {
|
|
4744
|
+
timeline: {
|
|
4745
|
+
universalIdentifier: string;
|
|
4746
|
+
};
|
|
4747
|
+
};
|
|
4748
|
+
};
|
|
4749
|
+
};
|
|
4750
|
+
};
|
|
4751
|
+
workflowAutomatedTriggerRecordPage: {
|
|
4752
|
+
universalIdentifier: string;
|
|
4753
|
+
tabs: {
|
|
4754
|
+
home: {
|
|
4755
|
+
universalIdentifier: string;
|
|
4756
|
+
widgets: {
|
|
4757
|
+
fields: {
|
|
4758
|
+
universalIdentifier: string;
|
|
4759
|
+
};
|
|
4760
|
+
};
|
|
4761
|
+
};
|
|
4762
|
+
timeline: {
|
|
4763
|
+
universalIdentifier: string;
|
|
4764
|
+
widgets: {
|
|
4765
|
+
timeline: {
|
|
4766
|
+
universalIdentifier: string;
|
|
4767
|
+
};
|
|
4768
|
+
};
|
|
4769
|
+
};
|
|
4770
|
+
};
|
|
4771
|
+
};
|
|
4772
|
+
messageThreadRecordPage: {
|
|
4773
|
+
universalIdentifier: string;
|
|
4774
|
+
tabs: {
|
|
4775
|
+
home: {
|
|
4776
|
+
universalIdentifier: string;
|
|
4777
|
+
widgets: {
|
|
4778
|
+
emailThread: {
|
|
4779
|
+
universalIdentifier: string;
|
|
4780
|
+
};
|
|
4781
|
+
};
|
|
4782
|
+
};
|
|
4783
|
+
};
|
|
4784
|
+
};
|
|
4785
|
+
};
|
|
4786
|
+
|
|
4102
4787
|
declare const definePageLayout: DefineEntity<PageLayoutConfig>;
|
|
4103
4788
|
|
|
4104
4789
|
declare const definePageLayoutTab: DefineEntity<PageLayoutTabConfig>;
|
|
@@ -4141,5 +4826,5 @@ declare const defineSkill: DefineEntity<SkillManifest>;
|
|
|
4141
4826
|
|
|
4142
4827
|
declare const defineView: DefineEntity<ViewConfig>;
|
|
4143
4828
|
|
|
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 };
|
|
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 };
|
|
4145
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 };
|