postman-cli 1.21.0 → 1.23.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.
Files changed (2) hide show
  1. package/man/postman.1 +95 -1
  2. package/package.json +5 -5
package/man/postman.1 CHANGED
@@ -1,4 +1,4 @@
1
- .TH POSTMAN 1 "2025-10-07" "v1.21.0" "Postman CLI Manual"
1
+ .TH POSTMAN 1 "2025-11-03" "v1.23.0" "Postman CLI Manual"
2
2
  .SH NAME
3
3
  postman \- Command\-line companion utility for Postman
4
4
  .SH SYNOPSIS
@@ -266,6 +266,52 @@ Eg. postman api publish <apiId> \-\-name v1\e
266
266
  \-\-api\-definition <apiDefinitionId>
267
267
 
268
268
 
269
+ .SS "runner"
270
+ Run runners on your own environments for monitoring your APIs
271
+
272
+ .B Usage:
273
+ [options] [command]
274
+
275
+ .B Subcommands:
276
+ .TP
277
+ .B runner start
278
+ [BETA] Start a runner
279
+
280
+ .SS "runner start"
281
+ [BETA] Start a runner
282
+
283
+ .B Usage:
284
+ [options]
285
+
286
+ .B Options:
287
+ .TP
288
+ .B \-\-id <id>
289
+ The ID of the runner to execute
290
+ .TP
291
+ .B \-\-key <key>
292
+ The secret key for the runner
293
+ .TP
294
+ .B \-\-region <region>
295
+ Specify the region for the runner. Use "eu" for EU region.
296
+ .TP
297
+ .B \-\-proxy <url>
298
+ External proxy URL (e.g., http://proxy.com or http://proxy.com:8080)
299
+ .TP
300
+ .B \-\-egress\-proxy
301
+ Enable built\-in egress proxy
302
+ .TP
303
+ .B \-\-egress\-proxy\-authz\-url <url>
304
+ Custom egress proxy authorization service base URL
305
+ .TP
306
+ .B \-\-ssl\-extra\-ca\-certs <path>
307
+ Additional trusted CA certificates (PEM file, can contain multiple certs)
308
+ .TP
309
+ .B \-\-metrics
310
+ Enable the metrics server for health checks
311
+ .TP
312
+ .B \-\-metrics\-port <port>
313
+ Port for the metrics server (default: 9090) (default: 9090)
314
+
269
315
  .SS "spec"
270
316
  Lint and validate Specifications from the command line
271
317
 
@@ -326,6 +372,54 @@ Specify whether or not to override the default exit code for the current run
326
372
  .B \-t, \-\-timeout <ms>
327
373
  Maximum wait time for run completion in milliseconds (default: 15 minutes) (default: 900000)
328
374
 
375
+ .SS "workspace"
376
+ [BETA] Manage workspace resources.
377
+
378
+ .B Usage:
379
+ [options] [command]
380
+
381
+ .B Subcommands:
382
+ .TP
383
+ .B workspace prepare
384
+ [BETA] Prepare local collections and environments for push by validating and regenerating IDs if needed.
385
+ .TP
386
+ .B workspace push
387
+ [BETA] Push local collection, environment, and specification changes to Postman workspace.
388
+
389
+ .SS "workspace prepare"
390
+ [BETA] Prepare local collections and environments for push by validating and regenerating IDs if needed.
391
+
392
+ .B Usage:
393
+ [options]
394
+
395
+ .B Options:
396
+ .TP
397
+ .B \-\-collections\-dir <path>
398
+ Path to the collections directory (default: .postman/collections)
399
+ .TP
400
+ .B \-\-environments\-dir <path>
401
+ Path to the environments directory (default: .postman/environments)
402
+
403
+ .SS "workspace push"
404
+ [BETA] Push local collection, environment, and specification changes to Postman workspace.
405
+
406
+ .B Usage:
407
+ [options]
408
+
409
+ .B Options:
410
+ .TP
411
+ .B \-\-collections\-dir <path>
412
+ Path to the collections directory (default: .postman/collections)
413
+ .TP
414
+ .B \-\-environments\-dir <path>
415
+ Path to the environments directory (default: .postman/environments)
416
+ .TP
417
+ .B \-\-no\-prepare
418
+ Skip the prepare step before pushing
419
+ .TP
420
+ .B \-y, \-\-yes
421
+ Skip all confirmation prompts
422
+
329
423
  .SH SEE ALSO
330
424
  Full documentation: https://learning.postman.com/docs/postman\-cli/postman\-cli\-overview/
331
425
  .SH AUTHOR
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postman-cli",
3
- "version": "1.21.0",
3
+ "version": "1.23.0",
4
4
  "description": "Official Postman CLI - Command-line companion for API development, testing, and automation",
5
5
  "keywords": [
6
6
  "postman",
@@ -58,9 +58,9 @@
58
58
  "man/"
59
59
  ],
60
60
  "optionalDependencies": {
61
- "@postman/pm-bin-macos-arm64": "1.21.0",
62
- "@postman/pm-bin-macos-x64": "1.21.0",
63
- "@postman/pm-bin-linux-x64": "1.21.0",
64
- "@postman/pm-bin-windows-x64": "1.21.0"
61
+ "@postman/pm-bin-macos-arm64": "1.23.0",
62
+ "@postman/pm-bin-macos-x64": "1.23.0",
63
+ "@postman/pm-bin-linux-x64": "1.23.0",
64
+ "@postman/pm-bin-windows-x64": "1.23.0"
65
65
  }
66
66
  }