@graphql-mesh/types 0.95.2 → 0.95.3
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 +2 -2
- package/typings/index.d.cts +1 -0
- package/typings/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-mesh/types",
|
|
3
|
-
"version": "0.95.
|
|
3
|
+
"version": "0.95.3",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@graphql-mesh/store": "^0.95.
|
|
6
|
+
"@graphql-mesh/store": "^0.95.3",
|
|
7
7
|
"@graphql-tools/utils": "^9.2.1 || ^10.0.0",
|
|
8
8
|
"graphql": "*",
|
|
9
9
|
"tslib": "^2.4.0"
|
package/typings/index.d.cts
CHANGED
|
@@ -157,6 +157,7 @@ export type Logger = {
|
|
|
157
157
|
error: (...args: any[]) => void;
|
|
158
158
|
debug: (...lazyArgs: LazyLoggerMessage[]) => void;
|
|
159
159
|
child: (name: string) => Logger;
|
|
160
|
+
addPrefix?: (prefix: string) => Logger;
|
|
160
161
|
};
|
|
161
162
|
export type SelectionSetParam = SelectionSetNode | DocumentNode | string | SelectionSetNode;
|
|
162
163
|
export type SelectionSetParamOrFactory = ((subtree: SelectionSetNode) => SelectionSetParam) | SelectionSetParam;
|
package/typings/index.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ export type Logger = {
|
|
|
157
157
|
error: (...args: any[]) => void;
|
|
158
158
|
debug: (...lazyArgs: LazyLoggerMessage[]) => void;
|
|
159
159
|
child: (name: string) => Logger;
|
|
160
|
+
addPrefix?: (prefix: string) => Logger;
|
|
160
161
|
};
|
|
161
162
|
export type SelectionSetParam = SelectionSetNode | DocumentNode | string | SelectionSetNode;
|
|
162
163
|
export type SelectionSetParamOrFactory = ((subtree: SelectionSetNode) => SelectionSetParam) | SelectionSetParam;
|