@solibo/solibo-sdk 1.1.40 → 1.1.41

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.
@@ -361,7 +361,7 @@ function addFormatStructureForDate(structure) {
361
361
  function addFormatStructureForTime(structure) {
362
362
  this.e1u(structure);
363
363
  }
364
- initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
364
+ initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
365
365
  initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
366
366
  initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
367
367
  function set_fractionOfSecond(value) {
@@ -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.log10 === 'undefined') {
41
- Math.log10 = function (x) {
42
- return Math.log(x) * Math.LOG10E;
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.trunc === 'undefined') {
57
- Math.trunc = function (x) {
58
- if (isNaN(x)) {
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.endsWith === 'undefined') {
@@ -270,7 +270,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
270
270
  initMetadataForClass(Symbol, 'Symbol');
271
271
  initMetadataForInterface(SelectInstance, 'SelectInstance');
272
272
  initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
273
- initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
273
+ initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, Waiter, SelectInstance], [0, 2]);
274
274
  initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
275
275
  function tryLock$default(owner, $super) {
276
276
  owner = owner === VOID ? null : owner;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "main": "index.mjs",
3
3
  "types": "index.d.ts",
4
- "version": "1.1.40",
4
+ "version": "1.1.41",
5
5
  "name": "@solibo/solibo-sdk",
6
6
  "dependencies": {
7
7
  "@js-joda/core": "5.6.3",