import { EntityPersistedOperation } from './persister-outgoing'; /** * Payload that is sent from the query service to the indexer for * create/update/delete operations on entities */ export interface SearchIndexerManualInvocationRecord { eventSource: 'manual-invocation'; body: EntityPersistedOperation; } export interface SearchIndexerManualInvocationEvent { Records: SearchIndexerManualInvocationRecord[]; }