@datapos/datapos-shared 0.3.29 → 0.3.31
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.
|
@@ -42,7 +42,7 @@ export interface ConnectorImplementation {
|
|
|
42
42
|
maxConnectionCount?: number;
|
|
43
43
|
params?: Record<string, string>[];
|
|
44
44
|
}
|
|
45
|
-
export type
|
|
45
|
+
export type ConnectorLocalisedConfig = Omit<ConnectorConfig, 'label' | 'description'> & {
|
|
46
46
|
label: string;
|
|
47
47
|
description: string;
|
|
48
48
|
};
|
|
@@ -133,7 +133,7 @@ export interface RetrieveSummary {
|
|
|
133
133
|
recordCount: number;
|
|
134
134
|
}
|
|
135
135
|
export interface RetrieveTools {
|
|
136
|
-
csvParse: (options
|
|
136
|
+
csvParse: (options: Options, callback?: Callback) => Parser | undefined;
|
|
137
137
|
}
|
|
138
138
|
export interface UpsertSettings extends ConnectorOperationSettings {
|
|
139
139
|
records: Record<string, unknown>[];
|
|
@@ -15,7 +15,7 @@ export interface ContextFocusConfig extends ComponentConfig {
|
|
|
15
15
|
modelRefs: ComponentRef[];
|
|
16
16
|
order: number;
|
|
17
17
|
}
|
|
18
|
-
export type
|
|
18
|
+
export type ContextFocusLocalisedConfig = Omit<ContextFocusConfig, 'label' | 'description'> & {
|
|
19
19
|
label: string;
|
|
20
20
|
description: string;
|
|
21
21
|
};
|
|
@@ -3,7 +3,7 @@ export type { ComponentConfig, ComponentRef, ComponentStatus, ComponentStatusId,
|
|
|
3
3
|
export type { ConnectionAuthorizationConfig, ConnectionColumnConfig, ConnectionConfig, ConnectionNodeConfig } from './connection';
|
|
4
4
|
export type { DPAFileSystemFileHandle, Encoding, StorageTypeId, UsageTypeId } from './connection';
|
|
5
5
|
export type { AuditContentResult, AuditContentSettings } from './connector';
|
|
6
|
-
export type { Connector, ConnectorCallbackData, ConnectorConfig, ConnectorImplementation, ConnectorOperationSettings,
|
|
6
|
+
export type { Connector, ConnectorCallbackData, ConnectorConfig, ConnectorImplementation, ConnectorOperationSettings, ConnectorLocalisedConfig } from './connector';
|
|
7
7
|
export type { CreateSettings } from './connector';
|
|
8
8
|
export type { DropSettings } from './connector';
|
|
9
9
|
export type { FindResult, FindSettings } from './connector';
|
|
@@ -14,7 +14,7 @@ export type { PreviewResult, PreviewSettings } from './connector';
|
|
|
14
14
|
export type { RemoveSettings } from './connector';
|
|
15
15
|
export type { RetrieveResult, RetrieveSettings, RetrieveSummary, RetrieveTools } from './connector';
|
|
16
16
|
export type { UpsertSettings } from './connector';
|
|
17
|
-
export type { Context, ContextConfig, ContextFocusConfig, ContextFocusConfigListResult, ContextFocusConfigListSettings, ContextModelConfig, ContextDimensionConfig, ContextDimensionGroupConfig, ContextEntityCharacteristicConfig, ContextEntityGroupConfig, ContextEntityComputationConfig, ContextSecondaryMeasureGroupConfig, ContextViewGroupConfig,
|
|
17
|
+
export type { Context, ContextConfig, ContextFocusConfig, ContextFocusConfigListResult, ContextFocusConfigListSettings, ContextModelConfig, ContextDimensionConfig, ContextDimensionGroupConfig, ContextEntityCharacteristicConfig, ContextEntityGroupConfig, ContextEntityComputationConfig, ContextSecondaryMeasureGroupConfig, ContextViewGroupConfig, ContextFocusLocalisedConfig } from './context';
|
|
18
18
|
export type { ContextEntityConfig, ContextEntityEventConfig, ContextHierarchyConfig, ContextViewConfig, Event } from './context';
|
|
19
19
|
export type { DataFormatId, EncodingConfig, RecordDelimiterId, ValueDelimiterId } from './dataView';
|
|
20
20
|
export type { DataViewConfig, DataViewContentAuditConfig, DataViewPreviewConfig, DataViewRelationshipsAuditConfig, ParsedValue } from './dataView';
|