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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 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 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 1x 1x 1x 1x 1x 1x | import { type FixtureCompany } from '../fixtures';
import { adminScopes } from './admin-scopes';
import { badgeConfigurations } from './badgeConfigurations';
import { calculations } from './calculations';
import { company } from './company';
import { companyIntegrations } from './companyIntegrations';
import { connectors } from './connectors';
import { customObjectDefinitions } from './customObjectDefinitions';
import { customObjects } from './customObjects';
import { customReportFolders } from './customReportFolders';
import { customReports } from './customReports';
import { dataExports } from './dataExports';
import { downloads } from './downloads';
import { filters } from './filters';
import { highlightedKpis } from './highlightedKpis';
import { overwrites } from './overwrites';
import { payments } from './payments';
import { periods } from './periods';
import { planAgreements } from './planAgreements';
import { planAgreementsAssignments } from './planAgreementsAssignments';
import { planAssignments } from './planAssignments';
import { planDashboards } from './planDashboards';
import { plans } from './plans';
import { relationships } from './relationships';
import { ruleAssignments } from './ruleAssignment';
import { rules } from './rules';
import { statementDatasets } from './statementDatasets';
import { statements } from './statements';
import { teams } from './teams';
import { users } from './users';
import { variables } from './variables';
import { variableValues } from './variableValues';
import { workflowCampaigns } from './workflowCampaign';
export const companyFixtures = {
id: company.id,
adminScopes,
badgeConfigurations,
calculations,
company,
companyIntegrations,
connectors,
customObjects,
customReports,
customReportFolders,
customObjectDefinitions,
dataExports,
downloads,
filters,
highlightedKpis,
overwrites,
payments,
periods,
plans,
planAssignments,
planAgreements,
planAgreementsAssignments,
planDashboards,
relationships,
ruleAssignments,
rules,
statements,
statementDatasets,
teams,
users,
variables,
variableValues,
workflowCampaigns,
} as const satisfies FixtureCompany;
|