postman-runtime 7.41.2 → 7.42.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/CHANGELOG.yaml +8 -0
- package/README.md +3 -0
- package/dist/index.js +1 -1
- package/lib/runner/extensions/event.command.js +37 -7
- package/lib/runner/extensions/item.command.js +4 -2
- package/lib/runner/extensions/waterfall.command.js +2 -1
- package/lib/runner/index.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.yaml
CHANGED
package/README.md
CHANGED
|
@@ -51,6 +51,9 @@ runner.run(collection, {
|
|
|
51
51
|
// Globals (a "VariableScope" from the SDK)
|
|
52
52
|
globals: new sdk.VariableScope(),
|
|
53
53
|
|
|
54
|
+
// Local variables (a "VariableScope" from the SDK)
|
|
55
|
+
localVariables: new sdk.VariableScope(),
|
|
56
|
+
|
|
54
57
|
// Execute a folder/request using id/name or path
|
|
55
58
|
entrypoint: {
|
|
56
59
|
// execute a folder/request using id or name
|