tscommons-esm-models-step-flow 0.0.6 → 0.0.7
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ICommonsSecondClass } from 'tscommons-esm-models';
|
|
2
2
|
import { ICommonsStepFlowStep } from './icommons-step-flow-step.mjs';
|
|
3
3
|
import { ICommonsStepFlowFlow } from './icommons-step-flow-flow.mjs';
|
|
4
|
-
export interface ICommonsStepFlowCondition<
|
|
4
|
+
export interface ICommonsStepFlowCondition<FlowI extends ICommonsStepFlowFlow<StepI>, StepI extends ICommonsStepFlowStep> extends ICommonsSecondClass<FlowI> {
|
|
5
5
|
flow: number;
|
|
6
6
|
}
|
|
7
|
-
export declare function isICommonsStepFlowCondition<
|
|
7
|
+
export declare function isICommonsStepFlowCondition<FlowI extends ICommonsStepFlowFlow<StepI>, StepI extends ICommonsStepFlowStep>(test: unknown): test is ICommonsStepFlowCondition<FlowI, StepI>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icommons-step-flow-condition.mjs","sourceRoot":"","sources":["../../src/interfaces/icommons-step-flow-condition.mts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAelF,MAAM,UAAU,2BAA2B,CAGzC,IAAa;IACd,IAAI,CAAC,qBAAqB,
|
|
1
|
+
{"version":3,"file":"icommons-step-flow-condition.mjs","sourceRoot":"","sources":["../../src/interfaces/icommons-step-flow-condition.mts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAelF,MAAM,UAAU,2BAA2B,CAGzC,IAAa;IACd,IAAI,CAAC,qBAAqB,CAA8B,IAAI,EAAE,MAAM,CAAC;QAAE,OAAO,KAAK,CAAC;IAEpF,OAAO,IAAI,CAAC;AACb,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ICommonsOrientatedOrdered } from 'tscommons-esm-models';
|
|
2
2
|
import { ICommonsStepFlowStep } from './icommons-step-flow-step.mjs';
|
|
3
|
-
export interface ICommonsStepFlowFlow<
|
|
3
|
+
export interface ICommonsStepFlowFlow<StepI extends ICommonsStepFlowStep> extends ICommonsOrientatedOrdered<StepI> {
|
|
4
4
|
step: number;
|
|
5
5
|
outstep: number;
|
|
6
6
|
}
|
|
7
|
-
export declare function isICommonsStepFlowFlow<
|
|
7
|
+
export declare function isICommonsStepFlowFlow<StepI extends ICommonsStepFlowStep>(test: unknown): test is ICommonsStepFlowFlow<StepI>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icommons-step-flow-flow.mjs","sourceRoot":"","sources":["../../src/interfaces/icommons-step-flow-flow.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,EAA6B,2BAA2B,EAAE,MAAM,sBAAsB,CAAC;AAU9F,MAAM,UAAU,sBAAsB,
|
|
1
|
+
{"version":3,"file":"icommons-step-flow-flow.mjs","sourceRoot":"","sources":["../../src/interfaces/icommons-step-flow-flow.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,EAA6B,2BAA2B,EAAE,MAAM,sBAAsB,CAAC;AAU9F,MAAM,UAAU,sBAAsB,CAAqC,IAAa;IACvF,IAAI,CAAC,2BAA2B,CAAuB,IAAI,EAAE,MAAM,CAAC;QAAE,OAAO,KAAK,CAAC;IAEnF,IAAI,CAAC,4BAA4B,CAAC,IAAI,EAAE,SAAS,CAAC;QAAE,OAAO,KAAK,CAAC;IAEjE,OAAO,IAAI,CAAC;AACb,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tscommons-esm-models-step-flow",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tsc": "./node_modules/typescript/bin/tsc",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"tscommons-esm-core": "^0.0.4",
|
|
29
|
-
"tscommons-esm-models": "^0.0.
|
|
29
|
+
"tscommons-esm-models": "^0.0.7"
|
|
30
30
|
}
|
|
31
31
|
}
|