@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.
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/dist/sensors/index.js +5 -2
- package/dist/sensors/index.js.map +1 -1
- package/dist/sensors/index.mjs +5 -2
- package/dist/sensors/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/sensors/index.mjs
CHANGED
|
@@ -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
|
|
3095
|
-
await this.observerDispatcher.dispatch(
|
|
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) {
|