process/agents: move lib to reactions dir

This commit is contained in:
Chika 2022-07-16 09:13:57 +03:00
parent 3c58ad2c58
commit b01008a7c4
9 changed files with 3 additions and 3 deletions

View File

@ -6,9 +6,9 @@ import utc from 'dayjs/plugin/utc';
import { reaction } from 'mobx';
import type RootStore from 'stores/root';
import { normalizeOptions } from 'tools/entity';
import * as fillAgentsFromLead from '../lib/fill-agents-from-lead';
import QUERY_GET_AGENT from '../lib/query/get-agent';
import type { GetAgent } from '../lib/query/__generated__/GetAgent';
import * as fillAgentsFromLead from './lib/fill-agents-from-lead';
import QUERY_GET_AGENT from './lib/query/get-agent';
import type { GetAgent } from './lib/query/__generated__/GetAgent';
import type { GetBrokerAccountIdFromDealer } from './__generated__/GetBrokerAccountIdFromDealer';
import type { GetDealerPerson } from './__generated__/GetDealerPerson';
import type { GetRewardConditions } from './__generated__/GetRewardConditions';