@sprucelabs/mercury-event-emitter 43.0.93 → 43.0.95

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.
@@ -123,7 +123,6 @@ class AbstractEventEmitter {
123
123
  validateEmitPayload(schema, actualPayload, eventName) {
124
124
  if (schema) {
125
125
  try {
126
- //@ts-ignore
127
126
  (0, schema_1.validateSchemaValues)(schema, actualPayload ?? {});
128
127
  }
129
128
  catch (err) {
@@ -138,7 +137,6 @@ class AbstractEventEmitter {
138
137
  validateResponsePayload(schema, actualPayload, eventName) {
139
138
  if (schema) {
140
139
  try {
141
- //@ts-ignore
142
140
  (0, schema_1.validateSchemaValues)(schema, actualPayload ?? {});
143
141
  }
144
142
  catch (err) {
@@ -135,7 +135,6 @@ export default class AbstractEventEmitter {
135
135
  validateEmitPayload(schema, actualPayload, eventName) {
136
136
  if (schema) {
137
137
  try {
138
- //@ts-ignore
139
138
  validateSchemaValues(schema, actualPayload !== null && actualPayload !== void 0 ? actualPayload : {});
140
139
  }
141
140
  catch (err) {
@@ -150,7 +149,6 @@ export default class AbstractEventEmitter {
150
149
  validateResponsePayload(schema, actualPayload, eventName) {
151
150
  if (schema) {
152
151
  try {
153
- //@ts-ignore
154
152
  validateSchemaValues(schema, actualPayload !== null && actualPayload !== void 0 ? actualPayload : {});
155
153
  }
156
154
  catch (err) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "43.0.93",
6
+ "version": "43.0.95",
7
7
  "files": [
8
8
  "build"
9
9
  ],
@@ -100,5 +100,5 @@
100
100
  "^#spruce/(.*)$": "<rootDir>/build/.spruce/$1"
101
101
  }
102
102
  },
103
- "gitHead": "d618d5b43e1f79774aa34833f2c68e3ce2efb0c5"
103
+ "gitHead": "45a231395aee4e77a4894f94aed3567979329842"
104
104
  }