@zdavison/matador 2.0.5 → 2.0.6
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/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/envelope.d.ts +1 -6
- package/dist/types/envelope.d.ts.map +1 -1
- package/dist/types/envelope.js +3 -3
- package/package.json +1 -1
- package/src/types/envelope.ts +3 -6
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.cjs
CHANGED
|
@@ -545,10 +545,10 @@ function createEnvelope(options) {
|
|
|
545
545
|
}
|
|
546
546
|
};
|
|
547
547
|
}
|
|
548
|
-
function createDummyEnvelope(
|
|
548
|
+
function createDummyEnvelope(data) {
|
|
549
549
|
return createEnvelope({
|
|
550
|
-
data
|
|
551
|
-
eventKey: event.
|
|
550
|
+
data,
|
|
551
|
+
eventKey: "dummy.event.key",
|
|
552
552
|
targetSubscriber: "dummy-subscriber",
|
|
553
553
|
importance: "can-ignore"
|
|
554
554
|
});
|