File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11import ExtendableError from 'extendable-error' ;
22export interface ErrorConfig {
33 message : string ;
4- time_thrown : string ;
5- data : any ;
6- options : any ;
4+ time_thrown ? : string ;
5+ data ? : any ;
6+ options ? : any ;
77}
88export interface ErrorInfo {
99 message : string ;
Original file line number Diff line number Diff line change 11{
22 "name" : " apollo-errors" ,
3- "version" : " 1.5 .1" ,
3+ "version" : " 1.6 .1" ,
44 "description" : " Machine-readable custom errors for Apollostack's GraphQL server" ,
55 "main" : " dist/index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ const isObject = d => Object.prototype.toString.call(d) === '[object Object]';
66
77export interface ErrorConfig {
88 message : string ;
9- time_thrown : string ;
10- data : any ,
11- options : any ,
9+ time_thrown ? : string ;
10+ data ? : any ,
11+ options ? : any ,
1212}
1313
1414export interface ErrorInfo {
You can’t perform that action at this time.
0 commit comments