apache-airflow-providers-zendesk 4.5.0rc1__py3-none-any.whl → 4.6.0__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.
@@ -27,7 +27,7 @@ import packaging.version
27
27
 
28
28
  __all__ = ["__version__"]
29
29
 
30
- __version__ = "4.5.0"
30
+ __version__ = "4.6.0"
31
31
 
32
32
  try:
33
33
  from airflow import __version__ as airflow_version
@@ -28,8 +28,9 @@ def get_provider_info():
28
28
  "name": "Zendesk",
29
29
  "description": "`Zendesk <https://www.zendesk.com/>`__\n",
30
30
  "suspended": False,
31
- "source-date-epoch": 1701983430,
31
+ "source-date-epoch": 1703747680,
32
32
  "versions": [
33
+ "4.6.0",
33
34
  "4.5.0",
34
35
  "4.4.0",
35
36
  "4.3.2",
@@ -17,7 +17,7 @@
17
17
  # under the License.
18
18
  from __future__ import annotations
19
19
 
20
- from typing import TYPE_CHECKING
20
+ from typing import TYPE_CHECKING, Any
21
21
 
22
22
  from zenpy import Zenpy
23
23
 
@@ -41,6 +41,13 @@ class ZendeskHook(BaseHook):
41
41
  conn_type = "zendesk"
42
42
  hook_name = "Zendesk"
43
43
 
44
+ @classmethod
45
+ def get_ui_field_behaviour(cls) -> dict[str, Any]:
46
+ return {
47
+ "hidden_fields": ["schema", "port", "extra"],
48
+ "relabeling": {"host": "Zendesk domain", "login": "Zendesk email"},
49
+ }
50
+
44
51
  def __init__(self, zendesk_conn_id: str = default_conn_name) -> None:
45
52
  super().__init__()
46
53
  self.zendesk_conn_id = zendesk_conn_id
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-zendesk
3
- Version: 4.5.0rc1
3
+ Version: 4.6.0
4
4
  Summary: Provider package apache-airflow-providers-zendesk for Apache Airflow
5
5
  Keywords: airflow-provider,zendesk,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -20,11 +20,11 @@ Classifier: Programming Language :: Python :: 3.9
20
20
  Classifier: Programming Language :: Python :: 3.10
21
21
  Classifier: Programming Language :: Python :: 3.11
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.6.0.dev0
23
+ Requires-Dist: apache-airflow>=2.6.0
24
24
  Requires-Dist: zenpy>=2.0.24
25
25
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
26
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.5.0/changelog.html
27
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.5.0
26
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.6.0/changelog.html
27
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.6.0
28
28
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
29
29
  Project-URL: Source Code, https://github.com/apache/airflow
30
30
  Project-URL: Twitter, https://twitter.com/ApacheAirflow
@@ -74,7 +74,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
74
74
 
75
75
  Package ``apache-airflow-providers-zendesk``
76
76
 
77
- Release: ``4.5.0.rc1``
77
+ Release: ``4.6.0``
78
78
 
79
79
 
80
80
  `Zendesk <https://www.zendesk.com/>`__
@@ -87,7 +87,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
87
87
  are in ``airflow.providers.zendesk`` python package.
88
88
 
89
89
  You can find package information and changelog for the provider
90
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.5.0/>`_.
90
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.6.0/>`_.
91
91
 
92
92
  Installation
93
93
  ------------
@@ -109,4 +109,4 @@ PIP package Version required
109
109
  ================== ==================
110
110
 
111
111
  The changelog for the provider package can be found in the
112
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.5.0/changelog.html>`_.
112
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.6.0/changelog.html>`_.
@@ -0,0 +1,9 @@
1
+ airflow/providers/zendesk/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
2
+ airflow/providers/zendesk/__init__.py,sha256=QkBadfuRLhK3gWHlkYrqHOPPsW4wADtc0YxsqJANfYA,1582
3
+ airflow/providers/zendesk/get_provider_info.py,sha256=y0Rc_wbwWilozILOxEZTSgRSZPrlb0ONxP_hDQoSRj4,2399
4
+ airflow/providers/zendesk/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
5
+ airflow/providers/zendesk/hooks/zendesk.py,sha256=qU_WFbZ6HpDE515Q7kERxojmTfKROyBOd1DYn8gf6ew,4844
6
+ apache_airflow_providers_zendesk-4.6.0.dist-info/entry_points.txt,sha256=g-reNvSxl2TqOKMKUrK2cuRy9cpsNLeHfmGh5w0nVCg,103
7
+ apache_airflow_providers_zendesk-4.6.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
8
+ apache_airflow_providers_zendesk-4.6.0.dist-info/METADATA,sha256=QGOY0UrhPFYWDvgpZTkbthjeWGEQe3mUspe0NKJfjHA,4689
9
+ apache_airflow_providers_zendesk-4.6.0.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- airflow/providers/zendesk/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
2
- airflow/providers/zendesk/__init__.py,sha256=S8qGLF1Gq5bBo9aXVStR-e43gNnq49RbP5D7L-V4FgA,1582
3
- airflow/providers/zendesk/get_provider_info.py,sha256=W5CmIujhWufAyH-SiL5rcyg4DVU7BhrsDDvWJg7aAAA,2378
4
- airflow/providers/zendesk/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
5
- airflow/providers/zendesk/hooks/zendesk.py,sha256=eM5ypVbzeNLlmMnZPZHxbVNqHWTb2zQz9VDj0-1-qRk,4601
6
- apache_airflow_providers_zendesk-4.5.0rc1.dist-info/entry_points.txt,sha256=g-reNvSxl2TqOKMKUrK2cuRy9cpsNLeHfmGh5w0nVCg,103
7
- apache_airflow_providers_zendesk-4.5.0rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
8
- apache_airflow_providers_zendesk-4.5.0rc1.dist-info/METADATA,sha256=k4pvrO16RoGoFoYux5wC2UFjpaYIG2wOocAN1TtfNsE,4701
9
- apache_airflow_providers_zendesk-4.5.0rc1.dist-info/RECORD,,