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.
Files changed (56) hide show
  1. airbyte_agent_jira/__init__.py +91 -0
  2. airbyte_agent_jira/_vendored/__init__.py +1 -0
  3. airbyte_agent_jira/_vendored/connector_sdk/__init__.py +82 -0
  4. airbyte_agent_jira/_vendored/connector_sdk/auth_strategies.py +1123 -0
  5. airbyte_agent_jira/_vendored/connector_sdk/auth_template.py +135 -0
  6. airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  7. airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  8. airbyte_agent_jira/_vendored/connector_sdk/connector_model_loader.py +965 -0
  9. airbyte_agent_jira/_vendored/connector_sdk/constants.py +78 -0
  10. airbyte_agent_jira/_vendored/connector_sdk/exceptions.py +23 -0
  11. airbyte_agent_jira/_vendored/connector_sdk/executor/__init__.py +31 -0
  12. airbyte_agent_jira/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
  13. airbyte_agent_jira/_vendored/connector_sdk/executor/local_executor.py +1574 -0
  14. airbyte_agent_jira/_vendored/connector_sdk/executor/models.py +190 -0
  15. airbyte_agent_jira/_vendored/connector_sdk/extensions.py +694 -0
  16. airbyte_agent_jira/_vendored/connector_sdk/http/__init__.py +37 -0
  17. airbyte_agent_jira/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  18. airbyte_agent_jira/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  19. airbyte_agent_jira/_vendored/connector_sdk/http/config.py +98 -0
  20. airbyte_agent_jira/_vendored/connector_sdk/http/exceptions.py +119 -0
  21. airbyte_agent_jira/_vendored/connector_sdk/http/protocols.py +114 -0
  22. airbyte_agent_jira/_vendored/connector_sdk/http/response.py +102 -0
  23. airbyte_agent_jira/_vendored/connector_sdk/http_client.py +686 -0
  24. airbyte_agent_jira/_vendored/connector_sdk/introspection.py +262 -0
  25. airbyte_agent_jira/_vendored/connector_sdk/logging/__init__.py +11 -0
  26. airbyte_agent_jira/_vendored/connector_sdk/logging/logger.py +264 -0
  27. airbyte_agent_jira/_vendored/connector_sdk/logging/types.py +92 -0
  28. airbyte_agent_jira/_vendored/connector_sdk/observability/__init__.py +11 -0
  29. airbyte_agent_jira/_vendored/connector_sdk/observability/models.py +19 -0
  30. airbyte_agent_jira/_vendored/connector_sdk/observability/redactor.py +81 -0
  31. airbyte_agent_jira/_vendored/connector_sdk/observability/session.py +94 -0
  32. airbyte_agent_jira/_vendored/connector_sdk/performance/__init__.py +6 -0
  33. airbyte_agent_jira/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  34. airbyte_agent_jira/_vendored/connector_sdk/performance/metrics.py +93 -0
  35. airbyte_agent_jira/_vendored/connector_sdk/schema/__init__.py +75 -0
  36. airbyte_agent_jira/_vendored/connector_sdk/schema/base.py +161 -0
  37. airbyte_agent_jira/_vendored/connector_sdk/schema/components.py +239 -0
  38. airbyte_agent_jira/_vendored/connector_sdk/schema/connector.py +131 -0
  39. airbyte_agent_jira/_vendored/connector_sdk/schema/extensions.py +109 -0
  40. airbyte_agent_jira/_vendored/connector_sdk/schema/operations.py +146 -0
  41. airbyte_agent_jira/_vendored/connector_sdk/schema/security.py +223 -0
  42. airbyte_agent_jira/_vendored/connector_sdk/secrets.py +182 -0
  43. airbyte_agent_jira/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  44. airbyte_agent_jira/_vendored/connector_sdk/telemetry/config.py +32 -0
  45. airbyte_agent_jira/_vendored/connector_sdk/telemetry/events.py +58 -0
  46. airbyte_agent_jira/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  47. airbyte_agent_jira/_vendored/connector_sdk/types.py +245 -0
  48. airbyte_agent_jira/_vendored/connector_sdk/utils.py +60 -0
  49. airbyte_agent_jira/_vendored/connector_sdk/validation.py +822 -0
  50. airbyte_agent_jira/connector.py +978 -0
  51. airbyte_agent_jira/connector_model.py +2827 -0
  52. airbyte_agent_jira/models.py +741 -0
  53. airbyte_agent_jira/types.py +117 -0
  54. airbyte_agent_jira-0.1.22.dist-info/METADATA +113 -0
  55. airbyte_agent_jira-0.1.22.dist-info/RECORD +56 -0
  56. airbyte_agent_jira-0.1.22.dist-info/WHEEL +4 -0
@@ -0,0 +1,117 @@
1
+ """
2
+ Type definitions for jira connector.
3
+ """
4
+ from __future__ import annotations
5
+
6
+ # Use typing_extensions.TypedDict for Pydantic compatibility on Python < 3.12
7
+ try:
8
+ from typing_extensions import TypedDict, NotRequired
9
+ except ImportError:
10
+ from typing import TypedDict, NotRequired # type: ignore[attr-defined]
11
+
12
+
13
+
14
+ # ===== NESTED PARAM TYPE DEFINITIONS =====
15
+ # Nested parameter schemas discovered during parameter extraction
16
+
17
+ # ===== OPERATION PARAMS TYPE DEFINITIONS =====
18
+
19
+ class IssuesSearchParams(TypedDict):
20
+ """Parameters for issues.search operation"""
21
+ jql: NotRequired[str]
22
+ next_page_token: NotRequired[str]
23
+ max_results: NotRequired[int]
24
+ fields: NotRequired[str]
25
+ expand: NotRequired[str]
26
+ properties: NotRequired[str]
27
+ fields_by_keys: NotRequired[bool]
28
+ fail_fast: NotRequired[bool]
29
+
30
+ class IssuesGetParams(TypedDict):
31
+ """Parameters for issues.get operation"""
32
+ issue_id_or_key: str
33
+ fields: NotRequired[str]
34
+ expand: NotRequired[str]
35
+ properties: NotRequired[str]
36
+ fields_by_keys: NotRequired[bool]
37
+ update_history: NotRequired[bool]
38
+ fail_fast: NotRequired[bool]
39
+
40
+ class ProjectsSearchParams(TypedDict):
41
+ """Parameters for projects.search operation"""
42
+ start_at: NotRequired[int]
43
+ max_results: NotRequired[int]
44
+ order_by: NotRequired[str]
45
+ id: NotRequired[list[int]]
46
+ keys: NotRequired[list[str]]
47
+ query: NotRequired[str]
48
+ type_key: NotRequired[str]
49
+ category_id: NotRequired[int]
50
+ action: NotRequired[str]
51
+ expand: NotRequired[str]
52
+ status: NotRequired[list[str]]
53
+
54
+ class ProjectsGetParams(TypedDict):
55
+ """Parameters for projects.get operation"""
56
+ project_id_or_key: str
57
+ expand: NotRequired[str]
58
+ properties: NotRequired[str]
59
+
60
+ class UsersGetParams(TypedDict):
61
+ """Parameters for users.get operation"""
62
+ account_id: str
63
+ expand: NotRequired[str]
64
+
65
+ class UsersListParams(TypedDict):
66
+ """Parameters for users.list operation"""
67
+ start_at: NotRequired[int]
68
+ max_results: NotRequired[int]
69
+
70
+ class UsersSearchParams(TypedDict):
71
+ """Parameters for users.search operation"""
72
+ query: NotRequired[str]
73
+ start_at: NotRequired[int]
74
+ max_results: NotRequired[int]
75
+ account_id: NotRequired[str]
76
+ property: NotRequired[str]
77
+
78
+ class IssueFieldsListParams(TypedDict):
79
+ """Parameters for issue_fields.list operation"""
80
+ pass
81
+
82
+ class IssueFieldsSearchParams(TypedDict):
83
+ """Parameters for issue_fields.search operation"""
84
+ start_at: NotRequired[int]
85
+ max_results: NotRequired[int]
86
+ type: NotRequired[list[str]]
87
+ id: NotRequired[list[str]]
88
+ query: NotRequired[str]
89
+ order_by: NotRequired[str]
90
+ expand: NotRequired[str]
91
+
92
+ class IssueCommentsListParams(TypedDict):
93
+ """Parameters for issue_comments.list operation"""
94
+ issue_id_or_key: str
95
+ start_at: NotRequired[int]
96
+ max_results: NotRequired[int]
97
+ order_by: NotRequired[str]
98
+ expand: NotRequired[str]
99
+
100
+ class IssueCommentsGetParams(TypedDict):
101
+ """Parameters for issue_comments.get operation"""
102
+ issue_id_or_key: str
103
+ comment_id: str
104
+ expand: NotRequired[str]
105
+
106
+ class IssueWorklogsListParams(TypedDict):
107
+ """Parameters for issue_worklogs.list operation"""
108
+ issue_id_or_key: str
109
+ start_at: NotRequired[int]
110
+ max_results: NotRequired[int]
111
+ expand: NotRequired[str]
112
+
113
+ class IssueWorklogsGetParams(TypedDict):
114
+ """Parameters for issue_worklogs.get operation"""
115
+ issue_id_or_key: str
116
+ worklog_id: str
117
+ expand: NotRequired[str]
@@ -0,0 +1,113 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-jira
3
+ Version: 0.1.22
4
+ Summary: Airbyte Jira Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
+ Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: airbyte,api,connector,jira
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Requires-Dist: httpx>=0.24.0
24
+ Requires-Dist: jinja2>=3.0.0
25
+ Requires-Dist: jsonpath-ng>=1.6.1
26
+ Requires-Dist: jsonref>=1.1.0
27
+ Requires-Dist: opentelemetry-api>=1.37.0
28
+ Requires-Dist: opentelemetry-sdk>=1.37.0
29
+ Requires-Dist: pydantic>=2.0.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: pyyaml>=6.0
32
+ Requires-Dist: segment-analytics-python>=2.2.0
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Jira agent connector
36
+
37
+ Connector for Jira API
38
+
39
+ ## Example questions
40
+
41
+ The Jira connector is optimized to handle prompts like these.
42
+
43
+ - Show me all open issues in the \{project_key\} project
44
+ - What issues are assigned to \{team_member\} this week?
45
+ - Find all high priority bugs in our current sprint
46
+ - Get the details of issue \{issue_key\}
47
+ - List all issues created in the last 7 days
48
+ - Show me overdue issues across all projects
49
+ - List all projects in my Jira instance
50
+ - Get details of the \{project_key\} project
51
+ - What projects have the most issues?
52
+ - Who are all the users in my Jira instance?
53
+ - Search for users named \{user_name\}
54
+ - Get details of user \{team_member\}
55
+ - Show me all comments on issue \{issue_key\}
56
+ - How much time has been logged on issue \{issue_key\}?
57
+ - List all worklogs for \{issue_key\} this month
58
+
59
+ ## Unsupported questions
60
+
61
+ The Jira connector isn't currently able to handle prompts like these.
62
+
63
+ - Create a new issue in \{project_key\}
64
+ - Update the status of \{issue_key\}
65
+ - Add a comment to \{issue_key\}
66
+ - Log time on \{issue_key\}
67
+ - Delete issue \{issue_key\}
68
+ - Assign \{issue_key\} to \{team_member\}
69
+
70
+ ## Installation
71
+
72
+ ```bash
73
+ uv pip install airbyte-agent-jira
74
+ ```
75
+
76
+ ## Usage
77
+
78
+ ```python
79
+ from airbyte_agent_jira import JiraConnector, JiraAuthConfig
80
+
81
+ connector = JiraConnector(
82
+ auth_config=JiraAuthConfig(
83
+ username="...",
84
+ password="..."
85
+ )
86
+ )
87
+ result = await connector.issues.search()
88
+ ```
89
+
90
+
91
+ ## Full documentation
92
+
93
+ This connector supports the following entities and actions.
94
+
95
+ | Entity | Actions |
96
+ |--------|---------|
97
+ | Issues | [Search](./REFERENCE.md#issues-search), [Get](./REFERENCE.md#issues-get) |
98
+ | Projects | [Search](./REFERENCE.md#projects-search), [Get](./REFERENCE.md#projects-get) |
99
+ | Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Search](./REFERENCE.md#users-search) |
100
+ | Issue Fields | [List](./REFERENCE.md#issue-fields-list), [Search](./REFERENCE.md#issue-fields-search) |
101
+ | Issue Comments | [List](./REFERENCE.md#issue-comments-list), [Get](./REFERENCE.md#issue-comments-get) |
102
+ | Issue Worklogs | [List](./REFERENCE.md#issue-worklogs-list), [Get](./REFERENCE.md#issue-worklogs-get) |
103
+
104
+
105
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
106
+
107
+ For the service's official API docs, see the [Jira API reference](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/).
108
+
109
+ ## Version information
110
+
111
+ - **Package version:** 0.1.22
112
+ - **Connector version:** 1.0.3
113
+ - **Generated with Connector SDK commit SHA:** 3c7bfdfd1100dd20420a61cec56549b65820ea0f
@@ -0,0 +1,56 @@
1
+ airbyte_agent_jira/__init__.py,sha256=O8hrEPlSeeaLut_RYYX_mG0XtXduUjJr8FnXpTEdO0A,4190
2
+ airbyte_agent_jira/connector.py,sha256=cBIhD6aYWud0HfZy75Ljp0MjkeF5f7cLOIbyvrd94sE,34638
3
+ airbyte_agent_jira/connector_model.py,sha256=TF-_GBB12Nw-7Kn66N1DiQloG3IlSXljWnyX3DMmMoo,172849
4
+ airbyte_agent_jira/models.py,sha256=Qe5y4RhEvLLSoI73rki4mleuYZkGTVWiaMjLA0g1CkQ,37306
5
+ airbyte_agent_jira/types.py,sha256=VKLHe2gTS3ouZ7n2pYct8IWmhM0gERzg35CCK6No-20,3482
6
+ airbyte_agent_jira/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
7
+ airbyte_agent_jira/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
8
+ airbyte_agent_jira/_vendored/connector_sdk/auth_strategies.py,sha256=0BfIISVzuvZTAYZjQFOOhKTpw0QuKDlLQBQ1PQo-V2M,39967
9
+ airbyte_agent_jira/_vendored/connector_sdk/auth_template.py,sha256=vKnyA21Jp33EuDjkIUAf1PGicwk4t9kZAPJuAgAZKzU,4458
10
+ airbyte_agent_jira/_vendored/connector_sdk/connector_model_loader.py,sha256=nKrXfe-FAyvNMkW7AqGzxrp5wXdaHiqC0yIFJoIVwlY,34890
11
+ airbyte_agent_jira/_vendored/connector_sdk/constants.py,sha256=uH4rjBX6WsBP8M0jt7AUJI9w5Adn4wvJwib7Gdfkr1M,2736
12
+ airbyte_agent_jira/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
13
+ airbyte_agent_jira/_vendored/connector_sdk/extensions.py,sha256=fWy9uwGUCjPO1KDYuGZo9nkrNU35P-dLcqi4K6UF4uA,21371
14
+ airbyte_agent_jira/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
15
+ airbyte_agent_jira/_vendored/connector_sdk/introspection.py,sha256=6v3YNdca8qe8qIz3m97GZ_ll_Ih3oUKMrqrdipPcpRk,10331
16
+ airbyte_agent_jira/_vendored/connector_sdk/secrets.py,sha256=UWcO9fP-vZwcfkAuvlZahlOCTOwdNN860BIwe8X4jxw,6868
17
+ airbyte_agent_jira/_vendored/connector_sdk/types.py,sha256=TI-O7EyWAoppGc9G7kXHwceYWekt_sxXmXKxD1xC_7U,8285
18
+ airbyte_agent_jira/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
19
+ airbyte_agent_jira/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
20
+ airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
21
+ airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/client.py,sha256=HoDgZuEgGHj78P-BGwUf6HGPVWynbdKjGOmjb-JDk58,7188
22
+ airbyte_agent_jira/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
23
+ airbyte_agent_jira/_vendored/connector_sdk/executor/hosted_executor.py,sha256=YQ-qfT7PZh9izNFHHe7SAcETiZOKrWjTU-okVb0_VL8,7079
24
+ airbyte_agent_jira/_vendored/connector_sdk/executor/local_executor.py,sha256=IPe4q3FsN22zqCQfT836uQwhnnl3Y9g6o_ZBrZEjTuc,65271
25
+ airbyte_agent_jira/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
26
+ airbyte_agent_jira/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
27
+ airbyte_agent_jira/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
28
+ airbyte_agent_jira/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
29
+ airbyte_agent_jira/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
30
+ airbyte_agent_jira/_vendored/connector_sdk/http/response.py,sha256=r7QFYRkw6is-Na7WozAyzZynpCQ90RBUhnX4pBSJ1Yc,3338
31
+ airbyte_agent_jira/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
32
+ airbyte_agent_jira/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
33
+ airbyte_agent_jira/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
34
+ airbyte_agent_jira/_vendored/connector_sdk/logging/logger.py,sha256=Nh0h3C0aO-rAqZhDIyeEXG6Jd7yj1Gk32ECMPth0wl8,8118
35
+ airbyte_agent_jira/_vendored/connector_sdk/logging/types.py,sha256=iI-xLoOg33OUGQOp3CeaxKtHh73WXE-oul6ZCNf3Nzc,3209
36
+ airbyte_agent_jira/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
37
+ airbyte_agent_jira/_vendored/connector_sdk/observability/models.py,sha256=rF6-SoAAywqL8bhEv7yCbmr_W_w0vmApO-MCxcHq9RI,473
38
+ airbyte_agent_jira/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
39
+ airbyte_agent_jira/_vendored/connector_sdk/observability/session.py,sha256=fLBgb9olATdoC0IMtd8MKe581t1HuK73MiGbghPzUHQ,3083
40
+ airbyte_agent_jira/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
41
+ airbyte_agent_jira/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
42
+ airbyte_agent_jira/_vendored/connector_sdk/performance/metrics.py,sha256=3-wPwlJyfVLUIG3y7ESxk0avhkILk3z8K7zSrnlZf5U,2833
43
+ airbyte_agent_jira/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
44
+ airbyte_agent_jira/_vendored/connector_sdk/schema/base.py,sha256=eN6YfHwsYNz_0CE-S715Me8x3gQWTtaRk1vhFjEZF8I,4799
45
+ airbyte_agent_jira/_vendored/connector_sdk/schema/components.py,sha256=4clYbIJNqfmFj7Te31ZqC3Rr5E2v33BeXyQx1wp3oj0,8076
46
+ airbyte_agent_jira/_vendored/connector_sdk/schema/connector.py,sha256=VFBOzIkLgYBR1XUTmyrPGqBkX8PP-zsG8avQcdJUqXs,3864
47
+ airbyte_agent_jira/_vendored/connector_sdk/schema/extensions.py,sha256=LdoCuMLNdCj68O47qAL4v8xmqGz5tJgRiNZL5JnL9uw,3311
48
+ airbyte_agent_jira/_vendored/connector_sdk/schema/operations.py,sha256=zInMjx9iOEVZo-CCWw06Uk2SFg7HtUAXXpO5kFGUwNk,5825
49
+ airbyte_agent_jira/_vendored/connector_sdk/schema/security.py,sha256=Xo6Z0-NCryMY4EDZgvg8ABSPglskpXANvm_iI34meV8,8588
50
+ airbyte_agent_jira/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
51
+ airbyte_agent_jira/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
52
+ airbyte_agent_jira/_vendored/connector_sdk/telemetry/events.py,sha256=NvqjlUbkm6cbGh4ffKxYxtjdwwgzfPF4MKJ2GfgWeFg,1285
53
+ airbyte_agent_jira/_vendored/connector_sdk/telemetry/tracker.py,sha256=KacNdbHatvPPhnNrycp5YUuD5xpkp56AFcHd-zguBgk,5247
54
+ airbyte_agent_jira-0.1.22.dist-info/METADATA,sha256=FAbBCB2ndJ0CTovAsVDMG7JSASHS5nveady4NRqHb9s,4058
55
+ airbyte_agent_jira-0.1.22.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
56
+ airbyte_agent_jira-0.1.22.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any