You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specification/_types/analysis/token_filters.ts
+46Lines changed: 46 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -383,6 +383,7 @@ export class PatternReplaceTokenFilter extends TokenFilterBase {
383
383
type: 'pattern_replace'
384
384
/** If `true`, all substrings matching the pattern parameter’s regular expression are replaced. If `false`, the filter replaces only the first matching substring in each token. Defaults to `true`. */
385
385
all?: boolean
386
+
flags?: string
386
387
/** Regular expression, written in Java’s regular expression syntax. The filter replaces token substrings matching this pattern with the substring in the `replacement` parameter. */
387
388
pattern: string
388
389
/** Replacement substring. Defaults to an empty substring (`""`). */
@@ -486,6 +487,14 @@ export class FlattenGraphTokenFilter extends TokenFilterBase {
0 commit comments