From d7342c6f82f30bb2a55081adba779daa25a5fbfc Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Thu, 6 Feb 2025 15:22:32 +0200 Subject: [PATCH] chore(types): add TSDocs for retentionTime (#11345) --- packages/core/orchestration/src/transaction/types.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/core/orchestration/src/transaction/types.ts b/packages/core/orchestration/src/transaction/types.ts index b83ebab1bf..11e04aa370 100644 --- a/packages/core/orchestration/src/transaction/types.ts +++ b/packages/core/orchestration/src/transaction/types.ts @@ -111,11 +111,15 @@ export type TransactionModelOptions = { /** * If true, the state of the transaction will be persisted. + * + * Learn more in [this documentation](https://docs.medusajs.com/learn/fundamentals/workflows/store-executions). */ store?: boolean /** - * TBD + * The number of seconds that the workflow execution should be stored in the database. + * + * Learn more in [this documentation](https://docs.medusajs.com/learn/fundamentals/workflows/store-executions). */ retentionTime?: number