memorysync 1.4.0__tar.gz → 1.6.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: memorysync
3
- Version: 1.4.0
3
+ Version: 1.6.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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "memorysync"
7
- version = "1.4.0"
7
+ version = "1.6.0"
8
8
  description = "Official Python client for the MemorySync API."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -37,32 +37,44 @@ from .client import AsyncMemorySyncClient, MemorySyncClient
37
37
  from .control_plane import AsyncControlPlaneClient, ControlPlaneClient
38
38
  from .control_plane_types import (
39
39
  ApiKeyTestResponse,
40
- AuditEvent,
41
- AuditEventsResponse,
42
40
  BulkRevokeRequest,
43
41
  BulkRevokeResponse,
44
42
  BulkRevokeResult,
43
+ CreatedWebhook,
44
+ CreateExportRequest,
45
+ CreateExportResponse,
45
46
  CreateOrganizationRequest,
47
+ CreateProjectRequest,
46
48
  CreateWebhookRequest,
47
49
  CurrentPlanResponse,
50
+ ExportDownloadUrl,
51
+ ExportFilters,
52
+ ExportJob,
53
+ ExportJobListResponse,
48
54
  Integration,
49
55
  JsonObject,
56
+ CurrentUserResponse,
50
57
  LoginRequest,
51
58
  LoginResponse,
52
59
  LoginSession,
53
60
  LoginTokens,
61
+ RefreshRequest,
62
+ SignupRequest,
63
+ SignupResponse,
64
+ TokenPair,
54
65
  OrganizationMembership,
55
- OrganizationSettings,
56
66
  Project,
67
+ RenameProjectRequest,
57
68
  ReplayWebhookDeliveriesRequest,
58
69
  Session,
59
70
  SessionsResponse,
60
- TeamMember,
61
71
  TestWebhookRequest,
62
72
  UpdateWebhookRequest,
63
73
  Webhook,
64
74
  WebhookDeliveriesResponse,
65
75
  WebhookDelivery,
76
+ WebhookEventTypesResponse,
77
+ WebhookHealth,
66
78
  WebhookReplayResponse,
67
79
  WebhooksResponse,
68
80
  WebhookTestResponse,
@@ -107,13 +119,16 @@ __all__ = [
107
119
  __all__ += [
108
120
  "ControlPlaneClient", "AsyncControlPlaneClient", "JsonObject",
109
121
  "BulkRevokeRequest", "BulkRevokeResult", "BulkRevokeResponse",
110
- "ApiKeyTestResponse", "LoginRequest", "LoginTokens", "LoginSession",
111
- "LoginResponse", "CurrentPlanResponse", "TeamMember", "Session",
112
- "SessionsResponse", "AuditEvent", "AuditEventsResponse", "Integration",
113
- "CreateOrganizationRequest", "OrganizationMembership",
114
- "OrganizationSettings", "Project", "CreateWebhookRequest",
122
+ "ApiKeyTestResponse", "SignupRequest", "SignupResponse", "LoginRequest",
123
+ "LoginTokens", "LoginSession", "LoginResponse", "RefreshRequest",
124
+ "TokenPair", "CurrentUserResponse", "CurrentPlanResponse", "Session", "SessionsResponse",
125
+ "Integration", "CreateOrganizationRequest", "OrganizationMembership",
126
+ "Project", "CreateProjectRequest",
127
+ "RenameProjectRequest", "CreateWebhookRequest", "CreatedWebhook",
115
128
  "UpdateWebhookRequest", "TestWebhookRequest",
116
129
  "ReplayWebhookDeliveriesRequest", "Webhook", "WebhooksResponse",
117
130
  "WebhookTestResponse", "WebhookReplayResponse", "WebhookDelivery",
118
- "WebhookDeliveriesResponse",
131
+ "WebhookDeliveriesResponse", "WebhookEventTypesResponse", "WebhookHealth",
132
+ "ExportFilters", "CreateExportRequest", "ExportJob",
133
+ "ExportJobListResponse", "CreateExportResponse", "ExportDownloadUrl",
119
134
  ]
@@ -0,0 +1 @@
1
+ __version__ = "1.6.0"