Skip to content

Commit

Permalink
chore(mongodb-constants): fix constants type (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
gribnoysup authored Sep 21, 2023
1 parent c40d82c commit 12b726c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/mongodb-constants/src/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export type FilterOptions = {
/**
* Filter completions by completion category
*/
meta?: (Meta | 'field:*' | 'accumulator:*' | 'expr:*')[];
meta?: (Meta | 'field:*' | 'accumulator:*' | 'expr:*' | 'variable:*')[];
/**
* Stage-only filters
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/mongodb-constants/src/system-variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ const SYSTEM_VARIABLES = [
description:
'A variable that stores the role names of the authenticated user running the command.',
},
];
] as const;

export { SYSTEM_VARIABLES };

0 comments on commit 12b726c

Please sign in to comment.