Socket
Socket
Sign inDemoInstall

github-graphql-api

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.0.3

4

dist/github.d.ts
/// <reference types="node" />
import { Dict, Options } from './types';
import { URL } from 'url';
import { UrlWithStringQuery } from 'url';
export declare class GitHub {
token: string;
apiUrl: string;
url: URL;
url: UrlWithStringQuery;
constructor(config: Options);

@@ -9,0 +9,0 @@ query(query: string, variables?: Dict<any>): Promise<any>;

@@ -46,3 +46,3 @@ "use strict";

this.apiUrl = config.apiUrl;
this.url = new url_1.URL(this.apiUrl);
this.url = url_1.parse(this.apiUrl);
}

@@ -49,0 +49,0 @@ GitHub.prototype.query = function (query, variables) {

{
"name": "github-graphql-api",
"version": "1.0.2",
"version": "1.0.3",
"description": "A node client for the GitHub GraphQL API with minimal dependencies created with TypeScript.",

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc