@m1212e/rumble 0.16.18 → 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 +3 -3
- package/out/index.cjs.map +1 -1
- package/out/index.d.cts.map +1 -1
- package/out/index.d.mts.map +1 -1
- package/out/index.mjs +3 -3
- package/out/index.mjs.map +1 -1
- package/package.json +1 -1
package/out/index.mjs
CHANGED
|
@@ -185,7 +185,7 @@ function mapNullFieldsToUndefined(obj) {
|
|
|
185
185
|
|
|
186
186
|
//#endregion
|
|
187
187
|
//#region package.json
|
|
188
|
-
var version = "0.16.
|
|
188
|
+
var version = "0.16.19";
|
|
189
189
|
|
|
190
190
|
//#endregion
|
|
191
191
|
//#region lib/helpers/mergeFilters.ts
|
|
@@ -1461,7 +1461,7 @@ var RuntimeFiltersPlugin = class extends BasePlugin {
|
|
|
1461
1461
|
};
|
|
1462
1462
|
if (this.tracer && this.tracerEnabled) return this.tracer.startActiveSpan(`apply_filters_${fieldConfig.name}`, async (span) => {
|
|
1463
1463
|
try {
|
|
1464
|
-
return await runFilters();
|
|
1464
|
+
return await runFilters(span);
|
|
1465
1465
|
} finally {
|
|
1466
1466
|
span.end();
|
|
1467
1467
|
}
|
|
@@ -1558,7 +1558,7 @@ export const db = drizzle(
|
|
|
1558
1558
|
];
|
|
1559
1559
|
if (rumbleInput.defaultLimit === void 0) rumbleInput.defaultLimit = 100;
|
|
1560
1560
|
if (rumbleInput.search?.enabled) initSearchIfApplicable(rumbleInput);
|
|
1561
|
-
if (rumbleInput.otel?.enabled && !rumbleInput.otel.tracer) trace.getTracer("@m1212e/rumble", version);
|
|
1561
|
+
if (rumbleInput.otel?.enabled && !rumbleInput.otel.tracer) rumbleInput.otel.tracer = trace.getTracer("@m1212e/rumble", version);
|
|
1562
1562
|
const abilityBuilder = createAbilityBuilder(rumbleInput);
|
|
1563
1563
|
const context = createContextFunction({
|
|
1564
1564
|
...rumbleInput,
|