@lightdash/common 0.1378.5 → 0.1379.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/catalog.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/catalog.d.ts
CHANGED
@@ -62,6 +62,10 @@ export type ApiMetricsCatalog = {
|
|
62
62
|
status: 'ok';
|
63
63
|
results: KnexPaginatedData<ApiMetricsCatalogResults>;
|
64
64
|
};
|
65
|
+
export type ApiGetMetric = {
|
66
|
+
status: 'ok';
|
67
|
+
results: CompiledMetric;
|
68
|
+
};
|
65
69
|
export type CatalogMetadata = {
|
66
70
|
name: string;
|
67
71
|
description: string | undefined;
|