@naturali/cli 0.55.0 → 0.55.1
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/dist/index.mjs +3 -3
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ var __exportAll = (all, no_symbols) => {
|
|
|
14
14
|
};
|
|
15
15
|
//#endregion
|
|
16
16
|
//#region package.json
|
|
17
|
-
var version = "0.55.
|
|
17
|
+
var version = "0.55.1";
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region ../sdk/src/generated/core/bodySerializer.gen.ts
|
|
20
20
|
const jsonBodySerializer = { bodySerializer: (body) => JSON.stringify(body, (_key, value) => typeof value === "bigint" ? value.toString() : value) };
|
|
@@ -2040,7 +2040,7 @@ var Tasks = class {
|
|
|
2040
2040
|
* Update a task
|
|
2041
2041
|
*
|
|
2042
2042
|
* Edit the card's `title`, `assignee` or `payload`. At least one is required.
|
|
2043
|
-
* `payload` is **shallow-merged** over what is there: keys the request omits are preserved
|
|
2043
|
+
* `payload` is **shallow-merged** over what is there: keys the request omits are preserved. The merged result is validated against the board's `payload_schema`. `last_result` is read-only and lives in its own field — a payload write can never discard or forge it.
|
|
2044
2044
|
* `state` and `board_id` are rejected — a card moves only through `:transition`, and it never changes boards.
|
|
2045
2045
|
*
|
|
2046
2046
|
*/
|
|
@@ -6904,7 +6904,7 @@ const routes = {
|
|
|
6904
6904
|
"update-task": {
|
|
6905
6905
|
serviceClass: "Tasks",
|
|
6906
6906
|
operationId: "updateTask",
|
|
6907
|
-
description: "Edit the card's `title`, `assignee` or `payload`. At least one is required. `payload` is **shallow-merged** over what is there: keys the request omits are preserved
|
|
6907
|
+
description: "Edit the card's `title`, `assignee` or `payload`. At least one is required. `payload` is **shallow-merged** over what is there: keys the request omits are preserved. The merged result is validated against the board's `payload_schema`. `last_result` is read-only and lives in its own field — a payload write can never discard or forge it. `state` and `board_id` are rejected — a card moves only through `:transition`, and it never changes boards.",
|
|
6908
6908
|
moduleDocsUrl: "https://docs.naturali.ai/docs/modules/tasks",
|
|
6909
6909
|
httpMethod: "patch",
|
|
6910
6910
|
pathParams: ["project_id", "task_id"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturali/cli",
|
|
3
|
-
"version": "0.55.
|
|
3
|
+
"version": "0.55.1",
|
|
4
4
|
"description": "Command-line interface for the naturali.ai API, generated from its OpenAPI specs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"tsx": "^4.23.1",
|
|
31
31
|
"typescript": "~6.0.3",
|
|
32
32
|
"vitest": "^4.1.10",
|
|
33
|
-
"@naturali/sdk": "0.55.
|
|
33
|
+
"@naturali/sdk": "0.55.1"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"generate": "tsx scripts/generate.ts",
|