@libxai/board 1.5.78 → 1.5.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +16 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +16 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -91,9 +91,15 @@ interface GanttColumn {
|
|
|
91
91
|
resizable?: boolean;
|
|
92
92
|
}
|
|
93
93
|
interface Assignee {
|
|
94
|
+
/** User ID — optional to preserve backward compatibility with older consumers */
|
|
95
|
+
id?: string;
|
|
94
96
|
name: string;
|
|
95
97
|
initials: string;
|
|
96
98
|
color: string;
|
|
99
|
+
/** Per-user estimated effort for the parent task, in minutes.
|
|
100
|
+
* Set by the SaaS App when a task has multi-user effort distribution.
|
|
101
|
+
* When present, cost calculations decompose as Σ(userMinutes × userRate). */
|
|
102
|
+
estimatedMinutes?: number;
|
|
97
103
|
}
|
|
98
104
|
interface GanttTheme {
|
|
99
105
|
bgPrimary: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -91,9 +91,15 @@ interface GanttColumn {
|
|
|
91
91
|
resizable?: boolean;
|
|
92
92
|
}
|
|
93
93
|
interface Assignee {
|
|
94
|
+
/** User ID — optional to preserve backward compatibility with older consumers */
|
|
95
|
+
id?: string;
|
|
94
96
|
name: string;
|
|
95
97
|
initials: string;
|
|
96
98
|
color: string;
|
|
99
|
+
/** Per-user estimated effort for the parent task, in minutes.
|
|
100
|
+
* Set by the SaaS App when a task has multi-user effort distribution.
|
|
101
|
+
* When present, cost calculations decompose as Σ(userMinutes × userRate). */
|
|
102
|
+
estimatedMinutes?: number;
|
|
97
103
|
}
|
|
98
104
|
interface GanttTheme {
|
|
99
105
|
bgPrimary: string;
|