postman-runtime 7.36.1 → 7.36.2

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 CHANGED
@@ -1,3 +1,11 @@
1
+ 7.36.2:
2
+ date: 2024-01-19
3
+ chores:
4
+ - >-
5
+ GH-1362 Added an argument to item callback to identify if the item
6
+ execution was skipped
7
+ - GH-1368 Added support for domain property in vault variables
8
+
1
9
  7.36.1:
2
10
  date: 2023-12-20
3
11
  chores:
package/README.md CHANGED
@@ -252,7 +252,7 @@ runner.run(collection, { /* options */ }, function(err, run) {
252
252
  },
253
253
 
254
254
  // Called after completion of an Item
255
- item: function (err, cursor, item, visualizer) {
255
+ item: function (err, cursor, item, visualizer, result) {
256
256
  // err, cursor, item: Same as arguments for "beforeItem"
257
257
 
258
258
  // visualizer: null or object containing visualizer result that looks like this:
@@ -266,6 +266,13 @@ runner.run(collection, { /* options */ }, function(err, run) {
266
266
  // -- Processed template
267
267
  // processedTemplate: <String>
268
268
  // }
269
+
270
+ // result: undefined or object containing following properties
271
+ // {
272
+ // -- True for items skipped using pm.execution.skipRequest
273
+ // isSkipped: <Boolean>
274
+ // }
275
+
269
276
  },
270
277
 
271
278
  // Called before running pre-request script(s) (Yes, Runtime supports multiple pre-request scripts!)