corede-common
Advanced tools
Comparing version 5.1.53 to 5.1.55
export { IBaseGraphqlResponse, IGraphQLFormattedError, ISourceLocation, } from "./response/base-response.interface"; | ||
export { BaseGraphqlResponseFactory } from "./response/base-response.factory"; | ||
export { IBaseGraphqlRequest } from "./request/base-request.interface"; | ||
export { IBaseGraphqlRequest, IGraphqlVariables } from "./request/base-request.interface"; | ||
export { IBaseGraphqlErrorCause, IBaseGraphqlError, } from "./error/base-graphql-error"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,4 +0,4 @@ | ||
export interface IGraphqlVariables<TVariable, TFilter> { | ||
export interface IGraphqlVariables<TVariable = undefined, TFilter = undefined> { | ||
filter?: TFilter; | ||
input: TVariable; | ||
input?: TVariable; | ||
} | ||
@@ -5,0 +5,0 @@ export interface IBaseGraphqlRequest<TVariable = undefined, TFilter = undefined> { |
{ | ||
"name": "corede-common", | ||
"version": "5.1.53", | ||
"version": "5.1.55", | ||
"description": "The common utility functions, interfaces, types etc.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -8,3 +8,3 @@ export { | ||
export { IBaseGraphqlRequest } from "./request/base-request.interface"; | ||
export { IBaseGraphqlRequest, IGraphqlVariables } from "./request/base-request.interface"; | ||
@@ -11,0 +11,0 @@ export { |
@@ -1,4 +0,4 @@ | ||
export interface IGraphqlVariables<TVariable, TFilter> { | ||
export interface IGraphqlVariables<TVariable = undefined, TFilter = undefined> { | ||
filter?: TFilter; | ||
input: TVariable; | ||
input?: TVariable; | ||
} | ||
@@ -5,0 +5,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
499397