@malloydata/malloy-interfaces 0.0.249-dev250327002726 → 0.0.249-dev250327171241

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
@@ -114,6 +114,7 @@ export type CompileModelResponse = {
114
114
  model?: ModelInfo;
115
115
  logs?: Array<LogMessage>;
116
116
  compiler_needs?: CompilerNeeds;
117
+ translations?: Array<Translation>;
117
118
  };
118
119
  export type CompileQueryRequest = {
119
120
  model_url: string;
@@ -124,6 +125,7 @@ export type CompileQueryResponse = {
124
125
  result?: Result;
125
126
  logs?: Array<LogMessage>;
126
127
  compiler_needs?: CompilerNeeds;
128
+ translations?: Array<Translation>;
127
129
  };
128
130
  export type CompileSourceRequest = {
129
131
  model_url: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-interfaces",
3
- "version": "0.0.249-dev250327002726",
3
+ "version": "0.0.249-dev250327171241",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -600,6 +600,7 @@ struct CompileModelResponse {
600
600
 
601
601
  8: optional list<LogMessage> logs,
602
602
  9: optional CompilerNeeds compiler_needs,
603
+ 10: optional list<Translation> translations;
603
604
  }
604
605
 
605
606
  // Given the URL to a model and a name of a queryable thing, get a StableSourceDef
@@ -649,6 +650,7 @@ struct CompileQueryResponse {
649
650
 
650
651
  8: optional list<LogMessage> logs,
651
652
  9: optional CompilerNeeds compiler_needs,
653
+ 10: optional list<Translation> translations;
652
654
  }
653
655
 
654
656
  // Given a URL to a model and the name of a source, run the indexing query