@karmaniverous/entity-manager 6.1.1 → 6.1.2
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.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -908,7 +908,7 @@ declare abstract class EntityManagerClient<O extends EntityManagerClientOptions>
|
|
|
908
908
|
*
|
|
909
909
|
* @returns Output array.
|
|
910
910
|
*/
|
|
911
|
-
protected batchExecute<Item, Output>(items: Item[], executeBatch: (items: Item[]) => Promise<Output>, getUnprocessedItems?: (output: Output) => Item[], { batchSize, delayIncrement, maxRetries, throttle, }?: EntityManagerClientBatchOptions): Promise<Output[]>;
|
|
911
|
+
protected batchExecute<Item, Output>(items: Item[], executeBatch: (items: Item[]) => Promise<Output>, getUnprocessedItems?: (output: Output) => Item[] | undefined, { batchSize, delayIncrement, maxRetries, throttle, }?: EntityManagerClientBatchOptions): Promise<Output[]>;
|
|
912
912
|
}
|
|
913
913
|
|
|
914
914
|
/**
|
package/package.json
CHANGED