@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
|
@@ -263,27 +263,27 @@ export default function ({ ds, proxify, compiler }) {
|
|
|
263
263
|
throw kSuspend
|
|
264
264
|
}
|
|
265
265
|
|
|
266
|
-
fetch(resource, options, suspend
|
|
266
|
+
fetch(resource, options, suspend) {
|
|
267
267
|
return this._getFetch(resource, options, suspend)
|
|
268
268
|
}
|
|
269
269
|
|
|
270
|
-
observe(observable, suspend
|
|
270
|
+
observe(observable, suspend) {
|
|
271
271
|
return this._getObservable(observable, suspend)
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
then(promise, suspend
|
|
274
|
+
then(promise, suspend) {
|
|
275
275
|
return this._getPromise(promise, suspend)
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
ds(id, state, suspend
|
|
278
|
+
ds(id, state, suspend) {
|
|
279
279
|
return this._getRecord(id, state, suspend)
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
-
timer(dueTime, dueValue = dueTime, suspend
|
|
282
|
+
timer(dueTime, dueValue = dueTime, suspend) {
|
|
283
283
|
return this._getTimer(dueTime, dueValue, suspend)
|
|
284
284
|
}
|
|
285
285
|
|
|
286
|
-
asset(id, type, state, suspend
|
|
286
|
+
asset(id, type, state, suspend) {
|
|
287
287
|
return this._getHasRawAssetType(id, type, state, suspend)
|
|
288
288
|
}
|
|
289
289
|
|