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

@elba-security/graphql-zeus

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elba-security/graphql-zeus - npm Package Compare versions

Comparing version

to
4.0.15

2

lib/Models/Environment.d.ts

@@ -1,1 +0,1 @@

export declare type Environment = 'browser' | 'node';
export type Environment = 'browser' | 'node';

@@ -8,3 +8,3 @@ import { TypeDefinitionDisplayStrings, TypeSystemDefinitionDisplayStrings } from "./DisplayMap";

}
export declare type AllTypes = ScalarTypes | Value | ValueDefinition | TypeDefinition | TypeDefinitionDisplayStrings | TypeSystemDefinition | TypeSystemDefinitionDisplayStrings | TypeExtension | Instances | Helpers | Type;
export type AllTypes = ScalarTypes | Value | ValueDefinition | TypeDefinition | TypeDefinitionDisplayStrings | TypeSystemDefinition | TypeSystemDefinitionDisplayStrings | TypeExtension | Instances | Helpers | Type;
export interface GraphQLNodeParams {

@@ -11,0 +11,0 @@ type?: AllTypes;

import { ParserTree } from "../Models";
import { JSONSchema7 } from 'json-schema';
export declare type JSONSchemaOverrideProperties<T> = Omit<JSONSchema7, 'properties'> & {
type JSONSchema7 = any;
export type JSONSchemaOverrideProperties<T> = Omit<JSONSchema7, 'properties'> & {
properties: T extends {

@@ -10,4 +10,4 @@ [P in keyof T]: T[P];

};
declare type ExtractPayLoad<T> = T extends [infer PayLoad, any] ? PayLoad : T;
export declare type OverrideFormSchema<Y = any> = {
type ExtractPayLoad<T> = T extends [infer PayLoad, any] ? PayLoad : T;
export type OverrideFormSchema<Y = any> = {
[P in keyof Y]?: {

@@ -19,6 +19,6 @@ [R in keyof Y[P]]?: (generated: JSONSchemaOverrideProperties<ExtractPayLoad<Y[P][R]>>) => JSONSchemaOverrideProperties<Partial<ExtractPayLoad<Y[P][R]>>> | undefined;

static parse(parserTree: ParserTree): {
inputs: Record<string, JSONSchema7>;
types: Record<string, Record<string, JSONSchema7>>;
inputs: Record<string, any>;
types: Record<string, Record<string, any>>;
};
}
export {};
import { ParserField } from "../../Models";
export declare const resolveReturnFromRoot: (i: ParserField, usages?: string[] | undefined) => string;
export declare const resolveReturnFromRoot: (i: ParserField, usages?: string[]) => string;

@@ -1,1 +0,1 @@

export declare const graphqlErrorTypeScript = "\nexport class GraphQLError extends Error {\n constructor(public response: GraphQLResponse) {\n super(\"\");\n console.error(response);\n }\n toString() {\n return \"GraphQL Response Error\";\n }\n }\n";
export declare const graphqlErrorTypeScript = "\nexport class GraphQLError extends Error {\n constructor(public response: GraphQLResponse) {\n super(\"\");\n }\n toString() {\n return \"GraphQL Response Error\";\n }\n }\n";

@@ -8,3 +8,2 @@ "use strict";

super("");
console.error(response);
}

@@ -11,0 +10,0 @@ toString() {

@@ -1,2 +0,2 @@

export declare const commonImports: (esModule?: boolean | undefined) => string;
export declare const commonImports: (esModule?: boolean) => string;
export declare const envSpecificImports: (env: string) => string;
import { GraphQLSchema } from 'graphql';
export declare class Utils {
static getFromUrl: (url: string, header?: string | string[] | undefined) => Promise<string>;
static getFromUrl: (url: string, header?: string | string[]) => Promise<string>;
static printFullSchema: (schema: GraphQLSchema) => string;
}
{
"name": "@elba-security/graphql-zeus",
"version": "4.0.14",
"version": "4.0.15",
"private": false,

@@ -37,4 +37,4 @@ "license": "MIT",

"@babel/preset-env": "^7.11.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/graphql": "^14.5.0",

@@ -47,3 +47,3 @@ "@types/jest": "^25.1.4",

"@typescript-eslint/parser": "^4.15.0",
"cz-conventional-changelog": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.19.0",

@@ -53,7 +53,5 @@ "eslint-config-prettier": "^7.2.0",

"husky": "^4.2.3",
"jest": "^25.2.4",
"json-schema": "^0.3.0",
"mocha": "^7.1.0",
"jest": "^29.5.0",
"prettier": "^2.0.2",
"ts-jest": "^26.5.1",
"ts-jest": "^29.1.0",
"ts-node": "^9.0.0",

@@ -60,0 +58,0 @@ "ts-toolbelt": "^6.3.6",

Sorry, the diff of this file is not supported yet