@datapos/datapos-shared 0.3.525 → 0.3.526

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.
@@ -115,9 +115,10 @@ interface AuditObjectContentResult1 {
115
115
  /**
116
116
  * Audit object content options.
117
117
  */
118
- interface AuditObjectContentOptions2 extends EngineOperationOptions {
118
+ interface AuditObjectContentOptions extends EngineOperationOptions {
119
119
  chunkSize: number | undefined;
120
120
  encodingId: string;
121
+ parsingToolName: string | undefined;
121
122
  path: string;
122
123
  supportsTransferableStreams: boolean;
123
124
  valueDelimiterId: ValueDelimiterId;
@@ -125,7 +126,7 @@ interface AuditObjectContentOptions2 extends EngineOperationOptions {
125
126
  /**
126
127
  * Audit object content result.
127
128
  */
128
- interface AuditObjectContentResult2 {
129
+ interface AuditObjectContentResult {
129
130
  processedRowCount: number;
130
131
  durationMs: number;
131
132
  }
@@ -269,4 +270,4 @@ declare const constructConnectorCategoryConfig: (id: string, localeId?: import('
269
270
  export { connectorConfigSchema } from './connectorConfig.schema';
270
271
  export { constructConnectorCategoryConfig };
271
272
  export type { ConnectionConfig, ConnectionNodeConfig, ObjectColumnConfig } from './connection';
272
- export type { AuditObjectContentOptions1, AuditObjectContentResult1, AuditObjectContentOptions2, AuditObjectContentResult2, ConnectorConfig, ConnectorConstructor, ConnectorInterface, ConnectorLocalisedConfig, ConnectorOperationName, ConnectorUsageId, CreateObjectOptions, DropObjectOptions, FindObjectFolderPathOptions, GetReadableStreamOptions, GetRecordResult, GetRecordOptions, ListNodesResult, ListNodesOptions, PreviewObjectOptions, RemoveRecordsOptions, RetrieveChunksOptions, RetrieveRecordsOptions, RetrieveRecordsSummary, UpsertRecordsOptions };
273
+ export type { AuditObjectContentOptions1, AuditObjectContentResult1, AuditObjectContentOptions, AuditObjectContentResult, ConnectorConfig, ConnectorConstructor, ConnectorInterface, ConnectorLocalisedConfig, ConnectorOperationName, ConnectorUsageId, CreateObjectOptions, DropObjectOptions, FindObjectFolderPathOptions, GetReadableStreamOptions, GetRecordResult, GetRecordOptions, ListNodesResult, ListNodesOptions, PreviewObjectOptions, RemoveRecordsOptions, RetrieveChunksOptions, RetrieveRecordsOptions, RetrieveRecordsSummary, UpsertRecordsOptions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.525",
3
+ "version": "0.3.526",
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>",