@codiac.io/codiac-cli 1.3.183 → 1.3.185
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/README.md +1 -1
- package/dist/apis/codiac-relay-nats/gen/client.d.ts +4 -0
- package/dist/apis/codiac-relay-nats/gen/client.js +12 -0
- package/dist/apis/codiac-relay-nats/gen/client.js.map +1 -1
- package/dist/command-base-exec-tenant.d.ts +13 -5
- package/dist/command-base-exec-tenant.js +3 -3
- package/dist/command-base-exec-tenant.js.map +1 -1
- package/dist/command-base-exec.d.ts +13 -5
- package/dist/command-base-exec.js +3 -3
- package/dist/command-base-exec.js.map +1 -1
- package/dist/commands/asset/deploy.js +3 -0
- package/dist/commands/asset/deploy.js.map +1 -1
- package/dist/commands/config/add.js +4 -3
- package/dist/commands/config/add.js.map +1 -1
- package/dist/commands/config/delete.js +2 -2
- package/dist/commands/config/delete.js.map +1 -1
- package/dist/commands/config/import.js +5 -4
- package/dist/commands/config/import.js.map +1 -1
- package/dist/commands/config/settings/get.js +2 -2
- package/dist/commands/config/settings/get.js.map +1 -1
- package/dist/commands/config/view.d.ts +5 -5
- package/dist/commands/config/view.js +45 -24
- package/dist/commands/config/view.js.map +1 -1
- package/dist/uilogic/config-file-target.d.ts +43 -0
- package/dist/uilogic/config-file-target.js +68 -0
- package/dist/uilogic/config-file-target.js.map +1 -0
- package/dist/uilogic/rootmap-ui-utils.js +1 -1
- package/dist/uilogic/rootmap-ui-utils.js.map +1 -1
- package/oclif.manifest.json +5 -7
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.185",
|
|
3
3
|
"commands": {
|
|
4
4
|
"branch": {
|
|
5
5
|
"id": "branch",
|
|
@@ -4492,10 +4492,9 @@
|
|
|
4492
4492
|
"name": "file",
|
|
4493
4493
|
"type": "option",
|
|
4494
4494
|
"char": "f",
|
|
4495
|
-
"description": "The relative pathname of the config file to view
|
|
4495
|
+
"description": "The relative pathname of the config file to view, relative to the root of the codiac project (defaults to app-config.json).",
|
|
4496
4496
|
"required": false,
|
|
4497
|
-
"multiple": false
|
|
4498
|
-
"default": "app-config.json"
|
|
4497
|
+
"multiple": false
|
|
4499
4498
|
},
|
|
4500
4499
|
"type": {
|
|
4501
4500
|
"name": "type",
|
|
@@ -4525,7 +4524,7 @@
|
|
|
4525
4524
|
"name": "output",
|
|
4526
4525
|
"type": "option",
|
|
4527
4526
|
"char": "o",
|
|
4528
|
-
"description": "
|
|
4527
|
+
"description": "Format in which to render the config document (defaults to auto).",
|
|
4529
4528
|
"required": false,
|
|
4530
4529
|
"multiple": false,
|
|
4531
4530
|
"options": [
|
|
@@ -4533,8 +4532,7 @@
|
|
|
4533
4532
|
"json",
|
|
4534
4533
|
"yaml",
|
|
4535
4534
|
"auto"
|
|
4536
|
-
]
|
|
4537
|
-
"default": "auto"
|
|
4535
|
+
]
|
|
4538
4536
|
},
|
|
4539
4537
|
"prompt": {
|
|
4540
4538
|
"name": "prompt",
|
package/package.json
CHANGED