StoreService
internal.internal.StoreService
Provides layer to manipulate store settings.
Properties
__configModule__Record<string, unknown>__container__anyRequired__moduleDeclaration__Record<string, unknown>manager_EntityManagerRequiredtransactionManager_undefined | EntityManagerRequiredAccessors
activeManager_
Protected get activeManager_(): EntityManager
Returns
EntityManager
EntityManagerEntityManagerRequiredInherited from
TransactionBaseService.activeManager_
Methods
addCurrency
addCurrency(code): Promise<Store>
Add a currency to the store
Parameters
codestringRequiredReturns
Promise<Store>
result after update
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_
create
create(): Promise<Store>
Creates a store if it doesn't already exist.
Returns
Promise<Store>
The store.
getDefaultCurrency_
Protected getDefaultCurrency_(code): Partial<Currency>
Parameters
codestringRequiredReturns
removeCurrency
removeCurrency(code): Promise<any>
Removes a currency from the store
Parameters
codestringRequiredReturns
Promise<any>
PromisePromise<any>Requiredresult after update
PromisePromise<any>Requiredretrieve
retrieve(config?): Promise<Store>
Retrieve the store settings. There is always a maximum of one store.
Parameters
configFindConfig<Store>Returns
Promise<Store>
the store
shouldRetryTransaction_
Protected shouldRetryTransaction_(err): boolean
Parameters
errRecord<string, unknown> | { code: string }RequiredReturns
boolean
booleanbooleanInherited from
TransactionBaseService.shouldRetryTransaction_
update
update(data): Promise<Store>
Updates a store
Parameters
Returns
Promise<Store>
resolves to the update result.
withTransaction
withTransaction(transactionManager?): StoreService
Parameters
transactionManagerEntityManager