monday-cli 0.6.0 → 0.7.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +438 -0
  2. package/README.md +165 -52
  3. package/dist/api/board-metadata.d.ts +7 -4
  4. package/dist/api/board-metadata.d.ts.map +1 -1
  5. package/dist/api/board-metadata.js +21 -6
  6. package/dist/api/board-metadata.js.map +1 -1
  7. package/dist/api/column-types.d.ts +61 -28
  8. package/dist/api/column-types.d.ts.map +1 -1
  9. package/dist/api/column-types.js +32 -13
  10. package/dist/api/column-types.js.map +1 -1
  11. package/dist/api/column-values.d.ts +22 -17
  12. package/dist/api/column-values.d.ts.map +1 -1
  13. package/dist/api/column-values.js +50 -34
  14. package/dist/api/column-values.js.map +1 -1
  15. package/dist/api/file-column-set.d.ts +164 -58
  16. package/dist/api/file-column-set.d.ts.map +1 -1
  17. package/dist/api/file-column-set.js +168 -110
  18. package/dist/api/file-column-set.js.map +1 -1
  19. package/dist/api/raw-write.d.ts +29 -18
  20. package/dist/api/raw-write.d.ts.map +1 -1
  21. package/dist/api/raw-write.js +48 -26
  22. package/dist/api/raw-write.js.map +1 -1
  23. package/dist/commands/board/column-create.d.ts +11 -6
  24. package/dist/commands/board/column-create.d.ts.map +1 -1
  25. package/dist/commands/board/column-create.js +23 -12
  26. package/dist/commands/board/column-create.js.map +1 -1
  27. package/dist/commands/board/describe.d.ts +5 -3
  28. package/dist/commands/board/describe.d.ts.map +1 -1
  29. package/dist/commands/board/describe.js +12 -4
  30. package/dist/commands/board/describe.js.map +1 -1
  31. package/dist/commands/emit.d.ts.map +1 -1
  32. package/dist/commands/emit.js +19 -16
  33. package/dist/commands/emit.js.map +1 -1
  34. package/dist/commands/item/create.d.ts +24 -8
  35. package/dist/commands/item/create.d.ts.map +1 -1
  36. package/dist/commands/item/create.js +494 -35
  37. package/dist/commands/item/create.js.map +1 -1
  38. package/dist/commands/item/update.d.ts +175 -6
  39. package/dist/commands/item/update.d.ts.map +1 -1
  40. package/dist/commands/item/update.js +697 -29
  41. package/dist/commands/item/update.js.map +1 -1
  42. package/dist/utils/output/select.d.ts +22 -0
  43. package/dist/utils/output/select.d.ts.map +1 -1
  44. package/dist/utils/output/select.js +30 -0
  45. package/dist/utils/output/select.js.map +1 -1
  46. package/dist/utils/output/table.d.ts +9 -0
  47. package/dist/utils/output/table.d.ts.map +1 -1
  48. package/dist/utils/output/table.js +13 -3
  49. package/dist/utils/output/table.js.map +1 -1
  50. package/package.json +1 -1
  51. package/dist/commands/update/body-source.d.ts +0 -38
  52. package/dist/commands/update/body-source.d.ts.map +0 -1
  53. package/dist/commands/update/body-source.js +0 -80
  54. package/dist/commands/update/body-source.js.map +0 -1
@@ -82,30 +82,57 @@
82
82
  * after metadata loads). When any resolved column has `type ===
83
83
  * 'file'`:
84
84
  *
85
- * - Exactly ONE file `--set` entry allowed per call (M38 single-
86
- * file scope; multi-file dispatch defers to v0.6.x).
85
+ * - Exactly ONE file `--set` entry allowed per call (single-
86
+ * file scope; multi-file dispatch defers to v0.7.x — Monday's
87
+ * `add_file_to_column` is single-column per call on the wire
88
+ * regardless of how many items the dispatch fans out across,
89
+ * so this rule is universal).
87
90
  * - NO other value `--set` / `--set-raw` / `--name` flags
88
- * allowed (mixing would force non-atomic multi-leg dispatch).
89
- * - Bulk `item update --where ... --set <file-col>=<path>`
90
- * REJECTED at resolution-time per D5 closure (defers to
91
- * v0.6.x — per-item file dispatch + partial-success envelope +
92
- * `--concurrency` interaction each carry additional design
93
- * dimensions).
94
- * - `item create --set <file-col>=<path>` REJECTED at resolution-
95
- * time per D6 closure (defers to v0.6.x — non-atomic post-
96
- * create wire shape would break §5.8 state safety).
91
+ * allowed (mixing would force non-atomic multi-leg dispatch
92
+ * across the multipart + JSON wire surfaces).
93
+ * - Bulk `item update --where ... --set <file-col>=<path>` —
94
+ * **CARVED OUT at v0.7-M42** (D5 fold). At v0.6-M38 this was
95
+ * REJECTED with `'file_set_on_bulk_unsupported'`; v0.7-M42's
96
+ * pre-flight contract diff returns
97
+ * `{ kind: 'file_bulk', columnId, rawValue }` from
98
+ * {@link enforceSingleFileColumnSet} on the clean dispatch
99
+ * path so the action body can branch into the per-item
100
+ * multipart fan-out. Multi-file / mixed mutex rules STILL
101
+ * apply on bulk (those are universal).
102
+ * - `item create --set <file-col>=<path>` — **CARVED OUT at
103
+ * v0.7-M43** (D6 fold). At v0.6-M38 this was REJECTED with
104
+ * `'file_set_on_create_unsupported'`; v0.7-M43's pre-flight
105
+ * contract diff returns
106
+ * `{ kind: 'file_create', columnId, rawValue }` from
107
+ * {@link enforceSingleFileColumnSet} on the clean dispatch
108
+ * path so the action body can branch into the two-leg
109
+ * dispatch (`create_item` then `add_file_to_column`).
110
+ * Multi-file mutex rule STILL applies on create (universal).
111
+ * The mixed rule is callShape-aware: on `'item_create'` the
112
+ * `--name` arm + non-file value `--set` / `--set-raw` arms
113
+ * are SUPPRESSED (leg-1 `create_item` natively bundles
114
+ * `column_values` atomically + `item_name` is required on
115
+ * create); the D3 `--set-raw <file-col>=<json>` rejection
116
+ * at `raw-write.ts:translateRawColumnValue` stays in force
117
+ * (separate enforcement layer).
97
118
  *
98
119
  * Rejection surfaces share the `usage_error.details.reason`
99
120
  * discriminator pattern from M14 / M27 / M31:
100
121
  *
101
122
  * - `'mixed_file_and_value_sets'` — file `--set` + any value
102
- * `--set` / `--set-raw` / `--name` in same call.
123
+ * `--set` / `--set-raw` / `--name` in same call. Applies on
124
+ * single-item AND bulk call shapes (universal mutex rule).
103
125
  * - `'multi_file_set_unsupported'` — 2+ file `--set` entries
104
- * in same call.
105
- * - `'file_set_on_create_unsupported'` — `item create --set
106
- * <file-col>=<path>`.
107
- * - `'file_set_on_bulk_unsupported'` bulk `item update
108
- * --where ... --set <file-col>=<path>`.
126
+ * in same call. Applies on single-item AND bulk call shapes
127
+ * (universal mutex rule).
128
+ * - `'file_set_on_bulk_unsupported'` — **NO LONGER SURFACES**
129
+ * at v0.7-M42 onwards. Historical reference only; the
130
+ * discriminator literal stays reserved across the codebase
131
+ * (do not reuse for a different rejection reason).
132
+ * - `'file_set_on_create_unsupported'` — **NO LONGER SURFACES**
133
+ * at v0.7-M43 onwards. Historical reference only; the
134
+ * discriminator literal stays reserved across the codebase
135
+ * (do not reuse for a different rejection reason).
109
136
  *
110
137
  * **D3 closure — `--set-raw <file-col>=<json>` STAYS REJECTED.**
111
138
  * Files have no JSON wire shape Monday's `change_column_value`
@@ -113,16 +140,19 @@
113
140
  * `change_column_value` accepts" doesn't compose with the
114
141
  * multipart wire. The existing rejection at
115
142
  * `raw-write.ts:translateRawColumnValue` stays unchanged; the
116
- * prose flips slightly to note "M38 ships the friendly `--set
117
- * <file-col>=<path>` form but `--set-raw` for files stays
118
- * rejected".
143
+ * prose enumerates every shipped friendly write path (v0.6-M38
144
+ * single-item, v0.7-M42 bulk, v0.7-M43 create-time, v0.4-M31
145
+ * verb-shaped upload) so agents reading the `--set-raw`
146
+ * rejection see the full set of working alternatives rather
147
+ * than just the M38 single-item form.
119
148
  *
120
149
  * **D7 closure — `<path>='-'` stdin support OUT OF SCOPE.**
121
150
  * Mirrors M31 `monday item upload`'s rejection rationale — no
122
151
  * clean `--filename` companion shape pinned for `--set
123
152
  * <file-col>=-` syntax (stdin reads byte-anonymously; the
124
153
  * filename is the load-bearing handle for Monday's wire
125
- * `Asset.name` slot). Defers to v0.6.x extension shape.
154
+ * `Asset.name` slot). Carry-forward candidate for v0.7.x once a
155
+ * `--filename` companion shape is pinned.
126
156
  *
127
157
  * **No new ERROR_CODE (D8 closure; registry stays at 29).** All
128
158
  * M38-specific rejections route through existing `usage_error`
@@ -300,29 +330,51 @@ export declare const executeFileColumnSet: (inputs: ExecuteFileColumnSetInputs)
300
330
  * present in `setEntries` — the standard JSON translator path
301
331
  * applies and the action body proceeds unchanged.
302
332
  * - Returns `{ kind: 'file', columnId, rawValue }` when a clean
303
- * file-column dispatch path applies (exactly one file `--set`,
304
- * no other value flags, single-item non-create call). The
305
- * caller runs {@link buildBlobFromPath} via
306
- * {@link precheckLocalFile} from `src/utils/file-source.ts` to
307
- * build a {@link FileColumnSetEntry} + invokes
333
+ * file-column dispatch path applies on a single-item non-
334
+ * create call (exactly one file `--set`, no other value
335
+ * flags). The caller runs {@link buildBlobFromPath} via
336
+ * {@link precheckLocalFile} from `src/utils/file-source.ts`
337
+ * to build a {@link FileColumnSetEntry} + invokes
308
338
  * {@link executeFileColumnSet}.
339
+ * - Returns `{ kind: 'file_bulk', columnId, rawValue }` when a
340
+ * clean bulk file-column dispatch path applies (v0.7-M42 D5
341
+ * carve-out fold). Action body branches into the per-item
342
+ * multipart fan-out helper.
343
+ * - Returns `{ kind: 'file_create', columnId, rawValue }` when a
344
+ * clean create-time file-column dispatch path applies
345
+ * (v0.7-M43 D6 carve-out fold). Action body branches into the
346
+ * two-leg `create_item` then `add_file_to_column` dispatch
347
+ * helper.
309
348
  * - Throws `ApiError('usage_error', ...)` with a
310
349
  * `details.reason` discriminator when a mutex violation is
311
- * detected: `'file_set_on_bulk_unsupported'` (D5 closure),
312
- * `'file_set_on_create_unsupported'` (D6 closure),
313
- * `'multi_file_set_unsupported'` (D2 multi-file leg),
314
- * `'mixed_file_and_value_sets'` (D2 mixed leg).
350
+ * detected: `'multi_file_set_unsupported'` (D2 multi-file leg
351
+ * universal; applies on single + bulk + create) OR
352
+ * `'mixed_file_and_value_sets'` (D2 mixed leg — universal on
353
+ * non-create callShapes; SUPPRESSED on `'item_create'` per
354
+ * the D6 mixed-rule asymmetry since `create_item` natively
355
+ * bundles `column_values` atomically + `item_name` is
356
+ * required on create).
357
+ *
358
+ * Both `'file_set_on_bulk_unsupported'` (v0.6-M38 D5) and
359
+ * `'file_set_on_create_unsupported'` (v0.6-M38 D6) literals NO
360
+ * LONGER SURFACE from this function as of v0.7-M42 / v0.7-M43
361
+ * respectively — the carve-out folds return
362
+ * `kind: 'file_bulk'` / `kind: 'file_create'` on clean dispatch
363
+ * paths instead. The literals stay RESERVED in docstrings as
364
+ * historical reference; do not re-introduce as runtime rejections
365
+ * without fresh contract decisions.
315
366
  *
316
367
  * Pure synchronous check — no I/O, no side effects. The caller
317
368
  * resolves columns first (via `resolveColumnWithRefresh` or the
318
369
  * existing `resolveAndTranslate` helper's resolution leg) and
319
370
  * passes the resolved column types here.
320
371
  *
321
- * **Status: runtime body shipped at v0.6-M38 IMPL.** Per R-NEW-76
322
- * graduated discipline, callers invoke `parseArgv` BEFORE this
323
- * function so argv-level failures surface as `usage_error` from
324
- * the parse boundary (this function itself runs AFTER argv parse
325
- * + column resolution).
372
+ * **Status: runtime body shipped at v0.6-M38 IMPL; extended at
373
+ * v0.7-M42 pre-flight contract diff for the D5 carve-out fold.**
374
+ * Per R-NEW-76 graduated discipline, callers invoke `parseArgv`
375
+ * BEFORE this function so argv-level failures surface as
376
+ * `usage_error` from the parse boundary (this function itself
377
+ * runs AFTER argv parse + column resolution).
326
378
  */
327
379
  export type FileColumnSetEnforcementResult = {
328
380
  readonly kind: 'json';
@@ -330,6 +382,14 @@ export type FileColumnSetEnforcementResult = {
330
382
  readonly kind: 'file';
331
383
  readonly columnId: string;
332
384
  readonly rawValue: string;
385
+ } | {
386
+ readonly kind: 'file_bulk';
387
+ readonly columnId: string;
388
+ readonly rawValue: string;
389
+ } | {
390
+ readonly kind: 'file_create';
391
+ readonly columnId: string;
392
+ readonly rawValue: string;
333
393
  };
334
394
  export interface EnforceSingleFileColumnSetInputs {
335
395
  /**
@@ -345,10 +405,26 @@ export interface EnforceSingleFileColumnSetInputs {
345
405
  * accepted; M38 mutex enforces "single file `--set` + no
346
406
  * other value flags".
347
407
  * - `'item_update_bulk'` — `monday item update --where ...`.
348
- * Any file `--set` rejects with
349
- * `'file_set_on_bulk_unsupported'` per D5.
350
- * - `'item_create'` `monday item create`. Any file `--set`
351
- * rejects with `'file_set_on_create_unsupported'` per D6.
408
+ * At v0.6-M38 this rejected with `'file_set_on_bulk_unsupported'`;
409
+ * v0.7-M42 carves out the D5 closure — clean single-file
410
+ * bulk-file dispatch returns `kind: 'file_bulk'` for the
411
+ * action body's per-item multipart fan-out. Multi-file +
412
+ * mixed gates STILL reject (those mutex rules are
413
+ * universal — file column dispatch is single-column per
414
+ * wire call regardless of how many items the fan-out
415
+ * spans).
416
+ * - `'item_create'` — `monday item create`. At v0.6-M38 this
417
+ * rejected with `'file_set_on_create_unsupported'`;
418
+ * v0.7-M43 carves out the D6 closure — clean single-file
419
+ * create-time dispatch returns `kind: 'file_create'` for the
420
+ * action body's two-leg `create_item` then
421
+ * `add_file_to_column` helper. Multi-file gate STILL rejects
422
+ * (universal). Mixed-rule SUPPRESSED on create per D6
423
+ * asymmetry (`create_item` natively bundles non-file
424
+ * `column_values` atomically + `--name` is required on
425
+ * create). `--set-raw <file-col>=<json>` stays rejected at
426
+ * `raw-write.ts:translateRawColumnValue` per D3 (separate
427
+ * enforcement layer).
352
428
  */
353
429
  readonly callShape: 'item_set' | 'item_update_single' | 'item_update_bulk' | 'item_create';
354
430
  /**
@@ -382,26 +458,40 @@ export interface EnforceSingleFileColumnSetInputs {
382
458
  * `{ kind: 'file', columnId, rawValue }` (clean dispatch path), or
383
459
  * throws `ApiError('usage_error', ...)` on a mutex violation.
384
460
  *
385
- * Mutex priority (ratified at M38 pre-flight, applied here in IMPL):
386
- *
387
- * 1. **callShape gates first** — `'item_update_bulk'` rejects ALL
388
- * file `--set` entries with `'file_set_on_bulk_unsupported'`
389
- * (D5; defers per-item file dispatch + concurrency interaction
390
- * to v0.6.x). `'item_create'` rejects with
391
- * `'file_set_on_create_unsupported'` (D6; defers create-time
392
- * file upload to v0.6.x non-atomic post-create wire shape
393
- * breaks §5.8 state safety).
394
- * 2. **multi-file leg** — 2+ file `--set` entries on a non-rejected
395
- * callShape surface `'multi_file_set_unsupported'` (M38 defers
396
- * multi-file dispatch to v0.6.x).
461
+ * Mutex priority (ratified at M38 pre-flight; updated at v0.7-M42
462
+ * + v0.7-M43 pre-flights to fold the D5 bulk + D6 create carve-outs):
463
+ *
464
+ * 1. **callShape gate NONE remaining post-v0.7-M43** — both
465
+ * `'item_update_bulk'` (D5 fold at v0.7-M42) and `'item_create'`
466
+ * (D6 fold at v0.7-M43) short-circuit-throws have been removed.
467
+ * Every callShape falls through to the universal multi-file
468
+ * gate + a callShape-aware mixed gate, then returns a per-
469
+ * callShape `kind` on the clean path.
470
+ * 2. **multi-file leg** — 2+ file `--set` entries (any callShape)
471
+ * surface `'multi_file_set_unsupported'`. Universal rule:
472
+ * Monday's `add_file_to_column` is single-column per call on
473
+ * the wire regardless of fan-out shape.
397
474
  * 3. **mixed leg** — 1 file `--set` + any value `--set` /
398
- * `--set-raw` / `--name` surface `'mixed_file_and_value_sets'`
399
- * (mixing forces non-atomic multi-leg dispatch that breaks the
400
- * existing atomicity contract).
401
- * 4. **clean leg** 1 file `--set`, no other value flags, single-
402
- * item non-create call return `{ kind: 'file', columnId,
403
- * rawValue }` for downstream {@link precheckLocalFile} +
404
- * {@link executeFileColumnSet}.
475
+ * `--set-raw` / `--name` surfaces `'mixed_file_and_value_sets'`
476
+ * on `'item_set'` / `'item_update_single'` / `'item_update_bulk'`.
477
+ * Universal rule on those callShapes: mixing forces non-atomic
478
+ * multi-leg dispatch across the multipart + JSON wire surfaces.
479
+ * **SUPPRESSED on `'item_create'`** per v0.7-M43 D6 mixed-rule
480
+ * asymmetry `create_item` natively bundles non-file
481
+ * `column_values` atomically into leg-1, and `--name` is
482
+ * required on create.
483
+ * 4. **clean leg** — 1 file `--set`, no mutex violation:
484
+ * - `'item_update_single'` / `'item_set'` → return
485
+ * `{ kind: 'file', columnId, rawValue }` for downstream
486
+ * {@link precheckLocalFile} + {@link executeFileColumnSet}
487
+ * (M38 path; unchanged).
488
+ * - `'item_update_bulk'` → return `{ kind: 'file_bulk',
489
+ * columnId, rawValue }` for the action body's per-item
490
+ * multipart fan-out (v0.7-M42 D5 carve-out fold).
491
+ * - `'item_create'` → return `{ kind: 'file_create', columnId,
492
+ * rawValue }` for the action body's two-leg `create_item`
493
+ * then `add_file_to_column` helper (v0.7-M43 D6 carve-out
494
+ * fold).
405
495
  *
406
496
  * The function is sync + pure. No I/O. Path validation lives at a
407
497
  * SEPARATE step (`precheckLocalFile` from `src/utils/file-source.ts`)
@@ -444,6 +534,22 @@ export type PreCheckM38FileDispatchResult = {
444
534
  readonly warnings: readonly ResolverWarning[];
445
535
  readonly source: 'live' | 'cache' | 'mixed' | undefined;
446
536
  readonly cacheAgeSeconds: number | null;
537
+ } | {
538
+ readonly kind: 'file_bulk';
539
+ readonly columnId: string;
540
+ readonly rawValue: string;
541
+ readonly token: string;
542
+ readonly warnings: readonly ResolverWarning[];
543
+ readonly source: 'live' | 'cache' | 'mixed' | undefined;
544
+ readonly cacheAgeSeconds: number | null;
545
+ } | {
546
+ readonly kind: 'file_create';
547
+ readonly columnId: string;
548
+ readonly rawValue: string;
549
+ readonly token: string;
550
+ readonly warnings: readonly ResolverWarning[];
551
+ readonly source: 'live' | 'cache' | 'mixed' | undefined;
552
+ readonly cacheAgeSeconds: number | null;
447
553
  };
448
554
  export interface PreCheckM38FileDispatchInputs {
449
555
  readonly client: MondayClient;
@@ -1 +1 @@
1
- {"version":3,"file":"file-column-set.d.ts","sourceRoot":"","sources":["../../src/api/file-column-set.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"file-column-set.d.ts","sourceRoot":"","sources":["../../src/api/file-column-set.ts"],"names":[],"mappings":"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"}