chore: change 2.11.4 to 2.12.0 in TSDocs (#14174)

This commit is contained in:
Shahed Nasser
2025-12-01 17:33:28 +02:00
committed by GitHub
parent 83dd1b616a
commit 3cf1e5e9de
8 changed files with 11 additions and 11 deletions
@@ -10,11 +10,11 @@ const Promotion = model
is_automatic: model.boolean().default(false),
is_tax_inclusive: model.boolean().default(false),
/**
* @since v2.11.4
* @since v2.12.0
*/
limit: model.number().nullable(),
/**
* @since v2.11.4
* @since v2.12.0
*/
used: model.number().default(0),
type: model.enum(PromotionUtils.PromotionType).index("IDX_promotion_type"),
@@ -37,7 +37,7 @@ const Promotion = model
mappedBy: "promotions",
}),
/**
* @since v2.11.4
* @since v2.12.0
*/
metadata: model.json().nullable(),
})