@solibo/solibo-sdk 1.6.15 → 1.6.16
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 +99 -99
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +4 -4
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/index.mjs +2 -0
- package/kotlin-kotlin-stdlib.mjs +15 -15
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +7 -7
- package/kotlinx-coroutines-core.mjs.map +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/ktor-ktor-websockets.mjs +2 -2
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +19343 -18952
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +73 -1
- package/solibo-sdk-sdk.mjs +2857 -2843
- package/solibo-sdk-sdk.mjs.map +1 -1
|
@@ -26,14 +26,14 @@ initMetadataForClass(PemContent, 'PemContent');
|
|
|
26
26
|
initMetadataForCompanion(Companion);
|
|
27
27
|
//endregion
|
|
28
28
|
function Pem() {
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
29
|
+
this.dsp_1 = '-----BEGIN ';
|
|
30
|
+
this.esp_1 = '-----END ';
|
|
31
|
+
this.fsp_1 = '-----';
|
|
32
32
|
}
|
|
33
|
-
protoOf(Pem).
|
|
34
|
-
return this.
|
|
33
|
+
protoOf(Pem).gsp = function (bytes) {
|
|
34
|
+
return this.hsp(decodeToString(bytes));
|
|
35
35
|
};
|
|
36
|
-
protoOf(Pem).
|
|
36
|
+
protoOf(Pem).hsp = function (string) {
|
|
37
37
|
var lines = split(string, ['\n']);
|
|
38
38
|
var tmp$ret$0;
|
|
39
39
|
$l$block: {
|
|
@@ -108,13 +108,13 @@ function Pem_getInstance() {
|
|
|
108
108
|
return Pem_instance;
|
|
109
109
|
}
|
|
110
110
|
function PemContent(label, bytes) {
|
|
111
|
-
this.
|
|
112
|
-
this.
|
|
111
|
+
this.isp_1 = label;
|
|
112
|
+
this.jsp_1 = bytes;
|
|
113
113
|
}
|
|
114
114
|
function ensurePemLabel(_this__u8e3s4, label) {
|
|
115
115
|
// Inline function 'kotlin.check' call
|
|
116
|
-
if (!(_this__u8e3s4.
|
|
117
|
-
var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.
|
|
116
|
+
if (!(_this__u8e3s4.isp_1 === label)) {
|
|
117
|
+
var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.isp_1);
|
|
118
118
|
throw IllegalStateException_init_$Create$(toString(message));
|
|
119
119
|
}
|
|
120
120
|
return _this__u8e3s4;
|
|
@@ -124,11 +124,11 @@ function _PemLabel___init__impl__xifhtx(representation) {
|
|
|
124
124
|
}
|
|
125
125
|
function Companion() {
|
|
126
126
|
Companion_instance = this;
|
|
127
|
-
this.
|
|
128
|
-
this.
|
|
129
|
-
this.
|
|
130
|
-
this.
|
|
131
|
-
this.
|
|
127
|
+
this.ksp_1 = _PemLabel___init__impl__xifhtx('PUBLIC KEY');
|
|
128
|
+
this.lsp_1 = _PemLabel___init__impl__xifhtx('PRIVATE KEY');
|
|
129
|
+
this.msp_1 = _PemLabel___init__impl__xifhtx('RSA PUBLIC KEY');
|
|
130
|
+
this.nsp_1 = _PemLabel___init__impl__xifhtx('RSA PRIVATE KEY');
|
|
131
|
+
this.osp_1 = _PemLabel___init__impl__xifhtx('EC PRIVATE KEY');
|
|
132
132
|
}
|
|
133
133
|
var Companion_instance;
|
|
134
134
|
function Companion_getInstance() {
|
package/index.mjs
CHANGED
|
@@ -147,6 +147,7 @@ import {
|
|
|
147
147
|
RoutineMethod as _Enum_RoutineMethod,
|
|
148
148
|
RoutineType as _Enum_RoutineType,
|
|
149
149
|
Rsvp as _Enum_Rsvp,
|
|
150
|
+
SectionOnboardingStatus as _Enum_SectionOnboardingStatus,
|
|
150
151
|
SectionState as _Enum_SectionState,
|
|
151
152
|
SectionStatusOperation as _Enum_SectionStatusOperation,
|
|
152
153
|
SectionType as _Enum_SectionType,
|
|
@@ -225,6 +226,7 @@ _addPascalEnumAliases(_Enum_RoutineInterval);
|
|
|
225
226
|
_addPascalEnumAliases(_Enum_RoutineMethod);
|
|
226
227
|
_addPascalEnumAliases(_Enum_RoutineType);
|
|
227
228
|
_addPascalEnumAliases(_Enum_Rsvp);
|
|
229
|
+
_addPascalEnumAliases(_Enum_SectionOnboardingStatus);
|
|
228
230
|
_addPascalEnumAliases(_Enum_SectionState);
|
|
229
231
|
_addPascalEnumAliases(_Enum_SectionStatusOperation);
|
|
230
232
|
_addPascalEnumAliases(_Enum_SectionType);
|
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -48,11 +48,6 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
48
48
|
};
|
|
49
49
|
}(Math.log, Math.LN2);
|
|
50
50
|
}
|
|
51
|
-
if (typeof Math.log10 === 'undefined') {
|
|
52
|
-
Math.log10 = function (x) {
|
|
53
|
-
return Math.log(x) * Math.LOG10E;
|
|
54
|
-
};
|
|
55
|
-
}
|
|
56
51
|
if (typeof Math.trunc === 'undefined') {
|
|
57
52
|
Math.trunc = function (x) {
|
|
58
53
|
if (isNaN(x)) {
|
|
@@ -64,6 +59,17 @@ if (typeof Math.trunc === 'undefined') {
|
|
|
64
59
|
return Math.ceil(x);
|
|
65
60
|
};
|
|
66
61
|
}
|
|
62
|
+
if (typeof Math.log10 === 'undefined') {
|
|
63
|
+
Math.log10 = function (x) {
|
|
64
|
+
return Math.log(x) * Math.LOG10E;
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
68
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
69
|
+
position = position || 0;
|
|
70
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
71
|
+
}});
|
|
72
|
+
}
|
|
67
73
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
68
74
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
69
75
|
var subjectString = this.toString();
|
|
@@ -75,12 +81,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
75
81
|
return lastIndex !== -1 && lastIndex === position;
|
|
76
82
|
}});
|
|
77
83
|
}
|
|
78
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
79
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
80
|
-
position = position || 0;
|
|
81
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
82
|
-
}});
|
|
83
|
-
}
|
|
84
84
|
//endregion
|
|
85
85
|
//region block: imports
|
|
86
86
|
var imul_0 = Math.imul;
|
|
@@ -127,8 +127,8 @@ initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
|
127
127
|
function asJsArrayView() {
|
|
128
128
|
return createJsArrayViewFrom(this);
|
|
129
129
|
}
|
|
130
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
131
|
-
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet,
|
|
130
|
+
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
|
|
131
|
+
initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
|
|
132
132
|
initMetadataForCompanion(Companion_4);
|
|
133
133
|
initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
|
|
134
134
|
initMetadataForCompanion(Companion_5);
|
|
@@ -152,7 +152,7 @@ initMetadataForClass(asList$1, VOID, VOID, AbstractList, [RandomAccess]);
|
|
|
152
152
|
initMetadataForInterface(AutoCloseable, 'AutoCloseable');
|
|
153
153
|
initMetadataForInterface(Comparator, 'Comparator');
|
|
154
154
|
initMetadataForObject(Unit, 'Unit');
|
|
155
|
-
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [
|
|
155
|
+
initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [MutableIterable, Collection]);
|
|
156
156
|
initMetadataForClass(IteratorImpl, 'IteratorImpl');
|
|
157
157
|
initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
|
|
158
158
|
initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [KtMutableList]);
|
|
@@ -164,7 +164,7 @@ initMetadataForCompanion(Companion_6);
|
|
|
164
164
|
initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [KtMutableList, RandomAccess]);
|
|
165
165
|
initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [KtMutableMap]);
|
|
166
166
|
initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet]);
|
|
167
|
-
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [
|
|
167
|
+
initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection]);
|
|
168
168
|
initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet]);
|
|
169
169
|
initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
|
|
170
170
|
initMetadataForClass(HashMapKeysDefault$iterator$1);
|