@datapos/datapos-shared 0.3.419 → 0.3.420
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.
|
@@ -5,10 +5,10 @@ import { ModuleConfig } from '../module';
|
|
|
5
5
|
import { Component, ComponentConfig, ComponentReference } from '..';
|
|
6
6
|
export interface Context extends Component {
|
|
7
7
|
readonly config: ContextConfig;
|
|
8
|
-
list?(
|
|
8
|
+
list?(context: Context, options?: ContextListOptions): Promise<ContextListResult>;
|
|
9
9
|
}
|
|
10
10
|
export type ContextOperationOptions = object;
|
|
11
|
-
export type
|
|
11
|
+
export type ContextListOptions = object;
|
|
12
12
|
export interface ContextListResult {
|
|
13
13
|
models: ContextModelGroupConfig[];
|
|
14
14
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-shared",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.420",
|
|
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>",
|