@dpuse/dpuse-shared 0.3.634 → 0.3.636

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.
@@ -7,7 +7,7 @@ import { Component, ComponentConfig, ComponentReference } from '../..';
7
7
  export { contextConfigSchema } from './contextConfig.schema';
8
8
  export interface ContextInterface extends Component {
9
9
  readonly config: ContextConfig;
10
- listContextFocuses?(context: ContextInterface, options?: ListContextOptions): Promise<ContextListResult>;
10
+ listContextFocuses?(context: ContextInterface, options?: ListContextOptions): Promise<ListContextResult>;
11
11
  }
12
12
  export type ContextConfig = InferOutput<typeof contextConfigSchema>;
13
13
  export interface ContextConfig1 extends ModuleConfig {
@@ -16,7 +16,7 @@ export interface ContextConfig1 extends ModuleConfig {
16
16
  typeId: 'context';
17
17
  }
18
18
  export type ContextLocalisedConfig = Localised<ContextConfig>;
19
- export type ContextOperation = 'list';
19
+ export type ContextOperation = 'listContextFocuses';
20
20
  export interface ContextModelGroupConfig extends ComponentConfig {
21
21
  modelRefs: ComponentReference[];
22
22
  order: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpuse/dpuse-shared",
3
- "version": "0.3.634",
3
+ "version": "0.3.636",
4
4
  "description": "Common constants, types and utilities used across all DPUse projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",