chore: add missing since and featureFlag tags (#13926)

This commit is contained in:
Shahed Nasser
2025-10-31 16:17:19 +02:00
committed by GitHub
parent 604ff55a5b
commit 0fd9f27ca5
17 changed files with 50 additions and 2 deletions
@@ -6,6 +6,8 @@ export const addImageToVariantsStepId = "add-image-to-variants"
/**
* This step adds an image to one or more product variants.
*
* @since 2.11.2
*
* @example
* const data = addImageToVariantsStep({
@@ -6,6 +6,8 @@ export const addImagesToVariantStepId = "add-images-to-variant"
/**
* This step adds one or more images to a product variant.
*
* @since 2.11.2
*
* @example
* const data = addImagesToVariantStep({
@@ -7,6 +7,8 @@ export const removeImageFromVariantsStepId = "remove-image-from-variants"
/**
* This step removes an image from one or more product variants.
*
* @since 2.11.2
*
* @example
* const data = removeImageFromVariantsStep({
* image_id: "img_123",
@@ -7,6 +7,8 @@ export const removeImagesFromVariantStepId = "remove-images-from-variant"
/**
* This step removes one or more images from a product variant.
*
* @since 2.11.2
*
* @example
* const data = removeImagesFromVariantStep({
* variant_id: "variant_123",
@@ -55,6 +55,8 @@ export const batchImageVariantsWorkflowId = "batch-image-variants"
* You can use this workflow within your own customizations or custom workflows to manage image-variant associations in bulk.
* This is also useful when writing a [seed script](https://docs.medusajs.com/learn/fundamentals/custom-cli-scripts/seed-data) or a custom import script.
*
* @since 2.11.2
*
* @example
* const { result } = await batchImageVariantsWorkflow(container)
* .run({
@@ -55,6 +55,8 @@ export const batchVariantImagesWorkflowId = "batch-variant-images"
* You can use this workflow within your own customizations or custom workflows to manage variant-image associations in bulk.
* This is also useful when writing a [seed script](https://docs.medusajs.com/learn/fundamentals/custom-cli-scripts/seed-data) or a custom import script.
*
* @since 2.11.2
*
* @example
* const { result } = await batchVariantImagesWorkflow(container)
* .run({