scheme-sdk 0.3.3__tar.gz → 0.3.4__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.3
2
2
  Name: scheme_sdk
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: The Scheme SDK provides connectors for ingesting conversations, messages, and files across communication platforms.
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "scheme_sdk"
7
- version = "0.3.3"
7
+ version = "0.3.4"
8
8
  description = "The Scheme SDK provides connectors for ingesting conversations, messages, and files across communication platforms."
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -4,10 +4,14 @@ SeedVault Connector SDK
4
4
  Core classes and platform connectors for building integrations.
5
5
  """
6
6
 
7
- from .base import BaseConnector, ConnectorContext, require_auth, retry_on_error
8
- from .errors import (ConnectorAPIError, ConnectorAuthError,
9
- ConnectorConfigError, ConnectorError,
10
- ConnectorRateLimitError)
7
+ from .base import BaseConnector, ConnectorContext, retry_on_error
8
+ from .errors import (
9
+ ConnectorAPIError,
10
+ ConnectorAuthError,
11
+ ConnectorConfigError,
12
+ ConnectorError,
13
+ ConnectorRateLimitError,
14
+ )
11
15
  from .message import MessageConnector
12
16
 
13
17
  __all__ = [
@@ -22,6 +26,5 @@ __all__ = [
22
26
  "ConnectorAPIError",
23
27
  "ConnectorConfigError",
24
28
  # Decorators
25
- "require_auth",
26
29
  "retry_on_error",
27
30
  ]
File without changes
File without changes