airbyte-agent-zendesk-support 0.18.36__py3-none-any.whl → 0.18.42__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_zendesk_support/__init__.py +111 -18
- airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py +2 -5
- airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py +1 -1
- airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py +26 -26
- airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py +1 -2
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py +10 -11
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py +72 -13
- airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py +1 -2
- airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py +2 -0
- airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py +9 -9
- airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py +10 -10
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py +2 -2
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py +6 -6
- airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py +7 -5
- airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py +3 -3
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py +17 -17
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py +58 -58
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py +22 -33
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py +9 -9
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py +31 -31
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py +36 -36
- airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py +2 -2
- airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py +7 -7
- airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py +6 -5
- airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py +2 -2
- airbyte_agent_zendesk_support/connector.py +153 -157
- airbyte_agent_zendesk_support/models.py +21 -69
- {airbyte_agent_zendesk_support-0.18.36.dist-info → airbyte_agent_zendesk_support-0.18.42.dist-info}/METADATA +11 -8
- {airbyte_agent_zendesk_support-0.18.36.dist-info → airbyte_agent_zendesk_support-0.18.42.dist-info}/RECORD +30 -30
- {airbyte_agent_zendesk_support-0.18.36.dist-info → airbyte_agent_zendesk_support-0.18.42.dist-info}/WHEEL +0 -0
|
@@ -475,7 +475,7 @@ class ArticleAttachment(BaseModel):
|
|
|
475
475
|
# Meta types for operations that extract metadata (e.g., pagination info)
|
|
476
476
|
|
|
477
477
|
class TicketsListResultMeta(BaseModel):
|
|
478
|
-
"""Metadata for tickets.
|
|
478
|
+
"""Metadata for tickets.Action.LIST operation"""
|
|
479
479
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
480
480
|
|
|
481
481
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -483,7 +483,7 @@ class TicketsListResultMeta(BaseModel):
|
|
|
483
483
|
count: Union[int, Any] = Field(default=None)
|
|
484
484
|
|
|
485
485
|
class UsersListResultMeta(BaseModel):
|
|
486
|
-
"""Metadata for users.
|
|
486
|
+
"""Metadata for users.Action.LIST operation"""
|
|
487
487
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
488
488
|
|
|
489
489
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -491,7 +491,7 @@ class UsersListResultMeta(BaseModel):
|
|
|
491
491
|
count: Union[int, Any] = Field(default=None)
|
|
492
492
|
|
|
493
493
|
class OrganizationsListResultMeta(BaseModel):
|
|
494
|
-
"""Metadata for organizations.
|
|
494
|
+
"""Metadata for organizations.Action.LIST operation"""
|
|
495
495
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
496
496
|
|
|
497
497
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -499,7 +499,7 @@ class OrganizationsListResultMeta(BaseModel):
|
|
|
499
499
|
count: Union[int, Any] = Field(default=None)
|
|
500
500
|
|
|
501
501
|
class GroupsListResultMeta(BaseModel):
|
|
502
|
-
"""Metadata for groups.
|
|
502
|
+
"""Metadata for groups.Action.LIST operation"""
|
|
503
503
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
504
504
|
|
|
505
505
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -507,7 +507,7 @@ class GroupsListResultMeta(BaseModel):
|
|
|
507
507
|
count: Union[int, Any] = Field(default=None)
|
|
508
508
|
|
|
509
509
|
class TicketCommentsListResultMeta(BaseModel):
|
|
510
|
-
"""Metadata for ticket_comments.
|
|
510
|
+
"""Metadata for ticket_comments.Action.LIST operation"""
|
|
511
511
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
512
512
|
|
|
513
513
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -515,7 +515,7 @@ class TicketCommentsListResultMeta(BaseModel):
|
|
|
515
515
|
count: Union[int, Any] = Field(default=None)
|
|
516
516
|
|
|
517
517
|
class TicketAuditsListResultMeta(BaseModel):
|
|
518
|
-
"""Metadata for ticket_audits.
|
|
518
|
+
"""Metadata for ticket_audits.Action.LIST operation"""
|
|
519
519
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
520
520
|
|
|
521
521
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -523,7 +523,7 @@ class TicketAuditsListResultMeta(BaseModel):
|
|
|
523
523
|
count: Union[int, Any] = Field(default=None)
|
|
524
524
|
|
|
525
525
|
class TicketMetricsListResultMeta(BaseModel):
|
|
526
|
-
"""Metadata for ticket_metrics.
|
|
526
|
+
"""Metadata for ticket_metrics.Action.LIST operation"""
|
|
527
527
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
528
528
|
|
|
529
529
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -531,7 +531,7 @@ class TicketMetricsListResultMeta(BaseModel):
|
|
|
531
531
|
count: Union[int, Any] = Field(default=None)
|
|
532
532
|
|
|
533
533
|
class TicketFieldsListResultMeta(BaseModel):
|
|
534
|
-
"""Metadata for ticket_fields.
|
|
534
|
+
"""Metadata for ticket_fields.Action.LIST operation"""
|
|
535
535
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
536
536
|
|
|
537
537
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -539,7 +539,7 @@ class TicketFieldsListResultMeta(BaseModel):
|
|
|
539
539
|
count: Union[int, Any] = Field(default=None)
|
|
540
540
|
|
|
541
541
|
class BrandsListResultMeta(BaseModel):
|
|
542
|
-
"""Metadata for brands.
|
|
542
|
+
"""Metadata for brands.Action.LIST operation"""
|
|
543
543
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
544
544
|
|
|
545
545
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -547,7 +547,7 @@ class BrandsListResultMeta(BaseModel):
|
|
|
547
547
|
count: Union[int, Any] = Field(default=None)
|
|
548
548
|
|
|
549
549
|
class ViewsListResultMeta(BaseModel):
|
|
550
|
-
"""Metadata for views.
|
|
550
|
+
"""Metadata for views.Action.LIST operation"""
|
|
551
551
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
552
552
|
|
|
553
553
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -555,7 +555,7 @@ class ViewsListResultMeta(BaseModel):
|
|
|
555
555
|
count: Union[int, Any] = Field(default=None)
|
|
556
556
|
|
|
557
557
|
class MacrosListResultMeta(BaseModel):
|
|
558
|
-
"""Metadata for macros.
|
|
558
|
+
"""Metadata for macros.Action.LIST operation"""
|
|
559
559
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
560
560
|
|
|
561
561
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -563,7 +563,7 @@ class MacrosListResultMeta(BaseModel):
|
|
|
563
563
|
count: Union[int, Any] = Field(default=None)
|
|
564
564
|
|
|
565
565
|
class TriggersListResultMeta(BaseModel):
|
|
566
|
-
"""Metadata for triggers.
|
|
566
|
+
"""Metadata for triggers.Action.LIST operation"""
|
|
567
567
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
568
568
|
|
|
569
569
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -571,7 +571,7 @@ class TriggersListResultMeta(BaseModel):
|
|
|
571
571
|
count: Union[int, Any] = Field(default=None)
|
|
572
572
|
|
|
573
573
|
class AutomationsListResultMeta(BaseModel):
|
|
574
|
-
"""Metadata for automations.
|
|
574
|
+
"""Metadata for automations.Action.LIST operation"""
|
|
575
575
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
576
576
|
|
|
577
577
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -579,7 +579,7 @@ class AutomationsListResultMeta(BaseModel):
|
|
|
579
579
|
count: Union[int, Any] = Field(default=None)
|
|
580
580
|
|
|
581
581
|
class TagsListResultMeta(BaseModel):
|
|
582
|
-
"""Metadata for tags.
|
|
582
|
+
"""Metadata for tags.Action.LIST operation"""
|
|
583
583
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
584
584
|
|
|
585
585
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -587,7 +587,7 @@ class TagsListResultMeta(BaseModel):
|
|
|
587
587
|
count: Union[int, Any] = Field(default=None)
|
|
588
588
|
|
|
589
589
|
class SatisfactionRatingsListResultMeta(BaseModel):
|
|
590
|
-
"""Metadata for satisfaction_ratings.
|
|
590
|
+
"""Metadata for satisfaction_ratings.Action.LIST operation"""
|
|
591
591
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
592
592
|
|
|
593
593
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -595,7 +595,7 @@ class SatisfactionRatingsListResultMeta(BaseModel):
|
|
|
595
595
|
count: Union[int, Any] = Field(default=None)
|
|
596
596
|
|
|
597
597
|
class GroupMembershipsListResultMeta(BaseModel):
|
|
598
|
-
"""Metadata for group_memberships.
|
|
598
|
+
"""Metadata for group_memberships.Action.LIST operation"""
|
|
599
599
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
600
600
|
|
|
601
601
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -603,7 +603,7 @@ class GroupMembershipsListResultMeta(BaseModel):
|
|
|
603
603
|
count: Union[int, Any] = Field(default=None)
|
|
604
604
|
|
|
605
605
|
class OrganizationMembershipsListResultMeta(BaseModel):
|
|
606
|
-
"""Metadata for organization_memberships.
|
|
606
|
+
"""Metadata for organization_memberships.Action.LIST operation"""
|
|
607
607
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
608
608
|
|
|
609
609
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -611,7 +611,7 @@ class OrganizationMembershipsListResultMeta(BaseModel):
|
|
|
611
611
|
count: Union[int, Any] = Field(default=None)
|
|
612
612
|
|
|
613
613
|
class SlaPoliciesListResultMeta(BaseModel):
|
|
614
|
-
"""Metadata for sla_policies.
|
|
614
|
+
"""Metadata for sla_policies.Action.LIST operation"""
|
|
615
615
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
616
616
|
|
|
617
617
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -619,7 +619,7 @@ class SlaPoliciesListResultMeta(BaseModel):
|
|
|
619
619
|
count: Union[int, Any] = Field(default=None)
|
|
620
620
|
|
|
621
621
|
class TicketFormsListResultMeta(BaseModel):
|
|
622
|
-
"""Metadata for ticket_forms.
|
|
622
|
+
"""Metadata for ticket_forms.Action.LIST operation"""
|
|
623
623
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
624
624
|
|
|
625
625
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -627,7 +627,7 @@ class TicketFormsListResultMeta(BaseModel):
|
|
|
627
627
|
count: Union[int, Any] = Field(default=None)
|
|
628
628
|
|
|
629
629
|
class ArticlesListResultMeta(BaseModel):
|
|
630
|
-
"""Metadata for articles.
|
|
630
|
+
"""Metadata for articles.Action.LIST operation"""
|
|
631
631
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
632
632
|
|
|
633
633
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -635,7 +635,7 @@ class ArticlesListResultMeta(BaseModel):
|
|
|
635
635
|
count: Union[int, Any] = Field(default=None)
|
|
636
636
|
|
|
637
637
|
class ArticleAttachmentsListResultMeta(BaseModel):
|
|
638
|
-
"""Metadata for article_attachments.
|
|
638
|
+
"""Metadata for article_attachments.Action.LIST operation"""
|
|
639
639
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
640
640
|
|
|
641
641
|
next_page: Union[str | None, Any] = Field(default=None)
|
|
@@ -677,33 +677,18 @@ class ZendeskSupportExecuteResultWithMeta(ZendeskSupportExecuteResult[T], Generi
|
|
|
677
677
|
TicketsListResult = ZendeskSupportExecuteResultWithMeta[list[Ticket], TicketsListResultMeta]
|
|
678
678
|
"""Result type for tickets.list operation with data and metadata."""
|
|
679
679
|
|
|
680
|
-
TicketsGetResult = ZendeskSupportExecuteResult[Ticket]
|
|
681
|
-
"""Result type for tickets.get operation."""
|
|
682
|
-
|
|
683
680
|
UsersListResult = ZendeskSupportExecuteResultWithMeta[list[User], UsersListResultMeta]
|
|
684
681
|
"""Result type for users.list operation with data and metadata."""
|
|
685
682
|
|
|
686
|
-
UsersGetResult = ZendeskSupportExecuteResult[User]
|
|
687
|
-
"""Result type for users.get operation."""
|
|
688
|
-
|
|
689
683
|
OrganizationsListResult = ZendeskSupportExecuteResultWithMeta[list[Organization], OrganizationsListResultMeta]
|
|
690
684
|
"""Result type for organizations.list operation with data and metadata."""
|
|
691
685
|
|
|
692
|
-
OrganizationsGetResult = ZendeskSupportExecuteResult[Organization]
|
|
693
|
-
"""Result type for organizations.get operation."""
|
|
694
|
-
|
|
695
686
|
GroupsListResult = ZendeskSupportExecuteResultWithMeta[list[Group], GroupsListResultMeta]
|
|
696
687
|
"""Result type for groups.list operation with data and metadata."""
|
|
697
688
|
|
|
698
|
-
GroupsGetResult = ZendeskSupportExecuteResult[Group]
|
|
699
|
-
"""Result type for groups.get operation."""
|
|
700
|
-
|
|
701
689
|
TicketCommentsListResult = ZendeskSupportExecuteResultWithMeta[list[TicketComment], TicketCommentsListResultMeta]
|
|
702
690
|
"""Result type for ticket_comments.list operation with data and metadata."""
|
|
703
691
|
|
|
704
|
-
AttachmentsGetResult = ZendeskSupportExecuteResult[Attachment]
|
|
705
|
-
"""Result type for attachments.get operation."""
|
|
706
|
-
|
|
707
692
|
TicketAuditsListResult = ZendeskSupportExecuteResultWithMeta[list[TicketAudit], TicketAuditsListResultMeta]
|
|
708
693
|
"""Result type for ticket_audits.list operation with data and metadata."""
|
|
709
694
|
|
|
@@ -716,48 +701,27 @@ TicketMetricsListResult = ZendeskSupportExecuteResultWithMeta[list[TicketMetric]
|
|
|
716
701
|
TicketFieldsListResult = ZendeskSupportExecuteResultWithMeta[list[TicketField], TicketFieldsListResultMeta]
|
|
717
702
|
"""Result type for ticket_fields.list operation with data and metadata."""
|
|
718
703
|
|
|
719
|
-
TicketFieldsGetResult = ZendeskSupportExecuteResult[TicketField]
|
|
720
|
-
"""Result type for ticket_fields.get operation."""
|
|
721
|
-
|
|
722
704
|
BrandsListResult = ZendeskSupportExecuteResultWithMeta[list[Brand], BrandsListResultMeta]
|
|
723
705
|
"""Result type for brands.list operation with data and metadata."""
|
|
724
706
|
|
|
725
|
-
BrandsGetResult = ZendeskSupportExecuteResult[Brand]
|
|
726
|
-
"""Result type for brands.get operation."""
|
|
727
|
-
|
|
728
707
|
ViewsListResult = ZendeskSupportExecuteResultWithMeta[list[View], ViewsListResultMeta]
|
|
729
708
|
"""Result type for views.list operation with data and metadata."""
|
|
730
709
|
|
|
731
|
-
ViewsGetResult = ZendeskSupportExecuteResult[View]
|
|
732
|
-
"""Result type for views.get operation."""
|
|
733
|
-
|
|
734
710
|
MacrosListResult = ZendeskSupportExecuteResultWithMeta[list[Macro], MacrosListResultMeta]
|
|
735
711
|
"""Result type for macros.list operation with data and metadata."""
|
|
736
712
|
|
|
737
|
-
MacrosGetResult = ZendeskSupportExecuteResult[Macro]
|
|
738
|
-
"""Result type for macros.get operation."""
|
|
739
|
-
|
|
740
713
|
TriggersListResult = ZendeskSupportExecuteResultWithMeta[list[Trigger], TriggersListResultMeta]
|
|
741
714
|
"""Result type for triggers.list operation with data and metadata."""
|
|
742
715
|
|
|
743
|
-
TriggersGetResult = ZendeskSupportExecuteResult[Trigger]
|
|
744
|
-
"""Result type for triggers.get operation."""
|
|
745
|
-
|
|
746
716
|
AutomationsListResult = ZendeskSupportExecuteResultWithMeta[list[Automation], AutomationsListResultMeta]
|
|
747
717
|
"""Result type for automations.list operation with data and metadata."""
|
|
748
718
|
|
|
749
|
-
AutomationsGetResult = ZendeskSupportExecuteResult[Automation]
|
|
750
|
-
"""Result type for automations.get operation."""
|
|
751
|
-
|
|
752
719
|
TagsListResult = ZendeskSupportExecuteResultWithMeta[list[Tag], TagsListResultMeta]
|
|
753
720
|
"""Result type for tags.list operation with data and metadata."""
|
|
754
721
|
|
|
755
722
|
SatisfactionRatingsListResult = ZendeskSupportExecuteResultWithMeta[list[SatisfactionRating], SatisfactionRatingsListResultMeta]
|
|
756
723
|
"""Result type for satisfaction_ratings.list operation with data and metadata."""
|
|
757
724
|
|
|
758
|
-
SatisfactionRatingsGetResult = ZendeskSupportExecuteResult[SatisfactionRating]
|
|
759
|
-
"""Result type for satisfaction_ratings.get operation."""
|
|
760
|
-
|
|
761
725
|
GroupMembershipsListResult = ZendeskSupportExecuteResultWithMeta[list[GroupMembership], GroupMembershipsListResultMeta]
|
|
762
726
|
"""Result type for group_memberships.list operation with data and metadata."""
|
|
763
727
|
|
|
@@ -767,24 +731,12 @@ OrganizationMembershipsListResult = ZendeskSupportExecuteResultWithMeta[list[Org
|
|
|
767
731
|
SlaPoliciesListResult = ZendeskSupportExecuteResultWithMeta[list[SLAPolicy], SlaPoliciesListResultMeta]
|
|
768
732
|
"""Result type for sla_policies.list operation with data and metadata."""
|
|
769
733
|
|
|
770
|
-
SlaPoliciesGetResult = ZendeskSupportExecuteResult[SLAPolicy]
|
|
771
|
-
"""Result type for sla_policies.get operation."""
|
|
772
|
-
|
|
773
734
|
TicketFormsListResult = ZendeskSupportExecuteResultWithMeta[list[TicketForm], TicketFormsListResultMeta]
|
|
774
735
|
"""Result type for ticket_forms.list operation with data and metadata."""
|
|
775
736
|
|
|
776
|
-
TicketFormsGetResult = ZendeskSupportExecuteResult[TicketForm]
|
|
777
|
-
"""Result type for ticket_forms.get operation."""
|
|
778
|
-
|
|
779
737
|
ArticlesListResult = ZendeskSupportExecuteResultWithMeta[list[Article], ArticlesListResultMeta]
|
|
780
738
|
"""Result type for articles.list operation with data and metadata."""
|
|
781
739
|
|
|
782
|
-
ArticlesGetResult = ZendeskSupportExecuteResult[Article]
|
|
783
|
-
"""Result type for articles.get operation."""
|
|
784
|
-
|
|
785
740
|
ArticleAttachmentsListResult = ZendeskSupportExecuteResultWithMeta[list[ArticleAttachment], ArticleAttachmentsListResultMeta]
|
|
786
741
|
"""Result type for article_attachments.list operation with data and metadata."""
|
|
787
742
|
|
|
788
|
-
ArticleAttachmentsGetResult = ZendeskSupportExecuteResult[ArticleAttachment]
|
|
789
|
-
"""Result type for article_attachments.get operation."""
|
|
790
|
-
|
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-zendesk-support
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.42
|
|
4
4
|
Summary: Airbyte Zendesk-Support Connector for AI platforms
|
|
5
|
-
Project-URL: Homepage, https://github.com/airbytehq/airbyte-
|
|
6
|
-
Project-URL: Documentation, https://
|
|
7
|
-
Project-URL: Repository, https://github.com/airbytehq/airbyte-
|
|
8
|
-
Project-URL: Issues, https://github.com/airbytehq/airbyte-
|
|
5
|
+
Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
|
|
6
|
+
Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
|
|
7
|
+
Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
|
|
8
|
+
Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
|
|
9
9
|
Author-email: Airbyte <contact@airbyte.io>
|
|
10
10
|
License: Elastic-2.0
|
|
11
|
-
Keywords: airbyte,api,connector,zendesk-support
|
|
11
|
+
Keywords: agent,ai,airbyte,api,connector,data-integration,llm,mcp,zendesk-support
|
|
12
12
|
Classifier: Development Status :: 3 - Alpha
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: License :: Other/Proprietary License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
15
16
|
Classifier: Programming Language :: Python :: 3
|
|
16
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
17
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Typing :: Typed
|
|
18
21
|
Requires-Python: >=3.13
|
|
19
22
|
Requires-Dist: httpx>=0.24.0
|
|
20
23
|
Requires-Dist: jinja2>=3.0.0
|
|
@@ -137,6 +140,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
|
|
|
137
140
|
|
|
138
141
|
## Version information
|
|
139
142
|
|
|
140
|
-
- **Package version:** 0.18.
|
|
143
|
+
- **Package version:** 0.18.42
|
|
141
144
|
- **Connector version:** 0.1.4
|
|
142
|
-
- **Generated with Connector SDK commit SHA:**
|
|
145
|
+
- **Generated with Connector SDK commit SHA:** 20b3afd9215174bb084af41e3174b78f114d86b5
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
airbyte_agent_zendesk_support/__init__.py,sha256=
|
|
2
|
-
airbyte_agent_zendesk_support/connector.py,sha256=
|
|
1
|
+
airbyte_agent_zendesk_support/__init__.py,sha256=Xf_SLbAydieq_2ADq5k0QJ4TTseP5laq0F4A95_pEsQ,5899
|
|
2
|
+
airbyte_agent_zendesk_support/connector.py,sha256=Ptrms0QrEAmNzo1KtHCALpNNf70agpBZxFMSRTagGYE,64801
|
|
3
3
|
airbyte_agent_zendesk_support/connector_model.py,sha256=M1phs0lN_6nxKgEF4enlA2znIMIDOMPkQiHY6BYszeE,241309
|
|
4
|
-
airbyte_agent_zendesk_support/models.py,sha256=
|
|
4
|
+
airbyte_agent_zendesk_support/models.py,sha256=1GLCb9q_AKuV8ky43wuDtnlyCobbTWwoBoSxVkUquyU,34791
|
|
5
5
|
airbyte_agent_zendesk_support/types.py,sha256=vaWdcxDIJ8_nH7sv9PBsdWOKuTPVkskLur7fQF5Ln94,6320
|
|
6
6
|
airbyte_agent_zendesk_support/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
7
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py,sha256=
|
|
9
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py,sha256=
|
|
10
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py,sha256=
|
|
8
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
|
|
9
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
|
|
10
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py,sha256=Cx9wPhKwWfzkc8i63IevL0EsN3iWUl_OA-_jA9EKNcE,34877
|
|
11
11
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
12
12
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py,sha256=
|
|
13
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
|
|
14
14
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
|
|
15
15
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
|
|
16
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py,sha256=
|
|
17
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py,sha256=
|
|
16
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
|
|
17
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py,sha256=CStkOsLtmZZdXylkdCsbYORDzughxygt1-Ucma0j-qE,8287
|
|
18
18
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
19
19
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
|
|
20
20
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
21
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py,sha256=
|
|
21
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
22
22
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py,sha256=
|
|
24
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py,sha256=
|
|
23
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
|
|
24
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py,sha256=CMuknflYNY6_f83xrxvqewfI52MLYdPin3Rvz6HS3wU,67610
|
|
25
25
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
26
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
27
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
28
28
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
|
|
29
29
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
|
|
30
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py,sha256=
|
|
30
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05ZhmZVJk4hVpmoS8YtyXNOTM5hqBt7rWI,3475
|
|
31
31
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
|
|
32
32
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
|
|
33
33
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
|
|
34
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py,sha256=
|
|
35
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py,sha256=
|
|
34
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py,sha256=GKm03UgDMNlvGuuH_c07jNcZmUccC3DISG269Ehj1Uo,8084
|
|
35
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py,sha256=z0UiSdXP_r71mtwWkJydo0InsNpYOMyI7SVutzd2PEo,3172
|
|
36
36
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
37
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py,sha256=
|
|
38
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py,sha256=
|
|
37
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py,sha256=uWvRAPHnEusVKviQQncqcpnHKNhoZ4ZoFK6nUOSVClY,5372
|
|
38
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py,sha256=IRGjlJia28_IU7BMSBb5RHWs47yAOLvE20JIIXHazLY,448
|
|
39
39
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
|
|
40
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py,sha256=
|
|
40
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py,sha256=WYRIB3bVz9HhpElkUO9CILCRIrWs9p2MR2hmf8uJm3E,3086
|
|
41
41
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
|
|
42
42
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
43
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py,sha256=
|
|
43
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
|
|
44
44
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
45
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py,sha256=
|
|
46
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py,sha256=
|
|
47
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py,sha256=
|
|
48
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py,sha256=
|
|
49
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py,sha256=
|
|
50
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py,sha256=
|
|
45
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py,sha256=swe27f6sWuuGmG54VAW9K8P5USuhmncpIqAliFcB-OU,4741
|
|
46
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py,sha256=x3YCM1p2n_xHi50fMeOX0mXUiPqjGlLHs3Go8jXokb0,7895
|
|
47
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
|
|
48
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py,sha256=0SKtv1WaW2sHaSZF-gi5dI3p0heGbegphjU2PAyIe-M,3277
|
|
49
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
|
|
50
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py,sha256=zQ9RRuF3LBgLQi_4cItmjXbG_5WKlmCNM3nCil30H90,8470
|
|
51
51
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
|
|
52
52
|
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
53
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=
|
|
54
|
-
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=
|
|
55
|
-
airbyte_agent_zendesk_support-0.18.
|
|
56
|
-
airbyte_agent_zendesk_support-0.18.
|
|
57
|
-
airbyte_agent_zendesk_support-0.18.
|
|
53
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
|
+
airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
+
airbyte_agent_zendesk_support-0.18.42.dist-info/METADATA,sha256=bGDUotYicC0e_GhCB7MUV3G2TFe_I1nXMkb7WWr5kWo,6246
|
|
56
|
+
airbyte_agent_zendesk_support-0.18.42.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_zendesk_support-0.18.42.dist-info/RECORD,,
|
|
File without changes
|