@gmod/bed 2.1.5 → 2.1.7
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/CHANGELOG.md +8 -0
- package/dist/autoSql.d.ts +10 -0
- package/dist/autoSql.js +1565 -0
- package/dist/autoSql.js.map +1 -0
- package/dist/defaultTypes.js +6 -3
- package/dist/defaultTypes.js.map +1 -1
- package/dist/parser.js +4 -3
- package/dist/parser.js.map +1 -1
- package/esm/autoSql.d.ts +10 -0
- package/esm/autoSql.js +1564 -0
- package/esm/autoSql.js.map +1 -0
- package/esm/defaultTypes.js +3 -3
- package/esm/defaultTypes.js.map +1 -1
- package/esm/parser.js +4 -3
- package/esm/parser.js.map +1 -1
- package/package.json +3 -3
- package/src/autoSql.ts +1658 -0
- package/src/defaultTypes.ts +3 -3
- package/src/parser.ts +2 -2
- package/src/autoSql.js +0 -1501
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [2.1.7](https://github.com/GMOD/bed-js/compare/v2.1.5...v2.1.7) (2025-05-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [2.1.6](https://github.com/GMOD/bed-js/compare/v2.1.5...v2.1.6) (2025-05-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
## [2.1.5](https://github.com/GMOD/bed-js/compare/v2.1.4...v2.1.5) (2025-05-13)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
declare function peg$SyntaxError(message: any, expected: any, found: any, location: any): void;
|
|
2
|
+
declare namespace peg$SyntaxError {
|
|
3
|
+
var buildMessage: (expected: any, found: any) => string;
|
|
4
|
+
}
|
|
5
|
+
declare function peg$parse(input: any, options: any): {};
|
|
6
|
+
declare const _default: {
|
|
7
|
+
SyntaxError: typeof peg$SyntaxError;
|
|
8
|
+
parse: typeof peg$parse;
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|