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
54
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 2.24.9 to 2.25.0

24

dist/src/embedding/kd.d.ts

@@ -148,3 +148,16 @@ import { IGdcMessageEvent, GdcProductName, IGdcMessageEnvelope, IDrillableItemsCommandBody, EmbeddedGdc } from './common';

*/
RemoveFilterContextFinished = "removeFilterContextFinished"
RemoveFilterContextFinished = "removeFilterContextFinished",
/**
* Type that represents started drill to URL. The event does not contain an URL. The event can be used as
* notification to display a loading indicator as the URL resolving takes some time. The URL is sent in
* DrillToUrlResolved event which is posted after the URL is resolved. The event also contains an ID that can
* be matched with ID in subsequently posted DrillToUrlResolved event.
*/
DrillToUrlStarted = "drillToUrlStarted",
/**
* Type that represents resolved drill to URL. The event is sent after DrillToUrlStarted event was posted and
* it contains the resolved URL. The event also contains an ID which can be matched with ID from
* DrillToUrlStarted event.
*/
DrillToUrlResolved = "drillToUrlResolved"
}

@@ -548,2 +561,11 @@ /**

type FilterContextChangedData = IGdcKdMessageEnvelope<GdcKdEventType.FilterContextChanged, FilterContextChangedBody>;
interface IDrillToUrlStartedDataBody {
id: string;
}
interface IDrillToUrlResolvedDataBody {
id: string;
url: string;
}
type DrillToUrlStartedData = IGdcKdMessageEnvelope<GdcKdEventType.DrillToUrlStarted, IDrillToUrlStartedDataBody>;
type DrillToUrlResolvedData = IGdcKdMessageEnvelope<GdcKdEventType.DrillToUrlResolved, IDrillToUrlResolvedDataBody>;
}

@@ -147,2 +147,15 @@ "use strict";

GdcKdEventType["RemoveFilterContextFinished"] = "removeFilterContextFinished";
/**
* Type that represents started drill to URL. The event does not contain an URL. The event can be used as
* notification to display a loading indicator as the URL resolving takes some time. The URL is sent in
* DrillToUrlResolved event which is posted after the URL is resolved. The event also contains an ID that can
* be matched with ID in subsequently posted DrillToUrlResolved event.
*/
GdcKdEventType["DrillToUrlStarted"] = "drillToUrlStarted";
/**
* Type that represents resolved drill to URL. The event is sent after DrillToUrlStarted event was posted and
* it contains the resolved URL. The event also contains an ID which can be matched with ID from
* DrillToUrlStarted event.
*/
GdcKdEventType["DrillToUrlResolved"] = "drillToUrlResolved";
})(GdcKdEventType = EmbeddedKpiDashboard.GdcKdEventType || (EmbeddedKpiDashboard.GdcKdEventType = {}));

@@ -149,0 +162,0 @@ /**

2

package.json
{
"name": "@gooddata/typings",
"version": "2.24.9",
"version": "2.25.0",
"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