@codiac.io/codiac-cli 1.3.62 → 1.3.63
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-api/gen/contracts.d.ts +24 -0
- package/dist/apis/codiac-api/gen/contracts.js +16 -1
- package/dist/apis/codiac-api/gen/contracts.js.map +1 -1
- package/dist/apis/codiac-relay/gen/contracts.d.ts +2 -0
- package/dist/apis/codiac-relay/gen/contracts.js.map +1 -1
- package/dist/cli-common/built-in-cli-user-input.js +2 -2
- package/dist/cli-common/built-in-cli-user-input.js.map +1 -1
- package/dist/cli-common/prompt-select-fuzzy.d.ts +3 -6
- package/dist/cli-common/prompt-select-fuzzy.js.map +1 -1
- package/dist/codiac-constants.d.ts +4 -0
- package/dist/codiac-constants.js +5 -0
- package/dist/codiac-constants.js.map +1 -1
- package/dist/commands/asset/create.d.ts +4 -7
- package/dist/commands/asset/create.js +39 -258
- package/dist/commands/asset/create.js.map +1 -1
- package/dist/commands/asset/edit.d.ts +31 -0
- package/dist/commands/asset/edit.js +131 -0
- package/dist/commands/asset/edit.js.map +1 -0
- package/dist/commands/asset/list.d.ts +1 -0
- package/dist/commands/asset/list.js +20 -0
- package/dist/commands/asset/list.js.map +1 -1
- package/dist/commands/host/delete.js +2 -1
- package/dist/commands/host/delete.js.map +1 -1
- package/dist/commands/host/map.d.ts +1 -0
- package/dist/commands/host/map.js +18 -4
- package/dist/commands/host/map.js.map +1 -1
- package/dist/commands/noc/cluster/create.d.ts +32 -11
- package/dist/commands/noc/cluster/create.js +182 -119
- package/dist/commands/noc/cluster/create.js.map +1 -1
- package/dist/commands/noc/cluster/deinit.d.ts +1 -3
- package/dist/commands/noc/cluster/deinit.js +1 -1
- package/dist/commands/noc/cluster/deinit.js.map +1 -1
- package/dist/ops/i-entry-validator.d.ts +1 -1
- package/dist/relay/relay-container.js +1 -1
- package/dist/uilogic/cloud-resource-configurators/asset-configurator.d.ts +47 -0
- package/dist/uilogic/cloud-resource-configurators/asset-configurator.js +395 -0
- package/dist/uilogic/cloud-resource-configurators/asset-configurator.js.map +1 -0
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.d.ts +2 -0
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.js +58 -3
- package/dist/uilogic/cloud-resource-configurators/aws-resource-configurator.js.map +1 -1
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.d.ts +1 -0
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.js +34 -3
- package/dist/uilogic/cloud-resource-configurators/azure-resource-configurator.js.map +1 -1
- package/dist/uilogic/config-ui-utils.js +1 -1
- package/dist/uilogic/config-ui-utils.js.map +1 -1
- package/dist/uilogic/image-registry-contextualizer.d.ts +3 -2
- package/dist/uilogic/image-registry-contextualizer.js +6 -4
- package/dist/uilogic/image-registry-contextualizer.js.map +1 -1
- package/oclif.manifest.json +202 -69
- package/package.json +3 -3
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.63",
|
|
3
3
|
"commands": {
|
|
4
4
|
"branch": {
|
|
5
5
|
"id": "branch",
|
|
@@ -1381,7 +1381,7 @@
|
|
|
1381
1381
|
"name": "port",
|
|
1382
1382
|
"type": "option",
|
|
1383
1383
|
"char": "p",
|
|
1384
|
-
"description": "The default port to assign the asset when deployed to a cabinet (optional).",
|
|
1384
|
+
"description": "The default port number (from 0 to 65535) to assign the asset when deployed to a cabinet (optional). To specify port forwarding (betw the service and container), use format: `<service-port>:<container-port>`, eg: `3555:80`",
|
|
1385
1385
|
"required": false,
|
|
1386
1386
|
"multiple": true
|
|
1387
1387
|
},
|
|
@@ -1389,10 +1389,23 @@
|
|
|
1389
1389
|
"name": "hasIngress",
|
|
1390
1390
|
"type": "boolean",
|
|
1391
1391
|
"char": "g",
|
|
1392
|
-
"description": "Declaration that the asset service is to be
|
|
1392
|
+
"description": "Declaration that the asset service is to be accessible from outside the cluster (optional: defaults to false).",
|
|
1393
1393
|
"required": false,
|
|
1394
1394
|
"allowNo": false
|
|
1395
1395
|
},
|
|
1396
|
+
"private": {
|
|
1397
|
+
"name": "private",
|
|
1398
|
+
"type": "boolean",
|
|
1399
|
+
"description": "(for use when hasIngress is also set) Prevents access from the internet. That is, declares that asset service to only be accessible through ingress on internal networks (optional: defaults to false). Useful for enabling private \"east-west\" (cross-cluster) communications without going out to the internet.",
|
|
1400
|
+
"required": false,
|
|
1401
|
+
"allowNo": false,
|
|
1402
|
+
"dependsOn": [
|
|
1403
|
+
"hasIngress"
|
|
1404
|
+
],
|
|
1405
|
+
"exclusive": [
|
|
1406
|
+
"helm"
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1396
1409
|
"routedWithoutName": {
|
|
1397
1410
|
"name": "routedWithoutName",
|
|
1398
1411
|
"type": "boolean",
|
|
@@ -1618,6 +1631,81 @@
|
|
|
1618
1631
|
"cabinetName"
|
|
1619
1632
|
]
|
|
1620
1633
|
},
|
|
1634
|
+
"asset:edit": {
|
|
1635
|
+
"id": "asset:edit",
|
|
1636
|
+
"description": "Changes asset attributes.",
|
|
1637
|
+
"strict": true,
|
|
1638
|
+
"pluginName": "@codiac.io/codiac-cli",
|
|
1639
|
+
"pluginAlias": "@codiac.io/codiac-cli",
|
|
1640
|
+
"pluginType": "core",
|
|
1641
|
+
"aliases": [],
|
|
1642
|
+
"hiddenAliases": [],
|
|
1643
|
+
"examples": [
|
|
1644
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1645
|
+
"<%= config.bin %> <%= command.id %> -n my-api",
|
|
1646
|
+
"<%= config.bin %> <%= command.id %> -e main -n my-api"
|
|
1647
|
+
],
|
|
1648
|
+
"flags": {
|
|
1649
|
+
"enterprise": {
|
|
1650
|
+
"name": "enterprise",
|
|
1651
|
+
"type": "option",
|
|
1652
|
+
"char": "e",
|
|
1653
|
+
"description": "The name of the enterprise in which this asset resides. (defaults to the current enterprise context)",
|
|
1654
|
+
"required": false,
|
|
1655
|
+
"multiple": false
|
|
1656
|
+
},
|
|
1657
|
+
"name": {
|
|
1658
|
+
"name": "name",
|
|
1659
|
+
"type": "option",
|
|
1660
|
+
"char": "n",
|
|
1661
|
+
"description": "The name of the asset to edit.",
|
|
1662
|
+
"required": false,
|
|
1663
|
+
"multiple": false
|
|
1664
|
+
},
|
|
1665
|
+
"code": {
|
|
1666
|
+
"name": "code",
|
|
1667
|
+
"type": "option",
|
|
1668
|
+
"char": "c",
|
|
1669
|
+
"description": "The host name to assign this asset in the domain url. eg: 'myasset' in 'myasset.your-domain.com' (Optional: defaults to the asset name).",
|
|
1670
|
+
"required": false,
|
|
1671
|
+
"multiple": false
|
|
1672
|
+
},
|
|
1673
|
+
"silent": {
|
|
1674
|
+
"name": "silent",
|
|
1675
|
+
"type": "boolean",
|
|
1676
|
+
"description": "Non-Interactive mode; executes without any user interaction and fails on any missing or invalid arguments.",
|
|
1677
|
+
"allowNo": false,
|
|
1678
|
+
"dependsOn": [
|
|
1679
|
+
"name"
|
|
1680
|
+
],
|
|
1681
|
+
"exclusive": [
|
|
1682
|
+
"echo",
|
|
1683
|
+
"to-script"
|
|
1684
|
+
]
|
|
1685
|
+
},
|
|
1686
|
+
"echo": {
|
|
1687
|
+
"name": "echo",
|
|
1688
|
+
"type": "boolean",
|
|
1689
|
+
"description": "Echo interaction mode; renders the equivalent non-interactive cli command for future use before final execution.",
|
|
1690
|
+
"allowNo": false,
|
|
1691
|
+
"exclusive": [
|
|
1692
|
+
"to-script",
|
|
1693
|
+
"silent"
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
"to-script": {
|
|
1697
|
+
"name": "to-script",
|
|
1698
|
+
"type": "boolean",
|
|
1699
|
+
"description": "Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any execution.",
|
|
1700
|
+
"allowNo": false,
|
|
1701
|
+
"exclusive": [
|
|
1702
|
+
"echo",
|
|
1703
|
+
"silent"
|
|
1704
|
+
]
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
"args": {}
|
|
1708
|
+
},
|
|
1621
1709
|
"asset:list": {
|
|
1622
1710
|
"id": "asset:list",
|
|
1623
1711
|
"description": "Shows the list of assets in a given enterprise.",
|
|
@@ -4653,6 +4741,12 @@
|
|
|
4653
4741
|
"environment"
|
|
4654
4742
|
]
|
|
4655
4743
|
},
|
|
4744
|
+
"private": {
|
|
4745
|
+
"name": "private",
|
|
4746
|
+
"type": "boolean",
|
|
4747
|
+
"description": "Declares that this domain mapping is for internal use and not available from the internet.",
|
|
4748
|
+
"allowNo": false
|
|
4749
|
+
},
|
|
4656
4750
|
"noninteractive": {
|
|
4657
4751
|
"name": "noninteractive",
|
|
4658
4752
|
"type": "boolean",
|
|
@@ -8516,6 +8610,28 @@
|
|
|
8516
8610
|
"cluster:create"
|
|
8517
8611
|
],
|
|
8518
8612
|
"hiddenAliases": [],
|
|
8613
|
+
"examples": [
|
|
8614
|
+
{
|
|
8615
|
+
"description": "Create a cluster interativley.",
|
|
8616
|
+
"command": "cod cluster create my-cluster"
|
|
8617
|
+
},
|
|
8618
|
+
{
|
|
8619
|
+
"description": "Create a cluster interativley and assemble a non-interactive command string.",
|
|
8620
|
+
"command": "cod cluster create my-cluster --echo"
|
|
8621
|
+
},
|
|
8622
|
+
{
|
|
8623
|
+
"description": "Assemble a non-interactive command string WITHOUT actually creating a cluster (dry run).",
|
|
8624
|
+
"command": "cod cluster create my-cluster --to-script"
|
|
8625
|
+
},
|
|
8626
|
+
{
|
|
8627
|
+
"description": "Create a cluster silently.",
|
|
8628
|
+
"command": "cod cluster create my-cluster --provider azure --providerSubscription 12345678-1234-1234-1234-123456789012 --resourceGroup my-rg --location eastus --nodeSpec Standard_DS2_v2 --nodeQty 2 --silent"
|
|
8629
|
+
},
|
|
8630
|
+
{
|
|
8631
|
+
"description": "Create a cluster silently with all available options",
|
|
8632
|
+
"command": "cod cluster create my-comprehensive-cluster --provider azure --providerSubscription 12345678-1234-1234-1234-123456789012 --resourceGroup my-resource-group --location eastus2 --nodeSpec Standard_D2s_v3 --nodeQty 3 --k8sVersion 1.21.2 --nodesMin 2 --nodesMax 5 --owner my-tenant-code --subnet /subscriptions/12345678-1234-1234-1234-123456789012/resourceGroups/my-vnet-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet --identityUserName my-service-principal --identityUserId 87654321-4321-4321-4321-210987654321 --identityUserPassword mySecurePassword123! --silent"
|
|
8633
|
+
}
|
|
8634
|
+
],
|
|
8519
8635
|
"flags": {
|
|
8520
8636
|
"help": {
|
|
8521
8637
|
"name": "help",
|
|
@@ -8524,19 +8640,10 @@
|
|
|
8524
8640
|
"description": "Show CLI help.",
|
|
8525
8641
|
"allowNo": false
|
|
8526
8642
|
},
|
|
8527
|
-
"owner": {
|
|
8528
|
-
"name": "owner",
|
|
8529
|
-
"type": "option",
|
|
8530
|
-
"char": "p",
|
|
8531
|
-
"description": "Tenant code of the private owner of the cluster",
|
|
8532
|
-
"required": false,
|
|
8533
|
-
"multiple": false
|
|
8534
|
-
},
|
|
8535
8643
|
"provider": {
|
|
8536
8644
|
"name": "provider",
|
|
8537
8645
|
"type": "option",
|
|
8538
|
-
"description": "Cloud service provider on which to provision the cluster",
|
|
8539
|
-
"required": false,
|
|
8646
|
+
"description": "(Required in silent mode) Cloud service provider on which to provision the cluster",
|
|
8540
8647
|
"multiple": false,
|
|
8541
8648
|
"options": [
|
|
8542
8649
|
"azure",
|
|
@@ -8547,32 +8654,42 @@
|
|
|
8547
8654
|
"name": "providerSubscription",
|
|
8548
8655
|
"type": "option",
|
|
8549
8656
|
"char": "s",
|
|
8550
|
-
"description": "The Azure subscription Id under which to create the cluster.",
|
|
8551
|
-
"required": false,
|
|
8657
|
+
"description": "(Required in silent mode) The Azure subscription Id under which to create the cluster.",
|
|
8552
8658
|
"multiple": false
|
|
8553
8659
|
},
|
|
8554
8660
|
"resourceGroup": {
|
|
8555
8661
|
"name": "resourceGroup",
|
|
8556
8662
|
"type": "option",
|
|
8557
8663
|
"char": "g",
|
|
8558
|
-
"description": "The Azure resource group to create for the cluster.",
|
|
8559
|
-
"required": false,
|
|
8664
|
+
"description": "(Required in silent mode) The Azure resource group to create for the cluster.",
|
|
8560
8665
|
"multiple": false
|
|
8561
8666
|
},
|
|
8562
8667
|
"location": {
|
|
8563
8668
|
"name": "location",
|
|
8564
8669
|
"type": "option",
|
|
8565
8670
|
"char": "l",
|
|
8566
|
-
"description": "The short name of the azure data center in which the
|
|
8567
|
-
"
|
|
8671
|
+
"description": "(Required in silent mode) The short name of the azure data center in which the cluster is to reside.",
|
|
8672
|
+
"multiple": false
|
|
8673
|
+
},
|
|
8674
|
+
"nodeQty": {
|
|
8675
|
+
"name": "nodeQty",
|
|
8676
|
+
"type": "option",
|
|
8677
|
+
"char": "q",
|
|
8678
|
+
"description": "(Required in silent mode) The starting node count with which to create the cluster.",
|
|
8679
|
+
"multiple": false,
|
|
8680
|
+
"default": 2
|
|
8681
|
+
},
|
|
8682
|
+
"k8sVersion": {
|
|
8683
|
+
"name": "k8sVersion",
|
|
8684
|
+
"type": "option",
|
|
8685
|
+
"description": "(Required in silent mode) The version of Kubernetes to install on the cluster.",
|
|
8568
8686
|
"multiple": false
|
|
8569
8687
|
},
|
|
8570
8688
|
"subnet": {
|
|
8571
8689
|
"name": "subnet",
|
|
8572
8690
|
"type": "option",
|
|
8573
8691
|
"char": "k",
|
|
8574
|
-
"description": "The resource id of the subnet in which the cluster is to be created.",
|
|
8575
|
-
"required": false,
|
|
8692
|
+
"description": "OPTIONAL: The resource id of the subnet in which the cluster is to be created.",
|
|
8576
8693
|
"multiple": false
|
|
8577
8694
|
},
|
|
8578
8695
|
"nodeSpec": {
|
|
@@ -8580,65 +8697,93 @@
|
|
|
8580
8697
|
"type": "option",
|
|
8581
8698
|
"char": "n",
|
|
8582
8699
|
"description": "The identifier for the type of VM to use for nodes in the cluster.",
|
|
8583
|
-
"required": false,
|
|
8584
8700
|
"multiple": false
|
|
8585
8701
|
},
|
|
8586
|
-
"nodeQty": {
|
|
8587
|
-
"name": "nodeQty",
|
|
8588
|
-
"type": "option",
|
|
8589
|
-
"char": "q",
|
|
8590
|
-
"description": "The starting node count with which to create the cluster.",
|
|
8591
|
-
"required": false,
|
|
8592
|
-
"multiple": false,
|
|
8593
|
-
"default": 2
|
|
8594
|
-
},
|
|
8595
8702
|
"identityUserName": {
|
|
8596
8703
|
"name": "identityUserName",
|
|
8597
8704
|
"type": "option",
|
|
8598
8705
|
"char": "u",
|
|
8599
|
-
"description": "OPTIONAL. Name of Svc Principal or Managed Identity to execute as.
|
|
8600
|
-
"required": false,
|
|
8706
|
+
"description": "OPTIONAL. Name of Svc Principal or Managed Identity to execute as.",
|
|
8601
8707
|
"multiple": false
|
|
8602
8708
|
},
|
|
8603
8709
|
"identityUserId": {
|
|
8604
8710
|
"name": "identityUserId",
|
|
8605
8711
|
"type": "option",
|
|
8606
|
-
"
|
|
8607
|
-
"description": "OPTIONAL. ID of Svc Principal or Managed Identity to execute as. To create k8s cluster, IP address, and container Pull. If none supplied Codiac will try to create one.",
|
|
8608
|
-
"required": false,
|
|
8712
|
+
"description": "OPTIONAL. ID of Svc Principal or Managed Identity to execute as.",
|
|
8609
8713
|
"multiple": false
|
|
8610
8714
|
},
|
|
8611
8715
|
"identityUserPassword": {
|
|
8612
8716
|
"name": "identityUserPassword",
|
|
8613
8717
|
"type": "option",
|
|
8614
8718
|
"char": "c",
|
|
8615
|
-
"description": "OPTIONAL. Password of Svc Principal or Managed Identity to execute as.
|
|
8719
|
+
"description": "OPTIONAL. Password of Svc Principal or Managed Identity to execute as.",
|
|
8616
8720
|
"hidden": true,
|
|
8617
|
-
"
|
|
8721
|
+
"multiple": false
|
|
8722
|
+
},
|
|
8723
|
+
"nodesMin": {
|
|
8724
|
+
"name": "nodesMin",
|
|
8725
|
+
"type": "option",
|
|
8726
|
+
"description": "OPTIONAL. The minimum number of nodes to maintain in the cluster.",
|
|
8727
|
+
"multiple": false
|
|
8728
|
+
},
|
|
8729
|
+
"nodesMax": {
|
|
8730
|
+
"name": "nodesMax",
|
|
8731
|
+
"type": "option",
|
|
8732
|
+
"description": "OPTIONAL. The maximum number of nodes to maintain in the cluster.",
|
|
8618
8733
|
"multiple": false
|
|
8619
8734
|
},
|
|
8620
8735
|
"silent": {
|
|
8621
8736
|
"name": "silent",
|
|
8622
|
-
"type": "
|
|
8623
|
-
"
|
|
8624
|
-
"
|
|
8625
|
-
"
|
|
8626
|
-
|
|
8627
|
-
|
|
8628
|
-
|
|
8629
|
-
|
|
8630
|
-
|
|
8631
|
-
|
|
8632
|
-
|
|
8737
|
+
"type": "boolean",
|
|
8738
|
+
"description": "Non-Interactive mode; executes without any user interaction and fails on any missing or invalid arguments.",
|
|
8739
|
+
"allowNo": false,
|
|
8740
|
+
"relationships": [
|
|
8741
|
+
{
|
|
8742
|
+
"type": "all",
|
|
8743
|
+
"flags": [
|
|
8744
|
+
"k8sVersion",
|
|
8745
|
+
"provider",
|
|
8746
|
+
"providerSubscription",
|
|
8747
|
+
"location",
|
|
8748
|
+
"nodeSpec",
|
|
8749
|
+
"nodeQty",
|
|
8750
|
+
"resourceGroup"
|
|
8751
|
+
]
|
|
8752
|
+
}
|
|
8753
|
+
],
|
|
8754
|
+
"exclusive": [
|
|
8755
|
+
"echo",
|
|
8756
|
+
"to-script"
|
|
8633
8757
|
]
|
|
8634
8758
|
},
|
|
8635
|
-
"
|
|
8636
|
-
"name": "
|
|
8759
|
+
"echo": {
|
|
8760
|
+
"name": "echo",
|
|
8637
8761
|
"type": "boolean",
|
|
8638
|
-
"
|
|
8639
|
-
"
|
|
8640
|
-
"
|
|
8641
|
-
|
|
8762
|
+
"description": "Echo interaction mode; renders the equivalent non-interactive cli command for future use before final execution.",
|
|
8763
|
+
"allowNo": false,
|
|
8764
|
+
"exclusive": [
|
|
8765
|
+
"to-script",
|
|
8766
|
+
"silent"
|
|
8767
|
+
]
|
|
8768
|
+
},
|
|
8769
|
+
"to-script": {
|
|
8770
|
+
"name": "to-script",
|
|
8771
|
+
"type": "boolean",
|
|
8772
|
+
"description": "Toscript interaction mode; renders the equivalent non-interactive cli command WITHOUT any execution.",
|
|
8773
|
+
"allowNo": false,
|
|
8774
|
+
"exclusive": [
|
|
8775
|
+
"echo",
|
|
8776
|
+
"silent"
|
|
8777
|
+
]
|
|
8778
|
+
},
|
|
8779
|
+
"take-defaults": {
|
|
8780
|
+
"name": "take-defaults",
|
|
8781
|
+
"type": "boolean",
|
|
8782
|
+
"description": "Setting this to true prevents prompting for confirmation on parameters that were passed in or were automatically set to default values (Irrelevant in --silent mode).",
|
|
8783
|
+
"allowNo": false,
|
|
8784
|
+
"exclusive": [
|
|
8785
|
+
"silent"
|
|
8786
|
+
]
|
|
8642
8787
|
}
|
|
8643
8788
|
},
|
|
8644
8789
|
"args": {
|
|
@@ -8646,14 +8791,7 @@
|
|
|
8646
8791
|
"name": "name",
|
|
8647
8792
|
"description": "Proposed name of the cluster"
|
|
8648
8793
|
}
|
|
8649
|
-
}
|
|
8650
|
-
"dependsOn": [
|
|
8651
|
-
"providerSubscription",
|
|
8652
|
-
"resourceGroup",
|
|
8653
|
-
"location",
|
|
8654
|
-
"nodeSpec",
|
|
8655
|
-
"nodeQty"
|
|
8656
|
-
]
|
|
8794
|
+
}
|
|
8657
8795
|
},
|
|
8658
8796
|
"noc:cluster:deinit": {
|
|
8659
8797
|
"id": "noc:cluster:deinit",
|
|
@@ -8709,12 +8847,7 @@
|
|
|
8709
8847
|
]
|
|
8710
8848
|
}
|
|
8711
8849
|
},
|
|
8712
|
-
"args": {
|
|
8713
|
-
"name": {
|
|
8714
|
-
"name": "name",
|
|
8715
|
-
"description": "Name of existing cluster."
|
|
8716
|
-
}
|
|
8717
|
-
}
|
|
8850
|
+
"args": {}
|
|
8718
8851
|
},
|
|
8719
8852
|
"noc:cluster:destroy": {
|
|
8720
8853
|
"id": "noc:cluster:destroy",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codiac.io/codiac-cli",
|
|
3
|
-
"description": "Local command line interface for managing enterprise assets and environments.",
|
|
4
|
-
"version": "1.3.
|
|
3
|
+
"description": "Local command line interface for managing enterprise assets and environments. ",
|
|
4
|
+
"version": "1.3.63",
|
|
5
5
|
"author": "Codiac",
|
|
6
6
|
"bin": {
|
|
7
7
|
"codiac": "./bin/run",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@codiac.io/api-client-base": "^1.1.15",
|
|
31
31
|
"@codiac.io/cli-tools": "^1.1.10",
|
|
32
32
|
"@codiac.io/codiac-common": "^1.3.3",
|
|
33
|
-
"@codiac.io/codiac-domain": "^1.6.
|
|
33
|
+
"@codiac.io/codiac-domain": "^1.6.7",
|
|
34
34
|
"@codiac.io/codiac-ops-common": "^1.2.1",
|
|
35
35
|
"@codiac.io/codiac-relay-contracts": "^1.2.23",
|
|
36
36
|
"@codiac.io/jwt-lib": "^1.1.6",
|