@datapos/datapos-shared 0.3.52 → 0.3.54
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.
- package/README.md +1 -1
- package/dist/types/src/engine.d.ts +2 -2
- package/dist/types/src/index.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ For detailed implementation, see the `scripts` section in the `package.json` fil
|
|
|
37
37
|
| ------------------ | ---------------- | ---------------------------------------------------------------------------------------------------------- |
|
|
38
38
|
| audit | alt+ctrl+shift+a | Audit the project's dependencies for known security vulnerabilities. |
|
|
39
39
|
| build | alt+ctrl+shift+b | Build the package using Vite. |
|
|
40
|
-
| check | alt+ctrl+shift+c | List outdated dependencies.
|
|
40
|
+
| check | alt+ctrl+shift+c | List outdated dependencies and run retire scanner. |
|
|
41
41
|
| document | alt+ctrl+shift+d | Identify licenses of the project's production and peer dependencies. See [LICENSES.json](./LICENSES.json). |
|
|
42
42
|
| format | alt+ctrl+shift+f | Enforce formatting style rules. |
|
|
43
43
|
| lint | alt+ctrl+shift+l | Check the code for errors and enforce coding style rules. |
|
|
@@ -9,9 +9,9 @@ type ProcessContextRequest = (id: string, contextConfig: ContextConfig, settings
|
|
|
9
9
|
export type ConnectorInterfaceResult = AuditContentResult | DataViewPreviewConfig | ListResult | RetrieveResult;
|
|
10
10
|
export interface Engine {
|
|
11
11
|
getEncodingConfigs: (localeId: string) => EncodingConfig[];
|
|
12
|
-
invokeWorker(errorEventCallback: (errorEvent: ErrorEvent) => void):
|
|
12
|
+
invokeWorker(errorEventCallback: (errorEvent: ErrorEvent) => void): EngineWorker;
|
|
13
13
|
}
|
|
14
|
-
export interface
|
|
14
|
+
export interface EngineWorker {
|
|
15
15
|
initialise: InitialiseEngine;
|
|
16
16
|
processConnectorRequest: ProcessConnectorRequest;
|
|
17
17
|
processContextRequest: ProcessContextRequest;
|
|
@@ -18,7 +18,7 @@ export type { Context, ContextConfig, ContextFocusConfig, ContextFocusConfigList
|
|
|
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';
|
|
21
|
-
export type { ConnectorInterfaceResult, ContextInterfaceResult, Engine,
|
|
21
|
+
export type { ConnectorInterfaceResult, ContextInterfaceResult, Engine, EngineWorker } from './engine';
|
|
22
22
|
export { APIError, ApplicationError, EngineError, FetchError, OperationalError, VueError, WindowRuntimeError, WindowPromiseRejectionError } from './errors';
|
|
23
23
|
export type { SerialisedError } from './errors';
|
|
24
24
|
export type { EventQueryConfig } from './eventQuery';
|