@restura/core 0.1.0-alpha.37 → 0.1.0-alpha.38

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/dist/index.js CHANGED
@@ -1918,7 +1918,8 @@ column = left:text "." right:text { return \`\${quoteSqlIdentity(left)}.\${quot
1918
1918
  text:text { return quoteSqlIdentity(text); }
1919
1919
 
1920
1920
 
1921
- text = text:[a-z0-9 \\t\\r\\n\\-_:@]i+ { return text.join(""); }
1921
+ text = text:[a-z0-9 \\t\\r\\n\\-_:@']i+ { return text.join(""); }
1922
+
1922
1923
 
1923
1924
  type = "type" _ ":" _ type:typeString { return type; }
1924
1925
  typeString = text:"startsWith" { return function(column, value) { return \`\${column} ILIKE '\${format.literal(value).slice(1,-1)}%'\`; } } /