@datapos/datapos-shared 0.3.574 → 0.3.576
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.
|
@@ -26,7 +26,7 @@ export interface ConnectorInterface extends Component {
|
|
|
26
26
|
upsertRecords?(options: UpsertRecordsOptions): Promise<void>;
|
|
27
27
|
}
|
|
28
28
|
export type ConnectorConstructor = new (engineUtilities: EngineUtilities, toolConfigs: ToolConfig[]) => ConnectorInterface;
|
|
29
|
-
type RetrievalTypeId = 'jsonRecordArray' | 'parsingRecordArray';
|
|
29
|
+
export type RetrievalTypeId = 'jsonRecordArray' | 'parsingRecordArray';
|
|
30
30
|
export type ConnectorOperationName = InferOutput<typeof connectorOperationNameSchema>;
|
|
31
31
|
/**
|
|
32
32
|
* Connector data pipeline usage identifiers.
|
|
@@ -216,4 +216,4 @@ declare const constructConnectorCategoryConfig: (id: string, localeId?: import('
|
|
|
216
216
|
export { connectorConfigSchema } from './connectorConfig.schema';
|
|
217
217
|
export { constructConnectorCategoryConfig };
|
|
218
218
|
export type { ConnectionConfig, ConnectionNodeConfig, ObjectColumnConfig } from './connection';
|
|
219
|
-
export type { AuditObjectContentOptions1, AuditObjectContentResult1, AuditObjectContentOptions, AuditObjectContentResult, ConnectorConfig,
|
|
219
|
+
export type { AuditObjectContentOptions1, AuditObjectContentResult1, AuditObjectContentOptions, AuditObjectContentResult, ConnectorConfig, ConnectorLocalisedConfig, ConnectorUsageId, CreateObjectOptions, DropObjectOptions, FindObjectOptions, FindObjectResult, GetReadableStreamOptions, GetRecordOptions, GetRecordResult, ListNodesOptions, ListNodesResult, PreviewObjectOptions, RemoveRecordsOptions, RetrieveChunksOptions, RetrieveRecordsOptions, RetrieveRecordsSummary, UpsertRecordsOptions };
|
|
@@ -10,7 +10,8 @@ export declare class DPUError extends Error {
|
|
|
10
10
|
constructor(message: string, locator: string, options?: ErrorOptions);
|
|
11
11
|
}
|
|
12
12
|
export declare class AppError extends DPUError {
|
|
13
|
-
|
|
13
|
+
readonly trace: SerialisedError[] | undefined;
|
|
14
|
+
constructor(message: string, locator: string, trace: SerialisedError[] | undefined, options?: ErrorOptions);
|
|
14
15
|
}
|
|
15
16
|
export declare class APIError extends DPUError {
|
|
16
17
|
readonly body: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.576",
|
|
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>",
|