monday-cli 0.5.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +665 -0
  2. package/README.md +209 -35
  3. package/dist/api/column-types.d.ts +81 -19
  4. package/dist/api/column-types.d.ts.map +1 -1
  5. package/dist/api/column-types.js +44 -11
  6. package/dist/api/column-types.js.map +1 -1
  7. package/dist/api/column-values.d.ts +22 -10
  8. package/dist/api/column-values.d.ts.map +1 -1
  9. package/dist/api/column-values.js +50 -20
  10. package/dist/api/column-values.js.map +1 -1
  11. package/dist/api/file-column-set.d.ts +613 -0
  12. package/dist/api/file-column-set.d.ts.map +1 -0
  13. package/dist/api/file-column-set.js +568 -0
  14. package/dist/api/file-column-set.js.map +1 -0
  15. package/dist/api/raw-write.d.ts +38 -17
  16. package/dist/api/raw-write.d.ts.map +1 -1
  17. package/dist/api/raw-write.js +62 -25
  18. package/dist/api/raw-write.js.map +1 -1
  19. package/dist/api/resolver-error-fold.d.ts +25 -0
  20. package/dist/api/resolver-error-fold.d.ts.map +1 -1
  21. package/dist/api/resolver-error-fold.js +56 -0
  22. package/dist/api/resolver-error-fold.js.map +1 -1
  23. package/dist/commands/board/column-create.d.ts +13 -3
  24. package/dist/commands/board/column-create.d.ts.map +1 -1
  25. package/dist/commands/board/column-create.js +27 -8
  26. package/dist/commands/board/column-create.js.map +1 -1
  27. package/dist/commands/item/create.d.ts +24 -8
  28. package/dist/commands/item/create.d.ts.map +1 -1
  29. package/dist/commands/item/create.js +601 -44
  30. package/dist/commands/item/create.js.map +1 -1
  31. package/dist/commands/item/set.d.ts +33 -3
  32. package/dist/commands/item/set.d.ts.map +1 -1
  33. package/dist/commands/item/set.js +193 -15
  34. package/dist/commands/item/set.js.map +1 -1
  35. package/dist/commands/item/update.d.ts +203 -3
  36. package/dist/commands/item/update.d.ts.map +1 -1
  37. package/dist/commands/item/update.js +1015 -68
  38. package/dist/commands/item/update.js.map +1 -1
  39. package/dist/commands/item/upload.d.ts.map +1 -1
  40. package/dist/commands/item/upload.js +16 -69
  41. package/dist/commands/item/upload.js.map +1 -1
  42. package/dist/commands/update/upload.d.ts.map +1 -1
  43. package/dist/commands/update/upload.js +9 -59
  44. package/dist/commands/update/upload.js.map +1 -1
  45. package/dist/utils/file-source.d.ts +93 -0
  46. package/dist/utils/file-source.d.ts.map +1 -0
  47. package/dist/utils/file-source.js +140 -0
  48. package/dist/utils/file-source.js.map +1 -0
  49. package/package.json +1 -1
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.5.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,23 +117,49 @@ 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. Find-or-create with idempotent matching (v0.2)
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.
136
+ monday item set 67890 'Attachments'=./screenshot.png --json
137
+ monday item update 67890 --set 'Attachments'=./diagram.png --json
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
145
+
146
+ # 14. Find-or-create with idempotent matching (v0.2)
121
147
  # Re-running with the same args is safe — 0/1/2+ matches route to
122
148
  # create / update / `ambiguous_match` (one of the 29 stable error codes).
123
149
  monday item upsert --board 12345 --name "Refactor login" \
124
150
  --match-by name --set status='Working on it' --json
125
151
 
126
- # 14. Move a ticket forward, then comment on it
152
+ # 15. Move a ticket forward, then comment on it
127
153
  monday item set 67890 status=Done --json
128
154
  monday update create 67890 --body "Shipped in PR #1234" --json
129
155
 
130
- # 15. Monday Dev convention layer (v0.3 — sprint/epic/release/task)
156
+ # 16. Monday Dev convention layer (v0.3 — sprint/epic/release/task)
131
157
  # First-time setup auto-detects boards by Monday's stock template names.
132
158
  monday dev discover --apply --json # writes ~/.monday-cli/config.toml
133
159
  monday dev sprint current --json # the active sprint
134
160
  monday dev task list --mine --json # my open tasks
135
161
 
136
- # 16. Outbound writes (v0.3 — webhooks + notifications)
162
+ # 17. Outbound writes (v0.3 — webhooks + notifications)
137
163
  monday webhook list 12345 --json
138
164
  monday notification send --user 7 --target 67890 \
139
165
  --target-type item --text "PTAL" --json
@@ -202,7 +228,7 @@ Every JSON response uses the same universal envelope:
202
228
  "meta": {
203
229
  "schema_version": "1",
204
230
  "api_version": "2026-01",
205
- "cli_version": "0.5.0",
231
+ "cli_version": "0.7.0",
206
232
  "request_id": "0e6f1a7b-...",
207
233
  "source": "live",
208
234
  "cache_age_seconds": null,
@@ -302,7 +328,46 @@ See [`.env.example`](./.env.example) for all supported variables
302
328
 
303
329
  ## Scope
304
330
 
305
- **v0.5.0 (current — `monday-cli@0.5.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):**
359
+ the v0.5 surface PLUS files-shaped friendly `--set <file-col>=<path>`
360
+ writes on `monday item set` + `monday item update` (single-item
361
+ paths), closing the v0.4 → v0.5 → v0.6 carry-over of the inline
362
+ form. Sibling-branch dispatch at the column-resolution boundary
363
+ routes file `--set` to the v0.4-M31 `add_file_to_column` multipart
364
+ wire; the friendly translator stays JSON-output-shaped for the 13
365
+ existing writable types. **No breaking changes vs v0.5.0** — the
366
+ v0.6 surface is additive (M38 only). Built as a single milestone
367
+ (M38). The bulk + create-time carve-outs deferred at v0.6-M38
368
+ (D5 / D6) carry forward to v0.7 (above).
369
+
370
+ **v0.5.0 (the prior release):**
306
371
  the v0.4 surface PLUS the full team-writer surface
307
372
  (`monday user team-list/get/create/delete/add-members/remove-members`),
308
373
  the full Monday workdocs CRUD mutation surface — doc-level
@@ -310,20 +375,9 @@ the full Monday workdocs CRUD mutation surface — doc-level
310
375
  doc-block (`monday doc block-create/block-update/block-delete`),
311
376
  and doc-content import (`monday doc import-html/append-markdown`) —
312
377
  closing the v0.4-M32 workdocs-mutation deferral. **16 new CLI
313
- verbs across 9 wire mutations.** **No breaking changes vs v0.4.0**
314
- — every v0.5 surface is additive. Built incrementally across
315
- M34–M37. See [CHANGELOG.md](./CHANGELOG.md) for the full
316
- per-milestone release notes.
378
+ verbs across 9 wire mutations.** Built incrementally across M34–M37.
317
379
 
318
- **OAuth deferral (unchanged from v0.4.0).** `monday auth login` is
319
- registered but the canonical Monday OAuth app is not registered in
320
- v0.5.0; the verb surfaces a clear `usage_error.details.reason:
321
- oauth_unregistered` pointing at `MONDAY_API_TOKEN`. Multi-profile
322
- config + per-profile credentials cache work fully against API
323
- tokens; OAuth registration revisits in v0.5.x / v0.6 contingent on
324
- user demand.
325
-
326
- **v0.4.0 (the previous release):**
380
+ **v0.4.0 (the earlier release):**
327
381
  the v0.3 surface PLUS long-poll item activity streaming
328
382
  (`monday item watch <iid>` — NDJSON), parallel bulk dispatch
329
383
  (`monday item update --where ... --concurrency <N>`), asset uploads
@@ -333,7 +387,7 @@ workdocs CRUD mutation surface deferred to v0.5; shipped at v0.5),
333
387
  and shell completion (`monday completion bash|zsh|fish`). Built
334
388
  incrementally across M29–M33.
335
389
 
336
- **v0.3.0 (the prior release):**
390
+ **v0.3.0 (an even-earlier release):**
337
391
  the v0.2 mutating core PLUS the Monday Dev convention layer
338
392
  (`monday dev` namespace — sprint / epic / release / task workflow
339
393
  shortcuts on top of standard board CRUD), multi-profile auth
@@ -623,22 +677,142 @@ row `tags`, `board_relation`, `dependency`.
623
677
  D13 empirical-probe pinning (rejected at 500KB, OK at 250KB on
624
678
  both surfaces).
625
679
 
626
- **v0.6 (next):** multi-level subitems remain conditional on
627
- Monday's data model surfacing them (slipped from v0.4 → v0.5 →
628
- v0.6 across two consecutive release-preps — Monday's
629
- `sub_items_board` still carries no `subtasks` column at API
630
- `2026-01`); cross-board `item move` value-overrides (Monday's
631
- `ColumnMappingInput` still carries no value slot slipped twice
632
- for the same reason); resumable cross-board cursor pagination
633
- (per-board cursor-lifetime under aggregation needs design work);
634
- files-shaped friendly column writes (`--set <file-col>=<path>` and
635
- `--set-raw <file-col>=<json>` `monday item upload` from v0.4-M31
636
- is the verb-shaped alternative path agents should use today).
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
+
743
+ **What v0.6 added (M38; full per-milestone narrative in
744
+ [CHANGELOG.md](./CHANGELOG.md)):**
745
+
746
+ - **M38** — `monday item set <iid> <file-col>=<path>` +
747
+ `monday item update <iid> --set <file-col>=<path>` ship the
748
+ files-shaped friendly `--set` writer path, closing the v0.4 →
749
+ v0.5 → v0.6 carry-over of the inline form. Sibling-branch
750
+ dispatch at the column-resolution boundary routes file `--set`
751
+ to the v0.4-M31 `add_file_to_column` multipart wire; the
752
+ friendly translator stays JSON-output-shaped for the 13
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
758
+ any value `--set` / `--set-raw` / `--name` surfaces `usage_
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
775
+ per D3 — Monday's wire has no JSON-shape for
776
+ `change_column_value` on file columns; `monday item upload`
777
+ from v0.4-M31 remains the verb-shaped alternative path. **No
778
+ new ERROR_CODES** at M38 (registry stays at 29 — all
779
+ rejections route through existing `usage_error` /
780
+ `unsupported_column_type` / `not_found` / `validation_failed`
781
+ codes with `details.reason` discrimination).
782
+
783
+ **v0.8 (next):** **Carry-forward backlog** (unpicked
784
+ candidates remain in cli-design.md §13 slipped-candidates list
785
+ pending future candidate-selection sessions): multi-level
786
+ subitems remain conditional on Monday's data model surfacing
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).
637
810
 
638
811
  See [`docs/cli-design.md`](./docs/cli-design.md) §13 for the
639
- full roadmap, [`docs/v0.5-plan.md`](./docs/v0.5-plan.md) for the
640
- v0.5 milestone history, [`docs/v0.4-plan.md`](./docs/v0.4-plan.md)
641
- for v0.4, [`docs/v0.3-plan.md`](./docs/v0.3-plan.md) for v0.3, and
812
+ full roadmap, [`docs/v0.6-plan.md`](./docs/v0.6-plan.md) for the
813
+ v0.6 milestone history, [`docs/v0.5-plan.md`](./docs/v0.5-plan.md)
814
+ for v0.5, [`docs/v0.4-plan.md`](./docs/v0.4-plan.md) for v0.4,
815
+ [`docs/v0.3-plan.md`](./docs/v0.3-plan.md) for v0.3, and
642
816
  [`docs/v0.2-plan.md`](./docs/v0.2-plan.md) for v0.2.
643
817
 
644
818
  See [CHANGELOG.md](./CHANGELOG.md) for the per-release contract.
@@ -124,16 +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
- * The friendly translator and `--set-raw` both go through
128
- * `change_column_value` / `change_multiple_column_values`, so a
129
- * `--set-raw` raw payload cannot reach the right wire surface for
130
- * these types — `--set-raw` rejects them with `unsupported_column_
131
- * type` carrying `deferred_to: "v0.6"`. v0.4-M31 shipped the verb-
132
- * shaped path (`monday item upload`); the `--set-raw <file-col>=
133
- * <json>` form remains deferred because it would need a separate
134
- * dispatch from the escape-hatch boundary into the multipart wire.
135
- * Slot slipped from v0.5 to v0.6 at v0.5 release-prep — v0.5 didn't
136
- * pick up the dispatch either.
127
+ * **Four write paths reach the multipart wire** post-v0.7-M43:
128
+ *
129
+ * - **v0.4-M31 verb-shaped**: `monday item upload <iid> --column
130
+ * <col> <file>` + `monday update upload <uid> <file>`. Direct
131
+ * multipart dispatch via `addFileToColumn` /
132
+ * `addFileToUpdate` (`src/api/assets.ts`).
133
+ * - **v0.6-M38 friendly translator (single-item)**: `monday item
134
+ * set <iid> <file-col>=<path>` + `monday item update <iid> --set
135
+ * <file-col>=<path>`. Sibling dispatch leg at the command
136
+ * action body that detects `column.type === 'file'` AFTER
137
+ * resolution + routes through `executeFileColumnSet`
138
+ * (`src/api/file-column-set.ts`), which itself wraps M31's
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).
152
+ *
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
164
+ * `change_column_value` on file columns, and the escape-hatch
165
+ * contract "user supplies the JSON `change_column_value` accepts"
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`.
137
170
  *
138
171
  * Currently one entry (`file`); the slot is plural because Monday may
139
172
  * surface other multipart-upload-shaped types in future API versions
@@ -211,10 +244,20 @@ export declare const getColumnRoadmapCategory: (type: string) => ColumnRoadmapCa
211
244
  * path` is `null` (agents can't write at all; the column
212
245
  * exists for read-side display / mirror sources only).
213
246
  * - `'files_shaped'`: Monday writes the type via `add_file_to_
214
- * column` (multipart upload). `monday item upload <iid> --column
215
- * <col> <file>` shipped at v0.4-M31 as the agent-facing verb;
216
- * `suggested_write_path` carries that pointer. Currently
217
- * `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.
218
261
  *
219
262
  * Returns `null` for canonical types (membership in `WRITABLE_COLUMN_
220
263
  * TYPES`) — `column-create` skips emitting the warning when the type
@@ -228,11 +271,30 @@ export type NoncanonicalColumnTypeCategory = 'raw_writable' | 'read_only_forever
228
271
  export interface NoncanonicalColumnTypeDetails {
229
272
  readonly category: NoncanonicalColumnTypeCategory;
230
273
  /**
231
- * The path agents should use to write to the column post-creation,
232
- * matching cli-design §5.3 escape-hatch contract — `--set-raw
233
- * <col>=<json>` for raw-writable types, `monday item upload`
234
- * (v0.4-M31, multipart) for files-shaped types, `null` for
235
- * read-only-forever types (no write path exists).
274
+ * The path(s) agents should use to write to the column post-
275
+ * creation, matching cli-design §5.3 escape-hatch + dispatch
276
+ * contracts:
277
+ *
278
+ * - `raw_writable` types: `--set-raw <col>=<json>`.
279
+ * - `read_only_forever` types: `null` (no write path exists —
280
+ * the column exists for read-side display / mirror sources
281
+ * only).
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.)
236
298
  */
237
299
  readonly suggestedWritePath: string | null;
238
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;;;;;;;;;;;;;;;;;;;;;GAqBG;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAM,MAAM,8BAA8B,GACtC,cAAc,GACd,mBAAmB,GACnB,cAAc,CAAC;AAEnB,MAAM,WAAW,6BAA6B;IAC5C,QAAQ,CAAC,QAAQ,EAAE,8BAA8B,CAAC;IAClD;;;;;;OAMG;IACH,QAAQ,CAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5C;AAED,eAAO,MAAM,gCAAgC,GAC3C,MAAM,MAAM,KACX,6BAA6B,GAAG,IAelC,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,16 +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
- * The friendly translator and `--set-raw` both go through
190
- * `change_column_value` / `change_multiple_column_values`, so a
191
- * `--set-raw` raw payload cannot reach the right wire surface for
192
- * these types — `--set-raw` rejects them with `unsupported_column_
193
- * type` carrying `deferred_to: "v0.6"`. v0.4-M31 shipped the verb-
194
- * shaped path (`monday item upload`); the `--set-raw <file-col>=
195
- * <json>` form remains deferred because it would need a separate
196
- * dispatch from the escape-hatch boundary into the multipart wire.
197
- * Slot slipped from v0.5 to v0.6 at v0.5 release-prep — v0.5 didn't
198
- * pick up the dispatch either.
189
+ * **Four write paths reach the multipart wire** post-v0.7-M43:
190
+ *
191
+ * - **v0.4-M31 verb-shaped**: `monday item upload <iid> --column
192
+ * <col> <file>` + `monday update upload <uid> <file>`. Direct
193
+ * multipart dispatch via `addFileToColumn` /
194
+ * `addFileToUpdate` (`src/api/assets.ts`).
195
+ * - **v0.6-M38 friendly translator (single-item)**: `monday item
196
+ * set <iid> <file-col>=<path>` + `monday item update <iid> --set
197
+ * <file-col>=<path>`. Sibling dispatch leg at the command
198
+ * action body that detects `column.type === 'file'` AFTER
199
+ * resolution + routes through `executeFileColumnSet`
200
+ * (`src/api/file-column-set.ts`), which itself wraps M31's
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).
214
+ *
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
226
+ * `change_column_value` on file columns, and the escape-hatch
227
+ * contract "user supplies the JSON `change_column_value` accepts"
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`.
199
232
  *
200
233
  * Currently one entry (`file`); the slot is plural because Monday may
201
234
  * surface other multipart-upload-shaped types in future API versions
@@ -227,7 +260,7 @@ export const categorizeNoncanonicalColumnType = (type) => {
227
260
  if (isFilesShapedType(type)) {
228
261
  return {
229
262
  category: 'files_shaped',
230
- suggestedWritePath: 'monday item upload (v0.4-M31, multipart)',
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)',
231
264
  };
232
265
  }
233
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,16 +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`, so neither friendly translator nor
631
- * `--set-raw` can reach the wire surface. Carry
632
- * `deferred_to: "v0.6"`; hint points at `monday item upload`
633
- * (shipped v0.4-M31; multipart wire — the alternative path
634
- * agents should use today). The `deferred_to` slot tracks the
635
- * friendly `--set <file-col>=<path>` form specifically; v0.4
636
- * shipped the verb-shaped path (`monday item upload`); v0.5
637
- * didn't pick up the inline-`--set` translator either (the
638
- * translator boundary still doesn't dispatch into the multipart
639
- * wire); slot slipped from v0.5 to v0.6 at v0.5 release-prep.
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.
640
652
  * - **`time_tracking`** — verb-shaped extension (start/stop, not
641
653
  * value writes); v0.3-deferred. Carry `deferred_to: "v0.3"`;
642
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":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+GG;AAEH,OAAO,EAAE,QAAQ,EAAc,MAAM,oBAAoB,CAAC;AAC1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EAML,KAAK,kBAAkB,EACxB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,qBAAqB,EAC3B,MAAM,YAAY,CAAC;AACpB,OAAO,EAEL,KAAK,gBAAgB,EACrB,KAAK,uBAAuB,EAC7B,MAAM,aAAa,CAAC;AAIrB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAEL,KAAK,6BAA6B,EAClC,KAAK,eAAe,EACrB,MAAM,gCAAgC,CAAC;AAExC,YAAY,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACxE,YAAY,EACV,aAAa,EACb,kBAAkB,EAClB,gBAAgB,EAChB,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,aAAa,CAAC;AACrB,YAAY,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC9C,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChD,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChD,YAAY,EACV,6BAA6B,EAC7B,eAAe,EACf,qBAAqB,GACtB,MAAM,gCAAgC,CAAC;AAExC;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,MAAM,kBAAkB,GAC1B;IAAE,QAAQ,CAAC,MAAM,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACrD;IACE,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,KAAK,EAAE,UAAU,CAAC;CAC5B,CAAC;AAEN;;;;;;;;GAQG;AACH,MAAM,WAAW,aAAa;IAC5B,QAAQ,CAAC,MAAM,EAAE,SAAS,kBAAkB,EAAE,CAAC;CAChD;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAC9B;AAED;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;;OAKG;IACH,QAAQ,CAAC,OAAO,EAAE,eAAe,CAAC;IAClC,6DAA6D;IAC7D,QAAQ,CAAC,cAAc,EAAE,SAAS,MAAM,EAAE,CAAC;IAC3C,QAAQ,CAAC,KAAK,EAAE,SAAS,sBAAsB,EAAE,CAAC;CACnD;AAED,MAAM,WAAW,sBAAsB;IACrC,uEAAuE;IACvE,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,8DAA8D;IAC9D,QAAQ,CAAC,iBAAiB,EAAE,MAAM,CAAC;CACpC;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAC;IACnD,QAAQ,CAAC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;CACzC;AAED,MAAM,WAAW,qBAAqB;IACpC,kEAAkE;IAClE,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,wEAAwE;IACxE,QAAQ,CAAC,UAAU,EAAE,kBAAkB,CAAC;IACxC,+CAA+C;IAC/C,QAAQ,CAAC,OAAO,EAAE,kBAAkB,CAAC;IACrC,uEAAuE;IACvE,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B;;;;;;;;;OASG;IACH,QAAQ,CAAC,YAAY,EAAE,cAAc,GAAG,IAAI,CAAC;IAC7C;;;;;;;;;;;;;;;;;OAiBG;IACH,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACnD;;;;;;;OAOG;IACH,QAAQ,CAAC,aAAa,EAAE,aAAa,GAAG,IAAI,CAAC;IAC7C;;;;;;OAMG;IACH,QAAQ,CAAC,kBAAkB,EAAE,kBAAkB,GAAG,IAAI,CAAC;IACvD;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,oBAAoB,EAAE,wBAAwB,GAAG,IAAI,CAAC;CAChE;AAED,MAAM,WAAW,0BAA0B;IACzC;;;;;;;;;;;;;;;OAeG;IACH,QAAQ,CAAC,MAAM,EAAE;QACf,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;QACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;QACtB,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;KACtC,CAAC;IACF,0DAA0D;IAC1D,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB;;;;;;OAMG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,qBAAqB,CAAC;CACjD;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,iBAAiB,CAAC,CAAC;CACrE;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,WAAW,yBAAyB;IACxC,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE;QAC/B,QAAQ,CAAC,OAAO,EAAE,SAAS,MAAM,EAAE,CAAC;QACpC,QAAQ,CAAC,aAAa,EAAE,SAAS,MAAM,EAAE,CAAC;QAC1C,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;QAC1B,QAAQ,CAAC,OAAO,EAAE,eAAe,CAAC;KACnC,KAAK,OAAO,CAAC,6BAA6B,CAAC,CAAC;CAC9C;AAED;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,+BAAgC,SAAQ,0BAA0B;IACjF;;;;;OAKG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,uBAAuB,CAAC;IACpD;;;;;;OAMG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,oBAAoB,CAAC;IAC9C;;;;;;OAMG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,yBAAyB,CAAC;CACzD;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,eAAO,MAAM,oBAAoB,GAC/B,QAAQ,0BAA0B,KACjC,qBAwIF,CAAC;AAEF;;;;;;;;;;;;;;;;;;;GAmBG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,eAAO,MAAM,oBAAoB,GAC/B,QAAQ;IAAE,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;CAAE,KACrD,qBA8CF,CAAC;AAEF,eAAO,MAAM,yBAAyB,GACpC,QAAQ,+BAA+B,KACtC,OAAO,CAAC,qBAAqB,CAc/B,CAAC;AA0oBF;;;;;GAKG;AACH,MAAM,MAAM,gBAAgB,GACxB,MAAM,GACN,UAAU,CAAC;AAEf;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAM,MAAM,gBAAgB,GACxB;IACE,QAAQ,CAAC,IAAI,EAAE,4BAA4B,CAAC;IAC5C,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CACxB,GACD;IACE,QAAQ,CAAC,IAAI,EAAE,qBAAqB,CAAC;IACrC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,KAAK,EAAE,UAAU,CAAC;CAC5B,GACD;IACE,QAAQ,CAAC,IAAI,EAAE,+BAA+B,CAAC;IAC/C,QAAQ,CAAC,YAAY,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC,CAAC;CACnE,CAAC;AAEN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,eAAO,MAAM,cAAc,GACzB,YAAY,SAAS,qBAAqB,EAAE,KAC3C,gBAsCF,CAAC;AAsBF;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,kBAAkB,GAC7B,YAAY,SAAS,qBAAqB,EAAE,KAC3C,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,CA4B3C,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,eAAO,MAAM,0BAA0B,GACrC,UAAU,MAAM,EAChB,MAAM,MAAM,KACX,QAcF,CAAC"}