@solibo/solibo-sdk 1.6.26 → 1.6.27
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/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- package/KotlinBigInteger-bignum.mjs +1115 -1115
- 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 +12 -12
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +8 -8
- 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 +28178 -27305
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +98 -16
- package/solibo-sdk-sdk.mjs +2914 -2897
- 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.ysr_1 = '-----BEGIN ';
|
|
30
|
+
this.zsr_1 = '-----END ';
|
|
31
|
+
this.ass_1 = '-----';
|
|
32
32
|
}
|
|
33
|
-
protoOf(Pem).
|
|
34
|
-
return this.
|
|
33
|
+
protoOf(Pem).bss = function (bytes) {
|
|
34
|
+
return this.css(decodeToString(bytes));
|
|
35
35
|
};
|
|
36
|
-
protoOf(Pem).
|
|
36
|
+
protoOf(Pem).css = 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.dss_1 = label;
|
|
112
|
+
this.ess_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.dss_1 === label)) {
|
|
117
|
+
var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.dss_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.fss_1 = _PemLabel___init__impl__xifhtx('PUBLIC KEY');
|
|
128
|
+
this.gss_1 = _PemLabel___init__impl__xifhtx('PRIVATE KEY');
|
|
129
|
+
this.hss_1 = _PemLabel___init__impl__xifhtx('RSA PUBLIC KEY');
|
|
130
|
+
this.iss_1 = _PemLabel___init__impl__xifhtx('RSA PRIVATE KEY');
|
|
131
|
+
this.jss_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
|
+
SectionDeletionReason as _Enum_SectionDeletionReason,
|
|
150
151
|
SectionOnboardingStatus as _Enum_SectionOnboardingStatus,
|
|
151
152
|
SectionState as _Enum_SectionState,
|
|
152
153
|
SectionStatusOperation as _Enum_SectionStatusOperation,
|
|
@@ -226,6 +227,7 @@ _addPascalEnumAliases(_Enum_RoutineInterval);
|
|
|
226
227
|
_addPascalEnumAliases(_Enum_RoutineMethod);
|
|
227
228
|
_addPascalEnumAliases(_Enum_RoutineType);
|
|
228
229
|
_addPascalEnumAliases(_Enum_Rsvp);
|
|
230
|
+
_addPascalEnumAliases(_Enum_SectionDeletionReason);
|
|
229
231
|
_addPascalEnumAliases(_Enum_SectionOnboardingStatus);
|
|
230
232
|
_addPascalEnumAliases(_Enum_SectionState);
|
|
231
233
|
_addPascalEnumAliases(_Enum_SectionStatusOperation);
|
package/kotlin-kotlin-stdlib.mjs
CHANGED
|
@@ -37,9 +37,15 @@ 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.
|
|
41
|
-
Math.
|
|
42
|
-
|
|
40
|
+
if (typeof Math.trunc === 'undefined') {
|
|
41
|
+
Math.trunc = function (x) {
|
|
42
|
+
if (isNaN(x)) {
|
|
43
|
+
return NaN;
|
|
44
|
+
}
|
|
45
|
+
if (x > 0) {
|
|
46
|
+
return Math.floor(x);
|
|
47
|
+
}
|
|
48
|
+
return Math.ceil(x);
|
|
43
49
|
};
|
|
44
50
|
}
|
|
45
51
|
if (typeof Math.clz32 === 'undefined') {
|
|
@@ -53,15 +59,9 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
53
59
|
};
|
|
54
60
|
}(Math.log, Math.LN2);
|
|
55
61
|
}
|
|
56
|
-
if (typeof Math.
|
|
57
|
-
Math.
|
|
58
|
-
|
|
59
|
-
return NaN;
|
|
60
|
-
}
|
|
61
|
-
if (x > 0) {
|
|
62
|
-
return Math.floor(x);
|
|
63
|
-
}
|
|
64
|
-
return Math.ceil(x);
|
|
62
|
+
if (typeof Math.log10 === 'undefined') {
|
|
63
|
+
Math.log10 = function (x) {
|
|
64
|
+
return Math.log(x) * Math.LOG10E;
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
67
|
if (typeof String.prototype.startsWith === 'undefined') {
|