doc-detective 4.12.1 → 4.14.0
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/dist/common/src/schemas/schemas.json +6759 -1997
- package/dist/common/src/types/generated/config_v3.d.ts +4 -0
- package/dist/common/src/types/generated/config_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/record_v3.d.ts +4 -0
- package/dist/common/src/types/generated/record_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/report_v3.d.ts +4 -0
- package/dist/common/src/types/generated/report_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/resolvedTests_v3.d.ts +8 -0
- package/dist/common/src/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/runBrowserScript_v3.d.ts +48 -0
- package/dist/common/src/types/generated/runBrowserScript_v3.d.ts.map +1 -0
- package/dist/common/src/types/generated/runBrowserScript_v3.js +7 -0
- package/dist/common/src/types/generated/runBrowserScript_v3.js.map +1 -0
- package/dist/common/src/types/generated/spec_v3.d.ts +4 -0
- package/dist/common/src/types/generated/spec_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/step_v3.d.ts +215 -75
- package/dist/common/src/types/generated/step_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/stopRecord_v3.d.ts +20 -2
- package/dist/common/src/types/generated/stopRecord_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/test_v3.d.ts +506 -222
- package/dist/common/src/types/generated/test_v3.d.ts.map +1 -1
- package/dist/core/resolveTests.d.ts.map +1 -1
- package/dist/core/resolveTests.js +2 -13
- package/dist/core/resolveTests.js.map +1 -1
- package/dist/core/tests/ffmpegRecorder.d.ts +11 -2
- package/dist/core/tests/ffmpegRecorder.d.ts.map +1 -1
- package/dist/core/tests/ffmpegRecorder.js +155 -8
- package/dist/core/tests/ffmpegRecorder.js.map +1 -1
- package/dist/core/tests/findElement.d.ts.map +1 -1
- package/dist/core/tests/findElement.js +2 -1
- package/dist/core/tests/findElement.js.map +1 -1
- package/dist/core/tests/runBrowserScript.d.ts +7 -0
- package/dist/core/tests/runBrowserScript.d.ts.map +1 -0
- package/dist/core/tests/runBrowserScript.js +133 -0
- package/dist/core/tests/runBrowserScript.js.map +1 -0
- package/dist/core/tests/saveScreenshot.d.ts.map +1 -1
- package/dist/core/tests/saveScreenshot.js +26 -9
- package/dist/core/tests/saveScreenshot.js.map +1 -1
- package/dist/core/tests/startRecording.d.ts.map +1 -1
- package/dist/core/tests/startRecording.js +36 -2
- package/dist/core/tests/startRecording.js.map +1 -1
- package/dist/core/tests/stopRecording.d.ts.map +1 -1
- package/dist/core/tests/stopRecording.js +51 -16
- package/dist/core/tests/stopRecording.js.map +1 -1
- package/dist/core/tests/typeKeys.d.ts.map +1 -1
- package/dist/core/tests/typeKeys.js +3 -2
- package/dist/core/tests/typeKeys.js.map +1 -1
- package/dist/core/tests.d.ts +12 -1
- package/dist/core/tests.d.ts.map +1 -1
- package/dist/core/tests.js +198 -47
- package/dist/core/tests.js.map +1 -1
- package/dist/core/utils.d.ts +25 -1
- package/dist/core/utils.d.ts.map +1 -1
- package/dist/core/utils.js +68 -9
- package/dist/core/utils.js.map +1 -1
- package/dist/debug/provenance.d.ts.map +1 -1
- package/dist/debug/provenance.js +6 -0
- package/dist/debug/provenance.js.map +1 -1
- package/dist/hints/hints.d.ts.map +1 -1
- package/dist/hints/hints.js +40 -0
- package/dist/hints/hints.js.map +1 -1
- package/dist/index.cjs +6446 -1341
- package/dist/runtime/browserStepKeys.d.ts +19 -0
- package/dist/runtime/browserStepKeys.d.ts.map +1 -0
- package/dist/runtime/browserStepKeys.js +33 -0
- package/dist/runtime/browserStepKeys.js.map +1 -0
- package/dist/runtime/inferRuntimeNeeds.d.ts.map +1 -1
- package/dist/runtime/inferRuntimeNeeds.js +4 -19
- package/dist/runtime/inferRuntimeNeeds.js.map +1 -1
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +7 -0
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* A step in a test.
|
|
7
7
|
*/
|
|
8
|
-
export type Step = (Common & CheckLink) | (Common1 & Click) | (Common2 & Find) | (Common3 & GoTo) | (Common4 & HttpRequest) | (Common5 & RunShell) | (Common6 & RunCode) | (Common7 &
|
|
8
|
+
export type Step = (Common & CheckLink) | (Common1 & Click) | (Common2 & Find) | (Common3 & GoTo) | (Common4 & HttpRequest) | (Common5 & RunShell) | (Common6 & RunCode) | (Common7 & RunBrowserScript) | (Common8 & Type) | (Common9 & Screenshot) | (Common10 & SaveCookie) | (Common11 & Record) | (Common12 & StopRecord) | (Common13 & LoadVariables) | (Common14 & DragAndDrop) | (Common15 & LoadCookie) | (Common16 & Wait);
|
|
9
9
|
export type CheckLink1 = CheckLinkDetailed | CheckLinkDetailed1;
|
|
10
10
|
/**
|
|
11
11
|
* Check if an HTTP or HTTPS URL returns an acceptable status code from a GET request.
|
|
@@ -66,6 +66,14 @@ export type RunShellCommandSimple = string;
|
|
|
66
66
|
* Assemble and run code.
|
|
67
67
|
*/
|
|
68
68
|
export type RunCode1 = RunCodeDetailed;
|
|
69
|
+
/**
|
|
70
|
+
* Execute arbitrary JavaScript in the browser page context. Runs via the WebDriver `executeScript` endpoint, so it has access to the page's `document`, `window`, and DOM. Doc Detective captures the script's return value in the step's `outputs.result`. Distinct from `runCode`, which runs Node/Python/bash on the host machine.
|
|
71
|
+
*/
|
|
72
|
+
export type RunBrowserScript1 = RunBrowserScriptSimple | RunBrowserScriptDetailed;
|
|
73
|
+
/**
|
|
74
|
+
* JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`.
|
|
75
|
+
*/
|
|
76
|
+
export type RunBrowserScriptSimple = string;
|
|
69
77
|
/**
|
|
70
78
|
* Type keys. To type special keys, begin and end the string with `$` and use the special key's keyword. For example, to type the Escape key, enter `$ESCAPE$`.
|
|
71
79
|
*/
|
|
@@ -136,9 +144,21 @@ export type RecordingEngineSimple = "browser" | "ffmpeg";
|
|
|
136
144
|
*/
|
|
137
145
|
export type RecordBoolean = boolean;
|
|
138
146
|
/**
|
|
139
|
-
* Stop the
|
|
147
|
+
* Stop a recording started by an earlier `record` step. With no target (`true`/`null`), stops the most recently started recording that is still active (LIFO). To stop a specific recording when several overlap, target it by name with a string (`stopRecord: "<name>"`) or an object (`stopRecord: { name: "<name>" }`).
|
|
148
|
+
*/
|
|
149
|
+
export type StopRecord1 = StopRecordBoolean | StopRecordNull | StopRecordName | StopRecordDetailed;
|
|
150
|
+
/**
|
|
151
|
+
* If `true`, stops the most recently started active recording (LIFO). If `false`, does nothing — an explicit no-op (mirrors `record: false`).
|
|
152
|
+
*/
|
|
153
|
+
export type StopRecordBoolean = boolean;
|
|
154
|
+
/**
|
|
155
|
+
* Stops the most recently started active recording (LIFO).
|
|
140
156
|
*/
|
|
141
|
-
export type
|
|
157
|
+
export type StopRecordNull = null;
|
|
158
|
+
/**
|
|
159
|
+
* Name of the recording to stop. Matches the `name` given to a `record` step.
|
|
160
|
+
*/
|
|
161
|
+
export type StopRecordName = string;
|
|
142
162
|
/**
|
|
143
163
|
* Load environment variables from the specified `.env` file.
|
|
144
164
|
*/
|
|
@@ -937,6 +957,116 @@ export interface SourceLocation7 {
|
|
|
937
957
|
*/
|
|
938
958
|
endIndex: number;
|
|
939
959
|
}
|
|
960
|
+
export interface RunBrowserScript {
|
|
961
|
+
runBrowserScript: RunBrowserScript1;
|
|
962
|
+
[k: string]: unknown;
|
|
963
|
+
}
|
|
964
|
+
export interface RunBrowserScriptDetailed {
|
|
965
|
+
/**
|
|
966
|
+
* JavaScript to evaluate in the browser page context. Supports `return` to capture a value into `outputs.result`. The script reads arguments supplied in `args` through the `arguments` object (`arguments[0]`, `arguments[1]`, and so on).
|
|
967
|
+
*/
|
|
968
|
+
script: string;
|
|
969
|
+
/**
|
|
970
|
+
* Arguments passed positionally to the script and exposed through the `arguments` object. Each item may be any JSON-serializable value (string, number, boolean, null, object, or array), matching what `executeScript` accepts.
|
|
971
|
+
*/
|
|
972
|
+
args?: unknown[];
|
|
973
|
+
/**
|
|
974
|
+
* Content expected in the script's serialized return value. Doc Detective serializes non-string return values to JSON before matching. If the serialized return value doesn't contain the expected content, the step fails. Supports strings and regular expressions. To use a regular expression, the string must start and end with a forward slash, like in `/^hello-world.* /`.
|
|
975
|
+
*/
|
|
976
|
+
output?: string;
|
|
977
|
+
/**
|
|
978
|
+
* File path to save the script's serialized return value, relative to `directory`.
|
|
979
|
+
*/
|
|
980
|
+
path?: string;
|
|
981
|
+
/**
|
|
982
|
+
* Directory to save the script's return value. If the directory doesn't exist, creates the directory. If not specified, the directory is your media directory.
|
|
983
|
+
*/
|
|
984
|
+
directory?: string;
|
|
985
|
+
/**
|
|
986
|
+
* Allowed variation as a fraction (0 to 1) of text different between the current return value and previously saved value. For example, 0.1 means 10%. If the difference between the current value and the previous value is greater than `maxVariation`, the step returns a warning. If no output exists at `path`, Doc Detective ignores this value.
|
|
987
|
+
*/
|
|
988
|
+
maxVariation?: number;
|
|
989
|
+
/**
|
|
990
|
+
* If `true`, overwrites the existing output at `path` if it exists.
|
|
991
|
+
* If `aboveVariation`, overwrites the existing output at `path` if the difference between the new output and the existing output is greater than `maxVariation`.
|
|
992
|
+
*/
|
|
993
|
+
overwrite?: "true" | "false" | "aboveVariation";
|
|
994
|
+
/**
|
|
995
|
+
* Maximum time in milliseconds the script may run. If the script runs longer than this, the step fails.
|
|
996
|
+
*/
|
|
997
|
+
timeout?: number;
|
|
998
|
+
}
|
|
999
|
+
export interface Common8 {
|
|
1000
|
+
/**
|
|
1001
|
+
* JSON Schema for this object.
|
|
1002
|
+
*/
|
|
1003
|
+
$schema?: "https://raw.githubusercontent.com/doc-detective/common/refs/heads/main/dist/schemas/step_v3.schema.json";
|
|
1004
|
+
/**
|
|
1005
|
+
* ID of the step.
|
|
1006
|
+
*/
|
|
1007
|
+
stepId?: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* Description of the step.
|
|
1010
|
+
*/
|
|
1011
|
+
description?: string;
|
|
1012
|
+
/**
|
|
1013
|
+
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1014
|
+
*/
|
|
1015
|
+
unsafe?: boolean;
|
|
1016
|
+
outputs?: OutputsStep8;
|
|
1017
|
+
variables?: VariablesStep8;
|
|
1018
|
+
/**
|
|
1019
|
+
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1020
|
+
*/
|
|
1021
|
+
breakpoint?: boolean;
|
|
1022
|
+
location?: SourceLocation8;
|
|
1023
|
+
/**
|
|
1024
|
+
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1025
|
+
*/
|
|
1026
|
+
autoScreenshot?: string;
|
|
1027
|
+
[k: string]: unknown;
|
|
1028
|
+
}
|
|
1029
|
+
/**
|
|
1030
|
+
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1031
|
+
*/
|
|
1032
|
+
export interface OutputsStep8 {
|
|
1033
|
+
/**
|
|
1034
|
+
* Runtime expression for a user-defined output value.
|
|
1035
|
+
*
|
|
1036
|
+
* This interface was referenced by `OutputsStep8`'s JSON-Schema definition
|
|
1037
|
+
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1038
|
+
*/
|
|
1039
|
+
[k: string]: string;
|
|
1040
|
+
}
|
|
1041
|
+
/**
|
|
1042
|
+
* Environment variables to set from user-defined expressions.
|
|
1043
|
+
*/
|
|
1044
|
+
export interface VariablesStep8 {
|
|
1045
|
+
/**
|
|
1046
|
+
* Runtime expression for a user-defined output value.
|
|
1047
|
+
*
|
|
1048
|
+
* This interface was referenced by `VariablesStep8`'s JSON-Schema definition
|
|
1049
|
+
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1050
|
+
*/
|
|
1051
|
+
[k: string]: string;
|
|
1052
|
+
}
|
|
1053
|
+
/**
|
|
1054
|
+
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1055
|
+
*/
|
|
1056
|
+
export interface SourceLocation8 {
|
|
1057
|
+
/**
|
|
1058
|
+
* 1-indexed line number in the source file where the step was detected.
|
|
1059
|
+
*/
|
|
1060
|
+
line: number;
|
|
1061
|
+
/**
|
|
1062
|
+
* 0-indexed character offset from the start of the source file where the step begins.
|
|
1063
|
+
*/
|
|
1064
|
+
startIndex: number;
|
|
1065
|
+
/**
|
|
1066
|
+
* 0-indexed character offset from the start of the source file where the step ends (exclusive).
|
|
1067
|
+
*/
|
|
1068
|
+
endIndex: number;
|
|
1069
|
+
}
|
|
940
1070
|
export interface Type {
|
|
941
1071
|
type: TypeKeys;
|
|
942
1072
|
[k: string]: unknown;
|
|
@@ -978,7 +1108,7 @@ export interface TypeKeysDetailed {
|
|
|
978
1108
|
*/
|
|
979
1109
|
elementAria?: string;
|
|
980
1110
|
}
|
|
981
|
-
export interface
|
|
1111
|
+
export interface Common9 {
|
|
982
1112
|
/**
|
|
983
1113
|
* JSON Schema for this object.
|
|
984
1114
|
*/
|
|
@@ -995,13 +1125,13 @@ export interface Common8 {
|
|
|
995
1125
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
996
1126
|
*/
|
|
997
1127
|
unsafe?: boolean;
|
|
998
|
-
outputs?:
|
|
999
|
-
variables?:
|
|
1128
|
+
outputs?: OutputsStep9;
|
|
1129
|
+
variables?: VariablesStep9;
|
|
1000
1130
|
/**
|
|
1001
1131
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1002
1132
|
*/
|
|
1003
1133
|
breakpoint?: boolean;
|
|
1004
|
-
location?:
|
|
1134
|
+
location?: SourceLocation9;
|
|
1005
1135
|
/**
|
|
1006
1136
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1007
1137
|
*/
|
|
@@ -1011,11 +1141,11 @@ export interface Common8 {
|
|
|
1011
1141
|
/**
|
|
1012
1142
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1013
1143
|
*/
|
|
1014
|
-
export interface
|
|
1144
|
+
export interface OutputsStep9 {
|
|
1015
1145
|
/**
|
|
1016
1146
|
* Runtime expression for a user-defined output value.
|
|
1017
1147
|
*
|
|
1018
|
-
* This interface was referenced by `
|
|
1148
|
+
* This interface was referenced by `OutputsStep9`'s JSON-Schema definition
|
|
1019
1149
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1020
1150
|
*/
|
|
1021
1151
|
[k: string]: string;
|
|
@@ -1023,11 +1153,11 @@ export interface OutputsStep8 {
|
|
|
1023
1153
|
/**
|
|
1024
1154
|
* Environment variables to set from user-defined expressions.
|
|
1025
1155
|
*/
|
|
1026
|
-
export interface
|
|
1156
|
+
export interface VariablesStep9 {
|
|
1027
1157
|
/**
|
|
1028
1158
|
* Runtime expression for a user-defined output value.
|
|
1029
1159
|
*
|
|
1030
|
-
* This interface was referenced by `
|
|
1160
|
+
* This interface was referenced by `VariablesStep9`'s JSON-Schema definition
|
|
1031
1161
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1032
1162
|
*/
|
|
1033
1163
|
[k: string]: string;
|
|
@@ -1035,7 +1165,7 @@ export interface VariablesStep8 {
|
|
|
1035
1165
|
/**
|
|
1036
1166
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1037
1167
|
*/
|
|
1038
|
-
export interface
|
|
1168
|
+
export interface SourceLocation9 {
|
|
1039
1169
|
/**
|
|
1040
1170
|
* 1-indexed line number in the source file where the step was detected.
|
|
1041
1171
|
*/
|
|
@@ -1096,7 +1226,7 @@ export interface SourceIntegration {
|
|
|
1096
1226
|
*/
|
|
1097
1227
|
contentPath?: string;
|
|
1098
1228
|
}
|
|
1099
|
-
export interface
|
|
1229
|
+
export interface Common10 {
|
|
1100
1230
|
/**
|
|
1101
1231
|
* JSON Schema for this object.
|
|
1102
1232
|
*/
|
|
@@ -1113,13 +1243,13 @@ export interface Common9 {
|
|
|
1113
1243
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1114
1244
|
*/
|
|
1115
1245
|
unsafe?: boolean;
|
|
1116
|
-
outputs?:
|
|
1117
|
-
variables?:
|
|
1246
|
+
outputs?: OutputsStep10;
|
|
1247
|
+
variables?: VariablesStep10;
|
|
1118
1248
|
/**
|
|
1119
1249
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1120
1250
|
*/
|
|
1121
1251
|
breakpoint?: boolean;
|
|
1122
|
-
location?:
|
|
1252
|
+
location?: SourceLocation10;
|
|
1123
1253
|
/**
|
|
1124
1254
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1125
1255
|
*/
|
|
@@ -1129,11 +1259,11 @@ export interface Common9 {
|
|
|
1129
1259
|
/**
|
|
1130
1260
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1131
1261
|
*/
|
|
1132
|
-
export interface
|
|
1262
|
+
export interface OutputsStep10 {
|
|
1133
1263
|
/**
|
|
1134
1264
|
* Runtime expression for a user-defined output value.
|
|
1135
1265
|
*
|
|
1136
|
-
* This interface was referenced by `
|
|
1266
|
+
* This interface was referenced by `OutputsStep10`'s JSON-Schema definition
|
|
1137
1267
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1138
1268
|
*/
|
|
1139
1269
|
[k: string]: string;
|
|
@@ -1141,11 +1271,11 @@ export interface OutputsStep9 {
|
|
|
1141
1271
|
/**
|
|
1142
1272
|
* Environment variables to set from user-defined expressions.
|
|
1143
1273
|
*/
|
|
1144
|
-
export interface
|
|
1274
|
+
export interface VariablesStep10 {
|
|
1145
1275
|
/**
|
|
1146
1276
|
* Runtime expression for a user-defined output value.
|
|
1147
1277
|
*
|
|
1148
|
-
* This interface was referenced by `
|
|
1278
|
+
* This interface was referenced by `VariablesStep10`'s JSON-Schema definition
|
|
1149
1279
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1150
1280
|
*/
|
|
1151
1281
|
[k: string]: string;
|
|
@@ -1153,7 +1283,7 @@ export interface VariablesStep9 {
|
|
|
1153
1283
|
/**
|
|
1154
1284
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1155
1285
|
*/
|
|
1156
|
-
export interface
|
|
1286
|
+
export interface SourceLocation10 {
|
|
1157
1287
|
/**
|
|
1158
1288
|
* 1-indexed line number in the source file where the step was detected.
|
|
1159
1289
|
*/
|
|
@@ -1171,7 +1301,7 @@ export interface SaveCookie {
|
|
|
1171
1301
|
saveCookie: SaveCookie1;
|
|
1172
1302
|
[k: string]: unknown;
|
|
1173
1303
|
}
|
|
1174
|
-
export interface
|
|
1304
|
+
export interface Common11 {
|
|
1175
1305
|
/**
|
|
1176
1306
|
* JSON Schema for this object.
|
|
1177
1307
|
*/
|
|
@@ -1188,13 +1318,13 @@ export interface Common10 {
|
|
|
1188
1318
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1189
1319
|
*/
|
|
1190
1320
|
unsafe?: boolean;
|
|
1191
|
-
outputs?:
|
|
1192
|
-
variables?:
|
|
1321
|
+
outputs?: OutputsStep11;
|
|
1322
|
+
variables?: VariablesStep11;
|
|
1193
1323
|
/**
|
|
1194
1324
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1195
1325
|
*/
|
|
1196
1326
|
breakpoint?: boolean;
|
|
1197
|
-
location?:
|
|
1327
|
+
location?: SourceLocation11;
|
|
1198
1328
|
/**
|
|
1199
1329
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1200
1330
|
*/
|
|
@@ -1204,11 +1334,11 @@ export interface Common10 {
|
|
|
1204
1334
|
/**
|
|
1205
1335
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1206
1336
|
*/
|
|
1207
|
-
export interface
|
|
1337
|
+
export interface OutputsStep11 {
|
|
1208
1338
|
/**
|
|
1209
1339
|
* Runtime expression for a user-defined output value.
|
|
1210
1340
|
*
|
|
1211
|
-
* This interface was referenced by `
|
|
1341
|
+
* This interface was referenced by `OutputsStep11`'s JSON-Schema definition
|
|
1212
1342
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1213
1343
|
*/
|
|
1214
1344
|
[k: string]: string;
|
|
@@ -1216,11 +1346,11 @@ export interface OutputsStep10 {
|
|
|
1216
1346
|
/**
|
|
1217
1347
|
* Environment variables to set from user-defined expressions.
|
|
1218
1348
|
*/
|
|
1219
|
-
export interface
|
|
1349
|
+
export interface VariablesStep11 {
|
|
1220
1350
|
/**
|
|
1221
1351
|
* Runtime expression for a user-defined output value.
|
|
1222
1352
|
*
|
|
1223
|
-
* This interface was referenced by `
|
|
1353
|
+
* This interface was referenced by `VariablesStep11`'s JSON-Schema definition
|
|
1224
1354
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1225
1355
|
*/
|
|
1226
1356
|
[k: string]: string;
|
|
@@ -1228,7 +1358,7 @@ export interface VariablesStep10 {
|
|
|
1228
1358
|
/**
|
|
1229
1359
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1230
1360
|
*/
|
|
1231
|
-
export interface
|
|
1361
|
+
export interface SourceLocation11 {
|
|
1232
1362
|
/**
|
|
1233
1363
|
* 1-indexed line number in the source file where the step was detected.
|
|
1234
1364
|
*/
|
|
@@ -1259,6 +1389,10 @@ export interface RecordDetailed {
|
|
|
1259
1389
|
* If `true`, overwrites the existing recording at `path` if it exists.
|
|
1260
1390
|
*/
|
|
1261
1391
|
overwrite?: "true" | "false";
|
|
1392
|
+
/**
|
|
1393
|
+
* Identifier for this recording. A later `stopRecord` step can target it by name (`stopRecord: "<name>"`), which is how you stop a specific recording when several overlap. Names must be unique among recordings that are active at the same time. If omitted, the recording is anonymous and is stopped LIFO by an untargeted `stopRecord`.
|
|
1394
|
+
*/
|
|
1395
|
+
name?: string;
|
|
1262
1396
|
engine?: RecordingEngine;
|
|
1263
1397
|
[k: string]: unknown;
|
|
1264
1398
|
}
|
|
@@ -1276,7 +1410,7 @@ export interface RecordingEngineDetailed {
|
|
|
1276
1410
|
*/
|
|
1277
1411
|
fps?: number;
|
|
1278
1412
|
}
|
|
1279
|
-
export interface
|
|
1413
|
+
export interface Common12 {
|
|
1280
1414
|
/**
|
|
1281
1415
|
* JSON Schema for this object.
|
|
1282
1416
|
*/
|
|
@@ -1293,13 +1427,13 @@ export interface Common11 {
|
|
|
1293
1427
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1294
1428
|
*/
|
|
1295
1429
|
unsafe?: boolean;
|
|
1296
|
-
outputs?:
|
|
1297
|
-
variables?:
|
|
1430
|
+
outputs?: OutputsStep12;
|
|
1431
|
+
variables?: VariablesStep12;
|
|
1298
1432
|
/**
|
|
1299
1433
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1300
1434
|
*/
|
|
1301
1435
|
breakpoint?: boolean;
|
|
1302
|
-
location?:
|
|
1436
|
+
location?: SourceLocation12;
|
|
1303
1437
|
/**
|
|
1304
1438
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1305
1439
|
*/
|
|
@@ -1309,11 +1443,11 @@ export interface Common11 {
|
|
|
1309
1443
|
/**
|
|
1310
1444
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1311
1445
|
*/
|
|
1312
|
-
export interface
|
|
1446
|
+
export interface OutputsStep12 {
|
|
1313
1447
|
/**
|
|
1314
1448
|
* Runtime expression for a user-defined output value.
|
|
1315
1449
|
*
|
|
1316
|
-
* This interface was referenced by `
|
|
1450
|
+
* This interface was referenced by `OutputsStep12`'s JSON-Schema definition
|
|
1317
1451
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1318
1452
|
*/
|
|
1319
1453
|
[k: string]: string;
|
|
@@ -1321,11 +1455,11 @@ export interface OutputsStep11 {
|
|
|
1321
1455
|
/**
|
|
1322
1456
|
* Environment variables to set from user-defined expressions.
|
|
1323
1457
|
*/
|
|
1324
|
-
export interface
|
|
1458
|
+
export interface VariablesStep12 {
|
|
1325
1459
|
/**
|
|
1326
1460
|
* Runtime expression for a user-defined output value.
|
|
1327
1461
|
*
|
|
1328
|
-
* This interface was referenced by `
|
|
1462
|
+
* This interface was referenced by `VariablesStep12`'s JSON-Schema definition
|
|
1329
1463
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1330
1464
|
*/
|
|
1331
1465
|
[k: string]: string;
|
|
@@ -1333,7 +1467,7 @@ export interface VariablesStep11 {
|
|
|
1333
1467
|
/**
|
|
1334
1468
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1335
1469
|
*/
|
|
1336
|
-
export interface
|
|
1470
|
+
export interface SourceLocation12 {
|
|
1337
1471
|
/**
|
|
1338
1472
|
* 1-indexed line number in the source file where the step was detected.
|
|
1339
1473
|
*/
|
|
@@ -1351,7 +1485,13 @@ export interface StopRecord {
|
|
|
1351
1485
|
stopRecord: StopRecord1;
|
|
1352
1486
|
[k: string]: unknown;
|
|
1353
1487
|
}
|
|
1354
|
-
export interface
|
|
1488
|
+
export interface StopRecordDetailed {
|
|
1489
|
+
/**
|
|
1490
|
+
* Name of the recording to stop. Matches the `name` given to a `record` step.
|
|
1491
|
+
*/
|
|
1492
|
+
name: string;
|
|
1493
|
+
}
|
|
1494
|
+
export interface Common13 {
|
|
1355
1495
|
/**
|
|
1356
1496
|
* JSON Schema for this object.
|
|
1357
1497
|
*/
|
|
@@ -1368,13 +1508,13 @@ export interface Common12 {
|
|
|
1368
1508
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1369
1509
|
*/
|
|
1370
1510
|
unsafe?: boolean;
|
|
1371
|
-
outputs?:
|
|
1372
|
-
variables?:
|
|
1511
|
+
outputs?: OutputsStep13;
|
|
1512
|
+
variables?: VariablesStep13;
|
|
1373
1513
|
/**
|
|
1374
1514
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1375
1515
|
*/
|
|
1376
1516
|
breakpoint?: boolean;
|
|
1377
|
-
location?:
|
|
1517
|
+
location?: SourceLocation13;
|
|
1378
1518
|
/**
|
|
1379
1519
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1380
1520
|
*/
|
|
@@ -1384,11 +1524,11 @@ export interface Common12 {
|
|
|
1384
1524
|
/**
|
|
1385
1525
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1386
1526
|
*/
|
|
1387
|
-
export interface
|
|
1527
|
+
export interface OutputsStep13 {
|
|
1388
1528
|
/**
|
|
1389
1529
|
* Runtime expression for a user-defined output value.
|
|
1390
1530
|
*
|
|
1391
|
-
* This interface was referenced by `
|
|
1531
|
+
* This interface was referenced by `OutputsStep13`'s JSON-Schema definition
|
|
1392
1532
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1393
1533
|
*/
|
|
1394
1534
|
[k: string]: string;
|
|
@@ -1396,11 +1536,11 @@ export interface OutputsStep12 {
|
|
|
1396
1536
|
/**
|
|
1397
1537
|
* Environment variables to set from user-defined expressions.
|
|
1398
1538
|
*/
|
|
1399
|
-
export interface
|
|
1539
|
+
export interface VariablesStep13 {
|
|
1400
1540
|
/**
|
|
1401
1541
|
* Runtime expression for a user-defined output value.
|
|
1402
1542
|
*
|
|
1403
|
-
* This interface was referenced by `
|
|
1543
|
+
* This interface was referenced by `VariablesStep13`'s JSON-Schema definition
|
|
1404
1544
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1405
1545
|
*/
|
|
1406
1546
|
[k: string]: string;
|
|
@@ -1408,7 +1548,7 @@ export interface VariablesStep12 {
|
|
|
1408
1548
|
/**
|
|
1409
1549
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1410
1550
|
*/
|
|
1411
|
-
export interface
|
|
1551
|
+
export interface SourceLocation13 {
|
|
1412
1552
|
/**
|
|
1413
1553
|
* 1-indexed line number in the source file where the step was detected.
|
|
1414
1554
|
*/
|
|
@@ -1426,7 +1566,7 @@ export interface LoadVariables {
|
|
|
1426
1566
|
loadVariables: LoadVariables1;
|
|
1427
1567
|
[k: string]: unknown;
|
|
1428
1568
|
}
|
|
1429
|
-
export interface
|
|
1569
|
+
export interface Common14 {
|
|
1430
1570
|
/**
|
|
1431
1571
|
* JSON Schema for this object.
|
|
1432
1572
|
*/
|
|
@@ -1443,13 +1583,13 @@ export interface Common13 {
|
|
|
1443
1583
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1444
1584
|
*/
|
|
1445
1585
|
unsafe?: boolean;
|
|
1446
|
-
outputs?:
|
|
1447
|
-
variables?:
|
|
1586
|
+
outputs?: OutputsStep14;
|
|
1587
|
+
variables?: VariablesStep14;
|
|
1448
1588
|
/**
|
|
1449
1589
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1450
1590
|
*/
|
|
1451
1591
|
breakpoint?: boolean;
|
|
1452
|
-
location?:
|
|
1592
|
+
location?: SourceLocation14;
|
|
1453
1593
|
/**
|
|
1454
1594
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1455
1595
|
*/
|
|
@@ -1459,11 +1599,11 @@ export interface Common13 {
|
|
|
1459
1599
|
/**
|
|
1460
1600
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1461
1601
|
*/
|
|
1462
|
-
export interface
|
|
1602
|
+
export interface OutputsStep14 {
|
|
1463
1603
|
/**
|
|
1464
1604
|
* Runtime expression for a user-defined output value.
|
|
1465
1605
|
*
|
|
1466
|
-
* This interface was referenced by `
|
|
1606
|
+
* This interface was referenced by `OutputsStep14`'s JSON-Schema definition
|
|
1467
1607
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1468
1608
|
*/
|
|
1469
1609
|
[k: string]: string;
|
|
@@ -1471,11 +1611,11 @@ export interface OutputsStep13 {
|
|
|
1471
1611
|
/**
|
|
1472
1612
|
* Environment variables to set from user-defined expressions.
|
|
1473
1613
|
*/
|
|
1474
|
-
export interface
|
|
1614
|
+
export interface VariablesStep14 {
|
|
1475
1615
|
/**
|
|
1476
1616
|
* Runtime expression for a user-defined output value.
|
|
1477
1617
|
*
|
|
1478
|
-
* This interface was referenced by `
|
|
1618
|
+
* This interface was referenced by `VariablesStep14`'s JSON-Schema definition
|
|
1479
1619
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1480
1620
|
*/
|
|
1481
1621
|
[k: string]: string;
|
|
@@ -1483,7 +1623,7 @@ export interface VariablesStep13 {
|
|
|
1483
1623
|
/**
|
|
1484
1624
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1485
1625
|
*/
|
|
1486
|
-
export interface
|
|
1626
|
+
export interface SourceLocation14 {
|
|
1487
1627
|
/**
|
|
1488
1628
|
* 1-indexed line number in the source file where the step was detected.
|
|
1489
1629
|
*/
|
|
@@ -1519,7 +1659,7 @@ export interface DragAndDrop1 {
|
|
|
1519
1659
|
duration?: number;
|
|
1520
1660
|
[k: string]: unknown;
|
|
1521
1661
|
}
|
|
1522
|
-
export interface
|
|
1662
|
+
export interface Common15 {
|
|
1523
1663
|
/**
|
|
1524
1664
|
* JSON Schema for this object.
|
|
1525
1665
|
*/
|
|
@@ -1536,13 +1676,13 @@ export interface Common14 {
|
|
|
1536
1676
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1537
1677
|
*/
|
|
1538
1678
|
unsafe?: boolean;
|
|
1539
|
-
outputs?:
|
|
1540
|
-
variables?:
|
|
1679
|
+
outputs?: OutputsStep15;
|
|
1680
|
+
variables?: VariablesStep15;
|
|
1541
1681
|
/**
|
|
1542
1682
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1543
1683
|
*/
|
|
1544
1684
|
breakpoint?: boolean;
|
|
1545
|
-
location?:
|
|
1685
|
+
location?: SourceLocation15;
|
|
1546
1686
|
/**
|
|
1547
1687
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1548
1688
|
*/
|
|
@@ -1552,11 +1692,11 @@ export interface Common14 {
|
|
|
1552
1692
|
/**
|
|
1553
1693
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1554
1694
|
*/
|
|
1555
|
-
export interface
|
|
1695
|
+
export interface OutputsStep15 {
|
|
1556
1696
|
/**
|
|
1557
1697
|
* Runtime expression for a user-defined output value.
|
|
1558
1698
|
*
|
|
1559
|
-
* This interface was referenced by `
|
|
1699
|
+
* This interface was referenced by `OutputsStep15`'s JSON-Schema definition
|
|
1560
1700
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1561
1701
|
*/
|
|
1562
1702
|
[k: string]: string;
|
|
@@ -1564,11 +1704,11 @@ export interface OutputsStep14 {
|
|
|
1564
1704
|
/**
|
|
1565
1705
|
* Environment variables to set from user-defined expressions.
|
|
1566
1706
|
*/
|
|
1567
|
-
export interface
|
|
1707
|
+
export interface VariablesStep15 {
|
|
1568
1708
|
/**
|
|
1569
1709
|
* Runtime expression for a user-defined output value.
|
|
1570
1710
|
*
|
|
1571
|
-
* This interface was referenced by `
|
|
1711
|
+
* This interface was referenced by `VariablesStep15`'s JSON-Schema definition
|
|
1572
1712
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1573
1713
|
*/
|
|
1574
1714
|
[k: string]: string;
|
|
@@ -1576,7 +1716,7 @@ export interface VariablesStep14 {
|
|
|
1576
1716
|
/**
|
|
1577
1717
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1578
1718
|
*/
|
|
1579
|
-
export interface
|
|
1719
|
+
export interface SourceLocation15 {
|
|
1580
1720
|
/**
|
|
1581
1721
|
* 1-indexed line number in the source file where the step was detected.
|
|
1582
1722
|
*/
|
|
@@ -1594,7 +1734,7 @@ export interface LoadCookie {
|
|
|
1594
1734
|
loadCookie: LoadCookie1;
|
|
1595
1735
|
[k: string]: unknown;
|
|
1596
1736
|
}
|
|
1597
|
-
export interface
|
|
1737
|
+
export interface Common16 {
|
|
1598
1738
|
/**
|
|
1599
1739
|
* JSON Schema for this object.
|
|
1600
1740
|
*/
|
|
@@ -1611,13 +1751,13 @@ export interface Common15 {
|
|
|
1611
1751
|
* Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.
|
|
1612
1752
|
*/
|
|
1613
1753
|
unsafe?: boolean;
|
|
1614
|
-
outputs?:
|
|
1615
|
-
variables?:
|
|
1754
|
+
outputs?: OutputsStep16;
|
|
1755
|
+
variables?: VariablesStep16;
|
|
1616
1756
|
/**
|
|
1617
1757
|
* Whether or not this step should act as a breakpoint when debugging is enabled. When `true`, execution will pause at this step when debug mode is enabled.
|
|
1618
1758
|
*/
|
|
1619
1759
|
breakpoint?: boolean;
|
|
1620
|
-
location?:
|
|
1760
|
+
location?: SourceLocation16;
|
|
1621
1761
|
/**
|
|
1622
1762
|
* Path, relative to the run's artifact directory (the report's `runDir`), of the screenshot captured automatically after this step. Always a non-empty, forward-slash, relative path. Present only in test results, when `autoScreenshot` is enabled and the capture succeeded. This is system-populated metadata and should not be set manually.
|
|
1623
1763
|
*/
|
|
@@ -1627,11 +1767,11 @@ export interface Common15 {
|
|
|
1627
1767
|
/**
|
|
1628
1768
|
* Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.
|
|
1629
1769
|
*/
|
|
1630
|
-
export interface
|
|
1770
|
+
export interface OutputsStep16 {
|
|
1631
1771
|
/**
|
|
1632
1772
|
* Runtime expression for a user-defined output value.
|
|
1633
1773
|
*
|
|
1634
|
-
* This interface was referenced by `
|
|
1774
|
+
* This interface was referenced by `OutputsStep16`'s JSON-Schema definition
|
|
1635
1775
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1636
1776
|
*/
|
|
1637
1777
|
[k: string]: string;
|
|
@@ -1639,11 +1779,11 @@ export interface OutputsStep15 {
|
|
|
1639
1779
|
/**
|
|
1640
1780
|
* Environment variables to set from user-defined expressions.
|
|
1641
1781
|
*/
|
|
1642
|
-
export interface
|
|
1782
|
+
export interface VariablesStep16 {
|
|
1643
1783
|
/**
|
|
1644
1784
|
* Runtime expression for a user-defined output value.
|
|
1645
1785
|
*
|
|
1646
|
-
* This interface was referenced by `
|
|
1786
|
+
* This interface was referenced by `VariablesStep16`'s JSON-Schema definition
|
|
1647
1787
|
* via the `patternProperty` "^[A-Za-z0-9_]+$".
|
|
1648
1788
|
*/
|
|
1649
1789
|
[k: string]: string;
|
|
@@ -1651,7 +1791,7 @@ export interface VariablesStep15 {
|
|
|
1651
1791
|
/**
|
|
1652
1792
|
* Source location where this step was detected in the original file. This is system-populated metadata and should not be set manually.
|
|
1653
1793
|
*/
|
|
1654
|
-
export interface
|
|
1794
|
+
export interface SourceLocation16 {
|
|
1655
1795
|
/**
|
|
1656
1796
|
* 1-indexed line number in the source file where the step was detected.
|
|
1657
1797
|
*/
|