@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 CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@graphql-mesh/types",
3
- "version": "0.95.2",
3
+ "version": "0.95.3",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
- "@graphql-mesh/store": "^0.95.2",
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"
@@ -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;
@@ -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;