Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type Period } from '@amalia/core/models';
import { PeriodFrequencyEnum } from '@amalia/payout-definition/periods/types';
export const periods = {
september2019: {
id: '11ed44a7-d411-451d-9add-5fced8367fdd',
name: 'Septembre 2019',
startDate: 1_567_296_000,
endDate: 1_569_887_999,
frequency: PeriodFrequencyEnum.month,
createdAt: new Date(),
updatedAt: new Date(),
},
october2019: {
id: '69b81df3-bcf1-48f0-9b3e-32628b841a58',
name: 'October 2019',
startDate: 1_569_888_000,
endDate: 1_572_566_399,
frequency: PeriodFrequencyEnum.month,
createdAt: new Date(),
updatedAt: new Date(),
},
september2018: {
id: 'ca1cf967-303a-8bab-becf-2cc3d8c83e4d',
name: 'Septembre 2018',
startDate: 1_567_296_002,
endDate: 1_569_887_993,
frequency: PeriodFrequencyEnum.month,
createdAt: new Date(),
updatedAt: new Date(),
},
} as const satisfies Record<string, Period>;
|