@resolveio/server-lib 4.6.8 → 4.6.9
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/methods/cron-jobs.js
CHANGED
|
@@ -389,7 +389,7 @@ function loadCronJobMethods(methodManager) {
|
|
|
389
389
|
}
|
|
390
390
|
}
|
|
391
391
|
});
|
|
392
|
-
this.callMethodInternal.call(this, 'reportBuilderGetResults', report.type, report.collection_root, rootOptions, filters_1, filterArrays_1, filterArrayPaths_1, report.fields_selected, report.groups_row, report.fields_total, report.fields_link, report.id_date_field || null, report.date_interval || null,
|
|
392
|
+
this.callMethodInternal.call(this, 'reportBuilderGetResults', report.type, report.collection_root, rootOptions, filters_1, filterArrays_1, filterArrayPaths_1, report.fields_selected, report.groups_row, report.fields_total, report.fields_link, report.id_date_field || null, report.date_interval || null, report.group_type, function (err, res) {
|
|
393
393
|
if (res && res[0]) {
|
|
394
394
|
var fields_1 = [];
|
|
395
395
|
var results_1 = res[0].results;
|
|
@@ -12,6 +12,7 @@ export interface ReportBuilderReportModel extends CollectionDocument {
|
|
|
12
12
|
date_created: Date;
|
|
13
13
|
shared_users: string[];
|
|
14
14
|
type: ReportBuilderReportType;
|
|
15
|
+
group_type: string;
|
|
15
16
|
groups_row: ReportBuilderGroupsRow[];
|
|
16
17
|
groups_column: ReportBuilderGroupsRow[];
|
|
17
18
|
id_date_field?: string;
|