@gooddata/sdk-backend-spi
Advanced tools
Comparing version 8.0.0-alpha.53 to 8.0.0-alpha.54
@@ -7,3 +7,2 @@ export { IAnalyticalBackend, BackendCapabilities, AnalyticalBackendConfig, AnalyticalBackendFactory, prepareExecution, } from "./backend"; | ||
export { IExecutionFactory, AbstractExecutionFactory, IPreparedExecution, IExecutionResult, IDataView, } from "./workspace/execution"; | ||
export { DataViewFacade } from "./workspace/execution/facade"; | ||
export { DataValue, IMeasureDescriptor, IDimensionItemDescriptor, IDimensionDescriptor, IAttributeDescriptor, IMeasureGroupDescriptor, IResultAttributeHeader, IResultHeader, IResultMeasureHeader, IResultTotalHeader, ITotalDescriptor, isAttributeDescriptor, isMeasureGroupDescriptor, isTotalDescriptor, isMeasureDescriptor, isResultAttributeHeader, isResultMeasureHeader, isResultTotalHeader, resultHeaderName, attributeDescriptorLocalId, attributeDescriptorName, } from "./workspace/execution/results"; | ||
@@ -10,0 +9,0 @@ export { IWorkspaceSettingsService, IWorkspaceSettings } from "./workspace/settings"; |
@@ -13,4 +13,2 @@ "use strict"; | ||
exports.AbstractExecutionFactory = execution_1.AbstractExecutionFactory; | ||
var facade_1 = require("./workspace/execution/facade"); | ||
exports.DataViewFacade = facade_1.DataViewFacade; | ||
var results_1 = require("./workspace/execution/results"); | ||
@@ -17,0 +15,0 @@ exports.isAttributeDescriptor = results_1.isAttributeDescriptor; |
@@ -238,3 +238,3 @@ import { AttributeOrMeasure, IBucket, IDimension, IFilter, IInsightDefinition, SortItem, IExecutionDefinition, DimensionGenerator } from "@gooddata/sdk-model"; | ||
* | ||
* See also the {@link DataViewFacade}. This wrapper on top of this raw IDataView can be used to work | ||
* See also the `DataViewFacade`. This wrapper on top of this raw IDataView can be used to work | ||
* with the data in a way more convenient fashion. | ||
@@ -241,0 +241,0 @@ * |
@@ -1,2 +0,2 @@ | ||
import { IAttributeDisplayFormMetadataObject, IMeasureExpressionToken, ObjRef, IMetadataObject } from "@gooddata/sdk-model"; | ||
import { IAttributeDisplayFormMetadataObject, IMeasureExpressionToken, ObjRef, IMetadataObject, IAttributeMetadataObject } from "@gooddata/sdk-model"; | ||
/** | ||
@@ -26,2 +26,8 @@ * Service for querying workspace metadata objects | ||
getFactDatasetMeta(ref: ObjRef): Promise<IMetadataObject>; | ||
/** | ||
* Get metadata of attribute | ||
* @param ref - ref of the attribute to retrieve | ||
* @returns promise of attribute metadata object | ||
*/ | ||
getAttribute(ref: ObjRef): Promise<IAttributeMetadataObject>; | ||
} |
{ | ||
"name": "@gooddata/sdk-backend-spi", | ||
"version": "8.0.0-alpha.53", | ||
"version": "8.0.0-alpha.54", | ||
"author": "GoodData", | ||
@@ -36,3 +36,3 @@ "description": "GoodData Backend SPI abstraction interfaces", | ||
"dependencies": { | ||
"@gooddata/sdk-model": "^8.0.0-alpha.53", | ||
"@gooddata/sdk-model": "^8.0.0-alpha.54", | ||
"lodash": "^4.17.15", | ||
@@ -39,0 +39,0 @@ "spark-md5": "^3.0.0", |
@@ -36,4 +36,2 @@ // (C) 2019-2020 GoodData Corporation | ||
export { DataViewFacade } from "./workspace/execution/facade"; | ||
export { | ||
@@ -40,0 +38,0 @@ DataValue, |
@@ -298,3 +298,3 @@ // (C) 2019-2020 GoodData Corporation | ||
* | ||
* See also the {@link DataViewFacade}. This wrapper on top of this raw IDataView can be used to work | ||
* See also the `DataViewFacade`. This wrapper on top of this raw IDataView can be used to work | ||
* with the data in a way more convenient fashion. | ||
@@ -301,0 +301,0 @@ * |
@@ -7,2 +7,3 @@ // (C) 2019-2020 GoodData Corporation | ||
IMetadataObject, | ||
IAttributeMetadataObject, | ||
} from "@gooddata/sdk-model"; | ||
@@ -36,2 +37,9 @@ | ||
getFactDatasetMeta(ref: ObjRef): Promise<IMetadataObject>; | ||
/** | ||
* Get metadata of attribute | ||
* @param ref - ref of the attribute to retrieve | ||
* @returns promise of attribute metadata object | ||
*/ | ||
getAttribute(ref: ObjRef): Promise<IAttributeMetadataObject>; | ||
} |
Sorry, the diff of this file is too big to display
238310
66
6555