@solibo/solibo-sdk 1.6.6 → 1.6.8

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.
Files changed (29) hide show
  1. package/KmLogging-logging.mjs +77 -77
  2. package/KotlinBigInteger-bignum.mjs +1099 -1099
  3. package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
  4. package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
  5. package/Stately-stately-concurrency.mjs +4 -4
  6. package/cryptography-kotlin-cryptography-bigint.mjs +26 -26
  7. package/cryptography-kotlin-cryptography-core.mjs +47 -47
  8. package/cryptography-kotlin-cryptography-provider-base.mjs +8 -8
  9. package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +136 -136
  10. package/cryptography-kotlin-cryptography-random.mjs +15 -15
  11. package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +118 -118
  12. package/cryptography-kotlin-cryptography-serialization-asn1.mjs +246 -246
  13. package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
  14. package/kotlin-kotlin-stdlib.mjs +9 -9
  15. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  16. package/kotlinx-serialization-kotlinx-serialization-json.mjs +1053 -1053
  17. package/ktor-ktor-client-auth.mjs +230 -230
  18. package/ktor-ktor-client-content-negotiation.mjs +111 -111
  19. package/ktor-ktor-client-core.mjs +1265 -1260
  20. package/ktor-ktor-client-core.mjs.map +1 -1
  21. package/ktor-ktor-client-encoding.mjs +81 -81
  22. package/ktor-ktor-client-logging.mjs +522 -522
  23. package/ktor-ktor-client-mock.mjs +39 -39
  24. package/ktor-ktor-serialization-kotlinx-json.mjs +5 -5
  25. package/ktor-ktor-serialization-kotlinx.mjs +93 -93
  26. package/package.json +1 -1
  27. package/solibo-sdk-sdk-home-api.mjs +25808 -25808
  28. package/solibo-sdk-sdk.mjs +2946 -2901
  29. 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.psk_1 = '-----BEGIN ';
30
- this.qsk_1 = '-----END ';
31
- this.rsk_1 = '-----';
29
+ this.qsk_1 = '-----BEGIN ';
30
+ this.rsk_1 = '-----END ';
31
+ this.ssk_1 = '-----';
32
32
  }
33
- protoOf(Pem).ssk = function (bytes) {
34
- return this.tsk(decodeToString(bytes));
33
+ protoOf(Pem).tsk = function (bytes) {
34
+ return this.usk(decodeToString(bytes));
35
35
  };
36
- protoOf(Pem).tsk = function (string) {
36
+ protoOf(Pem).usk = 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.usk_1 = label;
112
- this.vsk_1 = bytes;
111
+ this.vsk_1 = label;
112
+ this.wsk_1 = bytes;
113
113
  }
114
114
  function ensurePemLabel(_this__u8e3s4, label) {
115
115
  // Inline function 'kotlin.check' call
116
- if (!(_this__u8e3s4.usk_1 === label)) {
117
- var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.usk_1);
116
+ if (!(_this__u8e3s4.vsk_1 === label)) {
117
+ var message = 'Wrong PEM label, expected ' + PemLabel__toString_impl_auwpt1(label) + ', actual ' + PemLabel__toString_impl_auwpt1(_this__u8e3s4.vsk_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.wsk_1 = _PemLabel___init__impl__xifhtx('PUBLIC KEY');
128
- this.xsk_1 = _PemLabel___init__impl__xifhtx('PRIVATE KEY');
129
- this.ysk_1 = _PemLabel___init__impl__xifhtx('RSA PUBLIC KEY');
130
- this.zsk_1 = _PemLabel___init__impl__xifhtx('RSA PRIVATE KEY');
131
- this.asl_1 = _PemLabel___init__impl__xifhtx('EC PRIVATE KEY');
127
+ this.xsk_1 = _PemLabel___init__impl__xifhtx('PUBLIC KEY');
128
+ this.ysk_1 = _PemLabel___init__impl__xifhtx('PRIVATE KEY');
129
+ this.zsk_1 = _PemLabel___init__impl__xifhtx('RSA PUBLIC KEY');
130
+ this.asl_1 = _PemLabel___init__impl__xifhtx('RSA PRIVATE KEY');
131
+ this.bsl_1 = _PemLabel___init__impl__xifhtx('EC PRIVATE KEY');
132
132
  }
133
133
  var Companion_instance;
134
134
  function Companion_getInstance() {
@@ -37,6 +37,11 @@ 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.log10 === 'undefined') {
41
+ Math.log10 = function (x) {
42
+ return Math.log(x) * Math.LOG10E;
43
+ };
44
+ }
40
45
  if (typeof Math.clz32 === 'undefined') {
41
46
  Math.clz32 = function (log, LN2) {
42
47
  return function (x) {
@@ -48,11 +53,6 @@ if (typeof Math.clz32 === 'undefined') {
48
53
  };
49
54
  }(Math.log, Math.LN2);
50
55
  }
51
- if (typeof Math.log10 === 'undefined') {
52
- Math.log10 = function (x) {
53
- return Math.log(x) * Math.LOG10E;
54
- };
55
- }
56
56
  if (typeof Math.trunc === 'undefined') {
57
57
  Math.trunc = function (x) {
58
58
  if (isNaN(x)) {
@@ -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, Collection, MutableIterable]);
131
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
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, [Collection, MutableIterable]);
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, [Collection, MutableIterable]);
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);