@datapos/datapos-shared 0.3.516 → 0.3.518
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.
|
@@ -17,8 +17,7 @@ interface EngineRuntimeInterface {
|
|
|
17
17
|
*/
|
|
18
18
|
interface EngineWorkerInterface {
|
|
19
19
|
initialise: (options: EngineWorkerInitialiseOptions) => Promise<void>;
|
|
20
|
-
|
|
21
|
-
processContextRequest: (id: string, contextConfig: ContextConfig, options: ContextOperationOptions, callback?: (callbackData: EngineCallbackData) => void) => Promise<unknown>;
|
|
20
|
+
processRequest: (id: string, config: ConnectionConfig | ContextConfig, options: ConnectorOperationOptions | ContextOperationOptions, callback?: (callbackData: EngineCallbackData) => void) => Promise<unknown>;
|
|
22
21
|
}
|
|
23
22
|
/** Engine worker initialise options. */
|
|
24
23
|
interface EngineWorkerInitialiseOptions {
|
|
@@ -16,7 +16,7 @@ ContextModelEntityPrimaryMeasureLocalisedConfig } from './component/context';
|
|
|
16
16
|
/** Interfaces/Types - Context model secondary measure. */
|
|
17
17
|
export type { ContextModelSecondaryMeasureGroupConfig, ContextModelSecondaryMeasureGroupLocalisedConfig, ContextModelSecondaryMeasureConfig, ContextModelSecondaryMeasureLocalisedConfig } from './component/context';
|
|
18
18
|
/** Interfaces/Types - Context Operator Settings */
|
|
19
|
-
export interface
|
|
19
|
+
export interface ContextOperationOptions {
|
|
20
20
|
accountId?: string;
|
|
21
21
|
appCheckToken?: string;
|
|
22
22
|
sessionAccessToken?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.518",
|
|
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>",
|