Skip to content

Commit ffb05d0

Browse files
committed
build
1 parent 254b19f commit ffb05d0

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

DEPARSER_USAGE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The deparser converts PostgreSQL AST nodes back to SQL strings. It handles vario
99
The most common entry point - handles the complete parse result from libpg-query:
1010

1111
```typescript
12-
import deparse from '@pgsql/deparser';
12+
import deparse from 'pgsql-deparser';
1313

1414
const parseResult = {
1515
version: 170004,
@@ -113,7 +113,7 @@ const sql = deparse(parseResult, options);
113113
You can also create a deparser instance:
114114

115115
```typescript
116-
import { Deparser } from '@pgsql/deparser';
116+
import { Deparser } from 'pgsql-deparser';
117117

118118
const deparser = new Deparser(parseResult);
119119
const sql = deparser.deparse();
@@ -149,8 +149,8 @@ These ensure proper handling of different input formats automatically.
149149
### Complete Example
150150

151151
```typescript
152-
import deparse from '@pgsql/deparser';
153-
import { parse } from '@pgsql/parser';
152+
import deparse from 'pgsql-deparser';
153+
import { parse } from 'pgsql-parser';
154154

155155
// Parse SQL
156156
const sql = 'SELECT * FROM users; INSERT INTO logs (action) VALUES ($1);';

packages/enums/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/transform/src/13/enums.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/transform/src/13/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/transform/src/17/enums.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/transform/src/17/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/types/src/enums.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/types/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

packages/utils/src/asts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file was automatically generated by [email protected].0.
2+
* This file was automatically generated by [email protected].1.
33
* DO NOT MODIFY IT BY HAND. Instead, modify the source proto file,
44
* and run the pg-proto-parser generate command to regenerate this file.
55
*/

0 commit comments

Comments
 (0)