@nextera.one/axis-server-sdk 2.2.5 → 2.2.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.
@@ -3018,8 +3018,11 @@ var init_intent_router = __esm({
3018
3018
  return this.intentRateLimits.get(intent);
3019
3019
  }
3020
3020
  async emitIntentObservers(bindings, context) {
3021
- if (!this.observerDispatcher || bindings.length === 0) return;
3022
- await this.observerDispatcher.dispatch(bindings, context);
3021
+ if (!this.observerDispatcher) return;
3022
+ await this.observerDispatcher.dispatch(
3023
+ bindings.length > 0 ? bindings : void 0,
3024
+ context
3025
+ );
3023
3026
  }
3024
3027
  async runIntentSensors(sensorBindings, intent, frame, stage, extras) {
3025
3028
  for (const binding of sensorBindings) {