@datapos/datapos-shared 0.3.523 → 0.3.525

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,7 +109,7 @@ interface AuditObjectContentOptions extends EngineOperationOptions {
109
109
  /**
110
110
  *
111
111
  */
112
- interface AuditObjectContentResult {
112
+ interface AuditObjectContentResult1 {
113
113
  contentAuditConfig: ContentAuditConfig;
114
114
  }
115
115
  /**
@@ -119,13 +119,15 @@ interface AuditObjectContentOptions2 extends EngineOperationOptions {
119
119
  chunkSize: number | undefined;
120
120
  encodingId: string;
121
121
  path: string;
122
+ supportsTransferableStreams: boolean;
122
123
  valueDelimiterId: ValueDelimiterId;
123
124
  }
124
125
  /**
125
126
  * Audit object content result.
126
127
  */
127
128
  interface AuditObjectContentResult2 {
128
- contentAuditConfig: ContentAuditConfig;
129
+ processedRowCount: number;
130
+ durationMs: number;
129
131
  }
130
132
  /**
131
133
  * Create object options.
@@ -267,4 +269,4 @@ declare const constructConnectorCategoryConfig: (id: string, localeId?: import('
267
269
  export { connectorConfigSchema } from './connectorConfig.schema';
268
270
  export { constructConnectorCategoryConfig };
269
271
  export type { ConnectionConfig, ConnectionNodeConfig, ObjectColumnConfig } from './connection';
270
- 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 };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.523",
3
+ "version": "0.3.525",
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>",