Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Disallow scheduler triggers in model action options.
Model actions cannot use scheduler triggers.
export const options: ActionOptions = { // scheduler triggers are only valid in global actions triggers: [{ type: "scheduler" }], };
export const options: ActionOptions = { // model actions support api, shopify, and other non-scheduler triggers triggers: [{ type: "api" }], };
Was this page helpful?