autoql-fe-utils 1.11.25 → 1.11.27
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 +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.global.js +1313 -2223
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +27 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -17
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1459,6 +1459,7 @@ interface QueryParams {
|
|
|
1459
1459
|
newColumns?: AdditionalSelect[];
|
|
1460
1460
|
displayOverrides?: DisplayOverride[];
|
|
1461
1461
|
force?: boolean;
|
|
1462
|
+
projectId?: string | number;
|
|
1462
1463
|
}
|
|
1463
1464
|
interface DashboardTileQueryParams extends QueryParams {
|
|
1464
1465
|
queryIndex?: number;
|
|
@@ -1471,7 +1472,7 @@ interface ColumnSelect {
|
|
|
1471
1472
|
table_column: string;
|
|
1472
1473
|
custom: string;
|
|
1473
1474
|
}
|
|
1474
|
-
declare const runQueryOnly: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, scope, newColumns, displayOverrides, }: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1475
|
+
declare const runQueryOnly: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, scope, newColumns, displayOverrides, projectId, }: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1475
1476
|
declare const runQueryValidation: ({ text, domain, apiKey, token, cancelToken, }?: {
|
|
1476
1477
|
text?: string;
|
|
1477
1478
|
domain?: string;
|
|
@@ -1479,9 +1480,9 @@ declare const runQueryValidation: ({ text, domain, apiKey, token, cancelToken, }
|
|
|
1479
1480
|
token?: string;
|
|
1480
1481
|
cancelToken?: CancelTokenLike;
|
|
1481
1482
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1482
|
-
declare const runQuery: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, newColumns, displayOverrides, }?: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1483
|
-
declare const runCachedDashboardQuery: ({ query, domain, apiKey, token, source, orders, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1484
|
-
declare const runCachedDashboardQueryPost: ({ query, domain, apiKey, token, source, orders, filters, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1483
|
+
declare const runQuery: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, newColumns, displayOverrides, projectId, }?: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1484
|
+
declare const runCachedDashboardQuery: ({ query, domain, apiKey, token, source, orders, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, projectId, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1485
|
+
declare const runCachedDashboardQueryPost: ({ query, domain, apiKey, token, source, orders, filters, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, projectId, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1485
1486
|
declare const exportCSV: ({ queryId, domain, apiKey, token, filters, tableFilters, csvProgressCallback, source, scope, }?: {
|
|
1486
1487
|
queryId?: string;
|
|
1487
1488
|
domain?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1459,6 +1459,7 @@ interface QueryParams {
|
|
|
1459
1459
|
newColumns?: AdditionalSelect[];
|
|
1460
1460
|
displayOverrides?: DisplayOverride[];
|
|
1461
1461
|
force?: boolean;
|
|
1462
|
+
projectId?: string | number;
|
|
1462
1463
|
}
|
|
1463
1464
|
interface DashboardTileQueryParams extends QueryParams {
|
|
1464
1465
|
queryIndex?: number;
|
|
@@ -1471,7 +1472,7 @@ interface ColumnSelect {
|
|
|
1471
1472
|
table_column: string;
|
|
1472
1473
|
custom: string;
|
|
1473
1474
|
}
|
|
1474
|
-
declare const runQueryOnly: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, scope, newColumns, displayOverrides, }: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1475
|
+
declare const runQueryOnly: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, scope, newColumns, displayOverrides, projectId, }: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1475
1476
|
declare const runQueryValidation: ({ text, domain, apiKey, token, cancelToken, }?: {
|
|
1476
1477
|
text?: string;
|
|
1477
1478
|
domain?: string;
|
|
@@ -1479,9 +1480,9 @@ declare const runQueryValidation: ({ text, domain, apiKey, token, cancelToken, }
|
|
|
1479
1480
|
token?: string;
|
|
1480
1481
|
cancelToken?: CancelTokenLike;
|
|
1481
1482
|
}) => Promise<axios.AxiosResponse<any, any, {}>>;
|
|
1482
|
-
declare const runQuery: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, newColumns, displayOverrides, }?: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1483
|
-
declare const runCachedDashboardQuery: ({ query, domain, apiKey, token, source, orders, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1484
|
-
declare const runCachedDashboardQueryPost: ({ query, domain, apiKey, token, source, orders, filters, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1483
|
+
declare const runQuery: ({ query, userSelection, userSelectionFinal, translation, test, domain, apiKey, token, source, filters, orders, tableFilters, pageSize, allowSuggestions, cancelToken, enableQueryValidation, skipQueryValidation, scope, newColumns, displayOverrides, projectId, }?: QueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1484
|
+
declare const runCachedDashboardQuery: ({ query, domain, apiKey, token, source, orders, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, projectId, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1485
|
+
declare const runCachedDashboardQueryPost: ({ query, domain, apiKey, token, source, orders, filters, tableFilters, allowSuggestions, cancelToken, scope, newColumns, queryIndex, tileKey, dashboardId, force, projectId, }?: DashboardTileQueryParams) => Promise<TransformedAxiosResponse | axios.AxiosResponse<any, any, {}>>;
|
|
1485
1486
|
declare const exportCSV: ({ queryId, domain, apiKey, token, filters, tableFilters, csvProgressCallback, source, scope, }?: {
|
|
1486
1487
|
queryId?: string;
|
|
1487
1488
|
domain?: string;
|