@databrainhq/plugin 0.11.7 → 0.11.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/dist/components/Chart/SingleValueChart.d.ts +2 -1
- package/dist/hooks/useMetricCard.d.ts +0 -1
- package/dist/index.es.js +19350 -19169
- package/dist/index.umd.js +133 -134
- package/dist/types/app.d.ts +1 -0
- package/dist/utils/generated/graphql.d.ts +1 -2
- package/dist/webcomponents.es.js +17275 -17094
- package/dist/webcomponents.umd.js +130 -131
- package/package.json +1 -1
package/dist/types/app.d.ts
CHANGED
|
@@ -3972,7 +3972,6 @@ export type QueryExternalMetricQuery = {
|
|
|
3972
3972
|
__typename?: 'ExternalMetricQueryOutput';
|
|
3973
3973
|
data?: any | null;
|
|
3974
3974
|
timeTaken?: number | null;
|
|
3975
|
-
comparisonValue?: any | null;
|
|
3976
3975
|
totalRecords?: number | null;
|
|
3977
3976
|
} | null;
|
|
3978
3977
|
};
|
|
@@ -4357,7 +4356,7 @@ export declare const usePreviewTableMutation: <TError = unknown, TContext = unkn
|
|
|
4357
4356
|
integrationId?: InputMaybe<string> | undefined;
|
|
4358
4357
|
integrationName?: InputMaybe<string> | undefined;
|
|
4359
4358
|
}>, TContext>;
|
|
4360
|
-
export declare const QueryExternalMetricDocument = "\n query QueryExternalMetric($id: String = \"\", $clientId: String = \"\", $globalFilters: json = \"\", $rlsConditions: json = [], $filterValues: json = \"\", $tenancyLevel: String = \"\", $drillFilters: json = [], $limit: Int, $offset: Int) {\n externalMetricQuery(\n input: {externalMetricId: $id, clientId: $clientId, globalFilters: $globalFilters, rlsConditions: $rlsConditions, filterValues: $filterValues, tenancyLevel: $tenancyLevel, drillFilters: $drillFilters, limit: $limit, offset: $offset}\n ) {\n data\n timeTaken\n
|
|
4359
|
+
export declare const QueryExternalMetricDocument = "\n query QueryExternalMetric($id: String = \"\", $clientId: String = \"\", $globalFilters: json = \"\", $rlsConditions: json = [], $filterValues: json = \"\", $tenancyLevel: String = \"\", $drillFilters: json = [], $limit: Int, $offset: Int) {\n externalMetricQuery(\n input: {externalMetricId: $id, clientId: $clientId, globalFilters: $globalFilters, rlsConditions: $rlsConditions, filterValues: $filterValues, tenancyLevel: $tenancyLevel, drillFilters: $drillFilters, limit: $limit, offset: $offset}\n ) {\n data\n timeTaken\n totalRecords\n }\n}\n ";
|
|
4361
4360
|
export declare const useQueryExternalMetricQuery: <TData = QueryExternalMetricQuery, TError = unknown>(variables?: QueryExternalMetricQueryVariables, options?: UseQueryOptions<QueryExternalMetricQuery, TError, TData, import("react-query").QueryKey> | undefined) => import("react-query").UseQueryResult<TData, TError>;
|
|
4362
4361
|
export declare const RawCsvDocument = "\n mutation RawCsv($companyId: String = \"\", $recipientAddress: String = \"\", $sqlQuery: String = \"\", $metricName: String = \"\", $workspaceId: String = \"\") {\n sendRawCsv(\n input: {companyId: $companyId, recipientAddress: $recipientAddress, sqlQuery: $sqlQuery, metricName: $metricName, workspaceId: $workspaceId}\n ) {\n status\n error {\n message\n }\n }\n}\n ";
|
|
4363
4362
|
export declare const useRawCsvMutation: <TError = unknown, TContext = unknown>(options?: UseMutationOptions<RawCsvMutation, TError, Exact<{
|