@pothos/plugin-relay
Advanced tools
Comparing version 3.3.0 to 3.3.1
# Change Log | ||
## 3.3.1 | ||
### Patch Changes | ||
- ab4a9ae4: Fix some type compatibility issues when skipLibCheck is false | ||
## 3.3.0 | ||
@@ -4,0 +10,0 @@ |
@@ -19,4 +19,4 @@ import { FieldKind, FieldNullability, FieldOptionsFromKind, FieldRef, FieldRequiredness, InputFieldMap, InputFieldRef, InputFieldsFromShape, InputShapeFromFields, InputShapeFromTypeParam, inputShapeKey, InterfaceParam, NormalizeArgs, ObjectFieldsShape, ObjectFieldThunk, ObjectParam, OutputShape, OutputType, ParentShape, Resolver, SchemaTypes, ShapeFromTypeParam } from '@pothos/core'; | ||
Connection: undefined extends PartialTypes['Connection'] ? {} : PartialTypes['Connection'] & {}; | ||
DefaultEdgesNullability: undefined extends PartialTypes['DefaultEdgesNullability'] ? DefaultEdgesNullability : PartialTypes['DefaultEdgesNullability']; | ||
DefaultNodeNullability: undefined extends PartialTypes['DefaultNodeNullability'] ? false : PartialTypes['DefaultNodeNullability']; | ||
DefaultEdgesNullability: undefined extends PartialTypes['DefaultEdgesNullability'] ? DefaultEdgesNullability : NonNullable<PartialTypes['DefaultEdgesNullability']>; | ||
DefaultNodeNullability: undefined extends PartialTypes['DefaultNodeNullability'] ? false : NonNullable<PartialTypes['DefaultNodeNullability']> & boolean; | ||
} | ||
@@ -23,0 +23,0 @@ interface SchemaBuilder<Types extends SchemaTypes> { |
@@ -19,4 +19,4 @@ import { FieldKind, FieldNullability, FieldOptionsFromKind, FieldRef, FieldRequiredness, InputFieldMap, InputFieldRef, InputFieldsFromShape, InputShapeFromFields, InputShapeFromTypeParam, inputShapeKey, InterfaceParam, NormalizeArgs, ObjectFieldsShape, ObjectFieldThunk, ObjectParam, OutputShape, OutputType, ParentShape, Resolver, SchemaTypes, ShapeFromTypeParam } from '@pothos/core'; | ||
Connection: undefined extends PartialTypes['Connection'] ? {} : PartialTypes['Connection'] & {}; | ||
DefaultEdgesNullability: undefined extends PartialTypes['DefaultEdgesNullability'] ? DefaultEdgesNullability : PartialTypes['DefaultEdgesNullability']; | ||
DefaultNodeNullability: undefined extends PartialTypes['DefaultNodeNullability'] ? false : PartialTypes['DefaultNodeNullability']; | ||
DefaultEdgesNullability: undefined extends PartialTypes['DefaultEdgesNullability'] ? DefaultEdgesNullability : NonNullable<PartialTypes['DefaultEdgesNullability']>; | ||
DefaultNodeNullability: undefined extends PartialTypes['DefaultNodeNullability'] ? false : NonNullable<PartialTypes['DefaultNodeNullability']> & boolean; | ||
} | ||
@@ -23,0 +23,0 @@ interface SchemaBuilder<Types extends SchemaTypes> { |
{ | ||
"name": "@pothos/plugin-relay", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"description": "A Pothos plugin for adding relay style connections, nodes, and cursor based pagination to your GraphQL schema", | ||
@@ -39,3 +39,3 @@ "main": "./lib/index.js", | ||
"@pothos/core": "3.1.2", | ||
"@pothos/test-utils": "1.0.0", | ||
"@pothos/test-utils": "1.0.1", | ||
"graphql": "16.3.0", | ||
@@ -42,0 +42,0 @@ "graphql-subscriptions": "^2.0.0", |
@@ -68,6 +68,6 @@ import { | ||
? DefaultEdgesNullability | ||
: PartialTypes['DefaultEdgesNullability']; | ||
: NonNullable<PartialTypes['DefaultEdgesNullability']>; | ||
DefaultNodeNullability: undefined extends PartialTypes['DefaultNodeNullability'] | ||
? false | ||
: PartialTypes['DefaultNodeNullability']; | ||
: NonNullable<PartialTypes['DefaultNodeNullability']> & boolean; | ||
} | ||
@@ -74,0 +74,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
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
380770