scheme-sdk 0.3.3__py3-none-any.whl → 0.3.5__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.
|
@@ -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,
|
|
8
|
-
from .errors import (
|
|
9
|
-
|
|
10
|
-
|
|
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
|
]
|
scheme_sdk/connectors/outlook.py
CHANGED
|
@@ -26,7 +26,7 @@ class OutlookConnector(MessageConnector):
|
|
|
26
26
|
url = f"{self.base}/me/messages"
|
|
27
27
|
page_size = min(max(top, 50), 200)
|
|
28
28
|
params = {
|
|
29
|
-
"$select": "id,conversationId,subject,from,receivedDateTime,hasAttachments",
|
|
29
|
+
"$select": "id,conversationId,subject,from,receivedDateTime,hasAttachments,webLink",
|
|
30
30
|
"$orderby": "receivedDateTime desc",
|
|
31
31
|
"$top": str(page_size),
|
|
32
32
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
scheme_sdk/__init__.py,sha256=bQ_i10iSwabzAhS5CapMVplDhMXptJB0qhcgxW_-lnU,26
|
|
2
2
|
scheme_sdk/connectors/__init__.py,sha256=d7XyCKbx0QklcAFyhTbNxTg0PakQfTs3eQSayYUonqs,144
|
|
3
|
-
scheme_sdk/connectors/base/__init__.py,sha256
|
|
3
|
+
scheme_sdk/connectors/base/__init__.py,sha256=7bTnekIGEB0S8jDT7tBfCIgsW4VXtK_Da_vrrYhByEw,639
|
|
4
4
|
scheme_sdk/connectors/base/base.py,sha256=JtsD-HBdjC_Jl22M9j-ihe0tyXJw6JpgWsZp_ozCwDA,8855
|
|
5
5
|
scheme_sdk/connectors/base/errors.py,sha256=53Dhz5qImXJe0q0cO7IqG4yja0OC0hnxMNMMmgdCtW0,1152
|
|
6
6
|
scheme_sdk/connectors/base/message.py,sha256=pW-snYsHlAQ5-qMFzAQr3CDaNG1Z-HRYB1fdmZww1TU,5423
|
|
7
7
|
scheme_sdk/connectors/discord.py,sha256=CdtzVlwT0aHcUayhLGno_vmfhdt_WRtGOeV2zj7Ye7I,844
|
|
8
8
|
scheme_sdk/connectors/gmail.py,sha256=wZCj917qujXSE9jexqvkDgdmz02y6QST8q9KNRwEvg0,866
|
|
9
|
-
scheme_sdk/connectors/outlook.py,sha256=
|
|
9
|
+
scheme_sdk/connectors/outlook.py,sha256=5Eli_8P9ZeDKQSq6DlbOlFAmBX5m5QFWQJVPHVoL4bE,6240
|
|
10
10
|
scheme_sdk/connectors/slack.py,sha256=_g--XxS4_ImT0fs0HX9vNquTkUlaikiylBhsgJzCC-4,1434
|
|
11
|
-
scheme_sdk-0.3.
|
|
12
|
-
scheme_sdk-0.3.
|
|
13
|
-
scheme_sdk-0.3.
|
|
11
|
+
scheme_sdk-0.3.5.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
|
|
12
|
+
scheme_sdk-0.3.5.dist-info/METADATA,sha256=UNwkt_Jx_Cgpk5Bd47cOc-r1zVHMkwAWgVNTxt9i8tU,15084
|
|
13
|
+
scheme_sdk-0.3.5.dist-info/RECORD,,
|
|
File without changes
|