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

ember-graphql-adapter

Package Overview
Dependencies
Maintainers
3
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-graphql-adapter - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

14

addon/adapter.js

@@ -272,3 +272,15 @@ import DS from 'ember-data';

ajax: function(url, options) {
return request(url, options);
let adapter = this;
return new Ember.RSVP.Promise((resolve, reject) => {
return request(url, options).then(response => {
const adapterResponse = adapter.handleResponse(null, null, response);
if (response && adapterResponse.isAdapterError) {
Ember.run.join(null, reject, response);
} else {
Ember.run.join(null, resolve, response);
}
});
});
},

@@ -275,0 +287,0 @@

2

package.json
{
"name": "ember-graphql-adapter",
"version": "1.0.0",
"version": "1.0.1",
"description": "An Ember CLI adapter for GraphQL",

@@ -5,0 +5,0 @@ "keywords": [

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