Skip to main content

Class: StoreService

Provides layer to manipulate store settings.

Hierarchy

  • TransactionBaseService

    StoreService

Constructors

constructor

new StoreService(__namedParameters)

Parameters

NameType
__namedParametersInjectedDependencies

Overrides

TransactionBaseService.constructor

Defined in

medusa/src/services/store.ts:28

Properties

__configModule__

Protected Optional Readonly __configModule__: Record<string, unknown>

Inherited from

TransactionBaseService.__configModule__

Defined in

medusa/src/interfaces/transaction-base-service.ts:14


__container__

Protected Readonly __container__: any

Inherited from

TransactionBaseService.__container__

Defined in

medusa/src/interfaces/transaction-base-service.ts:13


__moduleDeclaration__

Protected Optional Readonly __moduleDeclaration__: Record<string, unknown>

Inherited from

TransactionBaseService.__moduleDeclaration__

Defined in

medusa/src/interfaces/transaction-base-service.ts:15


currencyRepository_

Protected Readonly currencyRepository_: Repository<Currency>

Defined in

medusa/src/services/store.ts:25


eventBus_

Protected Readonly eventBus_: EventBusService

Defined in

medusa/src/services/store.ts:26


manager_

Protected manager_: EntityManager

Inherited from

TransactionBaseService.manager_

Defined in

medusa/src/interfaces/transaction-base-service.ts:5


storeRepository_

Protected Readonly storeRepository_: Repository<Store>

Defined in

medusa/src/services/store.ts:24


transactionManager_

Protected transactionManager_: undefined | EntityManager

Inherited from

TransactionBaseService.transactionManager_

Defined in

medusa/src/interfaces/transaction-base-service.ts:6

Accessors

activeManager_

Protected get activeManager_(): EntityManager

Returns

EntityManager

Inherited from

TransactionBaseService.activeManager_

Defined in

medusa/src/interfaces/transaction-base-service.ts:8

Methods

addCurrency

addCurrency(code): Promise<Store>

Add a currency to the store

Parameters

NameTypeDescription
codestring3 character ISO currency code

Returns

Promise<Store>

result after update

Defined in

medusa/src/services/store.ts:208


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.

Type parameters

Name
TResult
TError

Parameters

NameTypeDescription
work(transactionManager: EntityManager) => Promise<TResult>the transactional work to be done
isolationOrErrorHandler?IsolationLevel | (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>

the result of the transactional work

Inherited from

TransactionBaseService.atomicPhase_

Defined in

medusa/src/interfaces/transaction-base-service.ts:56


create

create(): Promise<Store>

Creates a store if it doesn't already exist.

Returns

Promise<Store>

The store.

Defined in

medusa/src/services/store.ts:45


getDefaultCurrency_

Protected getDefaultCurrency_(code): Partial<Currency>

Parameters

NameType
codestring

Returns

Partial<Currency>

Defined in

medusa/src/services/store.ts:100


removeCurrency

removeCurrency(code): Promise<any>

Removes a currency from the store

Parameters

NameTypeDescription
codestring3 character ISO currency code

Returns

Promise<any>

result after update

Defined in

medusa/src/services/store.ts:252


retrieve

retrieve(config?): Promise<Store>

Retrieve the store settings. There is always a maximum of one store.

Parameters

NameTypeDescription
configFindConfig<Store>The config object from which the query will be built

Returns

Promise<Store>

the store

Defined in

medusa/src/services/store.ts:83


shouldRetryTransaction_

Protected shouldRetryTransaction_(err): boolean

Parameters

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

Returns

boolean

Inherited from

TransactionBaseService.shouldRetryTransaction_

Defined in

medusa/src/interfaces/transaction-base-service.ts:37


update

update(data): Promise<Store>

Updates a store

Parameters

NameTypeDescription
dataUpdateStoreInputan object with the update values.

Returns

Promise<Store>

resolves to the update result.

Defined in

medusa/src/services/store.ts:116


withTransaction

withTransaction(transactionManager?): StoreService

Parameters

NameType
transactionManager?EntityManager

Returns

StoreService

Inherited from

TransactionBaseService.withTransaction

Defined in

medusa/src/interfaces/transaction-base-service.ts:20

Was this page helpful?