pgsql-deparser 17.12.2 → 17.14.0

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/README.md CHANGED
@@ -131,7 +131,7 @@ const sql2 = deparse(selectAst, { pretty: true });
131
131
  // active = true;
132
132
  ```
133
133
 
134
- For complete documentation and advanced options, see [DEPARSER_USAGE.md](../../DEPARSER_USAGE.md).
134
+ For complete documentation and advanced options, see [DEPARSER_USAGE.md](https://github.com/constructive-io/pgsql-parser/tree/main/packages/deparser/DEPARSER_USAGE.md).
135
135
 
136
136
  ## Why Use `pgsql-deparser`?
137
137
 
package/deparser.d.ts CHANGED
@@ -104,8 +104,6 @@ export declare class Deparser implements DeparserVisitor {
104
104
  CollateClause(node: t.CollateClause, context: DeparserContext): string;
105
105
  BooleanTest(node: t.BooleanTest, context: DeparserContext): string;
106
106
  NullTest(node: t.NullTest, context: DeparserContext): string;
107
- private static readonly RESERVED_WORDS;
108
- private static needsQuotes;
109
107
  quoteIfNeeded(value: string): string;
110
108
  preserveOperatorDefElemCase(defName: string): string;
111
109
  String(node: t.String, context: DeparserContext): string;