hatchet-sdk 1.16.3__py3-none-any.whl → 1.16.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.

Potentially problematic release.


This version of hatchet-sdk might be problematic. Click here for more details.

Files changed (30) hide show
  1. hatchet_sdk/clients/rest/__init__.py +32 -0
  2. hatchet_sdk/clients/rest/api/__init__.py +1 -0
  3. hatchet_sdk/clients/rest/api/webhook_api.py +1551 -0
  4. hatchet_sdk/clients/rest/models/__init__.py +31 -0
  5. hatchet_sdk/clients/rest/models/v1_create_webhook_request.py +215 -0
  6. hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key.py +126 -0
  7. hatchet_sdk/clients/rest/models/v1_create_webhook_request_api_key_all_of_auth_type.py +82 -0
  8. hatchet_sdk/clients/rest/models/v1_create_webhook_request_base.py +98 -0
  9. hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth.py +126 -0
  10. hatchet_sdk/clients/rest/models/v1_create_webhook_request_basic_auth_all_of_auth_type.py +82 -0
  11. hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac.py +126 -0
  12. hatchet_sdk/clients/rest/models/v1_create_webhook_request_hmac_all_of_auth_type.py +82 -0
  13. hatchet_sdk/clients/rest/models/v1_event.py +7 -0
  14. hatchet_sdk/clients/rest/models/v1_webhook.py +126 -0
  15. hatchet_sdk/clients/rest/models/v1_webhook_api_key_auth.py +90 -0
  16. hatchet_sdk/clients/rest/models/v1_webhook_auth_type.py +38 -0
  17. hatchet_sdk/clients/rest/models/v1_webhook_basic_auth.py +86 -0
  18. hatchet_sdk/clients/rest/models/v1_webhook_hmac_algorithm.py +39 -0
  19. hatchet_sdk/clients/rest/models/v1_webhook_hmac_auth.py +115 -0
  20. hatchet_sdk/clients/rest/models/v1_webhook_hmac_encoding.py +38 -0
  21. hatchet_sdk/clients/rest/models/v1_webhook_list.py +110 -0
  22. hatchet_sdk/clients/rest/models/v1_webhook_receive200_response.py +83 -0
  23. hatchet_sdk/clients/rest/models/v1_webhook_source_name.py +38 -0
  24. hatchet_sdk/config.py +1 -0
  25. hatchet_sdk/connection.py +6 -1
  26. hatchet_sdk/runnables/types.py +2 -2
  27. {hatchet_sdk-1.16.3.dist-info → hatchet_sdk-1.16.5.dist-info}/METADATA +2 -2
  28. {hatchet_sdk-1.16.3.dist-info → hatchet_sdk-1.16.5.dist-info}/RECORD +30 -11
  29. {hatchet_sdk-1.16.3.dist-info → hatchet_sdk-1.16.5.dist-info}/WHEEL +0 -0
  30. {hatchet_sdk-1.16.3.dist-info → hatchet_sdk-1.16.5.dist-info}/entry_points.txt +0 -0
@@ -33,6 +33,7 @@ from hatchet_sdk.clients.rest.api.step_run_api import StepRunApi
33
33
  from hatchet_sdk.clients.rest.api.task_api import TaskApi
34
34
  from hatchet_sdk.clients.rest.api.tenant_api import TenantApi
35
35
  from hatchet_sdk.clients.rest.api.user_api import UserApi
36
+ from hatchet_sdk.clients.rest.api.webhook_api import WebhookApi
36
37
  from hatchet_sdk.clients.rest.api.worker_api import WorkerApi
37
38
  from hatchet_sdk.clients.rest.api.workflow_api import WorkflowApi
38
39
  from hatchet_sdk.clients.rest.api.workflow_run_api import WorkflowRunApi
@@ -241,6 +242,21 @@ from hatchet_sdk.clients.rest.models.v1_cel_debug_response_status import (
241
242
  from hatchet_sdk.clients.rest.models.v1_create_filter_request import (
242
243
  V1CreateFilterRequest,
243
244
  )
245
+ from hatchet_sdk.clients.rest.models.v1_create_webhook_request import (
246
+ V1CreateWebhookRequest,
247
+ )
248
+ from hatchet_sdk.clients.rest.models.v1_create_webhook_request_api_key import (
249
+ V1CreateWebhookRequestAPIKey,
250
+ )
251
+ from hatchet_sdk.clients.rest.models.v1_create_webhook_request_base import (
252
+ V1CreateWebhookRequestBase,
253
+ )
254
+ from hatchet_sdk.clients.rest.models.v1_create_webhook_request_basic_auth import (
255
+ V1CreateWebhookRequestBasicAuth,
256
+ )
257
+ from hatchet_sdk.clients.rest.models.v1_create_webhook_request_hmac import (
258
+ V1CreateWebhookRequestHMAC,
259
+ )
244
260
  from hatchet_sdk.clients.rest.models.v1_dag_children import V1DagChildren
245
261
  from hatchet_sdk.clients.rest.models.v1_event import V1Event
246
262
  from hatchet_sdk.clients.rest.models.v1_event_list import V1EventList
@@ -274,6 +290,22 @@ from hatchet_sdk.clients.rest.models.v1_trigger_workflow_run_request import (
274
290
  from hatchet_sdk.clients.rest.models.v1_update_filter_request import (
275
291
  V1UpdateFilterRequest,
276
292
  )
293
+ from hatchet_sdk.clients.rest.models.v1_webhook import V1Webhook
294
+ from hatchet_sdk.clients.rest.models.v1_webhook_api_key_auth import V1WebhookAPIKeyAuth
295
+ from hatchet_sdk.clients.rest.models.v1_webhook_auth_type import V1WebhookAuthType
296
+ from hatchet_sdk.clients.rest.models.v1_webhook_basic_auth import V1WebhookBasicAuth
297
+ from hatchet_sdk.clients.rest.models.v1_webhook_hmac_algorithm import (
298
+ V1WebhookHMACAlgorithm,
299
+ )
300
+ from hatchet_sdk.clients.rest.models.v1_webhook_hmac_auth import V1WebhookHMACAuth
301
+ from hatchet_sdk.clients.rest.models.v1_webhook_hmac_encoding import (
302
+ V1WebhookHMACEncoding,
303
+ )
304
+ from hatchet_sdk.clients.rest.models.v1_webhook_list import V1WebhookList
305
+ from hatchet_sdk.clients.rest.models.v1_webhook_receive200_response import (
306
+ V1WebhookReceive200Response,
307
+ )
308
+ from hatchet_sdk.clients.rest.models.v1_webhook_source_name import V1WebhookSourceName
277
309
  from hatchet_sdk.clients.rest.models.v1_workflow_run import V1WorkflowRun
278
310
  from hatchet_sdk.clients.rest.models.v1_workflow_run_details import V1WorkflowRunDetails
279
311
  from hatchet_sdk.clients.rest.models.v1_workflow_run_display_name import (
@@ -17,6 +17,7 @@ from hatchet_sdk.clients.rest.api.step_run_api import StepRunApi
17
17
  from hatchet_sdk.clients.rest.api.task_api import TaskApi
18
18
  from hatchet_sdk.clients.rest.api.tenant_api import TenantApi
19
19
  from hatchet_sdk.clients.rest.api.user_api import UserApi
20
+ from hatchet_sdk.clients.rest.api.webhook_api import WebhookApi
20
21
  from hatchet_sdk.clients.rest.api.worker_api import WorkerApi
21
22
  from hatchet_sdk.clients.rest.api.workflow_api import WorkflowApi
22
23
  from hatchet_sdk.clients.rest.api.workflow_run_api import WorkflowRunApi