@walkeros/core 4.3.0-next-1784120651691 → 4.3.0
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/CHANGELOG.md +1 -1
- package/dist/dev.d.mts +2 -0
- package/dist/dev.d.ts +2 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/dev.d.mts
CHANGED
|
@@ -8147,6 +8147,8 @@ interface PushResult {
|
|
|
8147
8147
|
done?: Record<string, Ref>;
|
|
8148
8148
|
queued?: Record<string, Ref>;
|
|
8149
8149
|
failed?: Record<string, Ref>;
|
|
8150
|
+
/** Event was intentionally not forwarded: a transformer chain stopped it. */
|
|
8151
|
+
dropped?: boolean;
|
|
8150
8152
|
}
|
|
8151
8153
|
|
|
8152
8154
|
type AnyFunction<P extends unknown[] = never[], R = unknown> = (...args: P) => R;
|
package/dist/dev.d.ts
CHANGED
|
@@ -8147,6 +8147,8 @@ interface PushResult {
|
|
|
8147
8147
|
done?: Record<string, Ref>;
|
|
8148
8148
|
queued?: Record<string, Ref>;
|
|
8149
8149
|
failed?: Record<string, Ref>;
|
|
8150
|
+
/** Event was intentionally not forwarded: a transformer chain stopped it. */
|
|
8151
|
+
dropped?: boolean;
|
|
8150
8152
|
}
|
|
8151
8153
|
|
|
8152
8154
|
type AnyFunction<P extends unknown[] = never[], R = unknown> = (...args: P) => R;
|
package/dist/index.d.mts
CHANGED
|
@@ -1228,6 +1228,8 @@ interface PushResult {
|
|
|
1228
1228
|
done?: Record<string, Ref>;
|
|
1229
1229
|
queued?: Record<string, Ref>;
|
|
1230
1230
|
failed?: Record<string, Ref>;
|
|
1231
|
+
/** Event was intentionally not forwarded: a transformer chain stopped it. */
|
|
1232
|
+
dropped?: boolean;
|
|
1231
1233
|
}
|
|
1232
1234
|
type Layer = Array<IArguments | DeepPartialEvent | unknown[]>;
|
|
1233
1235
|
|
|
@@ -1396,6 +1398,8 @@ interface ChainResult {
|
|
|
1396
1398
|
event: DeepPartialEvent | DeepPartialEvent[] | null;
|
|
1397
1399
|
respond?: RespondFn;
|
|
1398
1400
|
stopped?: true;
|
|
1401
|
+
/** Transformer that stopped the chain (returned false or threw). */
|
|
1402
|
+
droppedBy?: string;
|
|
1399
1403
|
}
|
|
1400
1404
|
/**
|
|
1401
1405
|
* The main transformer function.
|
package/dist/index.d.ts
CHANGED
|
@@ -1228,6 +1228,8 @@ interface PushResult {
|
|
|
1228
1228
|
done?: Record<string, Ref>;
|
|
1229
1229
|
queued?: Record<string, Ref>;
|
|
1230
1230
|
failed?: Record<string, Ref>;
|
|
1231
|
+
/** Event was intentionally not forwarded: a transformer chain stopped it. */
|
|
1232
|
+
dropped?: boolean;
|
|
1231
1233
|
}
|
|
1232
1234
|
type Layer = Array<IArguments | DeepPartialEvent | unknown[]>;
|
|
1233
1235
|
|
|
@@ -1396,6 +1398,8 @@ interface ChainResult {
|
|
|
1396
1398
|
event: DeepPartialEvent | DeepPartialEvent[] | null;
|
|
1397
1399
|
respond?: RespondFn;
|
|
1398
1400
|
stopped?: true;
|
|
1401
|
+
/** Transformer that stopped the chain (returned false or threw). */
|
|
1402
|
+
droppedBy?: string;
|
|
1399
1403
|
}
|
|
1400
1404
|
/**
|
|
1401
1405
|
* The main transformer function.
|