@envelop/sentry 8.0.0 → 9.0.0-alpha-20240322101149-b245bf53

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/README.md CHANGED
@@ -60,11 +60,9 @@ const getEnveloped = envelop({
60
60
 
61
61
  - `startTransaction` (default: `true`) - Starts a new transaction for every GraphQL Operation. When
62
62
  disabled, an already existing Transaction will be used.
63
- - `renameTransaction` (default: `false`) - Creates a Span for every resolve function.
63
+ - `renameTransaction` (default: `false`) - Renames Transaction.
64
64
  - `includeRawResult` (default: `false`) - Adds result of each resolver and operation to Span's data
65
65
  (available under "result")
66
- - `includeResolverArgs` (default: `false`) - Adds arguments of each resolver to Span's tag called
67
- "args"
68
66
  - `includeExecuteVariables` (default: `false`) - Adds operation's variables to a Scope (only in case
69
67
  of errors)
70
68
  - `appendTags` - See example above. Allow you to manipulate the tags reports on the Sentry
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@envelop/sentry",
3
- "version": "8.0.0",
3
+ "version": "9.0.0-alpha-20240322101149-b245bf53",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "@envelop/core": "^5.0.0",
@@ -19,11 +19,6 @@ export type SentryPluginOptions<PluginContext extends Record<string, any>> = {
19
19
  * @default false
20
20
  */
21
21
  includeRawResult?: boolean;
22
- /**
23
- * Adds arguments of each resolver to Span's tag called "args"
24
- * @default false
25
- */
26
- includeResolverArgs?: boolean;
27
22
  /**
28
23
  * Adds operation's variables to a Scope (only in case of errors)
29
24
  * @default false
@@ -19,11 +19,6 @@ export type SentryPluginOptions<PluginContext extends Record<string, any>> = {
19
19
  * @default false
20
20
  */
21
21
  includeRawResult?: boolean;
22
- /**
23
- * Adds arguments of each resolver to Span's tag called "args"
24
- * @default false
25
- */
26
- includeResolverArgs?: boolean;
27
22
  /**
28
23
  * Adds operation's variables to a Scope (only in case of errors)
29
24
  * @default false