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
EntityManager
EntityManagerRequiredInherited from
TransactionBaseService.activeManager_
Methods
addCurrency
addCurrency(code
): Promise
<Store
>
Add a currency to the store
Parameters
code
stringRequiredReturns
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.
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_
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
code
stringRequiredReturns
removeCurrency
removeCurrency(code
): Promise
<any
>
Removes a currency from the store
Parameters
code
stringRequiredReturns
Promise
<any
>
Promise
Promise<any>Requiredresult after update
Promise
Promise<any>Requiredretrieve
retrieve(config?
): Promise
<Store
>
Retrieve the store settings. There is always a maximum of one store.
Parameters
config
FindConfig<Store>Returns
Promise
<Store
>
the store
shouldRetryTransaction_
Protected
shouldRetryTransaction_(err
): boolean
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
boolean
booleanInherited 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
transactionManager
EntityManager