@common-stack/graphql-api 6.0.1-alpha.1 → 6.0.1-alpha.7

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.
@@ -1,22 +1,22 @@
1
1
  export declare const resolvers: {
2
- AnyObject: import("graphql").GraphQLScalarType;
2
+ AnyObject: import("graphql").GraphQLScalarType<unknown, unknown>;
3
3
  Date: any;
4
4
  Time: any;
5
- Timestamp: import("graphql").GraphQLScalarType;
6
- URI: import("graphql").GraphQLScalarType;
7
- URIInput: import("graphql").GraphQLScalarType;
5
+ Timestamp: import("graphql").GraphQLScalarType<Date, number>;
6
+ URI: import("graphql").GraphQLScalarType<unknown, unknown>;
7
+ URIInput: import("graphql").GraphQLScalarType<unknown, unknown>;
8
8
  DateTime: any;
9
- JSON: import("graphql").GraphQLScalarType;
10
- JSONObject: import("graphql").GraphQLScalarType;
9
+ JSON: import("graphql").GraphQLScalarType<unknown, unknown>;
10
+ JSONObject: import("graphql").GraphQLScalarType<unknown, unknown>;
11
11
  };
12
12
  export declare const resolverFunc: (options: any) => {
13
- AnyObject: import("graphql").GraphQLScalarType;
13
+ AnyObject: import("graphql").GraphQLScalarType<unknown, unknown>;
14
14
  Date: any;
15
15
  Time: any;
16
- Timestamp: import("graphql").GraphQLScalarType;
17
- URI: import("graphql").GraphQLScalarType;
18
- URIInput: import("graphql").GraphQLScalarType;
16
+ Timestamp: import("graphql").GraphQLScalarType<Date, number>;
17
+ URI: import("graphql").GraphQLScalarType<unknown, unknown>;
18
+ URIInput: import("graphql").GraphQLScalarType<unknown, unknown>;
19
19
  DateTime: any;
20
- JSON: import("graphql").GraphQLScalarType;
21
- JSONObject: import("graphql").GraphQLScalarType;
20
+ JSON: import("graphql").GraphQLScalarType<unknown, unknown>;
21
+ JSONObject: import("graphql").GraphQLScalarType<unknown, unknown>;
22
22
  };
package/lib/index.d.ts CHANGED
@@ -4,5 +4,5 @@ export { resolvers };
4
4
  export { schema as rootSchemaDef };
5
5
  export * from './scalars';
6
6
  export * from './utils';
7
- declare const _default: Feature<import("@common-stack/server-core").ConfigurationScope>;
7
+ declare const _default: Feature<import("@common-stack/server-core").ConfigurationScope, any>;
8
8
  export default _default;
@@ -1,2 +1,2 @@
1
1
  import { GraphQLScalarType } from 'graphql';
2
- export declare const GraphQLAnyObject: GraphQLScalarType;
2
+ export declare const GraphQLAnyObject: GraphQLScalarType<unknown, unknown>;
@@ -1,3 +1,3 @@
1
1
  import { GraphQLScalarType } from 'graphql';
2
- declare const TimestampType: GraphQLScalarType;
2
+ declare const TimestampType: GraphQLScalarType<Date, number>;
3
3
  export default TimestampType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/graphql-api",
3
- "version": "6.0.1-alpha.1",
3
+ "version": "6.0.1-alpha.7",
4
4
  "description": "graphql api for higher packages to depend on",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "peerDependencies": {
29
29
  "@cdm-logger/core": ">=7.0.12",
30
- "@common-stack/server-core": "6.0.1-alpha.0",
30
+ "@common-stack/server-core": "6.0.1-alpha.6",
31
31
  "lodash": "^4.17.21"
32
32
  },
33
33
  "publishConfig": {
@@ -36,5 +36,5 @@
36
36
  "typescript": {
37
37
  "definition": "lib/index.d.ts"
38
38
  },
39
- "gitHead": "9687cd0008b5ea47b531a13763ca934e5ea26f13"
39
+ "gitHead": "d3557acfab2a095415d0381765eaaebd14329b99"
40
40
  }