hereya-cli 0.100.3 → 0.100.4

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.
@@ -63,32 +63,33 @@
63
63
  "index.js"
64
64
  ]
65
65
  },
66
- "bootstrap": {
66
+ "clone": {
67
67
  "aliases": [],
68
68
  "args": {
69
- "infrastructureType": {
70
- "description": "infrastructure to bootstrap. Options are local, aws",
71
- "name": "infrastructureType",
69
+ "project": {
70
+ "description": "project name",
71
+ "name": "project",
72
72
  "required": true
73
73
  }
74
74
  },
75
- "description": "Install necessary resources for hereya operations in an infrastructure.",
75
+ "description": "Clone an existing template-based project to the local machine.",
76
76
  "examples": [
77
- "<%= config.bin %> <%= command.id %> aws",
78
- "<%= config.bin %> <%= command.id %> local"
77
+ "<%= config.bin %> <%= command.id %> myProject",
78
+ "<%= config.bin %> <%= command.id %> myProject --chdir=./myProject"
79
79
  ],
80
80
  "flags": {
81
- "force": {
82
- "char": "f",
83
- "description": "redeploy hereya resources if already deployed",
84
- "name": "force",
85
- "allowNo": false,
86
- "type": "boolean"
81
+ "chdir": {
82
+ "description": "directory to clone into",
83
+ "name": "chdir",
84
+ "required": false,
85
+ "hasDynamicHelp": false,
86
+ "multiple": false,
87
+ "type": "option"
87
88
  }
88
89
  },
89
90
  "hasDynamicHelp": false,
90
91
  "hiddenAliases": [],
91
- "id": "bootstrap",
92
+ "id": "clone",
92
93
  "pluginAlias": "hereya-cli",
93
94
  "pluginName": "hereya-cli",
94
95
  "pluginType": "core",
@@ -98,37 +99,36 @@
98
99
  "relativePath": [
99
100
  "dist",
100
101
  "commands",
101
- "bootstrap",
102
+ "clone",
102
103
  "index.js"
103
104
  ]
104
105
  },
105
- "clone": {
106
+ "bootstrap": {
106
107
  "aliases": [],
107
108
  "args": {
108
- "project": {
109
- "description": "project name",
110
- "name": "project",
109
+ "infrastructureType": {
110
+ "description": "infrastructure to bootstrap. Options are local, aws",
111
+ "name": "infrastructureType",
111
112
  "required": true
112
113
  }
113
114
  },
114
- "description": "Clone an existing template-based project to the local machine.",
115
+ "description": "Install necessary resources for hereya operations in an infrastructure.",
115
116
  "examples": [
116
- "<%= config.bin %> <%= command.id %> myProject",
117
- "<%= config.bin %> <%= command.id %> myProject --chdir=./myProject"
117
+ "<%= config.bin %> <%= command.id %> aws",
118
+ "<%= config.bin %> <%= command.id %> local"
118
119
  ],
119
120
  "flags": {
120
- "chdir": {
121
- "description": "directory to clone into",
122
- "name": "chdir",
123
- "required": false,
124
- "hasDynamicHelp": false,
125
- "multiple": false,
126
- "type": "option"
121
+ "force": {
122
+ "char": "f",
123
+ "description": "redeploy hereya resources if already deployed",
124
+ "name": "force",
125
+ "allowNo": false,
126
+ "type": "boolean"
127
127
  }
128
128
  },
129
129
  "hasDynamicHelp": false,
130
130
  "hiddenAliases": [],
131
- "id": "clone",
131
+ "id": "bootstrap",
132
132
  "pluginAlias": "hereya-cli",
133
133
  "pluginName": "hereya-cli",
134
134
  "pluginType": "core",
@@ -138,7 +138,7 @@
138
138
  "relativePath": [
139
139
  "dist",
140
140
  "commands",
141
- "clone",
141
+ "bootstrap",
142
142
  "index.js"
143
143
  ]
144
144
  },
@@ -1354,29 +1354,46 @@
1354
1354
  "index.js"
1355
1355
  ]
1356
1356
  },
1357
- "app:env": {
1357
+ "app:destroy": {
1358
1358
  "aliases": [],
1359
1359
  "args": {
1360
1360
  "name": {
1361
1361
  "description": "app name in org/name format",
1362
1362
  "name": "name",
1363
1363
  "required": true
1364
- },
1365
- "key": {
1366
- "description": "optional env var key to print (omit to print all)",
1367
- "name": "key",
1368
- "required": false
1369
1364
  }
1370
1365
  },
1371
- "description": "Print environment variables exported by a hereya-app deployment.",
1366
+ "description": "Destroy a hereya-app deployment from a workspace.",
1372
1367
  "examples": [
1373
- "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace",
1374
- "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace DATABASE_URL"
1368
+ "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace"
1375
1369
  ],
1376
1370
  "flags": {
1371
+ "chdir": {
1372
+ "description": "Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.",
1373
+ "name": "chdir",
1374
+ "required": false,
1375
+ "hasDynamicHelp": false,
1376
+ "multiple": false,
1377
+ "type": "option"
1378
+ },
1379
+ "local": {
1380
+ "description": "force local execution (skip remote executor)",
1381
+ "name": "local",
1382
+ "allowNo": false,
1383
+ "type": "boolean"
1384
+ },
1385
+ "parameter": {
1386
+ "char": "p",
1387
+ "description": "parameter for the app deployment, in the form of key=value (repeatable)",
1388
+ "name": "parameter",
1389
+ "default": [],
1390
+ "hasDynamicHelp": false,
1391
+ "multiple": true,
1392
+ "type": "option"
1393
+ },
1377
1394
  "workspace": {
1378
1395
  "char": "w",
1379
- "description": "workspace to read env outputs from",
1396
+ "description": "workspace where the app is currently deployed",
1380
1397
  "name": "workspace",
1381
1398
  "required": true,
1382
1399
  "hasDynamicHelp": false,
@@ -1386,7 +1403,7 @@
1386
1403
  },
1387
1404
  "hasDynamicHelp": false,
1388
1405
  "hiddenAliases": [],
1389
- "id": "app:env",
1406
+ "id": "app:destroy",
1390
1407
  "pluginAlias": "hereya-cli",
1391
1408
  "pluginName": "hereya-cli",
1392
1409
  "pluginType": "core",
@@ -1397,50 +1414,33 @@
1397
1414
  "dist",
1398
1415
  "commands",
1399
1416
  "app",
1400
- "env",
1417
+ "destroy",
1401
1418
  "index.js"
1402
1419
  ]
1403
1420
  },
1404
- "app:destroy": {
1421
+ "app:env": {
1405
1422
  "aliases": [],
1406
1423
  "args": {
1407
1424
  "name": {
1408
1425
  "description": "app name in org/name format",
1409
1426
  "name": "name",
1410
1427
  "required": true
1428
+ },
1429
+ "key": {
1430
+ "description": "optional env var key to print (omit to print all)",
1431
+ "name": "key",
1432
+ "required": false
1411
1433
  }
1412
1434
  },
1413
- "description": "Destroy a hereya-app deployment from a workspace.",
1435
+ "description": "Print environment variables exported by a hereya-app deployment.",
1414
1436
  "examples": [
1415
- "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace"
1437
+ "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace",
1438
+ "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace DATABASE_URL"
1416
1439
  ],
1417
1440
  "flags": {
1418
- "chdir": {
1419
- "description": "Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.",
1420
- "name": "chdir",
1421
- "required": false,
1422
- "hasDynamicHelp": false,
1423
- "multiple": false,
1424
- "type": "option"
1425
- },
1426
- "local": {
1427
- "description": "force local execution (skip remote executor)",
1428
- "name": "local",
1429
- "allowNo": false,
1430
- "type": "boolean"
1431
- },
1432
- "parameter": {
1433
- "char": "p",
1434
- "description": "parameter for the app deployment, in the form of key=value (repeatable)",
1435
- "name": "parameter",
1436
- "default": [],
1437
- "hasDynamicHelp": false,
1438
- "multiple": true,
1439
- "type": "option"
1440
- },
1441
1441
  "workspace": {
1442
1442
  "char": "w",
1443
- "description": "workspace where the app is currently deployed",
1443
+ "description": "workspace to read env outputs from",
1444
1444
  "name": "workspace",
1445
1445
  "required": true,
1446
1446
  "hasDynamicHelp": false,
@@ -1450,7 +1450,7 @@
1450
1450
  },
1451
1451
  "hasDynamicHelp": false,
1452
1452
  "hiddenAliases": [],
1453
- "id": "app:destroy",
1453
+ "id": "app:env",
1454
1454
  "pluginAlias": "hereya-cli",
1455
1455
  "pluginName": "hereya-cli",
1456
1456
  "pluginType": "core",
@@ -1461,7 +1461,7 @@
1461
1461
  "dist",
1462
1462
  "commands",
1463
1463
  "app",
1464
- "destroy",
1464
+ "env",
1465
1465
  "index.js"
1466
1466
  ]
1467
1467
  },
@@ -1490,24 +1490,33 @@
1490
1490
  "index.js"
1491
1491
  ]
1492
1492
  },
1493
- "app:status": {
1493
+ "app:new": {
1494
1494
  "aliases": [],
1495
1495
  "args": {
1496
- "name": {
1497
- "description": "app name in org/name format",
1498
- "name": "name",
1496
+ "dirname": {
1497
+ "description": "directory to create the app skeleton in",
1498
+ "name": "dirname",
1499
1499
  "required": true
1500
1500
  }
1501
1501
  },
1502
- "description": "Show the deployment status of a hereya-app on a workspace.",
1502
+ "description": "Scaffold a new hereya-app directory with starter hereyarc.yaml + hereya.yaml.",
1503
1503
  "examples": [
1504
- "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace"
1504
+ "<%= config.bin %> <%= command.id %> ./my-app -n my-org/my-app",
1505
+ "<%= config.bin %> <%= command.id %> ./my-app -n my-org/my-app --description \"An ai-app-builder app\""
1505
1506
  ],
1506
1507
  "flags": {
1507
- "workspace": {
1508
- "char": "w",
1509
- "description": "workspace to read deployment status from",
1510
- "name": "workspace",
1508
+ "description": {
1509
+ "description": "description of the app",
1510
+ "name": "description",
1511
+ "required": false,
1512
+ "hasDynamicHelp": false,
1513
+ "multiple": false,
1514
+ "type": "option"
1515
+ },
1516
+ "name": {
1517
+ "char": "n",
1518
+ "description": "app name in org/name format (e.g. my-org/my-app)",
1519
+ "name": "name",
1511
1520
  "required": true,
1512
1521
  "hasDynamicHelp": false,
1513
1522
  "multiple": false,
@@ -1516,7 +1525,7 @@
1516
1525
  },
1517
1526
  "hasDynamicHelp": false,
1518
1527
  "hiddenAliases": [],
1519
- "id": "app:status",
1528
+ "id": "app:new",
1520
1529
  "pluginAlias": "hereya-cli",
1521
1530
  "pluginName": "hereya-cli",
1522
1531
  "pluginType": "core",
@@ -1527,37 +1536,28 @@
1527
1536
  "dist",
1528
1537
  "commands",
1529
1538
  "app",
1530
- "status",
1539
+ "new",
1531
1540
  "index.js"
1532
1541
  ]
1533
1542
  },
1534
- "app:new": {
1543
+ "app:status": {
1535
1544
  "aliases": [],
1536
1545
  "args": {
1537
- "dirname": {
1538
- "description": "directory to create the app skeleton in",
1539
- "name": "dirname",
1546
+ "name": {
1547
+ "description": "app name in org/name format",
1548
+ "name": "name",
1540
1549
  "required": true
1541
1550
  }
1542
1551
  },
1543
- "description": "Scaffold a new hereya-app directory with starter hereyarc.yaml + hereya.yaml.",
1552
+ "description": "Show the deployment status of a hereya-app on a workspace.",
1544
1553
  "examples": [
1545
- "<%= config.bin %> <%= command.id %> ./my-app -n my-org/my-app",
1546
- "<%= config.bin %> <%= command.id %> ./my-app -n my-org/my-app --description \"An ai-app-builder app\""
1554
+ "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace"
1547
1555
  ],
1548
1556
  "flags": {
1549
- "description": {
1550
- "description": "description of the app",
1551
- "name": "description",
1552
- "required": false,
1553
- "hasDynamicHelp": false,
1554
- "multiple": false,
1555
- "type": "option"
1556
- },
1557
- "name": {
1558
- "char": "n",
1559
- "description": "app name in org/name format (e.g. my-org/my-app)",
1560
- "name": "name",
1557
+ "workspace": {
1558
+ "char": "w",
1559
+ "description": "workspace to read deployment status from",
1560
+ "name": "workspace",
1561
1561
  "required": true,
1562
1562
  "hasDynamicHelp": false,
1563
1563
  "multiple": false,
@@ -1566,7 +1566,7 @@
1566
1566
  },
1567
1567
  "hasDynamicHelp": false,
1568
1568
  "hiddenAliases": [],
1569
- "id": "app:new",
1569
+ "id": "app:status",
1570
1570
  "pluginAlias": "hereya-cli",
1571
1571
  "pluginName": "hereya-cli",
1572
1572
  "pluginType": "core",
@@ -1577,7 +1577,7 @@
1577
1577
  "dist",
1578
1578
  "commands",
1579
1579
  "app",
1580
- "new",
1580
+ "status",
1581
1581
  "index.js"
1582
1582
  ]
1583
1583
  },
@@ -1960,64 +1960,6 @@
1960
1960
  "index.js"
1961
1961
  ]
1962
1962
  },
1963
- "env:set": {
1964
- "aliases": [],
1965
- "args": {
1966
- "name": {
1967
- "description": "name of the environment variable to set",
1968
- "name": "name"
1969
- }
1970
- },
1971
- "description": "Set an user-defined environment variable for the project",
1972
- "examples": [
1973
- "<%= config.bin %> <%= command.id %> FOO -v bar",
1974
- "<%= config.bin %> <%= command.id %> FOO -v bar -w dev"
1975
- ],
1976
- "flags": {
1977
- "chdir": {
1978
- "description": "project root directory",
1979
- "name": "chdir",
1980
- "required": false,
1981
- "hasDynamicHelp": false,
1982
- "multiple": false,
1983
- "type": "option"
1984
- },
1985
- "value": {
1986
- "char": "v",
1987
- "description": "value of the environment variable",
1988
- "name": "value",
1989
- "required": true,
1990
- "hasDynamicHelp": false,
1991
- "multiple": false,
1992
- "type": "option"
1993
- },
1994
- "workspace": {
1995
- "char": "w",
1996
- "description": "name of the workspace to print the env vars for",
1997
- "name": "workspace",
1998
- "required": false,
1999
- "hasDynamicHelp": false,
2000
- "multiple": false,
2001
- "type": "option"
2002
- }
2003
- },
2004
- "hasDynamicHelp": false,
2005
- "hiddenAliases": [],
2006
- "id": "env:set",
2007
- "pluginAlias": "hereya-cli",
2008
- "pluginName": "hereya-cli",
2009
- "pluginType": "core",
2010
- "strict": true,
2011
- "enableJsonFlag": false,
2012
- "isESM": true,
2013
- "relativePath": [
2014
- "dist",
2015
- "commands",
2016
- "env",
2017
- "set",
2018
- "index.js"
2019
- ]
2020
- },
2021
1963
  "docker:run": {
2022
1964
  "aliases": [],
2023
1965
  "args": {
@@ -2138,6 +2080,64 @@
2138
2080
  "index.js"
2139
2081
  ]
2140
2082
  },
2083
+ "env:set": {
2084
+ "aliases": [],
2085
+ "args": {
2086
+ "name": {
2087
+ "description": "name of the environment variable to set",
2088
+ "name": "name"
2089
+ }
2090
+ },
2091
+ "description": "Set an user-defined environment variable for the project",
2092
+ "examples": [
2093
+ "<%= config.bin %> <%= command.id %> FOO -v bar",
2094
+ "<%= config.bin %> <%= command.id %> FOO -v bar -w dev"
2095
+ ],
2096
+ "flags": {
2097
+ "chdir": {
2098
+ "description": "project root directory",
2099
+ "name": "chdir",
2100
+ "required": false,
2101
+ "hasDynamicHelp": false,
2102
+ "multiple": false,
2103
+ "type": "option"
2104
+ },
2105
+ "value": {
2106
+ "char": "v",
2107
+ "description": "value of the environment variable",
2108
+ "name": "value",
2109
+ "required": true,
2110
+ "hasDynamicHelp": false,
2111
+ "multiple": false,
2112
+ "type": "option"
2113
+ },
2114
+ "workspace": {
2115
+ "char": "w",
2116
+ "description": "name of the workspace to print the env vars for",
2117
+ "name": "workspace",
2118
+ "required": false,
2119
+ "hasDynamicHelp": false,
2120
+ "multiple": false,
2121
+ "type": "option"
2122
+ }
2123
+ },
2124
+ "hasDynamicHelp": false,
2125
+ "hiddenAliases": [],
2126
+ "id": "env:set",
2127
+ "pluginAlias": "hereya-cli",
2128
+ "pluginName": "hereya-cli",
2129
+ "pluginType": "core",
2130
+ "strict": true,
2131
+ "enableJsonFlag": false,
2132
+ "isESM": true,
2133
+ "relativePath": [
2134
+ "dist",
2135
+ "commands",
2136
+ "env",
2137
+ "set",
2138
+ "index.js"
2139
+ ]
2140
+ },
2141
2141
  "flow:add": {
2142
2142
  "aliases": [],
2143
2143
  "args": {
@@ -2588,37 +2588,6 @@
2588
2588
  "index.js"
2589
2589
  ]
2590
2590
  },
2591
- "workspace:delete": {
2592
- "aliases": [],
2593
- "args": {
2594
- "name": {
2595
- "description": "name of the workspace to delete",
2596
- "name": "name",
2597
- "required": true
2598
- }
2599
- },
2600
- "description": "Delete a workspace if it exists.",
2601
- "examples": [
2602
- "<%= config.bin %> <%= command.id %> dev"
2603
- ],
2604
- "flags": {},
2605
- "hasDynamicHelp": false,
2606
- "hiddenAliases": [],
2607
- "id": "workspace:delete",
2608
- "pluginAlias": "hereya-cli",
2609
- "pluginName": "hereya-cli",
2610
- "pluginType": "core",
2611
- "strict": true,
2612
- "enableJsonFlag": false,
2613
- "isESM": true,
2614
- "relativePath": [
2615
- "dist",
2616
- "commands",
2617
- "workspace",
2618
- "delete",
2619
- "index.js"
2620
- ]
2621
- },
2622
2591
  "workspace:create": {
2623
2592
  "aliases": [],
2624
2593
  "args": {
@@ -2675,6 +2644,37 @@
2675
2644
  "index.js"
2676
2645
  ]
2677
2646
  },
2647
+ "workspace:delete": {
2648
+ "aliases": [],
2649
+ "args": {
2650
+ "name": {
2651
+ "description": "name of the workspace to delete",
2652
+ "name": "name",
2653
+ "required": true
2654
+ }
2655
+ },
2656
+ "description": "Delete a workspace if it exists.",
2657
+ "examples": [
2658
+ "<%= config.bin %> <%= command.id %> dev"
2659
+ ],
2660
+ "flags": {},
2661
+ "hasDynamicHelp": false,
2662
+ "hiddenAliases": [],
2663
+ "id": "workspace:delete",
2664
+ "pluginAlias": "hereya-cli",
2665
+ "pluginName": "hereya-cli",
2666
+ "pluginType": "core",
2667
+ "strict": true,
2668
+ "enableJsonFlag": false,
2669
+ "isESM": true,
2670
+ "relativePath": [
2671
+ "dist",
2672
+ "commands",
2673
+ "workspace",
2674
+ "delete",
2675
+ "index.js"
2676
+ ]
2677
+ },
2678
2678
  "workspace:env": {
2679
2679
  "aliases": [],
2680
2680
  "args": {
@@ -2789,33 +2789,21 @@
2789
2789
  "index.js"
2790
2790
  ]
2791
2791
  },
2792
- "workspace:set-profile": {
2792
+ "workspace:list": {
2793
2793
  "aliases": [],
2794
- "args": {
2795
- "profile": {
2796
- "description": "AWS profile name to set for the workspace",
2797
- "name": "profile",
2798
- "required": true
2799
- }
2800
- },
2801
- "description": "Set AWS profile and deployment status for a workspace (cloud backend only).",
2794
+ "args": {},
2795
+ "description": "List workspaces.",
2802
2796
  "examples": [
2803
- "<%= config.bin %> <%= command.id %> prod-profile -w production"
2797
+ "<%= config.bin %> <%= command.id %>",
2798
+ "<%= config.bin %> <%= command.id %> --org my-org",
2799
+ "<%= config.bin %> <%= command.id %> --org personal"
2804
2800
  ],
2805
2801
  "flags": {
2806
- "deployment": {
2807
- "char": "d",
2808
- "description": "mark workspace as a deployment workspace (use --no-deployment to unset)",
2809
- "name": "deployment",
2802
+ "org": {
2803
+ "char": "o",
2804
+ "description": "Filter workspaces by organization name. Use \"personal\" to show only your personal workspaces.",
2805
+ "name": "org",
2810
2806
  "required": false,
2811
- "allowNo": true,
2812
- "type": "boolean"
2813
- },
2814
- "workspace": {
2815
- "char": "w",
2816
- "description": "workspace name",
2817
- "name": "workspace",
2818
- "required": true,
2819
2807
  "hasDynamicHelp": false,
2820
2808
  "multiple": false,
2821
2809
  "type": "option"
@@ -2823,7 +2811,7 @@
2823
2811
  },
2824
2812
  "hasDynamicHelp": false,
2825
2813
  "hiddenAliases": [],
2826
- "id": "workspace:set-profile",
2814
+ "id": "workspace:list",
2827
2815
  "pluginAlias": "hereya-cli",
2828
2816
  "pluginName": "hereya-cli",
2829
2817
  "pluginType": "core",
@@ -2834,25 +2822,37 @@
2834
2822
  "dist",
2835
2823
  "commands",
2836
2824
  "workspace",
2837
- "set-profile",
2825
+ "list",
2838
2826
  "index.js"
2839
2827
  ]
2840
2828
  },
2841
- "workspace:list": {
2829
+ "workspace:set-profile": {
2842
2830
  "aliases": [],
2843
- "args": {},
2844
- "description": "List workspaces.",
2831
+ "args": {
2832
+ "profile": {
2833
+ "description": "AWS profile name to set for the workspace",
2834
+ "name": "profile",
2835
+ "required": true
2836
+ }
2837
+ },
2838
+ "description": "Set AWS profile and deployment status for a workspace (cloud backend only).",
2845
2839
  "examples": [
2846
- "<%= config.bin %> <%= command.id %>",
2847
- "<%= config.bin %> <%= command.id %> --org my-org",
2848
- "<%= config.bin %> <%= command.id %> --org personal"
2840
+ "<%= config.bin %> <%= command.id %> prod-profile -w production"
2849
2841
  ],
2850
2842
  "flags": {
2851
- "org": {
2852
- "char": "o",
2853
- "description": "Filter workspaces by organization name. Use \"personal\" to show only your personal workspaces.",
2854
- "name": "org",
2843
+ "deployment": {
2844
+ "char": "d",
2845
+ "description": "mark workspace as a deployment workspace (use --no-deployment to unset)",
2846
+ "name": "deployment",
2855
2847
  "required": false,
2848
+ "allowNo": true,
2849
+ "type": "boolean"
2850
+ },
2851
+ "workspace": {
2852
+ "char": "w",
2853
+ "description": "workspace name",
2854
+ "name": "workspace",
2855
+ "required": true,
2856
2856
  "hasDynamicHelp": false,
2857
2857
  "multiple": false,
2858
2858
  "type": "option"
@@ -2860,7 +2860,7 @@
2860
2860
  },
2861
2861
  "hasDynamicHelp": false,
2862
2862
  "hiddenAliases": [],
2863
- "id": "workspace:list",
2863
+ "id": "workspace:set-profile",
2864
2864
  "pluginAlias": "hereya-cli",
2865
2865
  "pluginName": "hereya-cli",
2866
2866
  "pluginType": "core",
@@ -2871,7 +2871,7 @@
2871
2871
  "dist",
2872
2872
  "commands",
2873
2873
  "workspace",
2874
- "list",
2874
+ "set-profile",
2875
2875
  "index.js"
2876
2876
  ]
2877
2877
  },
@@ -3409,5 +3409,5 @@
3409
3409
  ]
3410
3410
  }
3411
3411
  },
3412
- "version": "0.100.3"
3412
+ "version": "0.100.4"
3413
3413
  }