@malloydata/malloy-interfaces 0.0.271 → 0.0.272

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/dist/types.d.ts CHANGED
@@ -435,6 +435,7 @@ export type Result = {
435
435
  annotations?: Array<Annotation>;
436
436
  model_annotations?: Array<Annotation>;
437
437
  query_timezone?: string;
438
+ source_annotations?: Array<Annotation>;
438
439
  };
439
440
  export type RunIndexQueryRequest = {
440
441
  model_url: string;
package/dist/types.js CHANGED
@@ -1132,6 +1132,11 @@ exports.MALLOY_INTERFACE_TYPES = {
1132
1132
  'optional': true,
1133
1133
  'array': false,
1134
1134
  },
1135
+ 'source_annotations': {
1136
+ 'type': 'Annotation',
1137
+ 'array': true,
1138
+ 'optional': true,
1139
+ },
1135
1140
  },
1136
1141
  },
1137
1142
  'RunIndexQueryRequest': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-interfaces",
3
- "version": "0.0.271",
3
+ "version": "0.0.272",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -504,6 +504,7 @@ struct Result {
504
504
  5: optional list<Annotation> annotations,
505
505
  6: optional list<Annotation> model_annotations,
506
506
  7: optional string query_timezone,
507
+ 8: optional list<Annotation> source_annotations,
507
508
  }
508
509
 
509
510
  /*