postman-cli 1.20.0 → 1.22.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/man/postman.1 +49 -1
- package/package.json +5 -5
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2025-
|
|
1
|
+
.TH POSTMAN 1 "2025-10-29" "v1.22.0" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -326,6 +326,54 @@ Specify whether or not to override the default exit code for the current run
|
|
|
326
326
|
.B \-t, \-\-timeout <ms>
|
|
327
327
|
Maximum wait time for run completion in milliseconds (default: 15 minutes) (default: 900000)
|
|
328
328
|
|
|
329
|
+
.SS "workspace"
|
|
330
|
+
[BETA] Manage workspace resources.
|
|
331
|
+
|
|
332
|
+
.B Usage:
|
|
333
|
+
[options] [command]
|
|
334
|
+
|
|
335
|
+
.B Subcommands:
|
|
336
|
+
.TP
|
|
337
|
+
.B workspace prepare
|
|
338
|
+
[BETA] Prepare local collections and environments for push by validating and regenerating IDs if needed.
|
|
339
|
+
.TP
|
|
340
|
+
.B workspace push
|
|
341
|
+
[BETA] Push local collection, environment, and specification changes to Postman workspace.
|
|
342
|
+
|
|
343
|
+
.SS "workspace prepare"
|
|
344
|
+
[BETA] Prepare local collections and environments for push by validating and regenerating IDs if needed.
|
|
345
|
+
|
|
346
|
+
.B Usage:
|
|
347
|
+
[options]
|
|
348
|
+
|
|
349
|
+
.B Options:
|
|
350
|
+
.TP
|
|
351
|
+
.B \-\-collections\-dir <path>
|
|
352
|
+
Path to the collections directory (default: .postman/collections)
|
|
353
|
+
.TP
|
|
354
|
+
.B \-\-environments\-dir <path>
|
|
355
|
+
Path to the environments directory (default: .postman/environments)
|
|
356
|
+
|
|
357
|
+
.SS "workspace push"
|
|
358
|
+
[BETA] Push local collection, environment, and specification changes to Postman workspace.
|
|
359
|
+
|
|
360
|
+
.B Usage:
|
|
361
|
+
[options]
|
|
362
|
+
|
|
363
|
+
.B Options:
|
|
364
|
+
.TP
|
|
365
|
+
.B \-\-collections\-dir <path>
|
|
366
|
+
Path to the collections directory (default: .postman/collections)
|
|
367
|
+
.TP
|
|
368
|
+
.B \-\-environments\-dir <path>
|
|
369
|
+
Path to the environments directory (default: .postman/environments)
|
|
370
|
+
.TP
|
|
371
|
+
.B \-\-no\-prepare
|
|
372
|
+
Skip the prepare step before pushing
|
|
373
|
+
.TP
|
|
374
|
+
.B \-y, \-\-yes
|
|
375
|
+
Skip all confirmation prompts
|
|
376
|
+
|
|
329
377
|
.SH SEE ALSO
|
|
330
378
|
Full documentation: https://learning.postman.com/docs/postman\-cli/postman\-cli\-overview/
|
|
331
379
|
.SH AUTHOR
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.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.
|
|
62
|
-
"@postman/pm-bin-macos-x64": "1.
|
|
63
|
-
"@postman/pm-bin-linux-x64": "1.
|
|
64
|
-
"@postman/pm-bin-windows-x64": "1.
|
|
61
|
+
"@postman/pm-bin-macos-arm64": "1.22.0",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.22.0",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.22.0",
|
|
64
|
+
"@postman/pm-bin-windows-x64": "1.22.0"
|
|
65
65
|
}
|
|
66
66
|
}
|