@gooddata/typings
Advanced tools
Comparing version 2.28.0 to 2.29.0
"use strict"; | ||
// (C) 2007-2020 GoodData Corporation | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
}; | ||
exports.__esModule = true; | ||
__export(require("./src/AFM")); | ||
__export(require("./src/ExecuteAFM")); | ||
__export(require("./src/Execution")); | ||
__export(require("./src/ExtendedDateFilters")); | ||
__export(require("./src/VisualizationInput")); | ||
__export(require("./src/VisualizationObject")); | ||
__export(require("./src/embedding/common")); | ||
__export(require("./src/embedding/ad")); | ||
__export(require("./src/embedding/kd")); | ||
__exportStar(require("./src/AFM"), exports); | ||
__exportStar(require("./src/ExecuteAFM"), exports); | ||
__exportStar(require("./src/Execution"), exports); | ||
__exportStar(require("./src/ExtendedDateFilters"), exports); | ||
__exportStar(require("./src/VisualizationInput"), exports); | ||
__exportStar(require("./src/VisualizationObject"), exports); | ||
__exportStar(require("./src/VisualizationClass"), exports); | ||
__exportStar(require("./src/Localization"), exports); | ||
__exportStar(require("./src/DashboardLayout"), exports); | ||
__exportStar(require("./src/DashboardExport"), exports); | ||
__exportStar(require("./src/KPI"), exports); | ||
__exportStar(require("./src/visualizationWidget"), exports); | ||
__exportStar(require("./src/AnalyticalDashboard"), exports); | ||
__exportStar(require("./src/embedding/common"), exports); | ||
__exportStar(require("./src/embedding/ad"), exports); | ||
__exportStar(require("./src/embedding/kd"), exports); | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
exports.__esModule = true; | ||
exports.AFM = void 0; | ||
// (C) 2007-2020 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var isEmpty = require("lodash/isEmpty"); |
"use strict"; | ||
exports.__esModule = true; | ||
exports.EmbeddedAnalyticalDesigner = void 0; | ||
// (C) 2020 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var common_1 = require("./common"); |
@@ -177,5 +177,5 @@ import { AFM } from '../AFM'; | ||
export declare namespace EmbeddedGdc { | ||
type IPositiveAttributeFilter = AFM.IPositiveAttributeFilter; | ||
type INegativeAttributeFilter = AFM.INegativeAttributeFilter; | ||
interface IAbsoluteDateFilter { | ||
export type IPositiveAttributeFilter = AFM.IPositiveAttributeFilter; | ||
export type INegativeAttributeFilter = AFM.INegativeAttributeFilter; | ||
export interface IAbsoluteDateFilter { | ||
absoluteDateFilter: { | ||
@@ -187,3 +187,3 @@ dataSet?: ObjQualifier; | ||
} | ||
interface IRelativeDateFilter { | ||
export interface IRelativeDateFilter { | ||
relativeDateFilter: { | ||
@@ -196,22 +196,22 @@ dataSet?: ObjQualifier; | ||
} | ||
type AttributeFilterItem = IPositiveAttributeFilter | INegativeAttributeFilter; | ||
type DateFilterItem = IAbsoluteDateFilter | IRelativeDateFilter; | ||
type FilterItem = DateFilterItem | AttributeFilterItem; | ||
type ObjQualifier = AFM.ObjQualifier; | ||
export type AttributeFilterItem = IPositiveAttributeFilter | INegativeAttributeFilter; | ||
export type DateFilterItem = IAbsoluteDateFilter | IRelativeDateFilter; | ||
export type FilterItem = DateFilterItem | AttributeFilterItem; | ||
export type ObjQualifier = AFM.ObjQualifier; | ||
type CompatibilityFilter = FilterItem | AFM.IExpressionFilter | AFM.IMeasureValueFilter; | ||
interface IRemoveDateFilterItem { | ||
export interface IRemoveDateFilterItem { | ||
dataSet: ObjQualifier; | ||
} | ||
interface IRemoveAttributeFilterItem { | ||
export interface IRemoveAttributeFilterItem { | ||
displayForm: ObjQualifier; | ||
} | ||
type RemoveFilterItem = IRemoveDateFilterItem | IRemoveAttributeFilterItem; | ||
function isDateFilter(filter: CompatibilityFilter): filter is DateFilterItem; | ||
function isRelativeDateFilter(filter: CompatibilityFilter): filter is IRelativeDateFilter; | ||
function isAbsoluteDateFilter(filter: CompatibilityFilter): filter is IAbsoluteDateFilter; | ||
const isAttributeFilter: typeof AFM.isAttributeFilter; | ||
const isPositiveAttributeFilter: typeof AFM.isPositiveAttributeFilter; | ||
const isNegativeAttributeFilter: typeof AFM.isNegativeAttributeFilter; | ||
const isObjIdentifierQualifier: typeof AFM.isObjIdentifierQualifier; | ||
const isObjectUriQualifier: typeof AFM.isObjectUriQualifier; | ||
export type RemoveFilterItem = IRemoveDateFilterItem | IRemoveAttributeFilterItem; | ||
export function isDateFilter(filter: CompatibilityFilter): filter is DateFilterItem; | ||
export function isRelativeDateFilter(filter: CompatibilityFilter): filter is IRelativeDateFilter; | ||
export function isAbsoluteDateFilter(filter: CompatibilityFilter): filter is IAbsoluteDateFilter; | ||
export const isAttributeFilter: typeof AFM.isAttributeFilter; | ||
export const isPositiveAttributeFilter: typeof AFM.isPositiveAttributeFilter; | ||
export const isNegativeAttributeFilter: typeof AFM.isNegativeAttributeFilter; | ||
export const isObjIdentifierQualifier: typeof AFM.isObjIdentifierQualifier; | ||
export const isObjectUriQualifier: typeof AFM.isObjectUriQualifier; | ||
/** | ||
@@ -221,3 +221,3 @@ * The filter context content that is used to exchange the filter context | ||
*/ | ||
interface IFilterContextContent { | ||
export interface IFilterContextContent { | ||
filters: FilterItem[]; | ||
@@ -229,7 +229,8 @@ } | ||
*/ | ||
interface IRemoveFilterContextContent { | ||
export interface IRemoveFilterContextContent { | ||
filters: RemoveFilterItem[]; | ||
} | ||
function isRemoveDateFilter(filter: any): filter is EmbeddedGdc.IRemoveDateFilterItem; | ||
function isRemoveAttributeFilter(filter: any): filter is EmbeddedGdc.IRemoveAttributeFilterItem; | ||
export function isRemoveDateFilter(filter: any): filter is EmbeddedGdc.IRemoveDateFilterItem; | ||
export function isRemoveAttributeFilter(filter: any): filter is EmbeddedGdc.IRemoveAttributeFilterItem; | ||
export {}; | ||
} |
"use strict"; | ||
exports.__esModule = true; | ||
exports.EmbeddedGdc = exports.getEventType = exports.isCommandFailedData = exports.GdcErrorType = exports.GdcEventType = exports.GdcProductName = void 0; | ||
// (C) 2020 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var isEmpty = require("lodash/isEmpty"); |
"use strict"; | ||
exports.__esModule = true; | ||
exports.EmbeddedKpiDashboard = void 0; | ||
// (C) 2020 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var common_1 = require("./common"); |
"use strict"; | ||
exports.__esModule = true; | ||
exports.ExecuteAFM = void 0; | ||
// (C) 2020 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var isEmpty = require("lodash/isEmpty"); |
"use strict"; | ||
exports.__esModule = true; | ||
exports.Execution = void 0; | ||
// (C) 2007-2018 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var Execution; |
"use strict"; | ||
exports.__esModule = true; | ||
exports.ExtendedDateFilters = void 0; | ||
var ExtendedDateFilters; | ||
@@ -4,0 +5,0 @@ (function (ExtendedDateFilters) { |
"use strict"; | ||
exports.__esModule = true; | ||
exports.VisualizationInput = void 0; | ||
// (C) 2019-2020 GoodData Corporation | ||
@@ -4,0 +5,0 @@ var AFM_1 = require("./AFM"); |
"use strict"; | ||
exports.__esModule = true; | ||
exports.VisualizationObject = void 0; | ||
var isEmpty = require("lodash/isEmpty"); | ||
@@ -4,0 +5,0 @@ var VisualizationObject; |
{ | ||
"name": "@gooddata/typings", | ||
"version": "2.28.0", | ||
"version": "2.29.0", | ||
"description": "TypeScript definition files for GoodData platform", | ||
@@ -25,3 +25,4 @@ "typings": "dist/index.d.ts", | ||
"index.ts", | ||
"README.md" | ||
"README.md", | ||
"NOTICE.txt" | ||
], | ||
@@ -66,7 +67,7 @@ "repository": { | ||
"@gooddata/tslint-config": "^1.0.0", | ||
"@types/jest": "^24.0.6", | ||
"@types/jest": "^27.0.3", | ||
"@types/lodash": "^4.14.121", | ||
"jest": "25.1.0", | ||
"jest-junit": "^3.0.0", | ||
"ts-jest": "25.2.1", | ||
"jest": "^27.4.5", | ||
"jest-junit": "^13.0.0", | ||
"ts-jest": "^27.1.2", | ||
"typescript": "^3.3.4000" | ||
@@ -73,0 +74,0 @@ }, |
@@ -53,4 +53,4 @@ # GoodData Typings | ||
## License | ||
Copyright (C) 2007-2018, GoodData(R) Corporation. All rights reserved. | ||
Copyright (C) 2007-2022, GoodData(R) Corporation. All rights reserved. | ||
For more information, please see [LICENSE](https://github.com/gooddata/gooddata-typings/blob/master/LICENSE) | ||
For more information, please see [LICENSE](https://github.com/gooddata/gooddata-typings/blob/master/LICENSE) and [NOTICE](https://github.com/gooddata/gooddata-typings/blob/master/NOTICE.txt) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
391235
80
6463
1