@soat/cli 0.15.8 → 0.15.9

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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -3
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -13,7 +13,7 @@ import { load } from "js-yaml";
13
13
  import * as os from "node:os";
14
14
 
15
15
  //#region package.json
16
- var version = "0.15.8";
16
+ var version = "0.15.9";
17
17
 
18
18
  //#endregion
19
19
  //#region src/cli-wrappers/wrappers/formations.ts
@@ -4724,7 +4724,7 @@ var routes = {
4724
4724
  "update-task": {
4725
4725
  serviceClass: "Tasks",
4726
4726
  operationId: "updateTask",
4727
- description: "Updates a task's payload, title, or assignee. `state` is never directly writable — move it with a transition.",
4727
+ description: "Updates a task's payload, title, or assignee. `state` is never directly writable — move it with a transition. `payload` is shallow-merged over the existing payload (PATCH semantics): keys the request omits are preserved, so setting one field never discards values an on_enter automation wrote (e.g. `last_result`). The merged payload is validated against the workflow's `payload_schema`.",
4728
4728
  moduleDocsUrl: "https://soat.ttoss.dev/docs/modules/tasks",
4729
4729
  pathParams: ["task_id"],
4730
4730
  queryParams: [],
@@ -4742,7 +4742,7 @@ var routes = {
4742
4742
  "in": "body"
4743
4743
  }, {
4744
4744
  "name": "payload",
4745
- "description": "",
4745
+ "description": "Partial payload, shallow-merged over the existing payload. Omitted keys are preserved; provided keys overwrite. The merged result must satisfy the workflow's payload_schema.",
4746
4746
  "required": false,
4747
4747
  "type": "object",
4748
4748
  "in": "body"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soat/cli",
3
- "version": "0.15.8",
3
+ "version": "0.15.9",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@inquirer/input": "^5.1.2",
@@ -8,7 +8,7 @@
8
8
  "@ttoss/logger": "^0.8.19",
9
9
  "commander": "^15.0.0",
10
10
  "js-yaml": "^5.2.1",
11
- "@soat/sdk": "0.15.8"
11
+ "@soat/sdk": "0.15.9"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@ttoss/config": "^1.37.17",