@lark.js/mvc 0.0.6 → 0.0.7
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/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3666,6 +3666,7 @@ function serviceSend(service, attrs, done, flag, save) {
|
|
|
3666
3666
|
const payloadInfo = service.type.get(attrObj, save);
|
|
3667
3667
|
const payloadEntity = payloadInfo.entity;
|
|
3668
3668
|
const cacheKey = payloadEntity.cacheInfo?.key || "";
|
|
3669
|
+
doneArr[requestCount + 1] = payloadEntity;
|
|
3669
3670
|
const complete = remoteComplete.bind(null, requestCount++);
|
|
3670
3671
|
if (cacheKey && pendingCacheKeys[cacheKey]) {
|
|
3671
3672
|
pendingCacheKeys[cacheKey].push(complete);
|
package/dist/index.js
CHANGED
|
@@ -3564,6 +3564,7 @@ function serviceSend(service, attrs, done, flag, save) {
|
|
|
3564
3564
|
const payloadInfo = service.type.get(attrObj, save);
|
|
3565
3565
|
const payloadEntity = payloadInfo.entity;
|
|
3566
3566
|
const cacheKey = payloadEntity.cacheInfo?.key || "";
|
|
3567
|
+
doneArr[requestCount + 1] = payloadEntity;
|
|
3567
3568
|
const complete = remoteComplete.bind(null, requestCount++);
|
|
3568
3569
|
if (cacheKey && pendingCacheKeys[cacheKey]) {
|
|
3569
3570
|
pendingCacheKeys[cacheKey].push(complete);
|