@extrahorizon/exh-cli 1.13.0-dev-182-0eb2cbe → 1.13.0-dev-184-fd0c8a4

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/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # Extra Horizon CLI changelog
2
2
 
3
3
  ### v1.13.0
4
+ * Introduced `exh settings sync`, by default enabling synchronization of service settings from a `service-settings.json` file.
5
+ * Added `exh dispatchers init`, which creates a dispatcher in a new `dispatchers.json` file or appends a new dispatcher to an existing configuration.
6
+ * Added `exh templates init`, generating a basic email template in the `./templates` directory.
7
+ * Introduced `exh tasks init`, replacing `exh tasks create-repo` for task creation.
8
+ * Aligned behavior with other `init` commands by initializing new tasks in the `./tasks` directory by default.
9
+ * Added support for a `templateName` field in mail actions within dispatchers.
10
+ * The CLI automatically resolves the template id based on the provided template name.
11
+ * Removed validation for v1 templates, focusing on improved support for v2 templates in JetBrains IDEs using the provided JSON schemas via `$schema`.
12
+ * Updated `exh tasks sync` to create users with `activationMode: 'manual'`, preventing unnecessary activation emails.
13
+ * Deprecated `exh tasks create-repo` in favor of the new `exh tasks init` command.
14
+ * Deprecated the use of `templateId` in mail actions, recommending `templateName` instead.
4
15
 
5
16
  ### v1.12.0
6
17
  * Now adding `$schema` as the last property when creating a new schema via `exh data schemas init`
@@ -42,7 +42,8 @@ async function syncFunctionUser(data) {
42
42
  if (!user) {
43
43
  console.log(chalk.white('⚙️ Creating the user...'));
44
44
  user = await userRepository.createUser({
45
- firstName: `${taskName}`,
45
+ activationMode: 'manual',
46
+ firstName: taskName,
46
47
  lastName: 'exh.tasks',
47
48
  email,
48
49
  password,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/exh-cli",
3
- "version": "1.13.0-dev-182-0eb2cbe",
3
+ "version": "1.13.0-dev-184-fd0c8a4",
4
4
  "main": "build/index.js",
5
5
  "exports": "./build/index.js",
6
6
  "license": "MIT",