Add Contact standard object, related lists, meilisearch, pagination, search, AI assistant
This commit is contained in:
@@ -91,7 +91,9 @@ export interface FieldConfig {
|
||||
step?: number; // For number
|
||||
accept?: string; // For file/image
|
||||
relationObject?: string; // For relationship fields
|
||||
relationObjects?: string[]; // For polymorphic relationship fields
|
||||
relationDisplayField?: string; // Which field to display for relations
|
||||
relationTypeField?: string; // Field API name storing the selected relation type
|
||||
|
||||
// Formatting
|
||||
format?: string; // Date format, number format, etc.
|
||||
@@ -112,6 +114,7 @@ export interface ViewConfig {
|
||||
export interface ListViewConfig extends ViewConfig {
|
||||
mode: ViewMode.LIST;
|
||||
pageSize?: number;
|
||||
maxFrontendRecords?: number;
|
||||
searchable?: boolean;
|
||||
filterable?: boolean;
|
||||
exportable?: boolean;
|
||||
@@ -123,6 +126,8 @@ export interface RelatedListConfig {
|
||||
relationName: string;
|
||||
objectApiName: string;
|
||||
fields: FieldConfig[];
|
||||
lookupFieldApiName?: string;
|
||||
parentObjectApiName?: string;
|
||||
canCreate?: boolean;
|
||||
createRoute?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user