CurrencyService
internal.internal.CurrencyService
Properties
__configModule__Record<string, unknown>__container__anyRequired__moduleDeclaration__Record<string, unknown>manager_EntityManagerRequiredtransactionManager_undefined | EntityManagerRequiredEventsobjectRequiredEvents.UPDATEDstringRequiredAccessors
activeManager_
Protected get activeManager_(): EntityManager
Returns
EntityManager
EntityManagerEntityManagerRequiredInherited from
TransactionBaseService.activeManager_
Methods
atomicPhase_
Protected atomicPhase_<TResult, TError>(work, isolationOrErrorHandler?, maybeErrorHandlerOrDontFail?): Promise<TResult>
Wraps some work within a transactional block. If the service already has a transaction manager attached this will be reused, otherwise a new transaction manager is created.
TResultobjectRequiredTErrorobjectRequiredParameters
work(transactionManager: EntityManager) => Promise<TResult>RequiredisolationOrErrorHandlerIsolationLevel | (error: TError) => Promise<void | TResult>maybeErrorHandlerOrDontFail(error: TError) => Promise<void | TResult>Returns
Promise<TResult>
PromisePromise<TResult>RequiredInherited from
TransactionBaseService.atomicPhase_
listAndCount
listAndCount(selector, config?): Promise<[Currency[], number]>
Lists currencies based on the provided parameters and includes the count of currencies that match the query.
Parameters
configFindConfig<Currency>Returns
Promise<[Currency[], number]>
an array containing the currencies as
the first element and the total count of products that matches the query
as the second element.
retrieveByCode
retrieveByCode(code): Promise<Currency>
Return the currency
Parameters
codestringRequiredReturns
Promise<Currency>
The currency
shouldRetryTransaction_
Protected shouldRetryTransaction_(err): boolean
Parameters
errRecord<string, unknown> | { code: string }RequiredReturns
boolean
booleanbooleanInherited from
TransactionBaseService.shouldRetryTransaction_
update
update(code, data): Promise<undefined | Currency>
Update a currency
Parameters
codestringRequiredReturns
Promise<undefined | Currency>
The updated currency
withTransaction
withTransaction(transactionManager?): CurrencyService
Parameters
transactionManagerEntityManager