@markwharton/liquidplanner 3.2.0 → 3.2.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.
- package/dist/types.d.ts +42 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -292,13 +292,53 @@ export interface LPItemRef extends LPAncestor {
|
|
|
292
292
|
}
|
|
293
293
|
/**
|
|
294
294
|
* Assignment in the normalized result.
|
|
295
|
+
*
|
|
296
|
+
* Same fields as LPAssignment minus ancestors and customFieldValues.
|
|
295
297
|
* Ancestors are reconstructable from the items lookup via parentId chain.
|
|
296
298
|
* Custom field values are referenced by index into the shared customFieldValues array.
|
|
297
299
|
*/
|
|
298
|
-
export
|
|
300
|
+
export interface LPNormalizedAssignment {
|
|
301
|
+
id: number;
|
|
302
|
+
name: string | null;
|
|
303
|
+
itemType: LPItemType;
|
|
304
|
+
parentId?: number;
|
|
305
|
+
costCodeId?: number;
|
|
306
|
+
userId?: number;
|
|
307
|
+
expectedStart?: string;
|
|
308
|
+
expectedFinish?: string;
|
|
309
|
+
latestFinish?: string;
|
|
310
|
+
late?: boolean;
|
|
311
|
+
targetStart?: string;
|
|
312
|
+
targetFinish?: string;
|
|
313
|
+
targetFinishType?: string;
|
|
314
|
+
inheritedTargetStartDate?: string;
|
|
315
|
+
inheritedTargetFinishDate?: string;
|
|
316
|
+
scheduleDirective?: string;
|
|
317
|
+
doneDate?: string;
|
|
318
|
+
lowEffort?: number;
|
|
319
|
+
highEffort?: number;
|
|
320
|
+
loggedHoursRollup?: number;
|
|
321
|
+
lowRemainingHoursRollup?: number;
|
|
322
|
+
highRemainingHoursRollup?: number;
|
|
323
|
+
taskStatusId?: number;
|
|
324
|
+
packageStatus?: string;
|
|
325
|
+
folderStatus?: string;
|
|
326
|
+
globalPriority?: string[];
|
|
327
|
+
color?: string;
|
|
328
|
+
workType?: string;
|
|
329
|
+
description?: string;
|
|
330
|
+
createdAt?: string;
|
|
331
|
+
updatedAt?: string;
|
|
332
|
+
clippedHours?: number;
|
|
333
|
+
workLimitHours?: number;
|
|
334
|
+
workLimitRisk?: boolean;
|
|
335
|
+
taskName?: string | null;
|
|
336
|
+
projectId?: number;
|
|
337
|
+
projectName?: string | null;
|
|
338
|
+
hierarchyPath?: string;
|
|
299
339
|
/** Index into the top-level customFieldValues array. Undefined when no custom field values. */
|
|
300
340
|
customFieldValuesIndex?: number;
|
|
301
|
-
}
|
|
341
|
+
}
|
|
302
342
|
/**
|
|
303
343
|
* One member's assignments in the normalized result
|
|
304
344
|
*/
|