@sdux-vault/engine 0.0.9 → 0.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdux-vault/engine",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,5 +1,5 @@
1
1
  import * as _sdux_vault_shared from '@sdux-vault/shared';
2
- import { TapCallback, BehaviorClassContract, FeatureCellBaseShape, CoreEmitStateCallback, VaultErrorCallback, FilterFunction, DeferredType, ReducerFunction, InterceptorBehaviorClassContract, OperatorsBehaviorClassContract, ControllerClassContract, ControllerContract, ControllerContext, VaultErrorShape, BehaviorContext, VaultPrivateErrorServiceContract, StateInputType, VAULT_NOOP, DecisionOutcomeType, OperationType, InsightConfig, PipelineValue, StateEmitSnapshotShape, CellBuilderContract, VaultConfig, VaultRegistrationShape, BehaviorContract, FinalState, BehaviorClassContext } from '@sdux-vault/shared';
2
+ import { TapCallback, BehaviorClassContract, FeatureCellBaseShape, CoreEmitStateCallback, VaultErrorCallback, FilterFunction, DeferredType, ReducerFunction, InterceptorBehaviorClassContract, OperatorsBehaviorClassContract, ControllerClassContract, ControllerContract, ControllerContext, VaultErrorShape, BehaviorContext, VaultPrivateErrorServiceContract, StateInputType, DecisionOutcomeType, OperationType, VAULT_NOOP, InsightConfig, PipelineValue, StateEmitSnapshotShape, CellBuilderContract, VaultConfig, VaultRegistrationShape, BehaviorContract, FinalState, BehaviorClassContext } from '@sdux-vault/shared';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Subject } from 'rxjs';
5
5
 
@@ -203,12 +203,11 @@ declare abstract class Orchestrator<T> {
203
203
  protected initializeFeatureCell(ctx: BehaviorContext<T>): Promise<void>;
204
204
  protected destroyBehaviors(ctx: BehaviorContext<T>): void;
205
205
  protected resetBehaviors(ctx: BehaviorContext<T>): void;
206
- protected preparingIncoming(ctx: BehaviorContext<T>): StateInputType<T> | typeof VAULT_NOOP;
207
206
  protected orchestrate(ctx: BehaviorContext<T>, options?: unknown): Promise<void>;
208
207
  protected buildControllerCtx(ctx: BehaviorContext<T>): ControllerContext<T>;
209
208
  protected normalizeIncoming<T>(incoming: StateInputType<T>): StateInputType<T>;
210
209
  protected controllerOutcomeNotification(type: DecisionOutcomeType, ctx: BehaviorContext<T>): void;
211
- protected prepIncomingForOrchestration(ctx: BehaviorContext<T>, incoming: StateInputType<T>, operation: OperationType): BehaviorContext<T>;
210
+ protected prepareIncoming(ctx: BehaviorContext<T>, incoming: StateInputType<T>, operation: OperationType): StateInputType<T> | typeof VAULT_NOOP;
212
211
  }
213
212
 
214
213
  declare class Conductor<T> extends Orchestrator<T> {