@solibo/solibo-sdk 1.0.25 → 1.0.27-SNAPSHOT

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 (40) hide show
  1. package/KmLogging-logging.js +88 -88
  2. package/Kotlin-DateTime-library-kotlinx-datetime.js +1539 -1539
  3. package/KotlinBigInteger-bignum.js +1164 -1164
  4. package/MultiplatformSettings-multiplatform-settings.js +17 -17
  5. package/Stately-stately-concurrency.js +5 -5
  6. package/cryptography-kotlin-cryptography-bigint.js +31 -31
  7. package/cryptography-kotlin-cryptography-core.js +52 -52
  8. package/cryptography-kotlin-cryptography-provider-base.js +8 -8
  9. package/cryptography-kotlin-cryptography-provider-webcrypto.js +175 -175
  10. package/cryptography-kotlin-cryptography-random.js +26 -26
  11. package/cryptography-kotlin-cryptography-serialization-asn1-modules.js +204 -204
  12. package/cryptography-kotlin-cryptography-serialization-asn1.js +331 -331
  13. package/cryptography-kotlin-cryptography-serialization-pem.js +16 -16
  14. package/kotlin-kotlin-stdlib.js +2014 -2008
  15. package/kotlin-kotlin-stdlib.js.map +1 -1
  16. package/kotlinx-atomicfu.js +13 -13
  17. package/kotlinx-coroutines-core.js +2085 -2085
  18. package/kotlinx-io-kotlinx-io-bytestring.js +32 -32
  19. package/kotlinx-io-kotlinx-io-core.js +446 -446
  20. package/kotlinx-serialization-kotlinx-serialization-core.js +1707 -1707
  21. package/kotlinx-serialization-kotlinx-serialization-json.js +1351 -1351
  22. package/ktor-ktor-client-auth.js +465 -465
  23. package/ktor-ktor-client-auth.js.map +1 -1
  24. package/ktor-ktor-client-content-negotiation.js +184 -184
  25. package/ktor-ktor-client-core.js +4088 -4088
  26. package/ktor-ktor-client-logging.js +1078 -1078
  27. package/ktor-ktor-events.js +6 -6
  28. package/ktor-ktor-http-cio.js +473 -473
  29. package/ktor-ktor-http.js +963 -963
  30. package/ktor-ktor-io.js +1043 -1043
  31. package/ktor-ktor-serialization-kotlinx-json.js +6 -6
  32. package/ktor-ktor-serialization-kotlinx.js +234 -234
  33. package/ktor-ktor-serialization.js +108 -108
  34. package/ktor-ktor-utils.js +850 -850
  35. package/ktor-ktor-websockets.js +740 -740
  36. package/package.json +1 -1
  37. package/solibo-sdk-sdk-home-api.js +1483 -1483
  38. package/solibo-sdk-sdk.d.ts +221 -6
  39. package/solibo-sdk-sdk.js +3279 -2541
  40. package/solibo-sdk-sdk.js.map +1 -1
@@ -29,9 +29,9 @@
29
29
  function AbstractRandom() {
30
30
  CryptographyRandom.call(this);
31
31
  }
32
- protoOf(AbstractRandom).tk = function (bitCount) {
32
+ protoOf(AbstractRandom).uk = function (bitCount) {
33
33
  var numBytes = (bitCount + 7 | 0) / 8 | 0;
34
- var b = this.zk(numBytes);
34
+ var b = this.al(numBytes);
35
35
  var next = 0;
36
36
  var inductionVariable = 0;
37
37
  if (inductionVariable < numBytes)
@@ -43,42 +43,42 @@
43
43
  while (inductionVariable < numBytes);
44
44
  return next >>> (imul(numBytes, 8) - bitCount | 0) | 0;
45
45
  };
46
- protoOf(AbstractRandom).xk = function (array) {
46
+ protoOf(AbstractRandom).yk = function (array) {
47
47
  // Inline function 'kotlin.collections.isNotEmpty' call
48
48
  // Inline function 'kotlin.collections.isEmpty' call
49
49
  if (!(array.length === 0)) {
50
- this.t7r(array);
50
+ this.u7r(array);
51
51
  }
52
52
  return array;
53
53
  };
54
54
  function Default() {
55
55
  Default_instance = this;
56
56
  CryptographyRandom.call(this);
57
- this.u7r_1 = defaultCryptographyRandom();
57
+ this.v7r_1 = defaultCryptographyRandom();
58
58
  }
59
- protoOf(Default).tk = function (bitCount) {
60
- return this.u7r_1.tk(bitCount);
59
+ protoOf(Default).uk = function (bitCount) {
60
+ return this.v7r_1.uk(bitCount);
61
61
  };
62
- protoOf(Default).mg = function () {
63
- return this.u7r_1.mg();
62
+ protoOf(Default).ng = function () {
63
+ return this.v7r_1.ng();
64
64
  };
65
- protoOf(Default).uk = function () {
66
- return this.u7r_1.uk();
65
+ protoOf(Default).vk = function () {
66
+ return this.v7r_1.vk();
67
67
  };
68
- protoOf(Default).vk = function (until) {
69
- return this.u7r_1.vk(until);
68
+ protoOf(Default).wk = function (until) {
69
+ return this.v7r_1.wk(until);
70
70
  };
71
- protoOf(Default).wk = function (from, until) {
72
- return this.u7r_1.wk(from, until);
71
+ protoOf(Default).xk = function (from, until) {
72
+ return this.v7r_1.xk(from, until);
73
73
  };
74
- protoOf(Default).xk = function (array) {
75
- return this.u7r_1.xk(array);
74
+ protoOf(Default).yk = function (array) {
75
+ return this.v7r_1.yk(array);
76
76
  };
77
- protoOf(Default).zk = function (size) {
78
- return this.u7r_1.zk(size);
77
+ protoOf(Default).al = function (size) {
78
+ return this.v7r_1.al(size);
79
79
  };
80
- protoOf(Default).yk = function (array, fromIndex, toIndex) {
81
- return this.u7r_1.yk(array, fromIndex, toIndex);
80
+ protoOf(Default).zk = function (array, fromIndex, toIndex) {
81
+ return this.v7r_1.zk(array, fromIndex, toIndex);
82
82
  };
83
83
  var Default_instance;
84
84
  function Default_getInstance() {
@@ -96,14 +96,14 @@
96
96
  function fillBytes($this, jsArray) {
97
97
  var size = jsArray.length;
98
98
  if (size <= 65536) {
99
- $this.w7r_1.getRandomValues(jsArray);
99
+ $this.x7r_1.getRandomValues(jsArray);
100
100
  } else {
101
101
  var filled = 0;
102
102
  do {
103
103
  // Inline function 'kotlin.comparisons.minOf' call
104
104
  var b = size - filled | 0;
105
105
  var chunkSize = Math.min(65536, b);
106
- $this.w7r_1.getRandomValues(jsArray.subarray(filled, filled + chunkSize | 0));
106
+ $this.x7r_1.getRandomValues(jsArray.subarray(filled, filled + chunkSize | 0));
107
107
  filled = filled + chunkSize | 0;
108
108
  }
109
109
  while (filled < size);
@@ -112,10 +112,10 @@
112
112
  function WebCryptoCryptographyRandom() {
113
113
  WebCryptoCryptographyRandom_instance = this;
114
114
  AbstractRandom.call(this);
115
- this.v7r_1 = 65536;
116
- this.w7r_1 = getCrypto();
115
+ this.w7r_1 = 65536;
116
+ this.x7r_1 = getCrypto();
117
117
  }
118
- protoOf(WebCryptoCryptographyRandom).t7r = function (array) {
118
+ protoOf(WebCryptoCryptographyRandom).u7r = function (array) {
119
119
  // Inline function 'kotlin.js.unsafeCast' call
120
120
  // Inline function 'kotlin.js.asDynamic' call
121
121
  fillBytes(this, array);