@malloydata/malloy-interfaces 0.0.263-dev250414184158 → 0.0.263-dev250414204152
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 +4 -0
- package/dist/types.js +20 -0
- package/package.json +1 -1
- package/thrift/malloy.thrift +4 -0
package/dist/types.d.ts
CHANGED
|
@@ -119,10 +119,12 @@ export type CompileModelResponse = {
|
|
|
119
119
|
export type CompileQueryRequest = {
|
|
120
120
|
model_url: string;
|
|
121
121
|
query: Query;
|
|
122
|
+
default_row_limit?: number;
|
|
122
123
|
compiler_needs?: CompilerNeeds;
|
|
123
124
|
};
|
|
124
125
|
export type CompileQueryResponse = {
|
|
125
126
|
result?: Result;
|
|
127
|
+
default_row_limit_added?: number;
|
|
126
128
|
logs?: Array<LogMessage>;
|
|
127
129
|
compiler_needs?: CompilerNeeds;
|
|
128
130
|
translations?: Array<Translation>;
|
|
@@ -446,10 +448,12 @@ export type RunIndexQueryResponse = {
|
|
|
446
448
|
export type RunQueryRequest = {
|
|
447
449
|
model_url: string;
|
|
448
450
|
query: Query;
|
|
451
|
+
default_row_limit?: number;
|
|
449
452
|
compiler_needs?: CompilerNeeds;
|
|
450
453
|
};
|
|
451
454
|
export type RunQueryResponse = {
|
|
452
455
|
result?: Result;
|
|
456
|
+
default_row_limit_added?: number;
|
|
453
457
|
logs?: Array<LogMessage>;
|
|
454
458
|
compiler_needs?: CompilerNeeds;
|
|
455
459
|
};
|
package/dist/types.js
CHANGED
|
@@ -211,6 +211,11 @@ exports.MALLOY_INTERFACE_TYPES = {
|
|
|
211
211
|
'optional': false,
|
|
212
212
|
'array': false,
|
|
213
213
|
},
|
|
214
|
+
'default_row_limit': {
|
|
215
|
+
'type': 'number',
|
|
216
|
+
'optional': true,
|
|
217
|
+
'array': false,
|
|
218
|
+
},
|
|
214
219
|
'compiler_needs': {
|
|
215
220
|
'type': 'CompilerNeeds',
|
|
216
221
|
'optional': true,
|
|
@@ -227,6 +232,11 @@ exports.MALLOY_INTERFACE_TYPES = {
|
|
|
227
232
|
'optional': true,
|
|
228
233
|
'array': false,
|
|
229
234
|
},
|
|
235
|
+
'default_row_limit_added': {
|
|
236
|
+
'type': 'number',
|
|
237
|
+
'optional': true,
|
|
238
|
+
'array': false,
|
|
239
|
+
},
|
|
230
240
|
'logs': {
|
|
231
241
|
'type': 'LogMessage',
|
|
232
242
|
'array': true,
|
|
@@ -1175,6 +1185,11 @@ exports.MALLOY_INTERFACE_TYPES = {
|
|
|
1175
1185
|
'optional': false,
|
|
1176
1186
|
'array': false,
|
|
1177
1187
|
},
|
|
1188
|
+
'default_row_limit': {
|
|
1189
|
+
'type': 'number',
|
|
1190
|
+
'optional': true,
|
|
1191
|
+
'array': false,
|
|
1192
|
+
},
|
|
1178
1193
|
'compiler_needs': {
|
|
1179
1194
|
'type': 'CompilerNeeds',
|
|
1180
1195
|
'optional': true,
|
|
@@ -1191,6 +1206,11 @@ exports.MALLOY_INTERFACE_TYPES = {
|
|
|
1191
1206
|
'optional': true,
|
|
1192
1207
|
'array': false,
|
|
1193
1208
|
},
|
|
1209
|
+
'default_row_limit_added': {
|
|
1210
|
+
'type': 'number',
|
|
1211
|
+
'optional': true,
|
|
1212
|
+
'array': false,
|
|
1213
|
+
},
|
|
1194
1214
|
'logs': {
|
|
1195
1215
|
'type': 'LogMessage',
|
|
1196
1216
|
'array': true,
|
package/package.json
CHANGED
package/thrift/malloy.thrift
CHANGED
|
@@ -648,6 +648,7 @@ struct CompileSourceResponse {
|
|
|
648
648
|
struct RunQueryRequest {
|
|
649
649
|
1: required string model_url,
|
|
650
650
|
2: required Query query,
|
|
651
|
+
3: optional i32 default_row_limit,
|
|
651
652
|
|
|
652
653
|
9: optional CompilerNeeds compiler_needs,
|
|
653
654
|
}
|
|
@@ -655,6 +656,7 @@ struct RunQueryRequest {
|
|
|
655
656
|
struct RunQueryResponse {
|
|
656
657
|
1: optional Result result,
|
|
657
658
|
|
|
659
|
+
7: optional i32 default_row_limit_added,
|
|
658
660
|
8: optional list<LogMessage> logs,
|
|
659
661
|
9: optional CompilerNeeds compiler_needs,
|
|
660
662
|
}
|
|
@@ -664,6 +666,7 @@ struct RunQueryResponse {
|
|
|
664
666
|
struct CompileQueryRequest {
|
|
665
667
|
1: required string model_url,
|
|
666
668
|
2: required Query query,
|
|
669
|
+
3: optional i32 default_row_limit,
|
|
667
670
|
|
|
668
671
|
9: optional CompilerNeeds compiler_needs,
|
|
669
672
|
}
|
|
@@ -671,6 +674,7 @@ struct CompileQueryRequest {
|
|
|
671
674
|
struct CompileQueryResponse {
|
|
672
675
|
1: optional Result result,
|
|
673
676
|
|
|
677
|
+
7: optional i32 default_row_limit_added,
|
|
674
678
|
8: optional list<LogMessage> logs,
|
|
675
679
|
9: optional CompilerNeeds compiler_needs,
|
|
676
680
|
10: optional list<Translation> translations;
|