@m1212e/rumble 0.16.17 → 0.16.19
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/out/index.cjs +16 -8
- package/out/index.cjs.map +1 -1
- package/out/index.d.cts +6 -2
- package/out/index.d.cts.map +1 -1
- package/out/index.d.mts +7 -3
- package/out/index.d.mts.map +1 -1
- package/out/index.mjs +16 -8
- package/out/index.mjs.map +1 -1
- package/package.json +1 -1
package/out/index.d.cts
CHANGED
|
@@ -4287,9 +4287,13 @@ type RumbleInput<UserContext extends Record<string, any>, DB extends DrizzleInst
|
|
|
4287
4287
|
*/
|
|
4288
4288
|
otel?: {
|
|
4289
4289
|
/**
|
|
4290
|
-
*
|
|
4290
|
+
* Whether otel tracing should be enabled. This will create a tracer if none is provided.
|
|
4291
4291
|
*/
|
|
4292
|
-
|
|
4292
|
+
enabled?: boolean;
|
|
4293
|
+
/**
|
|
4294
|
+
* The tracer to use. If enabled is true and no tracer is provided, a tracer will be created.
|
|
4295
|
+
*/
|
|
4296
|
+
tracer?: Tracer;
|
|
4293
4297
|
/**
|
|
4294
4298
|
* You can pass options to the tracing wrapper
|
|
4295
4299
|
*/
|