@datapos/datapos-shared 0.3.524 → 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.
@@ -100,7 +100,7 @@ type ConnectorLocalisedConfig = Omit<ConnectorConfig, 'label' | 'description'> &
100
100
  /**
101
101
  * Audit object content options and result.
102
102
  */
103
- interface AuditObjectContentOptions extends EngineOperationOptions {
103
+ interface AuditObjectContentOptions1 extends EngineOperationOptions {
104
104
  chunkSize: number | undefined;
105
105
  encodingId: string;
106
106
  path: string;
@@ -109,22 +109,24 @@ interface AuditObjectContentOptions extends EngineOperationOptions {
109
109
  /**
110
110
  *
111
111
  */
112
- interface AuditObjectContentResult {
112
+ interface AuditObjectContentResult1 {
113
113
  contentAuditConfig: ContentAuditConfig;
114
114
  }
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;
123
+ supportsTransferableStreams: boolean;
122
124
  valueDelimiterId: ValueDelimiterId;
123
125
  }
124
126
  /**
125
127
  * Audit object content result.
126
128
  */
127
- interface AuditObjectContentResult2 {
129
+ interface AuditObjectContentResult {
128
130
  processedRowCount: number;
129
131
  durationMs: number;
130
132
  }
@@ -268,4 +270,4 @@ declare const constructConnectorCategoryConfig: (id: string, localeId?: import('
268
270
  export { connectorConfigSchema } from './connectorConfig.schema';
269
271
  export { constructConnectorCategoryConfig };
270
272
  export type { ConnectionConfig, ConnectionNodeConfig, ObjectColumnConfig } from './connection';
271
- export type { AuditObjectContentOptions, AuditObjectContentResult, 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.524",
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>",