memorysync 1.1.0__tar.gz → 1.2.0__tar.gz

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.
@@ -43,6 +43,6 @@ htmlcov/
43
43
  *.cover
44
44
  out/
45
45
  /dashboard/tsconfig.tsbuildinfo
46
-
47
- # Responsive audit output (regenerated by npm run audit:responsive)
46
+
47
+ # Responsive audit output (regenerated by npm run audit:responsive)
48
48
  dashboard/responsive-audit-report.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: memorysync
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: Official Python client for the MemorySync API.
5
5
  Project-URL: Homepage, https://memorysync.io
6
6
  Project-URL: Documentation, https://docs.memorysync.io
@@ -1,44 +1,44 @@
1
- [build-system]
2
- requires = ["hatchling"]
3
- build-backend = "hatchling.build"
4
-
5
- [project]
6
- name = "memorysync"
7
- version = "1.1.0"
8
- description = "Official Python client for the MemorySync API."
9
- readme = "README.md"
10
- license = { text = "MIT" }
11
- requires-python = ">=3.9"
12
- authors = [{ name = "MemorySync" }]
13
- keywords = ["memorysync", "memory", "sdk", "client"]
14
- classifiers = [
15
- "Development Status :: 5 - Production/Stable",
16
- "Intended Audience :: Developers",
17
- "License :: OSI Approved :: MIT License",
18
- "Programming Language :: Python :: 3",
19
- "Programming Language :: Python :: 3.9",
20
- "Programming Language :: Python :: 3.10",
21
- "Programming Language :: Python :: 3.11",
22
- "Programming Language :: Python :: 3.12",
23
- "Topic :: Software Development :: Libraries :: Python Modules",
24
- "Typing :: Typed",
25
- ]
26
- dependencies = [
27
- "httpx>=0.25,<1.0",
28
- "typing-extensions>=4.5; python_version < '3.11'",
29
- ]
30
-
31
- [project.urls]
32
- Homepage = "https://memorysync.io"
33
- Documentation = "https://docs.memorysync.io"
34
-
35
- [tool.hatch.build.targets.wheel]
36
- packages = ["src/memorysync"]
37
-
38
- [tool.hatch.build.targets.sdist]
39
- include = [
40
- "src/memorysync",
41
- "README.md",
42
- "LICENSE",
43
- "pyproject.toml",
44
- ]
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "memorysync"
7
+ version = "1.2.0"
8
+ description = "Official Python client for the MemorySync API."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.9"
12
+ authors = [{ name = "MemorySync" }]
13
+ keywords = ["memorysync", "memory", "sdk", "client"]
14
+ classifiers = [
15
+ "Development Status :: 5 - Production/Stable",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.9",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Topic :: Software Development :: Libraries :: Python Modules",
24
+ "Typing :: Typed",
25
+ ]
26
+ dependencies = [
27
+ "httpx>=0.25,<1.0",
28
+ "typing-extensions>=4.5; python_version < '3.11'",
29
+ ]
30
+
31
+ [project.urls]
32
+ Homepage = "https://memorysync.io"
33
+ Documentation = "https://docs.memorysync.io"
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = ["src/memorysync"]
37
+
38
+ [tool.hatch.build.targets.sdist]
39
+ include = [
40
+ "src/memorysync",
41
+ "README.md",
42
+ "LICENSE",
43
+ "pyproject.toml",
44
+ ]
@@ -11,15 +11,27 @@ from .errors import (
11
11
  )
12
12
  from .types import (
13
13
  AddSkippedResponse,
14
+ BatchUpdateItem,
15
+ BatchUpdateItemResult,
16
+ BatchUpdateResponse,
14
17
  BulkAddItem,
15
18
  BulkAddItemResult,
16
19
  BulkAddResponse,
17
20
  ComposeResponse,
18
21
  ExportResponse,
22
+ FeedbackResponse,
23
+ FeedbackSignal,
24
+ FeedbackSummary,
25
+ FeedbackTrend,
26
+ ForgetFilters,
27
+ HistoryResponse,
19
28
  Memory,
29
+ Ontology,
20
30
  QueryResponse,
21
31
  Relation,
22
32
  RelationshipType,
33
+ RevisionEntry,
34
+ RevisionEvent,
23
35
  )
24
36
  from .client import AsyncMemorySyncClient, MemorySyncClient
25
37
  from .control_plane import AsyncControlPlaneClient, ControlPlaneClient
@@ -76,6 +88,19 @@ __all__ = [
76
88
  "NotFoundError",
77
89
  "RateLimitError",
78
90
  "ServerError",
91
+ # Phase 1 feature types
92
+ "BatchUpdateItem",
93
+ "BatchUpdateItemResult",
94
+ "BatchUpdateResponse",
95
+ "ForgetFilters",
96
+ "HistoryResponse",
97
+ "RevisionEntry",
98
+ "RevisionEvent",
99
+ "FeedbackResponse",
100
+ "FeedbackSignal",
101
+ "FeedbackSummary",
102
+ "FeedbackTrend",
103
+ "Ontology",
79
104
  ]
80
105
 
81
106
 
@@ -0,0 +1 @@
1
+ __version__ = "1.2.0"