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
@@ -4,8 +4,9 @@ import { Modules } from "@medusajs/framework/utils"
/**
* Get the index information for all entities that are indexed and their sync state
* @param req
* @param res
*
* @since 2.11.2
* @featureFlag index
*/
export const GET = async (
req: AuthenticatedMedusaRequest<void>,
@@ -2,6 +2,10 @@ import { AuthenticatedMedusaRequest, MedusaResponse } from "@medusajs/framework"
import { HttpTypes } from "@medusajs/framework/types"
import { Modules } from "@medusajs/framework/utils"
/**
* @since 2.11.2
* @featureFlag index
*/
export const POST = async (
req: AuthenticatedMedusaRequest<HttpTypes.AdminIndexSyncPayload>,
res: MedusaResponse
@@ -5,6 +5,9 @@ import {
} from "@medusajs/framework/http"
import { HttpTypes } from "@medusajs/framework/types"
/**
* @since 2.11.2
*/
export const POST = async (
req: AuthenticatedMedusaRequest<HttpTypes.AdminBatchImageVariantRequest>,
res: MedusaResponse<HttpTypes.AdminBatchImageVariantResponse>
@@ -5,6 +5,9 @@ import {
} from "@medusajs/framework/http"
import { HttpTypes } from "@medusajs/framework/types"
/**
* @since 2.11.2
*/
export const POST = async (
req: AuthenticatedMedusaRequest<HttpTypes.AdminBatchVariantImagesRequest>,
res: MedusaResponse<HttpTypes.AdminBatchVariantImagesResponse>