@solibo/solibo-sdk 1.1.111 → 1.1.112
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/KmLogging-logging.mjs +10 -10
- package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1425 -1425
- package/KotlinBigInteger-bignum.mjs +2 -2
- package/MultiplatformSettings-multiplatform-settings-test.mjs +1 -1
- package/MultiplatformSettings-multiplatform-settings.mjs +1 -1
- package/Stately-stately-concurrency.mjs +1 -1
- package/cryptography-kotlin-cryptography-bigint.mjs +1 -1
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +1 -1
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +9 -9
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +14 -14
- package/kotlin-kotlin-stdlib.mjs +16 -16
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-atomicfu.mjs +13 -13
- package/kotlinx-coroutines-core.mjs +2039 -2039
- package/kotlinx-io-kotlinx-io-bytestring.mjs +32 -32
- package/kotlinx-io-kotlinx-io-core.mjs +451 -451
- package/kotlinx-serialization-kotlinx-serialization-json.mjs +1078 -1079
- package/ktor-ktor-client-auth.mjs +68 -68
- package/ktor-ktor-client-content-negotiation.mjs +45 -45
- package/ktor-ktor-client-core.mjs +2753 -2753
- package/ktor-ktor-client-logging.mjs +201 -201
- package/ktor-ktor-client-mock.mjs +23 -23
- package/ktor-ktor-events.mjs +6 -6
- package/ktor-ktor-http-cio.mjs +319 -319
- package/ktor-ktor-http.mjs +903 -903
- package/ktor-ktor-io.mjs +632 -632
- package/ktor-ktor-serialization-kotlinx-json.mjs +7 -7
- package/ktor-ktor-serialization-kotlinx.mjs +36 -36
- package/ktor-ktor-serialization.mjs +56 -56
- package/ktor-ktor-utils.mjs +830 -830
- package/ktor-ktor-websockets.mjs +386 -386
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +645 -643
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +3 -3
- package/solibo-sdk-sdk.mjs +551 -551
|
@@ -40,10 +40,10 @@ function ByteString_init_$Create$(data, startIndex, endIndex) {
|
|
|
40
40
|
}
|
|
41
41
|
function Companion() {
|
|
42
42
|
Companion_instance = this;
|
|
43
|
-
this.
|
|
44
|
-
this.
|
|
43
|
+
this.c2r_1 = new ByteString(new Int8Array(0), null);
|
|
44
|
+
this.d2r_1 = toCharArray('0123456789abcdef');
|
|
45
45
|
}
|
|
46
|
-
protoOf(Companion).
|
|
46
|
+
protoOf(Companion).e2r = function (byteArray) {
|
|
47
47
|
return new ByteString(byteArray, null);
|
|
48
48
|
};
|
|
49
49
|
var Companion_instance;
|
|
@@ -54,11 +54,11 @@ function Companion_getInstance() {
|
|
|
54
54
|
}
|
|
55
55
|
function ByteString(data, dummy) {
|
|
56
56
|
Companion_getInstance();
|
|
57
|
-
this.
|
|
58
|
-
this.
|
|
57
|
+
this.f2r_1 = data;
|
|
58
|
+
this.g2r_1 = 0;
|
|
59
59
|
}
|
|
60
60
|
protoOf(ByteString).g1 = function () {
|
|
61
|
-
return this.
|
|
61
|
+
return this.f2r_1.length;
|
|
62
62
|
};
|
|
63
63
|
protoOf(ByteString).equals = function (other) {
|
|
64
64
|
if (this === other)
|
|
@@ -67,43 +67,43 @@ protoOf(ByteString).equals = function (other) {
|
|
|
67
67
|
return false;
|
|
68
68
|
if (!(other instanceof ByteString))
|
|
69
69
|
THROW_CCE();
|
|
70
|
-
if (!(other.
|
|
70
|
+
if (!(other.f2r_1.length === this.f2r_1.length))
|
|
71
71
|
return false;
|
|
72
|
-
if (!(other.
|
|
72
|
+
if (!(other.g2r_1 === 0) && !(this.g2r_1 === 0) && !(other.g2r_1 === this.g2r_1))
|
|
73
73
|
return false;
|
|
74
|
-
return contentEquals(this.
|
|
74
|
+
return contentEquals(this.f2r_1, other.f2r_1);
|
|
75
75
|
};
|
|
76
76
|
protoOf(ByteString).hashCode = function () {
|
|
77
|
-
var hc = this.
|
|
77
|
+
var hc = this.g2r_1;
|
|
78
78
|
if (hc === 0) {
|
|
79
|
-
hc = contentHashCode(this.
|
|
80
|
-
this.
|
|
79
|
+
hc = contentHashCode(this.f2r_1);
|
|
80
|
+
this.g2r_1 = hc;
|
|
81
81
|
}
|
|
82
82
|
return hc;
|
|
83
83
|
};
|
|
84
84
|
protoOf(ByteString).h1 = function (index) {
|
|
85
85
|
if (index < 0 || index >= this.g1())
|
|
86
86
|
throw IndexOutOfBoundsException_init_$Create$('index (' + index + ') is out of byte string bounds: [0..' + this.g1() + ')');
|
|
87
|
-
return this.
|
|
87
|
+
return this.f2r_1[index];
|
|
88
88
|
};
|
|
89
|
-
protoOf(ByteString).
|
|
89
|
+
protoOf(ByteString).h2r = function (startIndex, endIndex) {
|
|
90
90
|
var tmp;
|
|
91
91
|
if (startIndex === endIndex) {
|
|
92
|
-
tmp = Companion_getInstance().
|
|
92
|
+
tmp = Companion_getInstance().c2r_1;
|
|
93
93
|
} else {
|
|
94
|
-
tmp = ByteString_init_$Create$(this.
|
|
94
|
+
tmp = ByteString_init_$Create$(this.f2r_1, startIndex, endIndex);
|
|
95
95
|
}
|
|
96
96
|
return tmp;
|
|
97
97
|
};
|
|
98
|
-
protoOf(ByteString).
|
|
98
|
+
protoOf(ByteString).i2r = function (startIndex, endIndex, $super) {
|
|
99
99
|
endIndex = endIndex === VOID ? this.g1() : endIndex;
|
|
100
|
-
return $super === VOID ? this.
|
|
100
|
+
return $super === VOID ? this.h2r(startIndex, endIndex) : $super.h2r.call(this, startIndex, endIndex);
|
|
101
101
|
};
|
|
102
|
-
protoOf(ByteString).
|
|
102
|
+
protoOf(ByteString).j2r = function (other) {
|
|
103
103
|
if (other === this)
|
|
104
104
|
return 0;
|
|
105
|
-
var localData = this.
|
|
106
|
-
var otherData = other.
|
|
105
|
+
var localData = this.f2r_1;
|
|
106
|
+
var otherData = other.f2r_1;
|
|
107
107
|
var inductionVariable = 0;
|
|
108
108
|
var tmp0 = this.g1();
|
|
109
109
|
// Inline function 'kotlin.math.min' call
|
|
@@ -132,7 +132,7 @@ protoOf(ByteString).t32 = function (other) {
|
|
|
132
132
|
return compareTo(this.g1(), other.g1());
|
|
133
133
|
};
|
|
134
134
|
protoOf(ByteString).d = function (other) {
|
|
135
|
-
return this.
|
|
135
|
+
return this.j2r(other instanceof ByteString ? other : THROW_CCE());
|
|
136
136
|
};
|
|
137
137
|
protoOf(ByteString).toString = function () {
|
|
138
138
|
if (isEmpty(this)) {
|
|
@@ -145,7 +145,7 @@ protoOf(ByteString).toString = function () {
|
|
|
145
145
|
$this$with.q('ByteString(size=');
|
|
146
146
|
$this$with.q(sizeStr);
|
|
147
147
|
$this$with.q(' hex=');
|
|
148
|
-
var localData = this.
|
|
148
|
+
var localData = this.f2r_1;
|
|
149
149
|
var inductionVariable = 0;
|
|
150
150
|
var last = this.g1();
|
|
151
151
|
if (inductionVariable < last)
|
|
@@ -153,35 +153,35 @@ protoOf(ByteString).toString = function () {
|
|
|
153
153
|
var i = inductionVariable;
|
|
154
154
|
inductionVariable = inductionVariable + 1 | 0;
|
|
155
155
|
var b = localData[i];
|
|
156
|
-
$this$with.s(Companion_getInstance().
|
|
157
|
-
$this$with.s(Companion_getInstance().
|
|
156
|
+
$this$with.s(Companion_getInstance().d2r_1[(b >>> 4 | 0) & 15]);
|
|
157
|
+
$this$with.s(Companion_getInstance().d2r_1[b & 15]);
|
|
158
158
|
}
|
|
159
159
|
while (inductionVariable < last);
|
|
160
160
|
return $this$with.s(_Char___init__impl__6a9atx(41)).toString();
|
|
161
161
|
};
|
|
162
|
-
protoOf(ByteString).
|
|
163
|
-
return this.
|
|
162
|
+
protoOf(ByteString).k2r = function () {
|
|
163
|
+
return this.f2r_1;
|
|
164
164
|
};
|
|
165
165
|
function ByteString_0(bytes) {
|
|
166
166
|
var tmp;
|
|
167
167
|
// Inline function 'kotlin.collections.isEmpty' call
|
|
168
168
|
if (bytes.length === 0) {
|
|
169
|
-
tmp = Companion_getInstance().
|
|
169
|
+
tmp = Companion_getInstance().c2r_1;
|
|
170
170
|
} else {
|
|
171
|
-
tmp = Companion_getInstance().
|
|
171
|
+
tmp = Companion_getInstance().e2r(bytes);
|
|
172
172
|
}
|
|
173
173
|
return tmp;
|
|
174
174
|
}
|
|
175
175
|
function decodeToString_0(_this__u8e3s4) {
|
|
176
|
-
return decodeToString(_this__u8e3s4.
|
|
176
|
+
return decodeToString(_this__u8e3s4.k2r());
|
|
177
177
|
}
|
|
178
178
|
function isEmpty(_this__u8e3s4) {
|
|
179
179
|
return _this__u8e3s4.g1() === 0;
|
|
180
180
|
}
|
|
181
181
|
function UnsafeByteStringOperations() {
|
|
182
182
|
}
|
|
183
|
-
protoOf(UnsafeByteStringOperations).
|
|
184
|
-
return Companion_getInstance().
|
|
183
|
+
protoOf(UnsafeByteStringOperations).l2r = function (array) {
|
|
184
|
+
return Companion_getInstance().e2r(array);
|
|
185
185
|
};
|
|
186
186
|
var UnsafeByteStringOperations_instance;
|
|
187
187
|
function UnsafeByteStringOperations_getInstance() {
|