@datapos/datapos-shared 0.3.522 → 0.3.524
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.
|
@@ -23,7 +23,7 @@ interface ConnectorInterface extends Component {
|
|
|
23
23
|
processedRowCount: number;
|
|
24
24
|
durationMs?: number;
|
|
25
25
|
}>;
|
|
26
|
-
auditObjectContent?(options: AuditObjectContentOptions2): Promise<AuditObjectContentResult2>;
|
|
26
|
+
auditObjectContent?(options: AuditObjectContentOptions2, chunk: (rowCount: number) => void): Promise<AuditObjectContentResult2>;
|
|
27
27
|
/**
|
|
28
28
|
* Authenticate a specified connection.
|
|
29
29
|
*/
|
|
@@ -125,7 +125,8 @@ interface AuditObjectContentOptions2 extends EngineOperationOptions {
|
|
|
125
125
|
* Audit object content result.
|
|
126
126
|
*/
|
|
127
127
|
interface AuditObjectContentResult2 {
|
|
128
|
-
|
|
128
|
+
processedRowCount: number;
|
|
129
|
+
durationMs: number;
|
|
129
130
|
}
|
|
130
131
|
/**
|
|
131
132
|
* Create object options.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.524",
|
|
4
4
|
"description": "A library containing common constants, types and utilities used across all Data Positioning projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|