autoql-fe-utils 1.10.9 → 1.10.10
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.global.js +4 -2
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1389,7 +1389,7 @@ declare const exportCSV: ({ queryId, domain, apiKey, token, csvProgressCallback,
|
|
|
1389
1389
|
token?: string;
|
|
1390
1390
|
csvProgressCallback?: Function;
|
|
1391
1391
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1392
|
-
declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, apiKey, token, orders, source, tableFilters, cancelToken, pageSize, newColumns, }?: {
|
|
1392
|
+
declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, apiKey, token, orders, source, tableFilters, cancelToken, pageSize, newColumns, displayOverrides, }?: {
|
|
1393
1393
|
queryID?: string;
|
|
1394
1394
|
groupBys?: Object[];
|
|
1395
1395
|
translation?: string;
|
|
@@ -1403,6 +1403,7 @@ declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, api
|
|
|
1403
1403
|
cancelToken?: any;
|
|
1404
1404
|
pageSize?: number;
|
|
1405
1405
|
newColumns?: AdditionalSelect[];
|
|
1406
|
+
displayOverrides?: DisplayOverride[];
|
|
1406
1407
|
}) => Promise<TransformedAxiosResponse>;
|
|
1407
1408
|
declare const fetchTopics: ({ domain, token, apiKey, }?: {
|
|
1408
1409
|
domain?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1389,7 +1389,7 @@ declare const exportCSV: ({ queryId, domain, apiKey, token, csvProgressCallback,
|
|
|
1389
1389
|
token?: string;
|
|
1390
1390
|
csvProgressCallback?: Function;
|
|
1391
1391
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1392
|
-
declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, apiKey, token, orders, source, tableFilters, cancelToken, pageSize, newColumns, }?: {
|
|
1392
|
+
declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, apiKey, token, orders, source, tableFilters, cancelToken, pageSize, newColumns, displayOverrides, }?: {
|
|
1393
1393
|
queryID?: string;
|
|
1394
1394
|
groupBys?: Object[];
|
|
1395
1395
|
translation?: string;
|
|
@@ -1403,6 +1403,7 @@ declare const runDrilldown: ({ queryID, groupBys, translation, test, domain, api
|
|
|
1403
1403
|
cancelToken?: any;
|
|
1404
1404
|
pageSize?: number;
|
|
1405
1405
|
newColumns?: AdditionalSelect[];
|
|
1406
|
+
displayOverrides?: DisplayOverride[];
|
|
1406
1407
|
}) => Promise<TransformedAxiosResponse>;
|
|
1407
1408
|
declare const fetchTopics: ({ domain, token, apiKey, }?: {
|
|
1408
1409
|
domain?: string;
|
package/dist/index.global.js
CHANGED
|
@@ -30848,7 +30848,8 @@
|
|
|
30848
30848
|
tableFilters,
|
|
30849
30849
|
cancelToken,
|
|
30850
30850
|
pageSize = DEFAULT_DATA_PAGE_SIZE,
|
|
30851
|
-
newColumns
|
|
30851
|
+
newColumns,
|
|
30852
|
+
displayOverrides
|
|
30852
30853
|
} = {}) => {
|
|
30853
30854
|
if (!queryID) {
|
|
30854
30855
|
console.error("No query ID supplied to drilldown function");
|
|
@@ -30868,7 +30869,8 @@
|
|
|
30868
30869
|
page_size: pageSize,
|
|
30869
30870
|
date_format: "ISO8601",
|
|
30870
30871
|
time_zone: getCurrentTimezone(),
|
|
30871
|
-
additional_selects: newColumns
|
|
30872
|
+
additional_selects: newColumns,
|
|
30873
|
+
display_overrides: displayOverrides
|
|
30872
30874
|
};
|
|
30873
30875
|
const config = {
|
|
30874
30876
|
headers: {
|