system-prompts-and-models-o.../NotionAi/notion-ai_20260322/modules/asana/integration.ts
2026-03-22 18:31:30 +08:00

21 lines
437 B
TypeScript

export type ModulePermission = {
/**
* User URL to run Asana searches as (URL).
* Required for custom agents; omit for personal agent modules.
*/
identifier: string
/**
* Must be ["search"].
*/
actions: ["search"]
}
export type ModulePermissions = ModulePermission
export type ModuleState = never
export type AsanaIntegration = {
type: "asana"
name: string
permissions?: Array<ModulePermissions>
state?: ModuleState
}