better-notion 1.0.1__py3-none-any.whl → 1.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ """Agents SDK Plugin - Workflow management SDK extensions.
2
+
3
+ This plugin provides SDK models, caches, and managers for the workflow
4
+ management system, enabling AI agents to work with Organizations,
5
+ Projects, Versions, Tasks, Ideas, Work Issues, and Incidents through Notion.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ from better_notion.plugins.official.agents_sdk.models import (
11
+ Idea,
12
+ Incident,
13
+ Organization,
14
+ Project,
15
+ Task,
16
+ Version,
17
+ WorkIssue,
18
+ )
19
+ from better_notion.plugins.official.agents_sdk.plugin import AgentsSDKPlugin
20
+
21
+ __all__ = [
22
+ "AgentsSDKPlugin",
23
+ "Organization",
24
+ "Project",
25
+ "Version",
26
+ "Task",
27
+ "Idea",
28
+ "WorkIssue",
29
+ "Incident",
30
+ ]