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

houdini

Package Overview
Dependencies
Maintainers
1
Versions
630
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

houdini - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

4

build/generators/runtime/template/subscription.d.ts
import { Readable } from 'svelte/store';
import { Operation, GraphQLTagResult } from './types';
export default function subscription<_Subscription extends Operation<any, any>>(document: GraphQLTagResult, variables?: _Subscription['input']): Readable<_Subscription['result']>;
export default function subscription<_Subscription extends Operation<any, any>>(document: GraphQLTagResult, variables?: _Subscription['input']): {
data: Readable<_Subscription['result']>;
};
//# sourceMappingURL=subscription.d.ts.map

@@ -66,4 +66,4 @@ "use strict";

});
return { subscribe: store.subscribe };
return { data: { subscribe: store.subscribe } };
}
exports.default = subscription;
{
"name": "houdini",
"version": "0.4.0",
"version": "0.4.1",
"description": "",

@@ -40,3 +40,3 @@ "scripts": {

},
"gitHead": "8c833029377c070e33ebb3a3051307b0d6b0e5f3"
"gitHead": "4c2a764f977791254ff3b9d6eea66dd2e0c7602c"
}

@@ -15,3 +15,5 @@ // externals

variables?: _Subscription['input']
): Readable<_Subscription['result']> {
): {
data: Readable<_Subscription['result']>
} {
// make sure we got a query document

@@ -82,3 +84,3 @@ if (document.kind !== 'HoudiniSubscription') {

return { subscribe: store.subscribe }
return { data: { subscribe: store.subscribe } }
}

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