@pydantic/logfire-sqlls 0.5.0 → 0.6.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/logfire_sqlls_wasm.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export enum DiagnosticCode {
|
|
|
49
49
|
MissingArgument = 7,
|
|
50
50
|
TooManyArguments = 8,
|
|
51
51
|
NoMatchingSignature = 9,
|
|
52
|
+
OrderByPositionOutOfBounds = 10,
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
export class Hover {
|
|
@@ -223,9 +224,9 @@ export interface InitOutput {
|
|
|
223
224
|
readonly workspace_new: (a: any) => [number, number, number];
|
|
224
225
|
readonly __wbg_set_signatureinformation_documentation: (a: number, b: number, c: number) => void;
|
|
225
226
|
readonly __wbg_get_signatureinformation_label: (a: number) => [number, number];
|
|
226
|
-
readonly __wbg_get_relatedinformation_message: (a: number) => [number, number];
|
|
227
227
|
readonly __wbg_get_signatureinformation_documentation: (a: number) => [number, number];
|
|
228
228
|
readonly __wbg_set_relatedinformation_message: (a: number, b: number, c: number) => void;
|
|
229
|
+
readonly __wbg_get_relatedinformation_message: (a: number) => [number, number];
|
|
229
230
|
readonly __wbg_set_signatureinformation_label: (a: number, b: number, c: number) => void;
|
|
230
231
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
231
232
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
package/logfire_sqlls_wasm.js
CHANGED
|
@@ -262,7 +262,7 @@ export class Diagnostic {
|
|
|
262
262
|
if (Symbol.dispose) Diagnostic.prototype[Symbol.dispose] = Diagnostic.prototype.free;
|
|
263
263
|
|
|
264
264
|
/**
|
|
265
|
-
* @enum {0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9}
|
|
265
|
+
* @enum {0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10}
|
|
266
266
|
*/
|
|
267
267
|
export const DiagnosticCode = Object.freeze({
|
|
268
268
|
InvalidSyntax: 0, "0": "InvalidSyntax",
|
|
@@ -275,6 +275,7 @@ export const DiagnosticCode = Object.freeze({
|
|
|
275
275
|
MissingArgument: 7, "7": "MissingArgument",
|
|
276
276
|
TooManyArguments: 8, "8": "TooManyArguments",
|
|
277
277
|
NoMatchingSignature: 9, "9": "NoMatchingSignature",
|
|
278
|
+
OrderByPositionOutOfBounds: 10, "10": "OrderByPositionOutOfBounds",
|
|
278
279
|
});
|
|
279
280
|
|
|
280
281
|
export class Hover {
|
|
Binary file
|