interface ModuleConfigFields {
    allowedQueries?: string[];
    archivist?: string;
    consoleLogger?: LogLevel;
    labels?: Labels;
    name?: string;
    paging?: Record<string, { size?: number }>;
    retry?: RetryConfig;
    security?: ModuleSecurityConfig;
    sign?: boolean;
    storeQueries?: boolean;
    timestamp?: boolean;
}

Properties

allowedQueries?: string[]
archivist?: string
consoleLogger?: LogLevel
labels?: Labels
name?: string
paging?: Record<string, { size?: number }>
retry?: RetryConfig
sign?: boolean
storeQueries?: boolean
timestamp?: boolean