diff --git a/src/operations/command.ts b/src/operations/command.ts index 8646dca78a..199862c4b2 100644 --- a/src/operations/command.ts +++ b/src/operations/command.ts @@ -16,13 +16,14 @@ const SUPPORTS_WRITE_CONCERN_AND_COLLATION = 5; /** @public */ export interface CollationOptions { locale: string; - caseLevel: boolean; - caseFirst: string; - strength: number; - numericOrdering: boolean; - alternate: string; - maxVariable: string; - backwards: boolean; + caseLevel?: boolean; + caseFirst?: string; + strength?: number; + numericOrdering?: boolean; + alternate?: string; + maxVariable?: string; + backwards?: boolean; + normalization?: boolean; } /** @public */