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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type Company } from '@amalia/core/models';
import { CurrencySymbolsEnum } from '@amalia/ext/iso-4217';
import { PeriodFrequencyEnum } from '@amalia/payout-definition/periods/types';
import { COMPANY_FEATURE_FLAGS_DEFAULTS, CompanyStatus } from '@amalia/tenants/companies/types';
export const company = {
id: '9f9b148d-d569-4d13-9243-7e886fe01235',
name: 'acme',
slug: 'acme',
batchNumber: 0,
featureFlags: COMPANY_FEATURE_FLAGS_DEFAULTS,
createdAt: new Date(),
updatedAt: new Date(),
symbols: [CurrencySymbolsEnum.EUR, CurrencySymbolsEnum.USD],
nbBackwardRollingPeriods: 0,
nbForwardPaymentRollingPeriods: 0,
statementFrequency: PeriodFrequencyEnum.month,
currency: CurrencySymbolsEnum.EUR,
status: CompanyStatus.ACTIVE,
} as const satisfies Company;
|