@solibo/home-api 1.7.13 → 1.7.14-2b230ea-1781911057913-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.
@@ -59,6 +59,12 @@ if (typeof Math.clz32 === 'undefined') {
59
59
  };
60
60
  }(Math.log, Math.LN2);
61
61
  }
62
+ if (typeof String.prototype.startsWith === 'undefined') {
63
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
64
+ position = position || 0;
65
+ return this.lastIndexOf(searchString, position) === position;
66
+ }});
67
+ }
62
68
  if (typeof String.prototype.endsWith === 'undefined') {
63
69
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
64
70
  var subjectString = this.toString();
@@ -70,12 +76,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
70
76
  return lastIndex !== -1 && lastIndex === position;
71
77
  }});
72
78
  }
73
- if (typeof String.prototype.startsWith === 'undefined') {
74
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
75
- position = position || 0;
76
- return this.lastIndexOf(searchString, position) === position;
77
- }});
78
- }
79
79
  //endregion
80
80
  //region block: imports
81
81
  var imul_0 = Math.imul;
@@ -263,7 +263,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
263
263
  initMetadataForClass(Symbol, 'Symbol');
264
264
  initMetadataForInterface(SelectInstance, 'SelectInstance');
265
265
  initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
266
- initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, Waiter, SelectInstance], [0, 2]);
266
+ initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
267
267
  initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
268
268
  initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [Delay], [1]);
269
269
  initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [1]);
@@ -5055,6 +5055,7 @@ Tombstone_instance = new Tombstone();
5055
5055
  //endregion
5056
5056
  //region block: exports
5057
5057
  export {
5058
+ JsonElementSerializer_getInstance as JsonElementSerializer_getInstance78doow9tocv6,
5058
5059
  Json_0 as Jsonsmkyu9xjl7fv,
5059
5060
  };
5060
5061
  //endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.7.13",
3
+ "version": "1.7.14-2b230ea-1781911057913-SNAPSHOT",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",