@sqlanvil/core 1.8.1 → 1.8.3

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
@@ -2318,6 +2318,9 @@ namespace sqlanvil {
2318
2318
 
2319
2319
  /** AssertionConfig reservation */
2320
2320
  reservation?: (string|null);
2321
+
2322
+ /** AssertionConfig metadata */
2323
+ metadata?: (sqlanvil.ActionConfig.IMetadata|null);
2321
2324
  }
2322
2325
 
2323
2326
  /** Represents an AssertionConfig. */
@@ -2362,6 +2365,9 @@ namespace sqlanvil {
2362
2365
  /** AssertionConfig reservation. */
2363
2366
  public reservation: string;
2364
2367
 
2368
+ /** AssertionConfig metadata. */
2369
+ public metadata?: (sqlanvil.ActionConfig.IMetadata|null);
2370
+
2365
2371
  /**
2366
2372
  * Creates a new AssertionConfig instance using the specified properties.
2367
2373
  * @param [properties] Properties to set
@@ -15060,7 +15066,7 @@ declare function jitCompiler(rpcCallback: RpcCallback): IJitCompiler;
15060
15066
 
15061
15067
  declare function main(coreExecutionRequest: Uint8Array | string): Uint8Array | string;
15062
15068
 
15063
- declare const version = "1.8.1";
15069
+ declare const version = "1.8.3";
15064
15070
 
15065
15071
  declare const session: Session;
15066
15072
  declare const supportedFeatures: sqlanvil.SupportedFeatures[];