diff --git a/.eslintignore b/.eslintignore index ea0a7867b0..b3238cda5a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,7 +4,6 @@ /packages/medusa/src/services/claim-item.js /packages/medusa/src/services/event-bus.js /packages/medusa/src/services/fulfillment-provider.js -/packages/medusa/src/services/inventory.js /packages/medusa/src/services/middleware.js /packages/medusa/src/services/oauth.js /packages/medusa/src/services/payment-provider.js diff --git a/packages/medusa/src/services/fulfillment-provider.js b/packages/medusa/src/services/fulfillment-provider.js index dbad8ac1c4..85705fcf33 100644 --- a/packages/medusa/src/services/fulfillment-provider.js +++ b/packages/medusa/src/services/fulfillment-provider.js @@ -28,7 +28,7 @@ class FulfillmentProviderService { async listFulfillmentOptions(providers) { const result = await Promise.all( - providers.map(async p => { + providers.map(async (p) => { const provider = await this.retrieveProvider(p) return { provider_id: p, @@ -41,7 +41,8 @@ class FulfillmentProviderService { } /** - * @returns {FulfillmentService} the payment fulfillment provider + * @param {string} provider_id - the provider id + * @return {FulfillmentService} the payment fulfillment provider */ retrieveProvider(provider_id) { try { diff --git a/packages/medusa/src/services/inventory.js b/packages/medusa/src/services/inventory.js index 944a7e6ffe..3883506b30 100644 --- a/packages/medusa/src/services/inventory.js +++ b/packages/medusa/src/services/inventory.js @@ -29,19 +29,19 @@ class InventoryService extends BaseService { /** * Updates the inventory of a variant based on a given adjustment. - * @params {string} variantId - the id of the variant to update - * @params {number} adjustment - the number to adjust the inventory quantity by + * @param {string} variantId - the id of the variant to update + * @param {number} adjustment - the number to adjust the inventory quantity by * @return {Promise} resolves to the update result. */ async adjustInventory(variantId, adjustment) { - //if variantId is undefined – ergo. a custom item – then do nothing + // if variantId is undefined – ergo. a custom item – then do nothing if (typeof variantId === "undefined" || variantId === null) { return } - return this.atomicPhase_(async manager => { + return this.atomicPhase_(async (manager) => { const variant = await this.productVariantService_.retrieve(variantId) - //if inventory is managed then update + // if inventory is managed then update if (variant.manage_inventory) { return await this.productVariantService_ .withTransaction(manager) @@ -55,13 +55,13 @@ class InventoryService extends BaseService { * Checks if the inventory of a variant can cover a given quantity. Will * return true if the variant doesn't have managed inventory or if the variant * allows backorders or if the inventory quantity is greater than `quantity`. - * @params {string} variantId - the id of the variant to check - * @params {number} quantity - the number of units to check availability for + * @param {string} variantId - the id of the variant to check + * @param {number} quantity - the number of units to check availability for * @return {boolean} true if the inventory covers the quantity */ async confirmInventory(variantId, quantity) { - //if variantId is undefined then confirm inventory as it - //is a custom item that is not managed + // if variantId is undefined then confirm inventory as it + // is a custom item that is not managed if (typeof variantId === "undefined" || variantId === null) { return true }