@sqlanvil/core 1.12.0 → 1.13.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/bundle.d.ts CHANGED
@@ -346,6 +346,9 @@ namespace sqlanvil {
346
346
  /** ConnectionConfig saKeyId */
347
347
  saKeyId?: (string|null);
348
348
 
349
+ /** ConnectionConfig billingProject */
350
+ billingProject?: (string|null);
351
+
349
352
  /** ConnectionConfig host */
350
353
  host?: (string|null);
351
354
 
@@ -380,6 +383,9 @@ namespace sqlanvil {
380
383
  /** ConnectionConfig saKeyId. */
381
384
  public saKeyId: string;
382
385
 
386
+ /** ConnectionConfig billingProject. */
387
+ public billingProject: string;
388
+
383
389
  /** ConnectionConfig host. */
384
390
  public host: string;
385
391
 
@@ -15888,7 +15894,7 @@ declare function jitCompiler(rpcCallback: RpcCallback): IJitCompiler;
15888
15894
 
15889
15895
  declare function main(coreExecutionRequest: Uint8Array | string): Uint8Array | string;
15890
15896
 
15891
- declare const version = "1.12.0";
15897
+ declare const version = "1.13.0";
15892
15898
 
15893
15899
  declare const session: Session;
15894
15900
  declare const supportedFeatures: sqlanvil.SupportedFeatures[];