@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.js
CHANGED
|
@@ -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
|
|
3022
|
-
await this.observerDispatcher.dispatch(
|
|
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) {
|