@tmlmobilidade/types 20260730.949.14 → 20260731.1044.35
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/dates/day-period.js +5 -5
- package/package.json +1 -1
package/dist/dates/day-period.js
CHANGED
|
@@ -2,11 +2,11 @@ import { z } from 'zod';
|
|
|
2
2
|
export const DayPeriodsValues = ['PPM', 'CD', 'PPT', 'N', 'M'];
|
|
3
3
|
export const DayPeriodSchema = z.enum(DayPeriodsValues);
|
|
4
4
|
export const DAY_PERIOD_TIME_RANGES = {
|
|
5
|
-
CD: { end: '
|
|
6
|
-
M: { end: '
|
|
7
|
-
N: { end: '
|
|
8
|
-
PPM: { end: '09:59', start: '
|
|
9
|
-
PPT: { end: '19:59', start: '
|
|
5
|
+
CD: { end: '16:59', start: '10:00' },
|
|
6
|
+
M: { end: '06:59', start: '04:00' },
|
|
7
|
+
N: { end: '03:59', start: '20:00' },
|
|
8
|
+
PPM: { end: '09:59', start: '07:00' },
|
|
9
|
+
PPT: { end: '19:59', start: '17:00' },
|
|
10
10
|
};
|
|
11
11
|
const DAY_PERIOD_LABEL_BASE = {
|
|
12
12
|
CD: { long: 'Corpo do Dia', short: 'CD' },
|