New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@gooddata/typings

Package Overview
Dependencies
Maintainers
36
Versions
304
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gooddata/typings - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

4

dist/index.d.ts

@@ -25,6 +25,7 @@ export declare namespace AFM {

localIdentifier: Identifier;
definition: ISimpleMeasureDefinition | IPopMeasureDefinition;
definition: MeasureDefinition;
alias?: string;
format?: string;
}
type MeasureDefinition = ISimpleMeasureDefinition | IPopMeasureDefinition;
interface ISimpleMeasureDefinition {

@@ -130,2 +131,3 @@ measure: ISimpleMeasure;

function isSimpleMeasureDefinition(definition: AFM.ISimpleMeasureDefinition | AFM.IPopMeasureDefinition): definition is AFM.ISimpleMeasureDefinition;
function isPopMeasureDefinition(definition: AFM.ISimpleMeasureDefinition | AFM.IPopMeasureDefinition): definition is AFM.IPopMeasureDefinition;
function isAttributeSortItem(sortItem: AFM.SortItem): sortItem is AFM.IAttributeSortItem;

@@ -132,0 +134,0 @@ function isMeasureSortItem(sortItem: AFM.SortItem): sortItem is AFM.IMeasureSortItem;

"use strict";
// Copyright (C) 2007-2017, GoodData(R) Corporation. All rights reserved.
exports.__esModule = true;

@@ -13,2 +14,6 @@ var AFM;

AFM.isSimpleMeasureDefinition = isSimpleMeasureDefinition;
function isPopMeasureDefinition(definition) {
return !!definition.popMeasure;
}
AFM.isPopMeasureDefinition = isPopMeasureDefinition;
function isAttributeSortItem(sortItem) {

@@ -15,0 +20,0 @@ return !!sortItem.attributeSortItem;

@@ -0,1 +1,3 @@

// Copyright (C) 2007-2017, GoodData(R) Corporation. All rights reserved.
export namespace AFM {

@@ -29,6 +31,8 @@ export interface IExecution {

localIdentifier: Identifier;
definition: ISimpleMeasureDefinition | IPopMeasureDefinition;
definition: MeasureDefinition;
alias?: string;
format?: string;
}
export type MeasureDefinition = ISimpleMeasureDefinition | IPopMeasureDefinition;

@@ -168,2 +172,8 @@ export interface ISimpleMeasureDefinition {

}
export function isPopMeasureDefinition(
definition: AFM.ISimpleMeasureDefinition | AFM.IPopMeasureDefinition
): definition is AFM.IPopMeasureDefinition {
return !!(definition as AFM.IPopMeasureDefinition).popMeasure;
}

@@ -170,0 +180,0 @@ export function isAttributeSortItem(sortItem: AFM.SortItem): sortItem is AFM.IAttributeSortItem {

{
"name": "@gooddata/typings",
"version": "0.0.1",
"version": "0.0.2",
"description": "TypeScript definition files for GoodData platform",

@@ -5,0 +5,0 @@ "typings": "dist/index.d.ts",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc