Skip to main content
RecommendedStrictAuto-fixableScope
warnerrorfalseModel action files
Related Gadget documentation: Gadget docs
What the linter reports:
timeoutMS valuems has no effect on transactional model actions above 5000ms.

Examples

api/models/widget/actions/create.ts
export const options: ActionOptions = {
  // 30000ms has no effect when transactional is true (max 5000ms)
  timeoutMS: 30000,
  transactional: true,
};
Last modified on March 10, 2026