@reekon-tools/boldr-utils 1.7.2 → 1.7.3
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.
|
@@ -17,6 +17,16 @@ export interface CalculatorFieldEntry {
|
|
|
17
17
|
locked: boolean;
|
|
18
18
|
/** Epoch ms. */
|
|
19
19
|
enteredAt: number;
|
|
20
|
+
/**
|
|
21
|
+
* Id of the group-owned Measurement this entry is mirrored to on a
|
|
22
|
+
* default/list group's grid (see boldr-pro's calculator grid sync). Present
|
|
23
|
+
* only for grid-linked captures — absent for form-group instances, unit-less
|
|
24
|
+
* fields, and values captured before linkage existed. The link is two-way:
|
|
25
|
+
* editing the value updates that doc, clearing the entry deletes it, and
|
|
26
|
+
* deleting the doc on the grid clears the entry. Ignorable by any runtime
|
|
27
|
+
* that doesn't mirror to the grid.
|
|
28
|
+
*/
|
|
29
|
+
gridMeasurementId?: string;
|
|
20
30
|
}
|
|
21
31
|
export interface CalculatorInstanceFileData {
|
|
22
32
|
/** Source doc id in the top-level `calculators` collection. */
|