@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.
@@ -3091,8 +3091,11 @@ var init_intent_router = __esm({
3091
3091
  return this.intentRateLimits.get(intent);
3092
3092
  }
3093
3093
  async emitIntentObservers(bindings, context) {
3094
- if (!this.observerDispatcher || bindings.length === 0) return;
3095
- await this.observerDispatcher.dispatch(bindings, context);
3094
+ if (!this.observerDispatcher) return;
3095
+ await this.observerDispatcher.dispatch(
3096
+ bindings.length > 0 ? bindings : void 0,
3097
+ context
3098
+ );
3096
3099
  }
3097
3100
  async runIntentSensors(sensorBindings, intent, frame, stage, extras) {
3098
3101
  for (const binding of sensorBindings) {