@haibun/core 1.62.0 → 1.62.1
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,2 +1,2 @@
|
|
|
1
|
-
export declare const currentVersion = "1.62.
|
|
1
|
+
export declare const currentVersion = "1.62.1";
|
|
2
2
|
//# sourceMappingURL=currentVersion.d.ts.map
|
package/build/currentVersion.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const currentVersion = '1.62.
|
|
1
|
+
export const currentVersion = '1.62.1';
|
|
2
2
|
//# sourceMappingURL=currentVersion.js.map
|
|
@@ -17,7 +17,7 @@ declare const TestSteps: {
|
|
|
17
17
|
};
|
|
18
18
|
named: {
|
|
19
19
|
match: RegExp;
|
|
20
|
-
action: ({ param }: TNamed) => Promise<import("../defs.js").
|
|
20
|
+
action: ({ param }: TNamed) => Promise<import("../defs.js").TNotOKActionResult | import("../defs.js").TOKActionResult>;
|
|
21
21
|
};
|
|
22
22
|
throws: {
|
|
23
23
|
gwta: string;
|
package/build/steps/haibun.d.ts
CHANGED
|
@@ -60,15 +60,15 @@ declare class Haibun extends AStepper implements IHasOptions {
|
|
|
60
60
|
steps: {
|
|
61
61
|
prose: {
|
|
62
62
|
gwta: string;
|
|
63
|
-
action: (t: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").
|
|
63
|
+
action: (t: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
64
64
|
};
|
|
65
65
|
feature: {
|
|
66
66
|
match: RegExp;
|
|
67
|
-
action: ({ feature }: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").
|
|
67
|
+
action: ({ feature }: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
68
68
|
};
|
|
69
69
|
scenarioStart: {
|
|
70
70
|
match: RegExp;
|
|
71
|
-
action: ({ scenario }: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").
|
|
71
|
+
action: ({ scenario }: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
72
72
|
};
|
|
73
73
|
sequenceToken: {
|
|
74
74
|
gwta: string;
|
|
@@ -112,7 +112,7 @@ declare class Haibun extends AStepper implements IHasOptions {
|
|
|
112
112
|
applyEffect: ({ stepperName, line }: TNamed, currentFeatureStep: TFeatureStep, steppers: AStepper[]) => Promise<any[]>;
|
|
113
113
|
};
|
|
114
114
|
};
|
|
115
|
-
maybeSay(transcript: string): Promise<import("../lib/defs.js").
|
|
115
|
+
maybeSay(transcript: string): Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
116
116
|
newFeatureFromEffect(content: string, seq: number, steppers: AStepper[]): Promise<TFeatureStep>;
|
|
117
117
|
}
|
|
118
118
|
export default Haibun;
|
package/build/steps/parse.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ declare const Parse: {
|
|
|
12
12
|
};
|
|
13
13
|
conformance: {
|
|
14
14
|
gwta: string;
|
|
15
|
-
action: () => Promise<import("../lib/defs.js").
|
|
15
|
+
action: () => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
world?: import("../lib/defs.js").TWorld;
|
|
@@ -5,7 +5,7 @@ declare class VariablesStepper extends AStepper {
|
|
|
5
5
|
set: (named: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").TOKActionResult>;
|
|
6
6
|
checkIsSet(what: string): boolean;
|
|
7
7
|
private getVarValue;
|
|
8
|
-
isSet(what: string, orCond: string): import("../lib/defs.js").
|
|
8
|
+
isSet(what: string, orCond: string): import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult;
|
|
9
9
|
steps: {
|
|
10
10
|
combine: {
|
|
11
11
|
gwta: string;
|
|
@@ -25,15 +25,15 @@ declare class VariablesStepper extends AStepper {
|
|
|
25
25
|
};
|
|
26
26
|
is: {
|
|
27
27
|
gwta: string;
|
|
28
|
-
action: ({ what, value }: TNamed) => Promise<import("../lib/defs.js").
|
|
28
|
+
action: ({ what, value }: TNamed) => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
29
29
|
};
|
|
30
30
|
isSet: {
|
|
31
31
|
gwta: string;
|
|
32
|
-
action: ({ what }: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").
|
|
32
|
+
action: ({ what }: TNamed, featureStep: TFeatureStep) => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
33
33
|
};
|
|
34
34
|
isNotSet: {
|
|
35
35
|
gwta: string;
|
|
36
|
-
action: ({ what }: TNamed) => Promise<import("../lib/defs.js").
|
|
36
|
+
action: ({ what }: TNamed) => Promise<import("../lib/defs.js").TNotOKActionResult | import("../lib/defs.js").TOKActionResult>;
|
|
37
37
|
};
|
|
38
38
|
background: {
|
|
39
39
|
match: RegExp;
|