Skip to main content
Skip to main content

CurrencyService

internal.internal.CurrencyService

Properties

__configModule__Record<string, unknown>
__container__anyRequired
__moduleDeclaration__Record<string, unknown>
currencyRepository_Repository<Currency>Required
eventBusService_EventBusServiceRequired
featureFlagRouter_FlagRouterRequired
manager_EntityManagerRequired
transactionManager_undefined | EntityManagerRequired
EventsobjectRequired
Events.UPDATEDstringRequired

Accessors

activeManager_

Protected get activeManager_(): EntityManager

Returns

EntityManager

EntityManagerEntityManagerRequired

Inherited 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.

TResultobjectRequired
TErrorobjectRequired

Parameters

work(transactionManager: EntityManager) => Promise<TResult>Required
the transactional work to be done
isolationOrErrorHandlerIsolationLevel | (error: TError) => Promise<void | TResult>
the isolation level to be used for the work.
maybeErrorHandlerOrDontFail(error: TError) => Promise<void | TResult>
Potential error handler

Returns

Promise<TResult>

PromisePromise<TResult>Required
the result of the transactional work

Inherited 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

selectorSelector<Currency>Required
an object that defines rules to filter currencies by
object that defines the scope for what should be returned

Returns

Promise<[Currency[], number]>

PromisePromise<[Currency[], number]>Required
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

codestringRequired
The code of the currency that must be retrieve

Returns

Promise<Currency>

PromisePromise<Currency>Required
The currency

shouldRetryTransaction_

Protected shouldRetryTransaction_(err): boolean

Parameters

errRecord<string, unknown> | { code: string }Required

Returns

boolean

booleanboolean

Inherited from

TransactionBaseService.shouldRetryTransaction_


update

update(code, data): Promise<undefined | Currency>

Update a currency

Parameters

codestringRequired
The code of the currency to update
The data that must be updated on the currency

Returns

Promise<undefined | Currency>

PromisePromise<undefined | Currency>Required
The updated currency

withTransaction

withTransaction(transactionManager?): CurrencyService

Parameters

transactionManagerEntityManager

Returns

CurrencyService

defaultCurrencyServiceRequired

Inherited from

TransactionBaseService.withTransaction

Was this section helpful?