@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.
Files changed (37) hide show
  1. package/KmLogging-logging.mjs +10 -10
  2. package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1425 -1425
  3. package/KotlinBigInteger-bignum.mjs +2 -2
  4. package/MultiplatformSettings-multiplatform-settings-test.mjs +1 -1
  5. package/MultiplatformSettings-multiplatform-settings.mjs +1 -1
  6. package/Stately-stately-concurrency.mjs +1 -1
  7. package/cryptography-kotlin-cryptography-bigint.mjs +1 -1
  8. package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
  9. package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +1 -1
  10. package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +9 -9
  11. package/cryptography-kotlin-cryptography-serialization-asn1.mjs +14 -14
  12. package/kotlin-kotlin-stdlib.mjs +16 -16
  13. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  14. package/kotlinx-atomicfu.mjs +13 -13
  15. package/kotlinx-coroutines-core.mjs +2039 -2039
  16. package/kotlinx-io-kotlinx-io-bytestring.mjs +32 -32
  17. package/kotlinx-io-kotlinx-io-core.mjs +451 -451
  18. package/kotlinx-serialization-kotlinx-serialization-json.mjs +1078 -1079
  19. package/ktor-ktor-client-auth.mjs +68 -68
  20. package/ktor-ktor-client-content-negotiation.mjs +45 -45
  21. package/ktor-ktor-client-core.mjs +2753 -2753
  22. package/ktor-ktor-client-logging.mjs +201 -201
  23. package/ktor-ktor-client-mock.mjs +23 -23
  24. package/ktor-ktor-events.mjs +6 -6
  25. package/ktor-ktor-http-cio.mjs +319 -319
  26. package/ktor-ktor-http.mjs +903 -903
  27. package/ktor-ktor-io.mjs +632 -632
  28. package/ktor-ktor-serialization-kotlinx-json.mjs +7 -7
  29. package/ktor-ktor-serialization-kotlinx.mjs +36 -36
  30. package/ktor-ktor-serialization.mjs +56 -56
  31. package/ktor-ktor-utils.mjs +830 -830
  32. package/ktor-ktor-websockets.mjs +386 -386
  33. package/package.json +1 -1
  34. package/solibo-sdk-sdk-home-api.mjs +645 -643
  35. package/solibo-sdk-sdk-home-api.mjs.map +1 -1
  36. package/solibo-sdk-sdk.d.mts +3 -3
  37. 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.n32_1 = new ByteString(new Int8Array(0), null);
44
- this.o32_1 = toCharArray('0123456789abcdef');
43
+ this.c2r_1 = new ByteString(new Int8Array(0), null);
44
+ this.d2r_1 = toCharArray('0123456789abcdef');
45
45
  }
46
- protoOf(Companion).p32 = function (byteArray) {
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.q32_1 = data;
58
- this.r32_1 = 0;
57
+ this.f2r_1 = data;
58
+ this.g2r_1 = 0;
59
59
  }
60
60
  protoOf(ByteString).g1 = function () {
61
- return this.q32_1.length;
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.q32_1.length === this.q32_1.length))
70
+ if (!(other.f2r_1.length === this.f2r_1.length))
71
71
  return false;
72
- if (!(other.r32_1 === 0) && !(this.r32_1 === 0) && !(other.r32_1 === this.r32_1))
72
+ if (!(other.g2r_1 === 0) && !(this.g2r_1 === 0) && !(other.g2r_1 === this.g2r_1))
73
73
  return false;
74
- return contentEquals(this.q32_1, other.q32_1);
74
+ return contentEquals(this.f2r_1, other.f2r_1);
75
75
  };
76
76
  protoOf(ByteString).hashCode = function () {
77
- var hc = this.r32_1;
77
+ var hc = this.g2r_1;
78
78
  if (hc === 0) {
79
- hc = contentHashCode(this.q32_1);
80
- this.r32_1 = hc;
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.q32_1[index];
87
+ return this.f2r_1[index];
88
88
  };
89
- protoOf(ByteString).g1p = function (startIndex, endIndex) {
89
+ protoOf(ByteString).h2r = function (startIndex, endIndex) {
90
90
  var tmp;
91
91
  if (startIndex === endIndex) {
92
- tmp = Companion_getInstance().n32_1;
92
+ tmp = Companion_getInstance().c2r_1;
93
93
  } else {
94
- tmp = ByteString_init_$Create$(this.q32_1, startIndex, endIndex);
94
+ tmp = ByteString_init_$Create$(this.f2r_1, startIndex, endIndex);
95
95
  }
96
96
  return tmp;
97
97
  };
98
- protoOf(ByteString).s32 = function (startIndex, endIndex, $super) {
98
+ protoOf(ByteString).i2r = function (startIndex, endIndex, $super) {
99
99
  endIndex = endIndex === VOID ? this.g1() : endIndex;
100
- return $super === VOID ? this.g1p(startIndex, endIndex) : $super.g1p.call(this, startIndex, endIndex);
100
+ return $super === VOID ? this.h2r(startIndex, endIndex) : $super.h2r.call(this, startIndex, endIndex);
101
101
  };
102
- protoOf(ByteString).t32 = function (other) {
102
+ protoOf(ByteString).j2r = function (other) {
103
103
  if (other === this)
104
104
  return 0;
105
- var localData = this.q32_1;
106
- var otherData = other.q32_1;
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.t32(other instanceof ByteString ? other : THROW_CCE());
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.q32_1;
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().o32_1[(b >>> 4 | 0) & 15]);
157
- $this$with.s(Companion_getInstance().o32_1[b & 15]);
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).u32 = function () {
163
- return this.q32_1;
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().n32_1;
169
+ tmp = Companion_getInstance().c2r_1;
170
170
  } else {
171
- tmp = Companion_getInstance().p32(bytes);
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.u32());
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).v32 = function (array) {
184
- return Companion_getInstance().p32(array);
183
+ protoOf(UnsafeByteStringOperations).l2r = function (array) {
184
+ return Companion_getInstance().e2r(array);
185
185
  };
186
186
  var UnsafeByteStringOperations_instance;
187
187
  function UnsafeByteStringOperations_getInstance() {