intelica-library-project 20.0.8 → 20.0.9
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.
|
@@ -2180,6 +2180,7 @@ class Shared {
|
|
|
2180
2180
|
container,
|
|
2181
2181
|
...(options?.height && { height: options.height }),
|
|
2182
2182
|
...(options?.width && { width: options.width }),
|
|
2183
|
+
}, {
|
|
2183
2184
|
...(options?.onMessage && { onMessage: this.toSdkMessageListener(options.onMessage) }),
|
|
2184
2185
|
});
|
|
2185
2186
|
}
|
|
@@ -2198,8 +2199,10 @@ class Shared {
|
|
|
2198
2199
|
container,
|
|
2199
2200
|
...(options?.height && { height: options.height }),
|
|
2200
2201
|
...(options?.width && { width: options.width }),
|
|
2202
|
+
}, {
|
|
2203
|
+
...(sdkParameters ? { parameters: sdkParameters } : {}),
|
|
2201
2204
|
...(options?.onMessage && { onMessage: this.toSdkMessageListener(options.onMessage) }),
|
|
2202
|
-
}
|
|
2205
|
+
});
|
|
2203
2206
|
}
|
|
2204
2207
|
toSdkMessageListener(emit) {
|
|
2205
2208
|
return (changeEvent) => {
|