Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gooddata

Package Overview
Dependencies
Maintainers
1
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gooddata - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "gooddata",
"version": "1.0.1",
"version": "1.0.2",
"author": "GoodData",

@@ -5,0 +5,0 @@ "description": "GoodData JavaScript SDK",

@@ -121,8 +121,9 @@ // Copyright (C) 2007-2014, GoodData(R) Corporation. All rights reserved.

const { result, status } = r;
// After the retrieving computed tabularData, resolve the promise
executedReport.rawData =
(result && result.tabularDataResult) ? result.tabularDataResult.values : [];
executedReport.isLoaded = true;
executedReport.isEmpty = (status === 204);
return executedReport;
return Object.assign({}, executedReport, {
rawData: get(result, 'tabularDataResult.values', []),
warnings: get(result, 'tabularDataResult.warnings', []),
isLoaded: true,
isEmpty: status === 204
});
});

@@ -129,0 +130,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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