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 actionType in global action options.
Remove actionType from global actions.
export const options: ActionOptions = { // actionType only applies to model actions, not global actions actionType: "create", returnType: true, };
export const options: ActionOptions = { // global actions do not support actionType returnType: true, };
Was this page helpful?