monday-cli 0.6.0 → 0.7.0

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 CHANGED
@@ -49,7 +49,7 @@ Requires **Node.js ≥ 22**.
49
49
  # Get one at https://<your-org>.monday.com/admin/integrations/api
50
50
  #
51
51
  # OAuth login (`monday auth login`) is registered but deferred in
52
- # v0.6.0 — the verb surfaces a clear `usage_error.details.reason:
52
+ # v0.7.0 — the verb surfaces a clear `usage_error.details.reason:
53
53
  # oauth_unregistered` pointing here. Authenticate via the env var.
54
54
  export MONDAY_API_TOKEN="<your-token>"
55
55
 
@@ -117,17 +117,31 @@ monday user team-list --json
117
117
  monday user team-create --name "Platform" --users 7,9 --json
118
118
  monday user team-add-members <tid> --users 11,13 --json
119
119
 
120
- # 13. Files-shaped friendly `--set` writes (v0.6-M38 closes the v0.4
121
- # v0.5 v0.6 carry-over of the inline form). Single-call file
122
- # upload via `--set <file-col>=<path>`; sibling-branch dispatch at
123
- # the column-resolution boundary routes to the v0.4-M31 multipart
124
- # `add_file_to_column` wire. `--dry-run` emits a `planned_changes`
125
- # envelope without the multipart round-trip. The v0.4-M31 verb-
126
- # shaped `monday item upload` path remains; this is the friendly
127
- # inline alternative.
120
+ # 13. Files-shaped friendly `--set` writes — the v0.6 v0.7 carve-out
121
+ # set, all four CLI shapes reaching Monday's `add_file_to_column`
122
+ # multipart wire:
123
+ # - v0.6-M38 ships single-item friendly `--set <file-col>=<path>`
124
+ # on `monday item set` + `monday item update <iid>` (sibling-
125
+ # branch dispatch at the column-resolution boundary).
126
+ # - v0.7-M42 ships the bulk variant on `monday item update --where
127
+ # ... --set <file-col>=<path>` (per-item multipart fan-out under
128
+ # `--concurrency` / `--continue-on-error`).
129
+ # - v0.7-M43 ships the create-time variant on `monday item create
130
+ # --set <file-col>=<path>` as a two-leg `create_item` +
131
+ # `add_file_to_column` dispatch under the §5.8 orphan-warn
132
+ # atomicity envelope.
133
+ # The v0.4-M31 verb-shaped `monday item upload` path remains as
134
+ # the alternative. `--dry-run` emits `planned_changes` on every
135
+ # shape without the multipart round-trip.
128
136
  monday item set 67890 'Attachments'=./screenshot.png --json
129
137
  monday item update 67890 --set 'Attachments'=./diagram.png --json
130
138
  monday item update 67890 --set 'Attachments'=./report.pdf --dry-run --json
139
+ monday item update --board 12345 --where status=Backlog \
140
+ --set 'Attachments'=./report.pdf --yes --continue-on-error \
141
+ --concurrency 4 --json # v0.7-M42 bulk file dispatch
142
+ monday item create --board 12345 --name "Field report" \
143
+ --set 'Attachments'=./report.pdf --set status='Working on it' \
144
+ --json # v0.7-M43 create-time file --set
131
145
 
132
146
  # 14. Find-or-create with idempotent matching (v0.2)
133
147
  # Re-running with the same args is safe — 0/1/2+ matches route to
@@ -214,7 +228,7 @@ Every JSON response uses the same universal envelope:
214
228
  "meta": {
215
229
  "schema_version": "1",
216
230
  "api_version": "2026-01",
217
- "cli_version": "0.6.0",
231
+ "cli_version": "0.7.0",
218
232
  "request_id": "0e6f1a7b-...",
219
233
  "source": "live",
220
234
  "cache_age_seconds": null,
@@ -314,7 +328,34 @@ See [`.env.example`](./.env.example) for all supported variables
314
328
 
315
329
  ## Scope
316
330
 
317
- **v0.6.0 (current — `monday-cli@0.6.0` on npm):**
331
+ **v0.7.0 (current — `monday-cli@0.7.0` on npm):**
332
+ the v0.6 surface PLUS the two file-`--set` carve-outs deferred at
333
+ v0.6-M38 — bulk `monday item update --where ... --set <file-col>=
334
+ <path>` (M42, per-item multipart fan-out under `--concurrency` /
335
+ `--continue-on-error`) and create-time `monday item create --set
336
+ <file-col>=<path>` (M43, two-leg `create_item` + `add_file_to_
337
+ column` dispatch under the §5.8 orphan-warn atomicity envelope).
338
+ **No breaking changes vs v0.6.0** — the v0.7 surface is additive
339
+ (M42 + M43 only). Built incrementally as two milestones (M42 +
340
+ M43); both close v0.6-M38 D5 / D6 deferrals so the friendly file-
341
+ `--set` form now reaches every callShape (single-item / bulk /
342
+ create-time). The originally-planned Monday API `2026-04` pin
343
+ bump (M39) + `monday item set-description` (M40) + `monday doc
344
+ block-create-bulk` (M41) DEFERRED at 2026-05-20 pending
345
+ `@mondaydotcomorg/api` SDK 15.x publishing with
346
+ `CURRENT_VERSION = '2026-04'` natively — see the per-milestone
347
+ breakdown below. See [CHANGELOG.md](./CHANGELOG.md) for the full
348
+ per-milestone release notes.
349
+
350
+ **OAuth deferral (unchanged from v0.6.0).** `monday auth login` is
351
+ registered but the canonical Monday OAuth app is not registered in
352
+ v0.7.0; the verb surfaces a clear `usage_error.details.reason:
353
+ oauth_unregistered` pointing at `MONDAY_API_TOKEN`. Multi-profile
354
+ config + per-profile credentials cache work fully against API
355
+ tokens; OAuth registration revisits in v0.7.x / v0.8 contingent on
356
+ user demand.
357
+
358
+ **v0.6.0 (the previous release):**
318
359
  the v0.5 surface PLUS files-shaped friendly `--set <file-col>=<path>`
319
360
  writes on `monday item set` + `monday item update` (single-item
320
361
  paths), closing the v0.4 → v0.5 → v0.6 carry-over of the inline
@@ -323,18 +364,10 @@ routes file `--set` to the v0.4-M31 `add_file_to_column` multipart
323
364
  wire; the friendly translator stays JSON-output-shaped for the 13
324
365
  existing writable types. **No breaking changes vs v0.5.0** — the
325
366
  v0.6 surface is additive (M38 only). Built as a single milestone
326
- (M38). See [CHANGELOG.md](./CHANGELOG.md) for the full
327
- per-milestone release notes.
367
+ (M38). The bulk + create-time carve-outs deferred at v0.6-M38
368
+ (D5 / D6) carry forward to v0.7 (above).
328
369
 
329
- **OAuth deferral (unchanged from v0.5.0).** `monday auth login` is
330
- registered but the canonical Monday OAuth app is not registered in
331
- v0.6.0; the verb surfaces a clear `usage_error.details.reason:
332
- oauth_unregistered` pointing at `MONDAY_API_TOKEN`. Multi-profile
333
- config + per-profile credentials cache work fully against API
334
- tokens; OAuth registration revisits in v0.6.x / v0.7 contingent on
335
- user demand.
336
-
337
- **v0.5.0 (the previous release):**
370
+ **v0.5.0 (the prior release):**
338
371
  the v0.4 surface PLUS the full team-writer surface
339
372
  (`monday user team-list/get/create/delete/add-members/remove-members`),
340
373
  the full Monday workdocs CRUD mutation surface — doc-level
@@ -344,7 +377,7 @@ and doc-content import (`monday doc import-html/append-markdown`) —
344
377
  closing the v0.4-M32 workdocs-mutation deferral. **16 new CLI
345
378
  verbs across 9 wire mutations.** Built incrementally across M34–M37.
346
379
 
347
- **v0.4.0 (the prior release):**
380
+ **v0.4.0 (the earlier release):**
348
381
  the v0.3 surface PLUS long-poll item activity streaming
349
382
  (`monday item watch <iid>` — NDJSON), parallel bulk dispatch
350
383
  (`monday item update --where ... --concurrency <N>`), asset uploads
@@ -354,7 +387,7 @@ workdocs CRUD mutation surface deferred to v0.5; shipped at v0.5),
354
387
  and shell completion (`monday completion bash|zsh|fish`). Built
355
388
  incrementally across M29–M33.
356
389
 
357
- **v0.3.0 (the earlier release):**
390
+ **v0.3.0 (an even-earlier release):**
358
391
  the v0.2 mutating core PLUS the Monday Dev convention layer
359
392
  (`monday dev` namespace — sprint / epic / release / task workflow
360
393
  shortcuts on top of standard board CRUD), multi-profile auth
@@ -644,6 +677,69 @@ row `tags`, `board_relation`, `dependency`.
644
677
  D13 empirical-probe pinning (rejected at 500KB, OK at 250KB on
645
678
  both surfaces).
646
679
 
680
+ **What v0.7 added (M42 + M43; full per-milestone narrative in
681
+ [CHANGELOG.md](./CHANGELOG.md)):**
682
+
683
+ - **M42** — `monday item update --where ... --set <file-col>=
684
+ <path>` ships the bulk file-`--set` carve-out fold deferred at
685
+ v0.6-M38 D5. Per-item multipart fan-out across the `--where`-
686
+ resolved item-id set, dispatched through the existing v0.4-M30
687
+ `dispatchParallel` over a shared `MultipartTransport`. `--
688
+ concurrency 1..32` (default 1) opts into bounded parallel
689
+ dispatch; `--continue-on-error` partitions per-item wire
690
+ failures into the M25 partial-success envelope while leaving
691
+ whole-call-abort semantics for the upfront local file pre-check
692
+ (cli-design §5.8). New aggregate `data.summary` slots:
693
+ `column_id` / `filename` / `file_size_bytes` echo the dispatched
694
+ file alongside `matched_count` / `applied_count` / `failed_count`.
695
+ Reuses M31's multipart wire verbatim + v0.6-M38's
696
+ `executeFileColumnSet` runtime body — no new wire op. The pre-
697
+ v0.7-M42 literal `"file_set_on_bulk_unsupported"` (the M38 D5
698
+ rejection) stays RESERVED in docstrings + regression-guarded;
699
+ the runtime path no longer surfaces it.
700
+
701
+ - **M43** — `monday item create --set <file-col>=<path>` ships
702
+ the create-time file-`--set` carve-out fold deferred at v0.6-
703
+ M38 D6. Two-leg dispatch: leg-1 `create_item` bundles the non-
704
+ file `column_values` atomically into the wire call; leg-2
705
+ `add_file_to_column` attaches the file to the newly-created
706
+ item. Pair is non-atomic by construction — leg-2 failure
707
+ surfaces `internal_error` with `details.reason: "create_then_
708
+ file_upload_partial_failure"` + `details.created_item_id`
709
+ echoing the leg-1 orphan + `details.column_id` + `details.
710
+ cause` (M31 wire-failure projection) + `details.hint`
711
+ directing agents to retry leg-2 alone (`monday item set <iid>
712
+ <file-col>=<path>`) OR rollback (`monday item delete <iid>
713
+ --yes`) per the §5.8 orphan-warn atomicity envelope (D1
714
+ closure). `--dry-run` emits two `planned_changes` entries
715
+ (`create_item` with bundled non-file `column_values`, then
716
+ `add_file_to_column`); leg-2 carries no `item_id` slot because
717
+ the item doesn't exist at dry-run time. Reuses M31's multipart
718
+ wire + v0.6-M38's `executeFileColumnSet` runtime body — no new
719
+ wire op. The pre-v0.7-M43 literal
720
+ `"file_set_on_create_unsupported"` (the M38 D6 rejection) stays
721
+ RESERVED + regression-guarded; the runtime path no longer
722
+ surfaces it. The mixed-set mutex rule SUPPRESSED on
723
+ `'item_create'` per D6 asymmetry — `create_item` natively
724
+ bundles non-file `column_values` atomically into leg-1 so the
725
+ multi-`--set` shape is legitimate at create time (universal
726
+ multi-file mutex still applies — 2+ file entries reject as
727
+ before).
728
+
729
+ - **Deferred from v0.7 (pending SDK 15.x with `CURRENT_VERSION
730
+ = '2026-04'` natively):** M39 (Monday API pin bump `2026-01`
731
+ → `2026-04`), M40 (`monday item set-description <iid>` via
732
+ `set_item_description_content`), M41 (`monday doc block-
733
+ create-bulk <did>` via `create_doc_blocks`). The original
734
+ v0.7 framing collapsed to the M42 + M43 carve-out folds at
735
+ 2026-05-20 because (a) SDK 15.x hadn't published, (b) M40's
736
+ empirical probe revealed paid-tier gating + opaque
737
+ `INTERNAL_SERVER_ERROR { service: 'docs-api' }` on free-tier
738
+ accounts, and (c) the string-literal API-version override
739
+ carried maintenance overhead disproportionate to a single
740
+ user-blocked verb. Findings preserved for the re-attempt
741
+ session.
742
+
647
743
  **What v0.6 added (M38; full per-milestone narrative in
648
744
  [CHANGELOG.md](./CHANGELOG.md)):**
649
745
 
@@ -654,17 +750,28 @@ row `tags`, `board_relation`, `dependency`.
654
750
  dispatch at the column-resolution boundary routes file `--set`
655
751
  to the v0.4-M31 `add_file_to_column` multipart wire; the
656
752
  friendly translator stays JSON-output-shaped for the 13
657
- existing writable types (per D1 closure). Mutex rules at M38:
658
- exactly one file `--set` per call; mixing a file `--set` with
753
+ existing writable types (per D1 closure). Mutex rules
754
+ (post v0.7-M42 + v0.7-M43 carve-out folds): exactly one
755
+ file `--set` per call on every callShape (universal multi-
756
+ file mutex — 2+ entries surface `usage_error.details.reason:
757
+ "multi_file_set_unsupported"`); mixing a file `--set` with
659
758
  any value `--set` / `--set-raw` / `--name` surfaces `usage_
660
- error.details.reason: "mixed_file_and_value_sets"`; 2+ file
661
- `--set` entries surface `usage_error.details.reason: "multi_
662
- file_set_unsupported"` (both deferred to v0.6.x per D2). The
663
- bulk `item update --where ... --set <file-col>=<path>` and
664
- `item create --set <file-col>=<path>` paths reject at the
665
- resolution boundary with `details.reason: "file_set_on_bulk_
666
- unsupported"` / `"file_set_on_create_unsupported"` (D5 / D6 —
667
- defer to v0.6.x). `--set-raw <file-col>=<json>` STAYS REJECTED
759
+ error.details.reason: "mixed_file_and_value_sets"` on
760
+ `'item_set'` / `'item_update_single'` / `'item_update_bulk'`,
761
+ SUPPRESSED on `'item_create'` per v0.7-M43 D6 asymmetry
762
+ (`create_item` natively bundles non-file `column_values`
763
+ atomically into leg-1). The bulk `item update --where ...
764
+ --set <file-col>=<path>` path shipped at v0.7-M42 (D5
765
+ carve-out fold; per-item multipart fan-out under
766
+ `--concurrency` / `--continue-on-error`); the create-time
767
+ `item create --set <file-col>=<path>` path shipped at
768
+ v0.7-M43 (D6 carve-out fold; two-leg `create_item` +
769
+ `add_file_to_column` dispatch under the §5.8 orphan-warn
770
+ atomicity envelope). The v0.6-M38 literals
771
+ `"file_set_on_bulk_unsupported"` and
772
+ `"file_set_on_create_unsupported"` stay RESERVED in
773
+ docstrings + regression-guarded; the runtime path no longer
774
+ surfaces them. `--set-raw <file-col>=<json>` STAYS REJECTED
668
775
  per D3 — Monday's wire has no JSON-shape for
669
776
  `change_column_value` on file columns; `monday item upload`
670
777
  from v0.4-M31 remains the verb-shaped alternative path. **No
@@ -673,27 +780,33 @@ row `tags`, `board_relation`, `dependency`.
673
780
  `unsupported_column_type` / `not_found` / `validation_failed`
674
781
  codes with `details.reason` discrimination).
675
782
 
676
- **v0.7 (next):** **Carry-forward backlog** (unpicked
783
+ **v0.8 (next):** **Carry-forward backlog** (unpicked
677
784
  candidates remain in cli-design.md §13 slipped-candidates list
678
785
  pending future candidate-selection sessions): multi-level
679
786
  subitems remain conditional on Monday's data model surfacing
680
- them (slipped from v0.4 → v0.5 → v0.6 → v0.7 across three
681
- consecutive release-preps — Monday's `sub_items_board` still
682
- carries no `subtasks` column at API `2026-01`); cross-board
683
- `item move` value-overrides (Monday's `ColumnMappingInput`
684
- still carries no value slot slipped three times for the same
685
- reason); resumable cross-board cursor pagination (per-board
686
- cursor-lifetime under aggregation needs design work);
687
- profile-scoped argument defaults (filed at the v0.6 kickoff
688
- candidate-selection session extends `~/.monday-cli/config.toml`
689
- with a `[profiles.<name>.defaults]` table carrying scoping args;
690
- requires a prerequisite §13 carve-out Decision at pre-flight
691
- distinguishing aliases-as-stored-command-strings (still
692
- non-goal) from defaults-as-stored-flag-values (carve-out)).
693
- **v0.6.x carve-outs** ride on top: bulk + create file `--set`
694
- paths (D5 / D6 deferrals); multi-file `--set` per call (D2);
695
- file-`--set` stdin support (D7); these defer to v0.6.x within
696
- the v0.6 series.
787
+ them (slipped from v0.4 → v0.5 → v0.6 → v0.7 → v0.8 across
788
+ four consecutive release-preps — Monday's `sub_items_board`
789
+ still carries no `subtasks` column at API `2026-01`, and v0.7
790
+ pivoted away from API `2026-04` at 2026-05-20 so the data-
791
+ model probe gate moves to v0.8's planned `2026-07` pin);
792
+ cross-board `item move` value-overrides (Monday's
793
+ `ColumnMappingInput` still carries no value slot — slipped four
794
+ times for the same reason); resumable cross-board cursor
795
+ pagination (per-board cursor-lifetime under aggregation needs
796
+ design work); profile-scoped argument defaults (filed at the
797
+ v0.6 kickoff candidate-selection session extends `~/.monday-
798
+ cli/config.toml` with a `[profiles.<name>.defaults]` table
799
+ carrying scoping args; requires a prerequisite §13 carve-out
800
+ Decision at pre-flight distinguishing aliases-as-stored-
801
+ command-strings (still non-goal) from defaults-as-stored-flag-
802
+ values (carve-out)). Multi-file `--set` per call (v0.6-M38 D2
803
+ deferral) and file-`--set` stdin support (v0.6-M38 D7 deferral)
804
+ remain v0.7.x / future candidates. **v0.7-deferred milestones**:
805
+ M39 (API pin `2026-04`) + M40 (`item set-description`) + M41
806
+ (`doc block-create-bulk`) re-open when `@mondaydotcomorg/api`
807
+ SDK 15.x ships natively — earliest target is v0.8 if Monday's
808
+ SDK cadence holds (≈2 months between major SDK bumps per the
809
+ 13.0.0 / 14.0.0 / 15.0.0 trajectory).
697
810
 
698
811
  See [`docs/cli-design.md`](./docs/cli-design.md) §13 for the
699
812
  full roadmap, [`docs/v0.6-plan.md`](./docs/v0.6-plan.md) for the
@@ -124,30 +124,49 @@ export declare const isReadOnlyForeverType: (type: string) => type is ReadOnlyFo
124
124
  * column_values` (`cli-design.md` §5.3 writer-expansion roadmap "files"
125
125
  * row + the escape-hatch contract).
126
126
  *
127
- * **Two write paths reach the multipart wire** post-v0.6-M38:
127
+ * **Four write paths reach the multipart wire** post-v0.7-M43:
128
128
  *
129
129
  * - **v0.4-M31 verb-shaped**: `monday item upload <iid> --column
130
130
  * <col> <file>` + `monday update upload <uid> <file>`. Direct
131
131
  * multipart dispatch via `addFileToColumn` /
132
132
  * `addFileToUpdate` (`src/api/assets.ts`).
133
- * - **v0.6-M38 friendly translator**: `monday item set <iid>
134
- * <file-col>=<path>` + `monday item update <iid> --set
133
+ * - **v0.6-M38 friendly translator (single-item)**: `monday item
134
+ * set <iid> <file-col>=<path>` + `monday item update <iid> --set
135
135
  * <file-col>=<path>`. Sibling dispatch leg at the command
136
136
  * action body that detects `column.type === 'file'` AFTER
137
137
  * resolution + routes through `executeFileColumnSet`
138
138
  * (`src/api/file-column-set.ts`), which itself wraps M31's
139
- * `addFileToColumn` verbatim. Single-item only at M38; mutex
140
- * rules at the resolution boundary (D2/D5/D6 closures
141
- * bulk + create paths reject; mixed-set rejects; multi-file-
142
- * set rejects).
139
+ * `addFileToColumn` verbatim. Single-item at v0.6-M38.
140
+ * - **v0.7-M42 friendly translator (bulk)**: `monday item update
141
+ * --where ... --set <file-col>=<path>` (D5 carve-out fold from
142
+ * v0.6-M38). Per-item multipart fan-out via
143
+ * `runItemUpdateBulkFileDispatch` in
144
+ * `src/commands/item/update.ts` under `--concurrency` /
145
+ * `--continue-on-error`.
146
+ * - **v0.7-M43 friendly translator (create-time)**: `monday item
147
+ * create --set <file-col>=<path>` (D6 carve-out fold from
148
+ * v0.6-M38). Two-leg `create_item` (with bundled non-file
149
+ * `column_values`) + `add_file_to_column` dispatch via
150
+ * `runItemCreateFileDispatch` in `src/commands/item/create.ts`
151
+ * under the §5.8 orphan-warn atomicity envelope (D1 closure).
143
152
  *
144
- * The `--set-raw <file-col>=<json>` form STAYS REJECTED at v0.6-M38
145
- * per D3 closure Monday's wire has no JSON-shape for
153
+ * Mutex rules at the resolution boundary (D2 closures + folded
154
+ * D5/D6): multi-file `--set` rejects universally
155
+ * (`multi_file_set_unsupported`); mixed file + value `--set` /
156
+ * `--set-raw` / `--name` rejects on `'item_set'` /
157
+ * `'item_update_single'` / `'item_update_bulk'` callShapes
158
+ * (`mixed_file_and_value_sets`), SUPPRESSED on `'item_create'`
159
+ * per v0.7-M43 asymmetry (`create_item` natively bundles
160
+ * non-file `column_values` atomically into leg-1).
161
+ *
162
+ * The `--set-raw <file-col>=<json>` form STAYS REJECTED per D3
163
+ * closure — Monday's wire has no JSON-shape for
146
164
  * `change_column_value` on file columns, and the escape-hatch
147
165
  * contract "user supplies the JSON `change_column_value` accepts"
148
- * doesn't compose with multipart. The rejection now points at
149
- * BOTH write paths (M31 verb + M38 friendly `--set`) as
150
- * alternatives.
166
+ * doesn't compose with multipart. The rejection points at every
167
+ * shipped friendly write path: v0.4-M31 verb-shaped `monday item
168
+ * upload` + v0.6-M38 single-item friendly `--set` + v0.7-M42
169
+ * bulk friendly `--set` + v0.7-M43 create-time friendly `--set`.
151
170
  *
152
171
  * Currently one entry (`file`); the slot is plural because Monday may
153
172
  * surface other multipart-upload-shaped types in future API versions
@@ -225,14 +244,20 @@ export declare const getColumnRoadmapCategory: (type: string) => ColumnRoadmapCa
225
244
  * path` is `null` (agents can't write at all; the column
226
245
  * exists for read-side display / mirror sources only).
227
246
  * - `'files_shaped'`: Monday writes the type via `add_file_to_
228
- * column` (multipart upload). Two write paths post-v0.6-M38:
229
- * `monday item upload <iid> --column <col> <file>` (M31; verb-
230
- * shaped) + `monday item set <iid> <file-col>=<path>` /
231
- * `monday item update <iid> --set <file-col>=<path>` (M38;
232
- * friendly translator dispatch). `suggested_write_path` is a
233
- * single human-readable string joining BOTH paths with ` OR `
234
- * (R-v0.6-NEW-3 watch-item: lift to `readonly string[]` at the
235
- * 2nd N>1 consumer). Currently `file` only.
247
+ * column` (multipart upload). Four write paths post-v0.7-M43:
248
+ * `monday item upload <iid> --column <col> <file>` (v0.4-M31;
249
+ * verb-shaped) + `monday item set <iid> <file-col>=<path>` /
250
+ * `monday item update <iid> --set <file-col>=<path>` (v0.6-M38;
251
+ * single-item friendly translator dispatch) + `monday item
252
+ * update --where ... --set <file-col>=<path>` (v0.7-M42; bulk
253
+ * friendly translator dispatch with per-item multipart fan-out)
254
+ * + `monday item create --set <file-col>=<path>` (v0.7-M43;
255
+ * create-time two-leg friendly translator dispatch under the
256
+ * §5.8 orphan-warn atomicity envelope).
257
+ * `suggested_write_path` is a single human-readable string
258
+ * joining every shipped path with ` OR ` (R-v0.6-NEW-3 watch-
259
+ * item: lift to `readonly string[]` at the 2nd N>1 consumer).
260
+ * Currently `file` only.
236
261
  *
237
262
  * Returns `null` for canonical types (membership in `WRITABLE_COLUMN_
238
263
  * TYPES`) — `column-create` skips emitting the warning when the type
@@ -254,14 +279,22 @@ export interface NoncanonicalColumnTypeDetails {
254
279
  * - `read_only_forever` types: `null` (no write path exists —
255
280
  * the column exists for read-side display / mirror sources
256
281
  * only).
257
- * - `files_shaped` types post-v0.6-M38: a single human-readable
258
- * string joining BOTH write paths with ` OR ` — the v0.6-M38
259
- * friendly `monday item set <iid> <file-col>=<path>` /
260
- * `monday item update <iid> --set <file-col>=<path>` dispatch
261
- * AND the v0.4-M31 verb-shaped `monday item upload <iid>
262
- * --column <col> <file>`. R-v0.6-NEW-3 watch-item: lift to
263
- * `readonly string[]` at the 2nd N>1 consumer for structured
264
- * enumeration.
282
+ * - `files_shaped` types post-v0.7-M43: a single human-readable
283
+ * string joining every shipped write path with ` OR ` — the
284
+ * v0.6-M38 friendly `monday item set <iid> <file-col>=<path>` /
285
+ * `monday item update <iid> --set <file-col>=<path>` (single-
286
+ * item dispatch); the v0.7-M42 friendly `monday item update
287
+ * --where ... --set <file-col>=<path>` (bulk per-item multipart
288
+ * fan-out); the v0.7-M43 friendly `monday item create --set
289
+ * <file-col>=<path>` (create-time two-leg dispatch under the
290
+ * §5.8 orphan-warn atomicity envelope); AND the v0.4-M31
291
+ * verb-shaped `monday item upload <iid> --column <col> <file>`.
292
+ * R-v0.6-NEW-3 watch-item: lift to `readonly string[]` at the
293
+ * 2nd N>1 consumer for structured enumeration. (At v0.7-M42
294
+ * IMPL the string went from 2-path to 3-path; at v0.7-M43
295
+ * pre-flight it went to 4-path; R-v0.6-NEW-3 trigger remains
296
+ * pending until a downstream consumer needs structured-array
297
+ * iteration.)
265
298
  */
266
299
  readonly suggestedWritePath: string | null;
267
300
  }
@@ -1 +1 @@
1
- {"version":3,"file":"column-types.d.ts","sourceRoot":"","sources":["../../src/api/column-types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,qBAAqB,qJA4BxB,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAC;AAIxE;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,kBAC/B,CAAC;AAE9B;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,mBAAmB,GAAI,KAAK,MAAM,GAAG,IAAI,KAAG,OAOxD,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,2BAA2B,aAU9B,CAAC;AAEX,MAAM,MAAM,uBAAuB,GACjC,CAAC,OAAO,2BAA2B,CAAC,CAAC,MAAM,CAAC,CAAC;AAM/C;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,yBAAyB,GACpC,MAAM,MAAM,KACX,IAAI,IAAI,uBAA8D,CAAC;AAE1E;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,uBAAuB,4GAe1B,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,uBAAuB,CAAC,CAAC,MAAM,CAAC,CAAC;AAM3E;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,mBAC5B,CAAC;AAElC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,eAAO,MAAM,kBAAkB,mBAAoB,CAAC;AAEpD,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC;AAMlE;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,eAC7B,CAAC;AAE7B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAM,MAAM,qBAAqB,GAC7B,uBAAuB,GACvB,mBAAmB,GACnB,QAAQ,CAAC;AAEb,eAAO,MAAM,wBAAwB,GACnC,MAAM,MAAM,KACX,qBAIF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAM,MAAM,8BAA8B,GACtC,cAAc,GACd,mBAAmB,GACnB,cAAc,CAAC;AAEnB,MAAM,WAAW,6BAA6B;IAC5C,QAAQ,CAAC,QAAQ,EAAE,8BAA8B,CAAC;IAClD;;;;;;;;;;;;;;;;;OAiBG;IACH,QAAQ,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5C;AAED,eAAO,MAAM,gCAAgC,GAC3C,MAAM,MAAM,KACX,6BAA6B,GAAG,IAgBlC,CAAC"}
1
+ {"version":3,"file":"column-types.d.ts","sourceRoot":"","sources":["../../src/api/column-types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,qBAAqB,qJA4BxB,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAC;AAIxE;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,kBAC/B,CAAC;AAE9B;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,mBAAmB,GAAI,KAAK,MAAM,GAAG,IAAI,KAAG,OAOxD,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,2BAA2B,aAU9B,CAAC;AAEX,MAAM,MAAM,uBAAuB,GACjC,CAAC,OAAO,2BAA2B,CAAC,CAAC,MAAM,CAAC,CAAC;AAM/C;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,yBAAyB,GACpC,MAAM,MAAM,KACX,IAAI,IAAI,uBAA8D,CAAC;AAE1E;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,uBAAuB,4GAe1B,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,uBAAuB,CAAC,CAAC,MAAM,CAAC,CAAC;AAM3E;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,mBAC5B,CAAC;AAElC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,eAAO,MAAM,kBAAkB,mBAAoB,CAAC;AAEpD,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC;AAMlE;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,GAAI,MAAM,MAAM,KAAG,IAAI,IAAI,eAC7B,CAAC;AAE7B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAM,MAAM,qBAAqB,GAC7B,uBAAuB,GACvB,mBAAmB,GACnB,QAAQ,CAAC;AAEb,eAAO,MAAM,wBAAwB,GACnC,MAAM,MAAM,KACX,qBAIF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAM,MAAM,8BAA8B,GACtC,cAAc,GACd,mBAAmB,GACnB,cAAc,CAAC;AAEnB,MAAM,WAAW,6BAA6B;IAC5C,QAAQ,CAAC,QAAQ,EAAE,8BAA8B,CAAC;IAClD;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACH,QAAQ,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5C;AAED,eAAO,MAAM,gCAAgC,GAC3C,MAAM,MAAM,KACX,6BAA6B,GAAG,IAgBlC,CAAC"}
@@ -186,30 +186,49 @@ export const isReadOnlyForeverType = (type) => READ_ONLY_FOREVER_SET.has(type);
186
186
  * column_values` (`cli-design.md` §5.3 writer-expansion roadmap "files"
187
187
  * row + the escape-hatch contract).
188
188
  *
189
- * **Two write paths reach the multipart wire** post-v0.6-M38:
189
+ * **Four write paths reach the multipart wire** post-v0.7-M43:
190
190
  *
191
191
  * - **v0.4-M31 verb-shaped**: `monday item upload <iid> --column
192
192
  * <col> <file>` + `monday update upload <uid> <file>`. Direct
193
193
  * multipart dispatch via `addFileToColumn` /
194
194
  * `addFileToUpdate` (`src/api/assets.ts`).
195
- * - **v0.6-M38 friendly translator**: `monday item set <iid>
196
- * <file-col>=<path>` + `monday item update <iid> --set
195
+ * - **v0.6-M38 friendly translator (single-item)**: `monday item
196
+ * set <iid> <file-col>=<path>` + `monday item update <iid> --set
197
197
  * <file-col>=<path>`. Sibling dispatch leg at the command
198
198
  * action body that detects `column.type === 'file'` AFTER
199
199
  * resolution + routes through `executeFileColumnSet`
200
200
  * (`src/api/file-column-set.ts`), which itself wraps M31's
201
- * `addFileToColumn` verbatim. Single-item only at M38; mutex
202
- * rules at the resolution boundary (D2/D5/D6 closures
203
- * bulk + create paths reject; mixed-set rejects; multi-file-
204
- * set rejects).
201
+ * `addFileToColumn` verbatim. Single-item at v0.6-M38.
202
+ * - **v0.7-M42 friendly translator (bulk)**: `monday item update
203
+ * --where ... --set <file-col>=<path>` (D5 carve-out fold from
204
+ * v0.6-M38). Per-item multipart fan-out via
205
+ * `runItemUpdateBulkFileDispatch` in
206
+ * `src/commands/item/update.ts` under `--concurrency` /
207
+ * `--continue-on-error`.
208
+ * - **v0.7-M43 friendly translator (create-time)**: `monday item
209
+ * create --set <file-col>=<path>` (D6 carve-out fold from
210
+ * v0.6-M38). Two-leg `create_item` (with bundled non-file
211
+ * `column_values`) + `add_file_to_column` dispatch via
212
+ * `runItemCreateFileDispatch` in `src/commands/item/create.ts`
213
+ * under the §5.8 orphan-warn atomicity envelope (D1 closure).
205
214
  *
206
- * The `--set-raw <file-col>=<json>` form STAYS REJECTED at v0.6-M38
207
- * per D3 closure Monday's wire has no JSON-shape for
215
+ * Mutex rules at the resolution boundary (D2 closures + folded
216
+ * D5/D6): multi-file `--set` rejects universally
217
+ * (`multi_file_set_unsupported`); mixed file + value `--set` /
218
+ * `--set-raw` / `--name` rejects on `'item_set'` /
219
+ * `'item_update_single'` / `'item_update_bulk'` callShapes
220
+ * (`mixed_file_and_value_sets`), SUPPRESSED on `'item_create'`
221
+ * per v0.7-M43 asymmetry (`create_item` natively bundles
222
+ * non-file `column_values` atomically into leg-1).
223
+ *
224
+ * The `--set-raw <file-col>=<json>` form STAYS REJECTED per D3
225
+ * closure — Monday's wire has no JSON-shape for
208
226
  * `change_column_value` on file columns, and the escape-hatch
209
227
  * contract "user supplies the JSON `change_column_value` accepts"
210
- * doesn't compose with multipart. The rejection now points at
211
- * BOTH write paths (M31 verb + M38 friendly `--set`) as
212
- * alternatives.
228
+ * doesn't compose with multipart. The rejection points at every
229
+ * shipped friendly write path: v0.4-M31 verb-shaped `monday item
230
+ * upload` + v0.6-M38 single-item friendly `--set` + v0.7-M42
231
+ * bulk friendly `--set` + v0.7-M43 create-time friendly `--set`.
213
232
  *
214
233
  * Currently one entry (`file`); the slot is plural because Monday may
215
234
  * surface other multipart-upload-shaped types in future API versions
@@ -241,7 +260,7 @@ export const categorizeNoncanonicalColumnType = (type) => {
241
260
  if (isFilesShapedType(type)) {
242
261
  return {
243
262
  category: 'files_shaped',
244
- suggestedWritePath: 'monday item set <iid> <file-col>=<path> (v0.6-M38; friendly) OR monday item upload <iid> --column <col> <file> (v0.4-M31; verb-shaped)',
263
+ suggestedWritePath: 'monday item set <iid> <file-col>=<path> OR monday item update <iid> --set <file-col>=<path> (v0.6-M38; single-item friendly) OR monday item update --where ... --set <file-col>=<path> (v0.7-M42; bulk friendly) OR monday item create --set <file-col>=<path> (v0.7-M43; create-time two-leg friendly under §5.8 orphan-warn atomicity envelope) OR monday item upload <iid> --column <col> <file> (v0.4-M31; verb-shaped)',
245
264
  };
246
265
  }
247
266
  return {
@@ -1 +1 @@
1
- {"version":3,"file":"column-types.js","sourceRoot":"","sources":["../../src/api/column-types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"column-types.js","sourceRoot":"","sources":["../../src/api/column-types.ts"],"names":[],"mappings":"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"}
@@ -627,23 +627,28 @@ export declare const bundleColumnValues: (translated: readonly TranslatedColumnV
627
627
  * `deferred_to: "v0.3"`; hint nudges agents at `--set-raw`.
628
628
  * - **`files`-shaped** (currently `file` only) — Monday writes via
629
629
  * `add_file_to_column` (multipart upload) rather than
630
- * `change_column_value`. v0.6-M38 ships the friendly
631
- * `--set <file-col>=<path>` form via a sibling dispatch leg at
632
- * the command action body (see `src/api/file-column-set.ts`);
633
- * the rejection table row here fires ONLY for paths that
634
- * don't route through the M38 dispatch — specifically the
635
- * `item create` carve-in (`create_item.column_values` is
636
- * JSON-only and can't accept a multipart file part; M38 D6
637
- * closure defers create-time file upload to v0.6.x) + the
638
- * bulk path (`item update --where ... --set <file-col>=
639
- * <path>`; M38 D5 closure defers per-item file dispatch to
640
- * v0.6.x). The friendly translator's M38-routed entries
641
- * never hit this `UNSUPPORTED_TABLE.files_shaped` row
642
- * they branch off ahead of the translator call at the
643
- * action body level. Hint points at `monday item upload`
644
- * (v0.4-M31; verb-shaped multipart) AND `monday item set` /
645
- * `monday item update --set <file-col>=<path>` (v0.6-M38;
646
- * friendly translator dispatch).
630
+ * `change_column_value`. The friendly dispatch ships across
631
+ * four call shapes: v0.6-M38 single-item (`monday item set` +
632
+ * `monday item update <iid>`); v0.7-M42 bulk (`monday item
633
+ * update --where ...`, per-item multipart fan-out under
634
+ * `--concurrency` / `--continue-on-error`); v0.7-M43 create-
635
+ * time (`monday item create --set <file-col>=<path>`, two-leg
636
+ * `create_item` + `add_file_to_column` dispatch under the
637
+ * §5.8 orphan-warn atomicity envelope); all three branch off
638
+ * ahead of the translator at the action body level via the
639
+ * sibling dispatch legs in `src/api/file-column-set.ts` +
640
+ * `src/commands/item/create.ts`. The rejection table row
641
+ * here fires ONLY for the `--set-raw <file-col>=<json>` form
642
+ * (D3 permanent rejection `change_column_value` has no
643
+ * JSON wire shape for file columns). The friendly
644
+ * translator's dispatch-routed entries (every callShape's
645
+ * `--set <file-col>=<path>`) never hit this
646
+ * `UNSUPPORTED_TABLE.files_shaped` row — they branch off
647
+ * ahead of the translator call. Hint points at every
648
+ * shipped friendly write path: `monday item upload` (v0.4-
649
+ * M31; verb-shaped multipart) + the v0.6-M38 single-item
650
+ * friendly form + the v0.7-M42 bulk friendly form + the
651
+ * v0.7-M43 create-time friendly form.
647
652
  * - **`time_tracking`** — verb-shaped extension (start/stop, not
648
653
  * value writes); v0.3-deferred. Carry `deferred_to: "v0.3"`;
649
654
  * hint points at the upcoming verb surface.
@@ -1 +1 @@
1
- {"version":3,"file":"column-values.d.ts","sourceRoot":"","sources":["../../src/api/column-values.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"column-values.d.ts","sourceRoot":"","sources":["../../src/api/column-values.ts"],"names":[],"mappings":"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"}