@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 +1 -3
- package/package.json +1 -1
- package/typings/index.d.cts +0 -5
- package/typings/index.d.ts +0 -5
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`) -
|
|
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
package/typings/index.d.cts
CHANGED
|
@@ -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
|
package/typings/index.d.ts
CHANGED
|
@@ -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
|