Type Alias WaldiezSkill

WaldiezSkill: {
    createdAt: string;
    data: Omit<
        WaldiezSkillNodeData,
        | "label"
        | "description"
        | "name"
        | "tags"
        | "requirements"
        | "createdAt"
        | "updatedAt",
    >;
    description: string;
    id?: string;
    name: string;
    requirements: string[];
    tags: string[];
    type: "skill";
    updatedAt: string;
}

Waldiez Skill.

Type declaration

  • createdAt: string
  • data: Omit<
        WaldiezSkillNodeData,
        | "label"
        | "description"
        | "name"
        | "tags"
        | "requirements"
        | "createdAt"
        | "updatedAt",
    >
  • description: string
  • Optionalid?: string
  • name: string
  • requirements: string[]
  • tags: string[]
  • type: "skill"
  • updatedAt: string

The id of the skill

The type of the node in a graph (skill)

The name of the skill

The description of the skill

The tags of the skill

The requirements of the skill

The creation date of the skill

The update date of the skill

The data of the skill. See WaldiezSkillNodeData