@pydantic/logfire-sqlls 0.4.0 → 0.5.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.
@@ -21,6 +21,7 @@ export enum CompletionKind {
21
21
  Field = 1,
22
22
  Function = 2,
23
23
  Keyword = 3,
24
+ Value = 4,
24
25
  }
25
26
 
26
27
  export class Diagnostic {
@@ -45,6 +46,9 @@ export enum DiagnosticCode {
45
46
  AmbiguousColumn = 4,
46
47
  DuplicateQualifiedFieldName = 5,
47
48
  DuplicateUnqualifiedFieldName = 6,
49
+ MissingArgument = 7,
50
+ TooManyArguments = 8,
51
+ NoMatchingSignature = 9,
48
52
  }
49
53
 
50
54
  export class Hover {
@@ -88,6 +92,13 @@ export class Location {
88
92
  line: number;
89
93
  }
90
94
 
95
+ export class ParameterInformation {
96
+ private constructor();
97
+ free(): void;
98
+ [Symbol.dispose](): void;
99
+ label: string;
100
+ }
101
+
91
102
  export class RelatedInformation {
92
103
  private constructor();
93
104
  free(): void;
@@ -103,6 +114,25 @@ export enum Severity {
103
114
  Fatal = 3,
104
115
  }
105
116
 
117
+ export class SignatureHelp {
118
+ private constructor();
119
+ free(): void;
120
+ [Symbol.dispose](): void;
121
+ active_parameter: number;
122
+ active_signature: number;
123
+ signatures: SignatureInformation[];
124
+ }
125
+
126
+ export class SignatureInformation {
127
+ private constructor();
128
+ free(): void;
129
+ [Symbol.dispose](): void;
130
+ get documentation(): string | undefined;
131
+ set documentation(value: string | null | undefined);
132
+ label: string;
133
+ parameters: ParameterInformation[];
134
+ }
135
+
106
136
  export class Span {
107
137
  private constructor();
108
138
  free(): void;
@@ -118,6 +148,7 @@ export class Workspace {
118
148
  getCompletions(query: string, location: Location): Completion[];
119
149
  getDefinitions(query: string, location: Location): Span[];
120
150
  getHover(query: string, location: Location): Hover | undefined;
151
+ getSignatureHelp(query: string, location: Location): SignatureHelp | undefined;
121
152
  constructor(options: any);
122
153
  }
123
154
 
@@ -143,11 +174,17 @@ export interface InitOutput {
143
174
  readonly __wbg_get_hover_span: (a: number) => number;
144
175
  readonly __wbg_get_location_column: (a: number) => number;
145
176
  readonly __wbg_get_location_line: (a: number) => number;
177
+ readonly __wbg_get_parameterinformation_label: (a: number) => [number, number];
146
178
  readonly __wbg_get_relatedinformation_span: (a: number) => number;
179
+ readonly __wbg_get_signaturehelp_active_parameter: (a: number) => number;
180
+ readonly __wbg_get_signaturehelp_active_signature: (a: number) => number;
181
+ readonly __wbg_get_signaturehelp_signatures: (a: number) => [number, number];
182
+ readonly __wbg_get_signatureinformation_parameters: (a: number) => [number, number];
147
183
  readonly __wbg_get_span_end: (a: number) => number;
148
184
  readonly __wbg_get_span_start: (a: number) => number;
149
185
  readonly __wbg_hover_free: (a: number, b: number) => void;
150
186
  readonly __wbg_location_free: (a: number, b: number) => void;
187
+ readonly __wbg_parameterinformation_free: (a: number, b: number) => void;
151
188
  readonly __wbg_relatedinformation_free: (a: number, b: number) => void;
152
189
  readonly __wbg_set_completion_detail: (a: number, b: number, c: number) => void;
153
190
  readonly __wbg_set_completion_documentation: (a: number, b: number, c: number) => void;
@@ -165,19 +202,31 @@ export interface InitOutput {
165
202
  readonly __wbg_set_hover_span: (a: number, b: number) => void;
166
203
  readonly __wbg_set_location_column: (a: number, b: number) => void;
167
204
  readonly __wbg_set_location_line: (a: number, b: number) => void;
205
+ readonly __wbg_set_parameterinformation_label: (a: number, b: number, c: number) => void;
168
206
  readonly __wbg_set_relatedinformation_span: (a: number, b: number) => void;
207
+ readonly __wbg_set_signaturehelp_active_parameter: (a: number, b: number) => void;
208
+ readonly __wbg_set_signaturehelp_active_signature: (a: number, b: number) => void;
209
+ readonly __wbg_set_signaturehelp_signatures: (a: number, b: number, c: number) => void;
210
+ readonly __wbg_set_signatureinformation_parameters: (a: number, b: number, c: number) => void;
169
211
  readonly __wbg_set_span_end: (a: number, b: number) => void;
170
212
  readonly __wbg_set_span_start: (a: number, b: number) => void;
213
+ readonly __wbg_signaturehelp_free: (a: number, b: number) => void;
214
+ readonly __wbg_signatureinformation_free: (a: number, b: number) => void;
171
215
  readonly __wbg_span_free: (a: number, b: number) => void;
172
- readonly location_new: (a: number, b: number) => number;
173
- readonly __wbg_get_relatedinformation_message: (a: number) => [number, number];
174
- readonly __wbg_set_relatedinformation_message: (a: number, b: number, c: number) => void;
175
216
  readonly __wbg_workspace_free: (a: number, b: number) => void;
217
+ readonly location_new: (a: number, b: number) => number;
176
218
  readonly workspace_checkQuery: (a: number, b: number, c: number) => [number, number];
177
219
  readonly workspace_getCompletions: (a: number, b: number, c: number, d: number) => [number, number];
178
220
  readonly workspace_getDefinitions: (a: number, b: number, c: number, d: number) => [number, number];
179
221
  readonly workspace_getHover: (a: number, b: number, c: number, d: number) => number;
222
+ readonly workspace_getSignatureHelp: (a: number, b: number, c: number, d: number) => number;
180
223
  readonly workspace_new: (a: any) => [number, number, number];
224
+ readonly __wbg_set_signatureinformation_documentation: (a: number, b: number, c: number) => void;
225
+ readonly __wbg_get_signatureinformation_label: (a: number) => [number, number];
226
+ readonly __wbg_get_relatedinformation_message: (a: number) => [number, number];
227
+ readonly __wbg_get_signatureinformation_documentation: (a: number) => [number, number];
228
+ readonly __wbg_set_relatedinformation_message: (a: number, b: number, c: number) => void;
229
+ readonly __wbg_set_signatureinformation_label: (a: number, b: number, c: number) => void;
181
230
  readonly __wbindgen_malloc: (a: number, b: number) => number;
182
231
  readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
183
232
  readonly __wbindgen_exn_store: (a: number) => void;
@@ -133,13 +133,14 @@ export class Completion {
133
133
  if (Symbol.dispose) Completion.prototype[Symbol.dispose] = Completion.prototype.free;
134
134
 
135
135
  /**
136
- * @enum {0 | 1 | 2 | 3}
136
+ * @enum {0 | 1 | 2 | 3 | 4}
137
137
  */
138
138
  export const CompletionKind = Object.freeze({
139
139
  Class: 0, "0": "Class",
140
140
  Field: 1, "1": "Field",
141
141
  Function: 2, "2": "Function",
142
142
  Keyword: 3, "3": "Keyword",
143
+ Value: 4, "4": "Value",
143
144
  });
144
145
 
145
146
  export class Diagnostic {
@@ -261,7 +262,7 @@ export class Diagnostic {
261
262
  if (Symbol.dispose) Diagnostic.prototype[Symbol.dispose] = Diagnostic.prototype.free;
262
263
 
263
264
  /**
264
- * @enum {0 | 1 | 2 | 3 | 4 | 5 | 6}
265
+ * @enum {0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9}
265
266
  */
266
267
  export const DiagnosticCode = Object.freeze({
267
268
  InvalidSyntax: 0, "0": "InvalidSyntax",
@@ -271,6 +272,9 @@ export const DiagnosticCode = Object.freeze({
271
272
  AmbiguousColumn: 4, "4": "AmbiguousColumn",
272
273
  DuplicateQualifiedFieldName: 5, "5": "DuplicateQualifiedFieldName",
273
274
  DuplicateUnqualifiedFieldName: 6, "6": "DuplicateUnqualifiedFieldName",
275
+ MissingArgument: 7, "7": "MissingArgument",
276
+ TooManyArguments: 8, "8": "TooManyArguments",
277
+ NoMatchingSignature: 9, "9": "NoMatchingSignature",
274
278
  });
275
279
 
276
280
  export class Hover {
@@ -408,6 +412,56 @@ export class Location {
408
412
  }
409
413
  if (Symbol.dispose) Location.prototype[Symbol.dispose] = Location.prototype.free;
410
414
 
415
+ export class ParameterInformation {
416
+ static __wrap(ptr) {
417
+ ptr = ptr >>> 0;
418
+ const obj = Object.create(ParameterInformation.prototype);
419
+ obj.__wbg_ptr = ptr;
420
+ ParameterInformationFinalization.register(obj, obj.__wbg_ptr, obj);
421
+ return obj;
422
+ }
423
+ static __unwrap(jsValue) {
424
+ if (!(jsValue instanceof ParameterInformation)) {
425
+ return 0;
426
+ }
427
+ return jsValue.__destroy_into_raw();
428
+ }
429
+ __destroy_into_raw() {
430
+ const ptr = this.__wbg_ptr;
431
+ this.__wbg_ptr = 0;
432
+ ParameterInformationFinalization.unregister(this);
433
+ return ptr;
434
+ }
435
+ free() {
436
+ const ptr = this.__destroy_into_raw();
437
+ wasm.__wbg_parameterinformation_free(ptr, 0);
438
+ }
439
+ /**
440
+ * @returns {string}
441
+ */
442
+ get label() {
443
+ let deferred1_0;
444
+ let deferred1_1;
445
+ try {
446
+ const ret = wasm.__wbg_get_parameterinformation_label(this.__wbg_ptr);
447
+ deferred1_0 = ret[0];
448
+ deferred1_1 = ret[1];
449
+ return getStringFromWasm0(ret[0], ret[1]);
450
+ } finally {
451
+ wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
452
+ }
453
+ }
454
+ /**
455
+ * @param {string} arg0
456
+ */
457
+ set label(arg0) {
458
+ const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
459
+ const len0 = WASM_VECTOR_LEN;
460
+ wasm.__wbg_set_parameterinformation_label(this.__wbg_ptr, ptr0, len0);
461
+ }
462
+ }
463
+ if (Symbol.dispose) ParameterInformation.prototype[Symbol.dispose] = ParameterInformation.prototype.free;
464
+
411
465
  export class RelatedInformation {
412
466
  static __wrap(ptr) {
413
467
  ptr = ptr >>> 0;
@@ -483,6 +537,157 @@ export const Severity = Object.freeze({
483
537
  Fatal: 3, "3": "Fatal",
484
538
  });
485
539
 
540
+ export class SignatureHelp {
541
+ static __wrap(ptr) {
542
+ ptr = ptr >>> 0;
543
+ const obj = Object.create(SignatureHelp.prototype);
544
+ obj.__wbg_ptr = ptr;
545
+ SignatureHelpFinalization.register(obj, obj.__wbg_ptr, obj);
546
+ return obj;
547
+ }
548
+ __destroy_into_raw() {
549
+ const ptr = this.__wbg_ptr;
550
+ this.__wbg_ptr = 0;
551
+ SignatureHelpFinalization.unregister(this);
552
+ return ptr;
553
+ }
554
+ free() {
555
+ const ptr = this.__destroy_into_raw();
556
+ wasm.__wbg_signaturehelp_free(ptr, 0);
557
+ }
558
+ /**
559
+ * @returns {number}
560
+ */
561
+ get active_parameter() {
562
+ const ret = wasm.__wbg_get_signaturehelp_active_parameter(this.__wbg_ptr);
563
+ return ret >>> 0;
564
+ }
565
+ /**
566
+ * @returns {number}
567
+ */
568
+ get active_signature() {
569
+ const ret = wasm.__wbg_get_signaturehelp_active_signature(this.__wbg_ptr);
570
+ return ret >>> 0;
571
+ }
572
+ /**
573
+ * @returns {SignatureInformation[]}
574
+ */
575
+ get signatures() {
576
+ const ret = wasm.__wbg_get_signaturehelp_signatures(this.__wbg_ptr);
577
+ var v1 = getArrayJsValueFromWasm0(ret[0], ret[1]).slice();
578
+ wasm.__wbindgen_free(ret[0], ret[1] * 4, 4);
579
+ return v1;
580
+ }
581
+ /**
582
+ * @param {number} arg0
583
+ */
584
+ set active_parameter(arg0) {
585
+ wasm.__wbg_set_signaturehelp_active_parameter(this.__wbg_ptr, arg0);
586
+ }
587
+ /**
588
+ * @param {number} arg0
589
+ */
590
+ set active_signature(arg0) {
591
+ wasm.__wbg_set_signaturehelp_active_signature(this.__wbg_ptr, arg0);
592
+ }
593
+ /**
594
+ * @param {SignatureInformation[]} arg0
595
+ */
596
+ set signatures(arg0) {
597
+ const ptr0 = passArrayJsValueToWasm0(arg0, wasm.__wbindgen_malloc);
598
+ const len0 = WASM_VECTOR_LEN;
599
+ wasm.__wbg_set_signaturehelp_signatures(this.__wbg_ptr, ptr0, len0);
600
+ }
601
+ }
602
+ if (Symbol.dispose) SignatureHelp.prototype[Symbol.dispose] = SignatureHelp.prototype.free;
603
+
604
+ export class SignatureInformation {
605
+ static __wrap(ptr) {
606
+ ptr = ptr >>> 0;
607
+ const obj = Object.create(SignatureInformation.prototype);
608
+ obj.__wbg_ptr = ptr;
609
+ SignatureInformationFinalization.register(obj, obj.__wbg_ptr, obj);
610
+ return obj;
611
+ }
612
+ static __unwrap(jsValue) {
613
+ if (!(jsValue instanceof SignatureInformation)) {
614
+ return 0;
615
+ }
616
+ return jsValue.__destroy_into_raw();
617
+ }
618
+ __destroy_into_raw() {
619
+ const ptr = this.__wbg_ptr;
620
+ this.__wbg_ptr = 0;
621
+ SignatureInformationFinalization.unregister(this);
622
+ return ptr;
623
+ }
624
+ free() {
625
+ const ptr = this.__destroy_into_raw();
626
+ wasm.__wbg_signatureinformation_free(ptr, 0);
627
+ }
628
+ /**
629
+ * @returns {string | undefined}
630
+ */
631
+ get documentation() {
632
+ const ret = wasm.__wbg_get_signatureinformation_documentation(this.__wbg_ptr);
633
+ let v1;
634
+ if (ret[0] !== 0) {
635
+ v1 = getStringFromWasm0(ret[0], ret[1]).slice();
636
+ wasm.__wbindgen_free(ret[0], ret[1] * 1, 1);
637
+ }
638
+ return v1;
639
+ }
640
+ /**
641
+ * @returns {string}
642
+ */
643
+ get label() {
644
+ let deferred1_0;
645
+ let deferred1_1;
646
+ try {
647
+ const ret = wasm.__wbg_get_signatureinformation_label(this.__wbg_ptr);
648
+ deferred1_0 = ret[0];
649
+ deferred1_1 = ret[1];
650
+ return getStringFromWasm0(ret[0], ret[1]);
651
+ } finally {
652
+ wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
653
+ }
654
+ }
655
+ /**
656
+ * @returns {ParameterInformation[]}
657
+ */
658
+ get parameters() {
659
+ const ret = wasm.__wbg_get_signatureinformation_parameters(this.__wbg_ptr);
660
+ var v1 = getArrayJsValueFromWasm0(ret[0], ret[1]).slice();
661
+ wasm.__wbindgen_free(ret[0], ret[1] * 4, 4);
662
+ return v1;
663
+ }
664
+ /**
665
+ * @param {string | null} [arg0]
666
+ */
667
+ set documentation(arg0) {
668
+ var ptr0 = isLikeNone(arg0) ? 0 : passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
669
+ var len0 = WASM_VECTOR_LEN;
670
+ wasm.__wbg_set_signatureinformation_documentation(this.__wbg_ptr, ptr0, len0);
671
+ }
672
+ /**
673
+ * @param {string} arg0
674
+ */
675
+ set label(arg0) {
676
+ const ptr0 = passStringToWasm0(arg0, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
677
+ const len0 = WASM_VECTOR_LEN;
678
+ wasm.__wbg_set_signatureinformation_label(this.__wbg_ptr, ptr0, len0);
679
+ }
680
+ /**
681
+ * @param {ParameterInformation[]} arg0
682
+ */
683
+ set parameters(arg0) {
684
+ const ptr0 = passArrayJsValueToWasm0(arg0, wasm.__wbindgen_malloc);
685
+ const len0 = WASM_VECTOR_LEN;
686
+ wasm.__wbg_set_signatureinformation_parameters(this.__wbg_ptr, ptr0, len0);
687
+ }
688
+ }
689
+ if (Symbol.dispose) SignatureInformation.prototype[Symbol.dispose] = SignatureInformation.prototype.free;
690
+
486
691
  export class Span {
487
692
  static __wrap(ptr) {
488
693
  ptr = ptr >>> 0;
@@ -600,6 +805,19 @@ export class Workspace {
600
805
  const ret = wasm.workspace_getHover(this.__wbg_ptr, ptr0, len0, ptr1);
601
806
  return ret === 0 ? undefined : Hover.__wrap(ret);
602
807
  }
808
+ /**
809
+ * @param {string} query
810
+ * @param {Location} location
811
+ * @returns {SignatureHelp | undefined}
812
+ */
813
+ getSignatureHelp(query, location) {
814
+ const ptr0 = passStringToWasm0(query, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
815
+ const len0 = WASM_VECTOR_LEN;
816
+ _assertClass(location, Location);
817
+ var ptr1 = location.__destroy_into_raw();
818
+ const ret = wasm.workspace_getSignatureHelp(this.__wbg_ptr, ptr0, len0, ptr1);
819
+ return ret === 0 ? undefined : SignatureHelp.__wrap(ret);
820
+ }
603
821
  /**
604
822
  * @param {any} options
605
823
  */
@@ -628,6 +846,12 @@ function __wbg_get_imports() {
628
846
  getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
629
847
  getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
630
848
  },
849
+ __wbg___wbindgen_bigint_get_as_i64_3d3aba5d616c6a51: function(arg0, arg1) {
850
+ const v = arg1;
851
+ const ret = typeof(v) === 'bigint' ? v : undefined;
852
+ getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
853
+ getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
854
+ },
631
855
  __wbg___wbindgen_boolean_get_6ea149f0a8dcc5ff: function(arg0) {
632
856
  const v = arg0;
633
857
  const ret = typeof(v) === 'boolean' ? v : undefined;
@@ -644,6 +868,10 @@ function __wbg_get_imports() {
644
868
  const ret = arg0 in arg1;
645
869
  return ret;
646
870
  },
871
+ __wbg___wbindgen_is_bigint_ec25c7f91b4d9e93: function(arg0) {
872
+ const ret = typeof(arg0) === 'bigint';
873
+ return ret;
874
+ },
647
875
  __wbg___wbindgen_is_function_3baa9db1a987f47d: function(arg0) {
648
876
  const ret = typeof(arg0) === 'function';
649
877
  return ret;
@@ -661,6 +889,10 @@ function __wbg_get_imports() {
661
889
  const ret = arg0 === undefined;
662
890
  return ret;
663
891
  },
892
+ __wbg___wbindgen_jsval_eq_d3465d8a07697228: function(arg0, arg1) {
893
+ const ret = arg0 === arg1;
894
+ return ret;
895
+ },
664
896
  __wbg___wbindgen_jsval_loose_eq_cac3565e89b4134c: function(arg0, arg1) {
665
897
  const ret = arg0 == arg1;
666
898
  return ret;
@@ -739,6 +971,16 @@ function __wbg_get_imports() {
739
971
  const ret = result;
740
972
  return ret;
741
973
  },
974
+ __wbg_instanceof_Map_1b76fd4635be43eb: function(arg0) {
975
+ let result;
976
+ try {
977
+ result = arg0 instanceof Map;
978
+ } catch (_) {
979
+ result = false;
980
+ }
981
+ const ret = result;
982
+ return ret;
983
+ },
742
984
  __wbg_instanceof_Uint8Array_152ba1f289edcf3f: function(arg0) {
743
985
  let result;
744
986
  try {
@@ -753,6 +995,10 @@ function __wbg_get_imports() {
753
995
  const ret = Array.isArray(arg0);
754
996
  return ret;
755
997
  },
998
+ __wbg_isSafeInteger_4fc213d1989d6d2a: function(arg0) {
999
+ const ret = Number.isSafeInteger(arg0);
1000
+ return ret;
1001
+ },
756
1002
  __wbg_iterator_013bc09ec998c2a7: function() {
757
1003
  const ret = Symbol.iterator;
758
1004
  return ret;
@@ -793,6 +1039,14 @@ function __wbg_get_imports() {
793
1039
  const ret = arg0.next;
794
1040
  return ret;
795
1041
  },
1042
+ __wbg_parameterinformation_new: function(arg0) {
1043
+ const ret = ParameterInformation.__wrap(arg0);
1044
+ return ret;
1045
+ },
1046
+ __wbg_parameterinformation_unwrap: function(arg0) {
1047
+ const ret = ParameterInformation.__unwrap(arg0);
1048
+ return ret;
1049
+ },
796
1050
  __wbg_prototypesetcall_a6b02eb00b0f4ce2: function(arg0, arg1, arg2) {
797
1051
  Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), arg2);
798
1052
  },
@@ -810,6 +1064,14 @@ function __wbg_get_imports() {
810
1064
  __wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
811
1065
  arg0[arg1] = arg2;
812
1066
  },
1067
+ __wbg_signatureinformation_new: function(arg0) {
1068
+ const ret = SignatureInformation.__wrap(arg0);
1069
+ return ret;
1070
+ },
1071
+ __wbg_signatureinformation_unwrap: function(arg0) {
1072
+ const ret = SignatureInformation.__unwrap(arg0);
1073
+ return ret;
1074
+ },
813
1075
  __wbg_span_new: function(arg0) {
814
1076
  const ret = Span.__wrap(arg0);
815
1077
  return ret;
@@ -825,11 +1087,21 @@ function __wbg_get_imports() {
825
1087
  const ret = arg0.value;
826
1088
  return ret;
827
1089
  },
828
- __wbindgen_cast_0000000000000001: function(arg0, arg1) {
1090
+ __wbindgen_cast_0000000000000001: function(arg0) {
1091
+ // Cast intrinsic for `I64 -> Externref`.
1092
+ const ret = arg0;
1093
+ return ret;
1094
+ },
1095
+ __wbindgen_cast_0000000000000002: function(arg0, arg1) {
829
1096
  // Cast intrinsic for `Ref(String) -> Externref`.
830
1097
  const ret = getStringFromWasm0(arg0, arg1);
831
1098
  return ret;
832
1099
  },
1100
+ __wbindgen_cast_0000000000000003: function(arg0) {
1101
+ // Cast intrinsic for `U64 -> Externref`.
1102
+ const ret = BigInt.asUintN(64, arg0);
1103
+ return ret;
1104
+ },
833
1105
  __wbindgen_init_externref_table: function() {
834
1106
  const table = wasm.__wbindgen_externrefs;
835
1107
  const offset = table.grow(4);
@@ -858,9 +1130,18 @@ const HoverFinalization = (typeof FinalizationRegistry === 'undefined')
858
1130
  const LocationFinalization = (typeof FinalizationRegistry === 'undefined')
859
1131
  ? { register: () => {}, unregister: () => {} }
860
1132
  : new FinalizationRegistry(ptr => wasm.__wbg_location_free(ptr >>> 0, 1));
1133
+ const ParameterInformationFinalization = (typeof FinalizationRegistry === 'undefined')
1134
+ ? { register: () => {}, unregister: () => {} }
1135
+ : new FinalizationRegistry(ptr => wasm.__wbg_parameterinformation_free(ptr >>> 0, 1));
861
1136
  const RelatedInformationFinalization = (typeof FinalizationRegistry === 'undefined')
862
1137
  ? { register: () => {}, unregister: () => {} }
863
1138
  : new FinalizationRegistry(ptr => wasm.__wbg_relatedinformation_free(ptr >>> 0, 1));
1139
+ const SignatureHelpFinalization = (typeof FinalizationRegistry === 'undefined')
1140
+ ? { register: () => {}, unregister: () => {} }
1141
+ : new FinalizationRegistry(ptr => wasm.__wbg_signaturehelp_free(ptr >>> 0, 1));
1142
+ const SignatureInformationFinalization = (typeof FinalizationRegistry === 'undefined')
1143
+ ? { register: () => {}, unregister: () => {} }
1144
+ : new FinalizationRegistry(ptr => wasm.__wbg_signatureinformation_free(ptr >>> 0, 1));
864
1145
  const SpanFinalization = (typeof FinalizationRegistry === 'undefined')
865
1146
  ? { register: () => {}, unregister: () => {} }
866
1147
  : new FinalizationRegistry(ptr => wasm.__wbg_span_free(ptr >>> 0, 1));
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pydantic/logfire-sqlls",
3
3
  "type": "module",
4
- "version": "0.4.0",
4
+ "version": "0.5.0",
5
5
  "files": [
6
6
  "logfire_sqlls_wasm_bg.wasm",
7
7
  "logfire_sqlls_wasm.js",