@ptc-org/nestjs-query-graphql 1.0.0-alpha.3 → 1.0.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ptc-org/nestjs-query-graphql",
3
- "version": "1.0.0-alpha.3",
3
+ "version": "1.0.0-alpha.4",
4
4
  "description": "Nestjs graphql query adapter",
5
5
  "author": "doug-martin <doug@dougamartin.com>",
6
6
  "homepage": "https://github.com/tripss/nestjs-query#readme",
@@ -69,7 +69,7 @@ export declare type ResolverRelation<Relation> = {
69
69
  auth?: AuthorizerOptions<Relation>;
70
70
  } & DTONamesOpts & ResolverMethodOpts & QueryArgsTypeOpts<Relation> & Pick<ConnectionOptions, 'enableTotalCount'>;
71
71
  export declare type RelationTypeMap<RT> = Record<string, RT>;
72
- export declare type ResolverOneRelation<Relation> = Omit<ResolverRelation<Relation>, 'disableFilter' | 'disableSorting'>;
72
+ export declare type ResolverOneRelation<Relation> = Omit<ResolverRelation<Relation>, 'disableFilter' | 'disableSort'>;
73
73
  export declare type ResolverManyRelation<Relation> = ResolverRelation<Relation>;
74
74
  export declare type RelationsOpts<Relation = unknown> = {
75
75
  /**