CurrencyService
internal.internal.CurrencyService
Properties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>manager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredEvents
objectRequiredEvents.UPDATED
stringRequiredAccessors
activeManager_
Protected
get
activeManager_(): EntityManager
Returns
EntityManager
EntityManager
EntityManagerRequiredInherited 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.
TResult
objectRequiredTError
objectRequiredParameters
work
(transactionManager: EntityManager) => Promise<TResult>RequiredisolationOrErrorHandler
IsolationLevel | (error: TError) => Promise<void | TResult>maybeErrorHandlerOrDontFail
(error: TError) => Promise<void | TResult>Returns
Promise
<TResult
>
Promise
Promise<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
config
FindConfig<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
code
stringRequiredReturns
Promise
<Currency
>
The currency
shouldRetryTransaction_
Protected
shouldRetryTransaction_(err
): boolean
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
boolean
booleanInherited from
TransactionBaseService.shouldRetryTransaction_
update
update(code
, data
): Promise
<undefined
| Currency
>
Update a currency
Parameters
code
stringRequiredReturns
Promise
<undefined
| Currency
>
The updated currency
withTransaction
withTransaction(transactionManager?
): CurrencyService
Parameters
transactionManager
EntityManager