@solibo/solibo-sdk 1.1.65 → 1.1.66
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/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/kotlin-kotlin-stdlib.mjs +15 -15
- package/kotlinx-coroutines-core.mjs +8 -8
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +12 -12
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
|
@@ -361,7 +361,7 @@ function addFormatStructureForDate(structure) {
|
|
|
361
361
|
function addFormatStructureForTime(structure) {
|
|
362
362
|
this.e1u(structure);
|
|
363
363
|
}
|
|
364
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
364
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
365
365
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
366
366
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
367
367
|
function set_fractionOfSecond(value) {
|
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -37,6 +37,17 @@ if (typeof Array.prototype.fill === 'undefined') {
|
|
|
37
37
|
Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
|
|
38
38
|
}
|
|
39
39
|
});
|
|
40
|
+
if (typeof Math.clz32 === 'undefined') {
|
|
41
|
+
Math.clz32 = function (log, LN2) {
|
|
42
|
+
return function (x) {
|
|
43
|
+
var asUint = x >>> 0;
|
|
44
|
+
if (asUint === 0) {
|
|
45
|
+
return 32;
|
|
46
|
+
}
|
|
47
|
+
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
48
|
+
};
|
|
49
|
+
}(Math.log, Math.LN2);
|
|
50
|
+
}
|
|
40
51
|
if (typeof Math.trunc === 'undefined') {
|
|
41
52
|
Math.trunc = function (x) {
|
|
42
53
|
if (isNaN(x)) {
|
|
@@ -53,17 +64,6 @@ if (typeof Math.log10 === 'undefined') {
|
|
|
53
64
|
return Math.log(x) * Math.LOG10E;
|
|
54
65
|
};
|
|
55
66
|
}
|
|
56
|
-
if (typeof Math.clz32 === 'undefined') {
|
|
57
|
-
Math.clz32 = function (log, LN2) {
|
|
58
|
-
return function (x) {
|
|
59
|
-
var asUint = x >>> 0;
|
|
60
|
-
if (asUint === 0) {
|
|
61
|
-
return 32;
|
|
62
|
-
}
|
|
63
|
-
return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
|
|
64
|
-
};
|
|
65
|
-
}(Math.log, Math.LN2);
|
|
66
|
-
}
|
|
67
67
|
if (typeof String.prototype.startsWith === 'undefined') {
|
|
68
68
|
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
69
69
|
position = position || 0;
|
|
@@ -128,8 +128,8 @@ initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
|
128
128
|
function asJsArrayView() {
|
|
129
129
|
return createJsArrayViewFrom(this);
|
|
130
130
|
}
|
|
131
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
132
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
131
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
|
|
132
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
|
|
133
133
|
initMetadataForCompanion(Companion_4);
|
|
134
134
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
135
135
|
initMetadataForCompanion(Companion_5);
|
|
@@ -153,7 +153,7 @@ initMetadataForClass(asList$1, VOID, VOID, AbstractList, [AbstractList, RandomAc
|
|
|
153
153
|
initMetadataForInterface(AutoCloseable, 'AutoCloseable');
|
|
154
154
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
155
155
|
initMetadataForObject(Unit, 'Unit');
|
|
156
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection,
|
|
156
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
|
|
157
157
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
158
158
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
159
159
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
|
|
@@ -165,7 +165,7 @@ initMetadataForCompanion(Companion_6);
|
|
|
165
165
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
|
|
166
166
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
|
|
167
167
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
168
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
168
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
|
|
169
169
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
|
|
170
170
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
171
171
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|
|
@@ -230,11 +230,6 @@ initMetadataForClass(SendBroadcast, 'SendBroadcast', VOID, VOID, [Waiter]);
|
|
|
230
230
|
initMetadataForClass(BufferedChannelIterator, 'BufferedChannelIterator', VOID, VOID, [Waiter], [0, 3]);
|
|
231
231
|
initMetadataForCoroutine($sendCOROUTINE$, CoroutineImpl);
|
|
232
232
|
initMetadataForCoroutine($receiveCOROUTINE$, CoroutineImpl);
|
|
233
|
-
function close$default(cause, $super) {
|
|
234
|
-
cause = cause === VOID ? null : cause;
|
|
235
|
-
return $super === VOID ? this.k2q(cause) : $super.k2q.call(this, cause);
|
|
236
|
-
}
|
|
237
|
-
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
238
233
|
function cancel$default_0(cause, $super) {
|
|
239
234
|
cause = cause === VOID ? null : cause;
|
|
240
235
|
var tmp;
|
|
@@ -247,7 +242,12 @@ function cancel$default_0(cause, $super) {
|
|
|
247
242
|
return tmp;
|
|
248
243
|
}
|
|
249
244
|
initMetadataForInterface(ReceiveChannel, 'ReceiveChannel', VOID, VOID, VOID, [0]);
|
|
250
|
-
|
|
245
|
+
function close$default(cause, $super) {
|
|
246
|
+
cause = cause === VOID ? null : cause;
|
|
247
|
+
return $super === VOID ? this.k2q(cause) : $super.k2q.call(this, cause);
|
|
248
|
+
}
|
|
249
|
+
initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
|
|
250
|
+
initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 4, 0, 3]);
|
|
251
251
|
initMetadataForClass(WaiterEB, 'WaiterEB');
|
|
252
252
|
initMetadataForClass(ReceiveCatching, 'ReceiveCatching', VOID, VOID, [Waiter]);
|
|
253
253
|
initMetadataForObject(Factory, 'Factory');
|
|
@@ -257,7 +257,7 @@ initMetadataForCompanion(Companion);
|
|
|
257
257
|
initMetadataForClass(ChannelResult, 'ChannelResult');
|
|
258
258
|
initMetadataForClass(ClosedReceiveChannelException, 'ClosedReceiveChannelException', VOID, NoSuchElementException);
|
|
259
259
|
initMetadataForClass(ClosedSendChannelException, 'ClosedSendChannelException', VOID, IllegalStateException);
|
|
260
|
-
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine,
|
|
260
|
+
initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine, ReceiveChannel, SendChannel], [1, 0]);
|
|
261
261
|
initMetadataForClass(ConflatedBufferedChannel, 'ConflatedBufferedChannel', VOID, BufferedChannel, VOID, [1, 0]);
|
|
262
262
|
initMetadataForInterface(ProducerScope, 'ProducerScope', VOID, VOID, [CoroutineScope, SendChannel], [1]);
|
|
263
263
|
initMetadataForClass(ProducerCoroutine, 'ProducerCoroutine', VOID, ChannelCoroutine, [ChannelCoroutine, ProducerScope], [1, 0]);
|
|
@@ -290,7 +290,7 @@ initMetadataForCoroutine($doSelectCOROUTINE$, CoroutineImpl);
|
|
|
290
290
|
initMetadataForCoroutine($doSelectSuspendCOROUTINE$, CoroutineImpl);
|
|
291
291
|
initMetadataForCoroutine($completeCOROUTINE$, CoroutineImpl);
|
|
292
292
|
initMetadataForCoroutine($processResultAndInvokeBlockRecoveringExceptionCOROUTINE$, CoroutineImpl);
|
|
293
|
-
initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler,
|
|
293
|
+
initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
|
|
294
294
|
initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
|
|
295
295
|
function tryLock$default(owner, $super) {
|
|
296
296
|
owner = owner === VOID ? null : owner;
|