@solibo/home-api 1.16.7 → 1.16.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.
- package/kotlinx-coroutines-core.mjs +7 -7
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +40 -2096
- package/solibo-sdk-sdk-home-api.mjs +142612 -170004
|
@@ -223,11 +223,6 @@ initMetadataForClass(SendBroadcast, 'SendBroadcast', VOID, VOID, [Waiter]);
|
|
|
223
223
|
initMetadataForClass(BufferedChannelIterator, 'BufferedChannelIterator', VOID, VOID, [Waiter], [0, 3]);
|
|
224
224
|
initMetadataForCoroutine($sendCOROUTINE$, CoroutineImpl);
|
|
225
225
|
initMetadataForCoroutine($receiveCOROUTINE$, CoroutineImpl);
|
|
226
|
-
function close$default(cause, $super) {
|
|
227
|
-
cause = cause === VOID ? null : cause;
|
|
228
|
-
return $super === VOID ? this.l19(cause) : $super.l19.call(this, cause);
|
|
229
|
-
}
|
|
230
|
-
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
231
226
|
function cancel$default_0(cause, $super) {
|
|
232
227
|
cause = cause === VOID ? null : cause;
|
|
233
228
|
var tmp;
|
|
@@ -240,7 +235,12 @@ function cancel$default_0(cause, $super) {
|
|
|
240
235
|
return tmp;
|
|
241
236
|
}
|
|
242
237
|
initMetadataForInterface(ReceiveChannel, 'ReceiveChannel', VOID, VOID, VOID, [0]);
|
|
243
|
-
|
|
238
|
+
function close$default(cause, $super) {
|
|
239
|
+
cause = cause === VOID ? null : cause;
|
|
240
|
+
return $super === VOID ? this.l19(cause) : $super.l19.call(this, cause);
|
|
241
|
+
}
|
|
242
|
+
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
243
|
+
initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 4, 0, 3]);
|
|
244
244
|
initMetadataForClass(WaiterEB, 'WaiterEB');
|
|
245
245
|
initMetadataForClass(ReceiveCatching, 'ReceiveCatching', VOID, VOID, [Waiter]);
|
|
246
246
|
initMetadataForObject(Factory, 'Factory');
|
|
@@ -250,7 +250,7 @@ initMetadataForCompanion(Companion);
|
|
|
250
250
|
initMetadataForClass(ChannelResult, 'ChannelResult');
|
|
251
251
|
initMetadataForClass(ClosedReceiveChannelException, 'ClosedReceiveChannelException', VOID, NoSuchElementException);
|
|
252
252
|
initMetadataForClass(ClosedSendChannelException, 'ClosedSendChannelException', VOID, IllegalStateException);
|
|
253
|
-
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [
|
|
253
|
+
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [ReceiveChannel, SendChannel], [1, 0]);
|
|
254
254
|
initMetadataForClass(ConflatedBufferedChannel, 'ConflatedBufferedChannel', VOID, BufferedChannel, VOID, [1, 0]);
|
|
255
255
|
initMetadataForInterface(ProducerScope, 'ProducerScope', VOID, VOID, [CoroutineScope, SendChannel], [1]);
|
|
256
256
|
initMetadataForClass(ProducerCoroutine, 'ProducerCoroutine', VOID, ChannelCoroutine, [ProducerScope], [1, 0]);
|
package/ktor-ktor-websockets.mjs
CHANGED
|
@@ -79,8 +79,8 @@ import {
|
|
|
79
79
|
_ChannelResult___get_isClosed__impl__mg7kuu3a26on4apn4j4 as _ChannelResult___get_isClosed__impl__mg7kuu,
|
|
80
80
|
close$defaultlxi0kykibhye as close$default,
|
|
81
81
|
cancel$default2imfx8rp1ubvu as cancel$default,
|
|
82
|
-
SendChannel38sllbxw662ws as SendChannel,
|
|
83
82
|
ReceiveChannel24wu5e2tj9lbp as ReceiveChannel,
|
|
83
|
+
SendChannel38sllbxw662ws as SendChannel,
|
|
84
84
|
} from './kotlinx-coroutines-core.mjs';
|
|
85
85
|
import {
|
|
86
86
|
get_isTraceEnabled82xibuu04nxp as get_isTraceEnabled,
|
|
@@ -144,7 +144,7 @@ initMetadataForCompanion(Companion_4);
|
|
|
144
144
|
initMetadataForClass(ChannelConfig, 'ChannelConfig');
|
|
145
145
|
initMetadataForClass(ChannelOverflow, 'ChannelOverflow', VOID, Enum);
|
|
146
146
|
initMetadataForCompanion(Companion_5);
|
|
147
|
-
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [
|
|
147
|
+
initMetadataForClass(BoundedChannel, 'BoundedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 0]);
|
|
148
148
|
initMetadataForClass(ChannelOverflowException, 'ChannelOverflowException', VOID, RuntimeException);
|
|
149
149
|
initMetadataForInterface(WebSocketExtension, 'WebSocketExtension');
|
|
150
150
|
initMetadataForClass(WebSocketExtensionsConfig, 'WebSocketExtensionsConfig', WebSocketExtensionsConfig);
|