@nxtedition/lib 19.4.5 → 19.4.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "19.4.5",
3
+ "version": "19.4.6",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "type": "module",
@@ -263,27 +263,27 @@ export default function ({ ds, proxify, compiler }) {
263
263
  throw kSuspend
264
264
  }
265
265
 
266
- fetch(resource, options, suspend = true) {
266
+ fetch(resource, options, suspend) {
267
267
  return this._getFetch(resource, options, suspend)
268
268
  }
269
269
 
270
- observe(observable, suspend = true) {
270
+ observe(observable, suspend) {
271
271
  return this._getObservable(observable, suspend)
272
272
  }
273
273
 
274
- then(promise, suspend = true) {
274
+ then(promise, suspend) {
275
275
  return this._getPromise(promise, suspend)
276
276
  }
277
277
 
278
- ds(id, state, suspend = true) {
278
+ ds(id, state, suspend) {
279
279
  return this._getRecord(id, state, suspend)
280
280
  }
281
281
 
282
- timer(dueTime, dueValue = dueTime, suspend = true) {
282
+ timer(dueTime, dueValue = dueTime, suspend) {
283
283
  return this._getTimer(dueTime, dueValue, suspend)
284
284
  }
285
285
 
286
- asset(id, type, state, suspend = true) {
286
+ asset(id, type, state, suspend) {
287
287
  return this._getHasRawAssetType(id, type, state, suspend)
288
288
  }
289
289