Skip to main content
Skip to main content

restoreMoneyAmounts - Pricing Module Reference

Beta

This documentation provides a reference to the restoreMoneyAmounts method. This belongs to the Pricing Module.

This method restores soft deleted money amounts by their IDs.

Example

import {
initialize as initializePricingModule,
} from "@medusajs/pricing"

async function softDeleteMoneyAmounts (moneyAmountIds: string[]) {
const pricingService = await initializePricingModule()

await pricingService.softDeleteMoneyAmounts(
moneyAmountIds
)
}

Parameters

idsstring[]Required
The IDs of the money amounts to delete.
configRestoreReturn<TReturnableLinkableKeys>
Configurations determining which relations to restore along with each of the money amounts. You can pass to its returnLinkableKeys property any of the money amount's relation attribute names, such as price_set_money_amount.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<void | Record<string, string[]>>Required
An object that includes the IDs of related records that were restored, such as the ID of associated price set money amounts. The object's keys are the ID attribute names of the money amount entity's relations, such as price_set_money_amount_id, and its value is an array of strings, each being the ID of the record associated with the money amount through this relation, such as the IDs of associated price set money amounts.
Was this section helpful?