Add Contact standard object, related lists, meilisearch, pagination, search, AI assistant

This commit is contained in:
Francisco Gaona
2026-01-16 18:01:26 +01:00
parent 51c82d3d95
commit 20fc90a3fb
62 changed files with 6613 additions and 278 deletions

View File

@@ -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;
}