mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
21 lines
437 B
TypeScript
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
|
|
} |