@revolugo/common 7.2.4-alpha.4 → 7.2.4-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolugo/common",
3
- "version": "7.2.4-alpha.4",
3
+ "version": "7.2.4-alpha.5",
4
4
  "private": false,
5
5
  "description": "Revolugo common",
6
6
  "author": "Revolugo",
@@ -1,16 +1,16 @@
1
1
  const TS_QUERY_SPECIAL_CHARS = new Set([
2
- '&',
3
- '|',
4
- ':',
5
2
  '!',
3
+ '&',
6
4
  '(',
7
5
  ')',
6
+ ':',
8
7
  '<',
9
8
  '>',
10
9
  '@',
10
+ '|',
11
11
  ])
12
12
 
13
- const REGEX_SPECIAL_CHARS = new Set(['|', '(', ')'])
13
+ const REGEX_SPECIAL_CHARS = new Set(['(', ')', '|'])
14
14
 
15
15
  export function prepareTsQuery(query: string): string | null {
16
16
  // Remove leading/trailing whitespaces