airbyte-agent-jira 0.1.22__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.
- airbyte_agent_jira/__init__.py +91 -0
- airbyte_agent_jira/_vendored/__init__.py +1 -0
- airbyte_agent_jira/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_jira/_vendored/connector_sdk/auth_strategies.py +1123 -0
- airbyte_agent_jira/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_jira/_vendored/connector_sdk/connector_model_loader.py +965 -0
- airbyte_agent_jira/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_jira/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_jira/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_jira/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
- airbyte_agent_jira/_vendored/connector_sdk/executor/local_executor.py +1574 -0
- airbyte_agent_jira/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_jira/_vendored/connector_sdk/extensions.py +694 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_jira/_vendored/connector_sdk/http/response.py +102 -0
- airbyte_agent_jira/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_jira/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_jira/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_jira/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_jira/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_jira/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_jira/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_jira/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_jira/_vendored/connector_sdk/observability/session.py +94 -0
- airbyte_agent_jira/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_jira/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_jira/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/base.py +161 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/components.py +239 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/connector.py +131 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_jira/_vendored/connector_sdk/schema/security.py +223 -0
- airbyte_agent_jira/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_jira/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_jira/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_jira/_vendored/connector_sdk/telemetry/events.py +58 -0
- airbyte_agent_jira/_vendored/connector_sdk/telemetry/tracker.py +151 -0
- airbyte_agent_jira/_vendored/connector_sdk/types.py +245 -0
- airbyte_agent_jira/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_jira/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_jira/connector.py +978 -0
- airbyte_agent_jira/connector_model.py +2827 -0
- airbyte_agent_jira/models.py +741 -0
- airbyte_agent_jira/types.py +117 -0
- airbyte_agent_jira-0.1.22.dist-info/METADATA +113 -0
- airbyte_agent_jira-0.1.22.dist-info/RECORD +56 -0
- airbyte_agent_jira-0.1.22.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Blessed Jira connector for Airbyte SDK.
|
|
3
|
+
|
|
4
|
+
Auto-generated from OpenAPI specification.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .connector import JiraConnector
|
|
8
|
+
from .models import (
|
|
9
|
+
JiraAuthConfig,
|
|
10
|
+
ProjectVersionsItem,
|
|
11
|
+
ProjectProjectcategory,
|
|
12
|
+
ProjectComponentsItem,
|
|
13
|
+
ProjectIssuetypesItem,
|
|
14
|
+
ProjectAvatarurls,
|
|
15
|
+
ProjectLeadAvatarurls,
|
|
16
|
+
ProjectLead,
|
|
17
|
+
Project,
|
|
18
|
+
ProjectsList,
|
|
19
|
+
IssueFieldsProjectAvatarurls,
|
|
20
|
+
IssueFieldsProjectProjectcategory,
|
|
21
|
+
IssueFieldsProject,
|
|
22
|
+
IssueFieldsIssuetype,
|
|
23
|
+
IssueFieldsReporterAvatarurls,
|
|
24
|
+
IssueFieldsReporter,
|
|
25
|
+
IssueFieldsAssigneeAvatarurls,
|
|
26
|
+
IssueFieldsAssignee,
|
|
27
|
+
IssueFieldsStatusStatuscategory,
|
|
28
|
+
IssueFieldsStatus,
|
|
29
|
+
IssueFieldsPriority,
|
|
30
|
+
IssueFields,
|
|
31
|
+
Issue,
|
|
32
|
+
IssuesList,
|
|
33
|
+
UserGroupsItemsItem,
|
|
34
|
+
UserGroups,
|
|
35
|
+
UserAvatarurls,
|
|
36
|
+
UserApplicationrolesItemsItemGroupdetailsItem,
|
|
37
|
+
UserApplicationrolesItemsItemDefaultgroupsdetailsItem,
|
|
38
|
+
UserApplicationrolesItemsItem,
|
|
39
|
+
UserApplicationroles,
|
|
40
|
+
User,
|
|
41
|
+
IssueFieldSchema,
|
|
42
|
+
IssueField,
|
|
43
|
+
IssueFieldSearchResults,
|
|
44
|
+
IssueCommentVisibility,
|
|
45
|
+
IssueCommentAuthorAvatarurls,
|
|
46
|
+
IssueCommentAuthor,
|
|
47
|
+
IssueCommentBodyContentItemContentItem,
|
|
48
|
+
IssueCommentBodyContentItem,
|
|
49
|
+
IssueCommentBody,
|
|
50
|
+
IssueCommentUpdateauthorAvatarurls,
|
|
51
|
+
IssueCommentUpdateauthor,
|
|
52
|
+
IssueComment,
|
|
53
|
+
IssueCommentsList,
|
|
54
|
+
WorklogUpdateauthorAvatarurls,
|
|
55
|
+
WorklogUpdateauthor,
|
|
56
|
+
WorklogVisibility,
|
|
57
|
+
WorklogCommentContentItemContentItem,
|
|
58
|
+
WorklogCommentContentItem,
|
|
59
|
+
WorklogComment,
|
|
60
|
+
WorklogAuthorAvatarurls,
|
|
61
|
+
WorklogAuthor,
|
|
62
|
+
Worklog,
|
|
63
|
+
WorklogsList,
|
|
64
|
+
IssuesSearchResultMeta,
|
|
65
|
+
ProjectsSearchResultMeta,
|
|
66
|
+
IssueCommentsListResultMeta,
|
|
67
|
+
IssueWorklogsListResultMeta,
|
|
68
|
+
JiraExecuteResult,
|
|
69
|
+
JiraExecuteResultWithMeta,
|
|
70
|
+
IssuesSearchResult,
|
|
71
|
+
ProjectsSearchResult,
|
|
72
|
+
IssueCommentsListResult,
|
|
73
|
+
IssueWorklogsListResult
|
|
74
|
+
)
|
|
75
|
+
from .types import (
|
|
76
|
+
IssuesSearchParams,
|
|
77
|
+
IssuesGetParams,
|
|
78
|
+
ProjectsSearchParams,
|
|
79
|
+
ProjectsGetParams,
|
|
80
|
+
UsersGetParams,
|
|
81
|
+
UsersListParams,
|
|
82
|
+
UsersSearchParams,
|
|
83
|
+
IssueFieldsListParams,
|
|
84
|
+
IssueFieldsSearchParams,
|
|
85
|
+
IssueCommentsListParams,
|
|
86
|
+
IssueCommentsGetParams,
|
|
87
|
+
IssueWorklogsListParams,
|
|
88
|
+
IssueWorklogsGetParams
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
__all__ = ["JiraConnector", "JiraAuthConfig", "ProjectVersionsItem", "ProjectProjectcategory", "ProjectComponentsItem", "ProjectIssuetypesItem", "ProjectAvatarurls", "ProjectLeadAvatarurls", "ProjectLead", "Project", "ProjectsList", "IssueFieldsProjectAvatarurls", "IssueFieldsProjectProjectcategory", "IssueFieldsProject", "IssueFieldsIssuetype", "IssueFieldsReporterAvatarurls", "IssueFieldsReporter", "IssueFieldsAssigneeAvatarurls", "IssueFieldsAssignee", "IssueFieldsStatusStatuscategory", "IssueFieldsStatus", "IssueFieldsPriority", "IssueFields", "Issue", "IssuesList", "UserGroupsItemsItem", "UserGroups", "UserAvatarurls", "UserApplicationrolesItemsItemGroupdetailsItem", "UserApplicationrolesItemsItemDefaultgroupsdetailsItem", "UserApplicationrolesItemsItem", "UserApplicationroles", "User", "IssueFieldSchema", "IssueField", "IssueFieldSearchResults", "IssueCommentVisibility", "IssueCommentAuthorAvatarurls", "IssueCommentAuthor", "IssueCommentBodyContentItemContentItem", "IssueCommentBodyContentItem", "IssueCommentBody", "IssueCommentUpdateauthorAvatarurls", "IssueCommentUpdateauthor", "IssueComment", "IssueCommentsList", "WorklogUpdateauthorAvatarurls", "WorklogUpdateauthor", "WorklogVisibility", "WorklogCommentContentItemContentItem", "WorklogCommentContentItem", "WorklogComment", "WorklogAuthorAvatarurls", "WorklogAuthor", "Worklog", "WorklogsList", "IssuesSearchResultMeta", "ProjectsSearchResultMeta", "IssueCommentsListResultMeta", "IssueWorklogsListResultMeta", "JiraExecuteResult", "JiraExecuteResultWithMeta", "IssuesSearchResult", "ProjectsSearchResult", "IssueCommentsListResult", "IssueWorklogsListResult", "IssuesSearchParams", "IssuesGetParams", "ProjectsSearchParams", "ProjectsGetParams", "UsersGetParams", "UsersListParams", "UsersSearchParams", "IssueFieldsListParams", "IssueFieldsSearchParams", "IssueCommentsListParams", "IssueCommentsGetParams", "IssueWorklogsListParams", "IssueWorklogsGetParams"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Vendored connector-sdk runtime."""
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Airbyte SDK - Async-first type-safe connector execution framework.
|
|
3
|
+
|
|
4
|
+
Provides:
|
|
5
|
+
- Async executor for all connectors
|
|
6
|
+
- Custom connector support
|
|
7
|
+
- Performance monitoring and instrumentation
|
|
8
|
+
- Connection pooling and concurrent execution
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
from __future__ import annotations
|
|
12
|
+
|
|
13
|
+
from .auth_strategies import AuthStrategy
|
|
14
|
+
from .connector_model_loader import load_connector_model
|
|
15
|
+
from .constants import SDK_VERSION
|
|
16
|
+
from .exceptions import (
|
|
17
|
+
AuthenticationError,
|
|
18
|
+
HTTPClientError,
|
|
19
|
+
NetworkError,
|
|
20
|
+
RateLimitError,
|
|
21
|
+
TimeoutError,
|
|
22
|
+
)
|
|
23
|
+
from .executor import (
|
|
24
|
+
ActionNotSupportedError,
|
|
25
|
+
EntityNotFoundError,
|
|
26
|
+
ExecutionConfig,
|
|
27
|
+
ExecutionResult,
|
|
28
|
+
ExecutorError,
|
|
29
|
+
ExecutorProtocol,
|
|
30
|
+
HostedExecutor,
|
|
31
|
+
InvalidParameterError,
|
|
32
|
+
LocalExecutor,
|
|
33
|
+
MissingParameterError,
|
|
34
|
+
)
|
|
35
|
+
from .http_client import HTTPClient
|
|
36
|
+
from .logging import LogSession, NullLogger, RequestLog, RequestLogger
|
|
37
|
+
from .performance import PerformanceMonitor, instrument
|
|
38
|
+
from .types import Action, AuthType, ConnectorModel, EntityDefinition
|
|
39
|
+
from .utils import save_download
|
|
40
|
+
|
|
41
|
+
__version__ = SDK_VERSION
|
|
42
|
+
|
|
43
|
+
__all__ = [
|
|
44
|
+
# All Executors
|
|
45
|
+
"LocalExecutor",
|
|
46
|
+
"HostedExecutor",
|
|
47
|
+
"ExecutorProtocol",
|
|
48
|
+
"HTTPClient",
|
|
49
|
+
# Execution Config and Result Types
|
|
50
|
+
"ExecutionConfig",
|
|
51
|
+
"ExecutionResult",
|
|
52
|
+
# Types
|
|
53
|
+
"ConnectorModel",
|
|
54
|
+
"Action",
|
|
55
|
+
"AuthType",
|
|
56
|
+
"EntityDefinition",
|
|
57
|
+
"load_connector_model",
|
|
58
|
+
# Authentication
|
|
59
|
+
"AuthStrategy",
|
|
60
|
+
# Executor Exceptions
|
|
61
|
+
"ExecutorError",
|
|
62
|
+
"EntityNotFoundError",
|
|
63
|
+
"ActionNotSupportedError",
|
|
64
|
+
"MissingParameterError",
|
|
65
|
+
"InvalidParameterError",
|
|
66
|
+
# HTTP Exceptions
|
|
67
|
+
"HTTPClientError",
|
|
68
|
+
"AuthenticationError",
|
|
69
|
+
"RateLimitError",
|
|
70
|
+
"NetworkError",
|
|
71
|
+
"TimeoutError",
|
|
72
|
+
# Logging
|
|
73
|
+
"RequestLogger",
|
|
74
|
+
"NullLogger",
|
|
75
|
+
"RequestLog",
|
|
76
|
+
"LogSession",
|
|
77
|
+
# Performance monitoring
|
|
78
|
+
"PerformanceMonitor",
|
|
79
|
+
"instrument",
|
|
80
|
+
# Utilities
|
|
81
|
+
"save_download",
|
|
82
|
+
]
|