lemon-core 4.1.3 → 4.1.4
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/README.md +1 -0
- package/dist/extended/abstract-service.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +69,7 @@ See [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md)
|
|
|
69
69
|
|
|
70
70
|
| Version | Description
|
|
71
71
|
|-- |--
|
|
72
|
+
| 4.1.4 | optimized `saveAllUpdates` w/ failed model as cause.
|
|
72
73
|
| 4.1.2 | optimized `asErrorPayload` w/ env[`MY_PARALLEL_THROW`].
|
|
73
74
|
| 4.1.0 | optimized `DynamoService.mreadItem()` along with `lemon-model@1.1.1`
|
|
74
75
|
| 4.0.8 | optimized `findKMSService()` w/ shared pool storage.
|
|
@@ -322,7 +322,7 @@ export declare abstract class AbstractProxy<U extends string, T extends CoreServ
|
|
|
322
322
|
onlyValid?: boolean;
|
|
323
323
|
/** (optional) flag to use batch update (default false) */
|
|
324
324
|
useBatch?: boolean;
|
|
325
|
-
}): Promise<CoreModel<
|
|
325
|
+
}): Promise<CoreModel<any>[]>;
|
|
326
326
|
/**
|
|
327
327
|
* report via slack.
|
|
328
328
|
*/
|