@pulsecharterconnect/types 0.2.115 → 0.2.116
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/Schedule.d.ts +2 -0
- package/package.json +1 -1
package/dist/types/Schedule.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export interface IShift {
|
|
|
25
25
|
startTime: string;
|
|
26
26
|
endTime: string;
|
|
27
27
|
iconSlug?: ShiftRoleIconSlug;
|
|
28
|
+
/** Per-shift color override. When set, takes precedence over the parent role colorCode. */
|
|
29
|
+
colorCode?: ShiftRoleColorHex;
|
|
28
30
|
}
|
|
29
31
|
/** Payload for creating or updating a Shift Role (form submission shape) */
|
|
30
32
|
export interface IShiftRolePayload {
|