airbyte-agent-zendesk-support 0.18.49__py3-none-any.whl → 0.18.50__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.
@@ -73,8 +73,8 @@ from .models import (
73
73
  TicketFormsListResult,
74
74
  ArticlesListResult,
75
75
  ArticleAttachmentsListResult,
76
- SearchHit,
77
- SearchResult,
76
+ AirbyteSearchHit,
77
+ AirbyteSearchResult,
78
78
  BrandsSearchData,
79
79
  BrandsSearchResult,
80
80
  GroupsSearchData,
@@ -141,8 +141,8 @@ from .types import (
141
141
  ArticleAttachmentsListParams,
142
142
  ArticleAttachmentsGetParams,
143
143
  ArticleAttachmentsDownloadParams,
144
- SearchParams,
145
- SortOrder,
144
+ AirbyteSearchParams,
145
+ AirbyteSortOrder,
146
146
  BrandsSearchFilter,
147
147
  BrandsSearchQuery,
148
148
  BrandsCondition,
@@ -250,8 +250,8 @@ __all__ = [
250
250
  "TicketFormsListResult",
251
251
  "ArticlesListResult",
252
252
  "ArticleAttachmentsListResult",
253
- "SearchHit",
254
- "SearchResult",
253
+ "AirbyteSearchHit",
254
+ "AirbyteSearchResult",
255
255
  "BrandsSearchData",
256
256
  "BrandsSearchResult",
257
257
  "GroupsSearchData",
@@ -316,8 +316,8 @@ __all__ = [
316
316
  "ArticleAttachmentsListParams",
317
317
  "ArticleAttachmentsGetParams",
318
318
  "ArticleAttachmentsDownloadParams",
319
- "SearchParams",
320
- "SortOrder",
319
+ "AirbyteSearchParams",
320
+ "AirbyteSortOrder",
321
321
  "BrandsSearchFilter",
322
322
  "BrandsSearchQuery",
323
323
  "BrandsCondition",
@@ -53,7 +53,7 @@ from .types import (
53
53
  UsersListParams,
54
54
  ViewsGetParams,
55
55
  ViewsListParams,
56
- SearchParams,
56
+ AirbyteSearchParams,
57
57
  BrandsSearchFilter,
58
58
  BrandsSearchQuery,
59
59
  GroupsSearchFilter,
@@ -131,8 +131,8 @@ from .models import (
131
131
  Trigger,
132
132
  User,
133
133
  View,
134
- SearchHit,
135
- SearchResult,
134
+ AirbyteSearchHit,
135
+ AirbyteSearchResult,
136
136
  BrandsSearchData,
137
137
  BrandsSearchResult,
138
138
  GroupsSearchData,
@@ -990,7 +990,7 @@ class TicketsQuery:
990
990
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
991
991
 
992
992
  Returns:
993
- TicketsSearchResult with hits (list of SearchHit[TicketsSearchData]) and pagination info
993
+ TicketsSearchResult with hits (list of AirbyteSearchHit[TicketsSearchData]) and pagination info
994
994
 
995
995
  Raises:
996
996
  NotImplementedError: If called in local execution mode
@@ -1008,7 +1008,7 @@ class TicketsQuery:
1008
1008
  # Parse response into typed result
1009
1009
  return TicketsSearchResult(
1010
1010
  hits=[
1011
- SearchHit[TicketsSearchData](
1011
+ AirbyteSearchHit[TicketsSearchData](
1012
1012
  id=hit.get("id"),
1013
1013
  score=hit.get("score"),
1014
1014
  data=TicketsSearchData(**hit.get("data", {}))
@@ -1151,7 +1151,7 @@ class UsersQuery:
1151
1151
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
1152
1152
 
1153
1153
  Returns:
1154
- UsersSearchResult with hits (list of SearchHit[UsersSearchData]) and pagination info
1154
+ UsersSearchResult with hits (list of AirbyteSearchHit[UsersSearchData]) and pagination info
1155
1155
 
1156
1156
  Raises:
1157
1157
  NotImplementedError: If called in local execution mode
@@ -1169,7 +1169,7 @@ class UsersQuery:
1169
1169
  # Parse response into typed result
1170
1170
  return UsersSearchResult(
1171
1171
  hits=[
1172
- SearchHit[UsersSearchData](
1172
+ AirbyteSearchHit[UsersSearchData](
1173
1173
  id=hit.get("id"),
1174
1174
  score=hit.get("score"),
1175
1175
  data=UsersSearchData(**hit.get("data", {}))
@@ -1282,7 +1282,7 @@ class OrganizationsQuery:
1282
1282
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
1283
1283
 
1284
1284
  Returns:
1285
- OrganizationsSearchResult with hits (list of SearchHit[OrganizationsSearchData]) and pagination info
1285
+ OrganizationsSearchResult with hits (list of AirbyteSearchHit[OrganizationsSearchData]) and pagination info
1286
1286
 
1287
1287
  Raises:
1288
1288
  NotImplementedError: If called in local execution mode
@@ -1300,7 +1300,7 @@ class OrganizationsQuery:
1300
1300
  # Parse response into typed result
1301
1301
  return OrganizationsSearchResult(
1302
1302
  hits=[
1303
- SearchHit[OrganizationsSearchData](
1303
+ AirbyteSearchHit[OrganizationsSearchData](
1304
1304
  id=hit.get("id"),
1305
1305
  score=hit.get("score"),
1306
1306
  data=OrganizationsSearchData(**hit.get("data", {}))
@@ -1410,7 +1410,7 @@ class GroupsQuery:
1410
1410
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
1411
1411
 
1412
1412
  Returns:
1413
- GroupsSearchResult with hits (list of SearchHit[GroupsSearchData]) and pagination info
1413
+ GroupsSearchResult with hits (list of AirbyteSearchHit[GroupsSearchData]) and pagination info
1414
1414
 
1415
1415
  Raises:
1416
1416
  NotImplementedError: If called in local execution mode
@@ -1428,7 +1428,7 @@ class GroupsQuery:
1428
1428
  # Parse response into typed result
1429
1429
  return GroupsSearchResult(
1430
1430
  hits=[
1431
- SearchHit[GroupsSearchData](
1431
+ AirbyteSearchHit[GroupsSearchData](
1432
1432
  id=hit.get("id"),
1433
1433
  score=hit.get("score"),
1434
1434
  data=GroupsSearchData(**hit.get("data", {}))
@@ -1527,7 +1527,7 @@ class TicketCommentsQuery:
1527
1527
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
1528
1528
 
1529
1529
  Returns:
1530
- TicketCommentsSearchResult with hits (list of SearchHit[TicketCommentsSearchData]) and pagination info
1530
+ TicketCommentsSearchResult with hits (list of AirbyteSearchHit[TicketCommentsSearchData]) and pagination info
1531
1531
 
1532
1532
  Raises:
1533
1533
  NotImplementedError: If called in local execution mode
@@ -1545,7 +1545,7 @@ class TicketCommentsQuery:
1545
1545
  # Parse response into typed result
1546
1546
  return TicketCommentsSearchResult(
1547
1547
  hits=[
1548
- SearchHit[TicketCommentsSearchData](
1548
+ AirbyteSearchHit[TicketCommentsSearchData](
1549
1549
  id=hit.get("id"),
1550
1550
  score=hit.get("score"),
1551
1551
  data=TicketCommentsSearchData(**hit.get("data", {}))
@@ -1750,7 +1750,7 @@ class TicketAuditsQuery:
1750
1750
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
1751
1751
 
1752
1752
  Returns:
1753
- TicketAuditsSearchResult with hits (list of SearchHit[TicketAuditsSearchData]) and pagination info
1753
+ TicketAuditsSearchResult with hits (list of AirbyteSearchHit[TicketAuditsSearchData]) and pagination info
1754
1754
 
1755
1755
  Raises:
1756
1756
  NotImplementedError: If called in local execution mode
@@ -1768,7 +1768,7 @@ class TicketAuditsQuery:
1768
1768
  # Parse response into typed result
1769
1769
  return TicketAuditsSearchResult(
1770
1770
  hits=[
1771
- SearchHit[TicketAuditsSearchData](
1771
+ AirbyteSearchHit[TicketAuditsSearchData](
1772
1772
  id=hit.get("id"),
1773
1773
  score=hit.get("score"),
1774
1774
  data=TicketAuditsSearchData(**hit.get("data", {}))
@@ -1871,7 +1871,7 @@ class TicketMetricsQuery:
1871
1871
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
1872
1872
 
1873
1873
  Returns:
1874
- TicketMetricsSearchResult with hits (list of SearchHit[TicketMetricsSearchData]) and pagination info
1874
+ TicketMetricsSearchResult with hits (list of AirbyteSearchHit[TicketMetricsSearchData]) and pagination info
1875
1875
 
1876
1876
  Raises:
1877
1877
  NotImplementedError: If called in local execution mode
@@ -1889,7 +1889,7 @@ class TicketMetricsQuery:
1889
1889
  # Parse response into typed result
1890
1890
  return TicketMetricsSearchResult(
1891
1891
  hits=[
1892
- SearchHit[TicketMetricsSearchData](
1892
+ AirbyteSearchHit[TicketMetricsSearchData](
1893
1893
  id=hit.get("id"),
1894
1894
  score=hit.get("score"),
1895
1895
  data=TicketMetricsSearchData(**hit.get("data", {}))
@@ -2017,7 +2017,7 @@ class TicketFieldsQuery:
2017
2017
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
2018
2018
 
2019
2019
  Returns:
2020
- TicketFieldsSearchResult with hits (list of SearchHit[TicketFieldsSearchData]) and pagination info
2020
+ TicketFieldsSearchResult with hits (list of AirbyteSearchHit[TicketFieldsSearchData]) and pagination info
2021
2021
 
2022
2022
  Raises:
2023
2023
  NotImplementedError: If called in local execution mode
@@ -2035,7 +2035,7 @@ class TicketFieldsQuery:
2035
2035
  # Parse response into typed result
2036
2036
  return TicketFieldsSearchResult(
2037
2037
  hits=[
2038
- SearchHit[TicketFieldsSearchData](
2038
+ AirbyteSearchHit[TicketFieldsSearchData](
2039
2039
  id=hit.get("id"),
2040
2040
  score=hit.get("score"),
2041
2041
  data=TicketFieldsSearchData(**hit.get("data", {}))
@@ -2149,7 +2149,7 @@ class BrandsQuery:
2149
2149
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
2150
2150
 
2151
2151
  Returns:
2152
- BrandsSearchResult with hits (list of SearchHit[BrandsSearchData]) and pagination info
2152
+ BrandsSearchResult with hits (list of AirbyteSearchHit[BrandsSearchData]) and pagination info
2153
2153
 
2154
2154
  Raises:
2155
2155
  NotImplementedError: If called in local execution mode
@@ -2167,7 +2167,7 @@ class BrandsQuery:
2167
2167
  # Parse response into typed result
2168
2168
  return BrandsSearchResult(
2169
2169
  hits=[
2170
- SearchHit[BrandsSearchData](
2170
+ AirbyteSearchHit[BrandsSearchData](
2171
2171
  id=hit.get("id"),
2172
2172
  score=hit.get("score"),
2173
2173
  data=BrandsSearchData(**hit.get("data", {}))
@@ -2545,7 +2545,7 @@ class TagsQuery:
2545
2545
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
2546
2546
 
2547
2547
  Returns:
2548
- TagsSearchResult with hits (list of SearchHit[TagsSearchData]) and pagination info
2548
+ TagsSearchResult with hits (list of AirbyteSearchHit[TagsSearchData]) and pagination info
2549
2549
 
2550
2550
  Raises:
2551
2551
  NotImplementedError: If called in local execution mode
@@ -2563,7 +2563,7 @@ class TagsQuery:
2563
2563
  # Parse response into typed result
2564
2564
  return TagsSearchResult(
2565
2565
  hits=[
2566
- SearchHit[TagsSearchData](
2566
+ AirbyteSearchHit[TagsSearchData](
2567
2567
  id=hit.get("id"),
2568
2568
  score=hit.get("score"),
2569
2569
  data=TagsSearchData(**hit.get("data", {}))
@@ -2682,7 +2682,7 @@ class SatisfactionRatingsQuery:
2682
2682
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
2683
2683
 
2684
2684
  Returns:
2685
- SatisfactionRatingsSearchResult with hits (list of SearchHit[SatisfactionRatingsSearchData]) and pagination info
2685
+ SatisfactionRatingsSearchResult with hits (list of AirbyteSearchHit[SatisfactionRatingsSearchData]) and pagination info
2686
2686
 
2687
2687
  Raises:
2688
2688
  NotImplementedError: If called in local execution mode
@@ -2700,7 +2700,7 @@ class SatisfactionRatingsQuery:
2700
2700
  # Parse response into typed result
2701
2701
  return SatisfactionRatingsSearchResult(
2702
2702
  hits=[
2703
- SearchHit[SatisfactionRatingsSearchData](
2703
+ AirbyteSearchHit[SatisfactionRatingsSearchData](
2704
2704
  id=hit.get("id"),
2705
2705
  score=hit.get("score"),
2706
2706
  data=SatisfactionRatingsSearchData(**hit.get("data", {}))
@@ -2960,7 +2960,7 @@ class TicketFormsQuery:
2960
2960
  Example: [["id"], ["user", "name"]] returns id and user.name fields.
2961
2961
 
2962
2962
  Returns:
2963
- TicketFormsSearchResult with hits (list of SearchHit[TicketFormsSearchData]) and pagination info
2963
+ TicketFormsSearchResult with hits (list of AirbyteSearchHit[TicketFormsSearchData]) and pagination info
2964
2964
 
2965
2965
  Raises:
2966
2966
  NotImplementedError: If called in local execution mode
@@ -2978,7 +2978,7 @@ class TicketFormsQuery:
2978
2978
  # Parse response into typed result
2979
2979
  return TicketFormsSearchResult(
2980
2980
  hits=[
2981
- SearchHit[TicketFormsSearchData](
2981
+ AirbyteSearchHit[TicketFormsSearchData](
2982
2982
  id=hit.get("id"),
2983
2983
  score=hit.get("score"),
2984
2984
  data=TicketFormsSearchData(**hit.get("data", {}))
@@ -1212,7 +1212,7 @@ class UsersSearchData(BaseModel):
1212
1212
 
1213
1213
  # ===== GENERIC SEARCH RESULT TYPES =====
1214
1214
 
1215
- class SearchHit(BaseModel, Generic[D]):
1215
+ class AirbyteSearchHit(BaseModel, Generic[D]):
1216
1216
  """A single search result with typed data."""
1217
1217
  model_config = ConfigDict(extra="allow")
1218
1218
 
@@ -1224,11 +1224,11 @@ class SearchHit(BaseModel, Generic[D]):
1224
1224
  """The matched record data."""
1225
1225
 
1226
1226
 
1227
- class SearchResult(BaseModel, Generic[D]):
1228
- """Result from search operations with typed hits."""
1227
+ class AirbyteSearchResult(BaseModel, Generic[D]):
1228
+ """Result from Airbyte cache search operations with typed hits."""
1229
1229
  model_config = ConfigDict(extra="allow")
1230
1230
 
1231
- hits: list[SearchHit[D]] = Field(default_factory=list)
1231
+ hits: list[AirbyteSearchHit[D]] = Field(default_factory=list)
1232
1232
  """List of matching records."""
1233
1233
  next_cursor: str | None = None
1234
1234
  """Cursor for fetching the next page of results."""
@@ -1238,40 +1238,40 @@ class SearchResult(BaseModel, Generic[D]):
1238
1238
 
1239
1239
  # ===== ENTITY-SPECIFIC SEARCH RESULT TYPE ALIASES =====
1240
1240
 
1241
- BrandsSearchResult = SearchResult[BrandsSearchData]
1241
+ BrandsSearchResult = AirbyteSearchResult[BrandsSearchData]
1242
1242
  """Search result type for brands entity."""
1243
1243
 
1244
- GroupsSearchResult = SearchResult[GroupsSearchData]
1244
+ GroupsSearchResult = AirbyteSearchResult[GroupsSearchData]
1245
1245
  """Search result type for groups entity."""
1246
1246
 
1247
- OrganizationsSearchResult = SearchResult[OrganizationsSearchData]
1247
+ OrganizationsSearchResult = AirbyteSearchResult[OrganizationsSearchData]
1248
1248
  """Search result type for organizations entity."""
1249
1249
 
1250
- SatisfactionRatingsSearchResult = SearchResult[SatisfactionRatingsSearchData]
1250
+ SatisfactionRatingsSearchResult = AirbyteSearchResult[SatisfactionRatingsSearchData]
1251
1251
  """Search result type for satisfaction_ratings entity."""
1252
1252
 
1253
- TagsSearchResult = SearchResult[TagsSearchData]
1253
+ TagsSearchResult = AirbyteSearchResult[TagsSearchData]
1254
1254
  """Search result type for tags entity."""
1255
1255
 
1256
- TicketAuditsSearchResult = SearchResult[TicketAuditsSearchData]
1256
+ TicketAuditsSearchResult = AirbyteSearchResult[TicketAuditsSearchData]
1257
1257
  """Search result type for ticket_audits entity."""
1258
1258
 
1259
- TicketCommentsSearchResult = SearchResult[TicketCommentsSearchData]
1259
+ TicketCommentsSearchResult = AirbyteSearchResult[TicketCommentsSearchData]
1260
1260
  """Search result type for ticket_comments entity."""
1261
1261
 
1262
- TicketFieldsSearchResult = SearchResult[TicketFieldsSearchData]
1262
+ TicketFieldsSearchResult = AirbyteSearchResult[TicketFieldsSearchData]
1263
1263
  """Search result type for ticket_fields entity."""
1264
1264
 
1265
- TicketFormsSearchResult = SearchResult[TicketFormsSearchData]
1265
+ TicketFormsSearchResult = AirbyteSearchResult[TicketFormsSearchData]
1266
1266
  """Search result type for ticket_forms entity."""
1267
1267
 
1268
- TicketMetricsSearchResult = SearchResult[TicketMetricsSearchData]
1268
+ TicketMetricsSearchResult = AirbyteSearchResult[TicketMetricsSearchData]
1269
1269
  """Search result type for ticket_metrics entity."""
1270
1270
 
1271
- TicketsSearchResult = SearchResult[TicketsSearchData]
1271
+ TicketsSearchResult = AirbyteSearchResult[TicketsSearchData]
1272
1272
  """Search result type for tickets entity."""
1273
1273
 
1274
- UsersSearchResult = SearchResult[UsersSearchData]
1274
+ UsersSearchResult = AirbyteSearchResult[UsersSearchData]
1275
1275
  """Search result type for users entity."""
1276
1276
 
1277
1277
 
@@ -219,7 +219,7 @@ class ArticleAttachmentsDownloadParams(TypedDict):
219
219
  # ===== SEARCH TYPES =====
220
220
 
221
221
  # Sort specification
222
- SortOrder = Literal["asc", "desc"]
222
+ AirbyteSortOrder = Literal["asc", "desc"]
223
223
 
224
224
  # ===== BRANDS SEARCH TYPES =====
225
225
 
@@ -369,37 +369,37 @@ class BrandsStringFilter(TypedDict, total=False):
369
369
 
370
370
  class BrandsSortFilter(TypedDict, total=False):
371
371
  """Available fields for sorting brands search results."""
372
- active: SortOrder
372
+ active: AirbyteSortOrder
373
373
  """Indicates whether the brand is set as active"""
374
- brand_url: SortOrder
374
+ brand_url: AirbyteSortOrder
375
375
  """The public URL of the brand"""
376
- created_at: SortOrder
376
+ created_at: AirbyteSortOrder
377
377
  """Timestamp when the brand was created"""
378
- default: SortOrder
378
+ default: AirbyteSortOrder
379
379
  """Indicates whether the brand is the default brand for tickets generated from non-branded channels"""
380
- has_help_center: SortOrder
380
+ has_help_center: AirbyteSortOrder
381
381
  """Indicates whether the brand has a Help Center enabled"""
382
- help_center_state: SortOrder
382
+ help_center_state: AirbyteSortOrder
383
383
  """The state of the Help Center, with allowed values of enabled, disabled, or restricted"""
384
- host_mapping: SortOrder
384
+ host_mapping: AirbyteSortOrder
385
385
  """The host mapping configuration for the brand, visible only to administrators"""
386
- id: SortOrder
386
+ id: AirbyteSortOrder
387
387
  """Unique identifier automatically assigned when the brand is created"""
388
- is_deleted: SortOrder
388
+ is_deleted: AirbyteSortOrder
389
389
  """Indicates whether the brand has been deleted"""
390
- logo: SortOrder
390
+ logo: AirbyteSortOrder
391
391
  """Brand logo image file represented as an Attachment object"""
392
- name: SortOrder
392
+ name: AirbyteSortOrder
393
393
  """The name of the brand"""
394
- signature_template: SortOrder
394
+ signature_template: AirbyteSortOrder
395
395
  """The signature template used for the brand"""
396
- subdomain: SortOrder
396
+ subdomain: AirbyteSortOrder
397
397
  """The subdomain associated with the brand"""
398
- ticket_form_ids: SortOrder
398
+ ticket_form_ids: AirbyteSortOrder
399
399
  """Array of ticket form IDs that are available for use by this brand"""
400
- updated_at: SortOrder
400
+ updated_at: AirbyteSortOrder
401
401
  """Timestamp when the brand was last updated"""
402
- url: SortOrder
402
+ url: AirbyteSortOrder
403
403
  """The API URL for accessing this brand resource"""
404
404
 
405
405
 
@@ -588,23 +588,23 @@ class GroupsStringFilter(TypedDict, total=False):
588
588
 
589
589
  class GroupsSortFilter(TypedDict, total=False):
590
590
  """Available fields for sorting groups search results."""
591
- created_at: SortOrder
591
+ created_at: AirbyteSortOrder
592
592
  """Timestamp indicating when the group was created"""
593
- default: SortOrder
593
+ default: AirbyteSortOrder
594
594
  """Indicates if the group is the default one for the account"""
595
- deleted: SortOrder
595
+ deleted: AirbyteSortOrder
596
596
  """Indicates whether the group has been deleted"""
597
- description: SortOrder
597
+ description: AirbyteSortOrder
598
598
  """The description of the group"""
599
- id: SortOrder
599
+ id: AirbyteSortOrder
600
600
  """Unique identifier automatically assigned when creating groups"""
601
- is_public: SortOrder
601
+ is_public: AirbyteSortOrder
602
602
  """Indicates if the group is public (true) or private (false)"""
603
- name: SortOrder
603
+ name: AirbyteSortOrder
604
604
  """The name of the group"""
605
- updated_at: SortOrder
605
+ updated_at: AirbyteSortOrder
606
606
  """Timestamp indicating when the group was last updated"""
607
- url: SortOrder
607
+ url: AirbyteSortOrder
608
608
  """The API URL of the group"""
609
609
 
610
610
 
@@ -841,35 +841,35 @@ class OrganizationsStringFilter(TypedDict, total=False):
841
841
 
842
842
  class OrganizationsSortFilter(TypedDict, total=False):
843
843
  """Available fields for sorting organizations search results."""
844
- created_at: SortOrder
844
+ created_at: AirbyteSortOrder
845
845
  """Timestamp when the organization was created"""
846
- deleted_at: SortOrder
846
+ deleted_at: AirbyteSortOrder
847
847
  """Timestamp when the organization was deleted"""
848
- details: SortOrder
848
+ details: AirbyteSortOrder
849
849
  """Details about the organization, such as the address"""
850
- domain_names: SortOrder
850
+ domain_names: AirbyteSortOrder
851
851
  """Array of domain names associated with this organization for automatic user assignment"""
852
- external_id: SortOrder
852
+ external_id: AirbyteSortOrder
853
853
  """Unique external identifier to associate the organization to an external record (case-insensitive)"""
854
- group_id: SortOrder
854
+ group_id: AirbyteSortOrder
855
855
  """ID of the group where new tickets from users in this organization are automatically assigned"""
856
- id: SortOrder
856
+ id: AirbyteSortOrder
857
857
  """Unique identifier automatically assigned when the organization is created"""
858
- name: SortOrder
858
+ name: AirbyteSortOrder
859
859
  """Unique name for the organization (mandatory field)"""
860
- notes: SortOrder
860
+ notes: AirbyteSortOrder
861
861
  """Notes about the organization"""
862
- organization_fields: SortOrder
862
+ organization_fields: AirbyteSortOrder
863
863
  """Key-value object for custom organization fields"""
864
- shared_comments: SortOrder
864
+ shared_comments: AirbyteSortOrder
865
865
  """Boolean indicating whether end users in this organization can comment on each other's tickets"""
866
- shared_tickets: SortOrder
866
+ shared_tickets: AirbyteSortOrder
867
867
  """Boolean indicating whether end users in this organization can see each other's tickets"""
868
- tags: SortOrder
868
+ tags: AirbyteSortOrder
869
869
  """Array of tags associated with the organization"""
870
- updated_at: SortOrder
870
+ updated_at: AirbyteSortOrder
871
871
  """Timestamp of the last update to the organization"""
872
- url: SortOrder
872
+ url: AirbyteSortOrder
873
873
  """The API URL of this organization"""
874
874
 
875
875
 
@@ -1082,29 +1082,29 @@ class SatisfactionRatingsStringFilter(TypedDict, total=False):
1082
1082
 
1083
1083
  class SatisfactionRatingsSortFilter(TypedDict, total=False):
1084
1084
  """Available fields for sorting satisfaction_ratings search results."""
1085
- assignee_id: SortOrder
1085
+ assignee_id: AirbyteSortOrder
1086
1086
  """The identifier of the agent assigned to the ticket at the time the rating was submitted"""
1087
- comment: SortOrder
1087
+ comment: AirbyteSortOrder
1088
1088
  """Optional comment provided by the requester with the rating"""
1089
- created_at: SortOrder
1089
+ created_at: AirbyteSortOrder
1090
1090
  """Timestamp indicating when the satisfaction rating was created"""
1091
- group_id: SortOrder
1091
+ group_id: AirbyteSortOrder
1092
1092
  """The identifier of the group assigned to the ticket at the time the rating was submitted"""
1093
- id: SortOrder
1093
+ id: AirbyteSortOrder
1094
1094
  """Unique identifier for the satisfaction rating, automatically assigned upon creation"""
1095
- reason: SortOrder
1095
+ reason: AirbyteSortOrder
1096
1096
  """Free-text reason for a bad rating provided by the requester in a follow-up question"""
1097
- reason_id: SortOrder
1097
+ reason_id: AirbyteSortOrder
1098
1098
  """Identifier for the predefined reason given for a negative rating, only applicable when score is '..."""
1099
- requester_id: SortOrder
1099
+ requester_id: AirbyteSortOrder
1100
1100
  """The identifier of the ticket requester who submitted the satisfaction rating"""
1101
- score: SortOrder
1101
+ score: AirbyteSortOrder
1102
1102
  """The satisfaction rating value: 'offered', 'unoffered', 'good', or 'bad'"""
1103
- ticket_id: SortOrder
1103
+ ticket_id: AirbyteSortOrder
1104
1104
  """The identifier of the ticket being rated"""
1105
- updated_at: SortOrder
1105
+ updated_at: AirbyteSortOrder
1106
1106
  """Timestamp indicating when the satisfaction rating was last updated"""
1107
- url: SortOrder
1107
+ url: AirbyteSortOrder
1108
1108
  """The API URL of this satisfaction rating resource"""
1109
1109
 
1110
1110
 
@@ -1237,9 +1237,9 @@ class TagsStringFilter(TypedDict, total=False):
1237
1237
 
1238
1238
  class TagsSortFilter(TypedDict, total=False):
1239
1239
  """Available fields for sorting tags search results."""
1240
- count: SortOrder
1240
+ count: AirbyteSortOrder
1241
1241
  """The number of times this tag has been used across resources"""
1242
- name: SortOrder
1242
+ name: AirbyteSortOrder
1243
1243
  """The tag name string used to label and categorize resources"""
1244
1244
 
1245
1245
 
@@ -1420,21 +1420,21 @@ class TicketAuditsStringFilter(TypedDict, total=False):
1420
1420
 
1421
1421
  class TicketAuditsSortFilter(TypedDict, total=False):
1422
1422
  """Available fields for sorting ticket_audits search results."""
1423
- attachments: SortOrder
1423
+ attachments: AirbyteSortOrder
1424
1424
  """Files or documents attached to the audit"""
1425
- author_id: SortOrder
1425
+ author_id: AirbyteSortOrder
1426
1426
  """The unique identifier of the user who created the audit"""
1427
- created_at: SortOrder
1427
+ created_at: AirbyteSortOrder
1428
1428
  """Timestamp indicating when the audit was created"""
1429
- events: SortOrder
1429
+ events: AirbyteSortOrder
1430
1430
  """Array of events that occurred in this audit, such as field changes, comments, or tag updates"""
1431
- id: SortOrder
1431
+ id: AirbyteSortOrder
1432
1432
  """Unique identifier for the audit record, automatically assigned when the audit is created"""
1433
- metadata: SortOrder
1433
+ metadata: AirbyteSortOrder
1434
1434
  """Custom and system data associated with the audit"""
1435
- ticket_id: SortOrder
1435
+ ticket_id: AirbyteSortOrder
1436
1436
  """The unique identifier of the ticket associated with this audit"""
1437
- via: SortOrder
1437
+ via: AirbyteSortOrder
1438
1438
  """Describes how the audit was created, providing context about the creation source"""
1439
1439
 
1440
1440
 
@@ -1687,39 +1687,39 @@ class TicketCommentsStringFilter(TypedDict, total=False):
1687
1687
 
1688
1688
  class TicketCommentsSortFilter(TypedDict, total=False):
1689
1689
  """Available fields for sorting ticket_comments search results."""
1690
- attachments: SortOrder
1690
+ attachments: AirbyteSortOrder
1691
1691
  """List of files or media attached to the comment"""
1692
- audit_id: SortOrder
1692
+ audit_id: AirbyteSortOrder
1693
1693
  """Identifier of the audit record associated with this comment event"""
1694
- author_id: SortOrder
1694
+ author_id: AirbyteSortOrder
1695
1695
  """Identifier of the user who created the comment"""
1696
- body: SortOrder
1696
+ body: AirbyteSortOrder
1697
1697
  """Content of the comment in its original format"""
1698
- created_at: SortOrder
1698
+ created_at: AirbyteSortOrder
1699
1699
  """Timestamp when the comment was created"""
1700
- event_type: SortOrder
1700
+ event_type: AirbyteSortOrder
1701
1701
  """Specific classification of the event within the ticket event stream"""
1702
- html_body: SortOrder
1702
+ html_body: AirbyteSortOrder
1703
1703
  """HTML-formatted content of the comment"""
1704
- id: SortOrder
1704
+ id: AirbyteSortOrder
1705
1705
  """Unique identifier for the comment event"""
1706
- metadata: SortOrder
1706
+ metadata: AirbyteSortOrder
1707
1707
  """Additional structured information about the comment not covered by standard fields"""
1708
- plain_body: SortOrder
1708
+ plain_body: AirbyteSortOrder
1709
1709
  """Plain text content of the comment without formatting"""
1710
- public: SortOrder
1710
+ public: AirbyteSortOrder
1711
1711
  """Boolean indicating whether the comment is visible to end users or is an internal note"""
1712
- ticket_id: SortOrder
1712
+ ticket_id: AirbyteSortOrder
1713
1713
  """Identifier of the ticket to which this comment belongs"""
1714
- timestamp: SortOrder
1714
+ timestamp: AirbyteSortOrder
1715
1715
  """Timestamp of when the event occurred in the incremental export stream"""
1716
- type: SortOrder
1716
+ type: AirbyteSortOrder
1717
1717
  """Type of event, typically indicating this is a comment event"""
1718
- uploads: SortOrder
1718
+ uploads: AirbyteSortOrder
1719
1719
  """Array of upload tokens or identifiers for files being attached to the comment"""
1720
- via: SortOrder
1720
+ via: AirbyteSortOrder
1721
1721
  """Channel or method through which the comment was submitted"""
1722
- via_reference_id: SortOrder
1722
+ via_reference_id: AirbyteSortOrder
1723
1723
  """Reference identifier for the channel through which the comment was created"""
1724
1724
 
1725
1725
 
@@ -2052,59 +2052,59 @@ class TicketFieldsStringFilter(TypedDict, total=False):
2052
2052
 
2053
2053
  class TicketFieldsSortFilter(TypedDict, total=False):
2054
2054
  """Available fields for sorting ticket_fields search results."""
2055
- active: SortOrder
2055
+ active: AirbyteSortOrder
2056
2056
  """Whether this field is currently available for use"""
2057
- agent_description: SortOrder
2057
+ agent_description: AirbyteSortOrder
2058
2058
  """A description of the ticket field that only agents can see"""
2059
- collapsed_for_agents: SortOrder
2059
+ collapsed_for_agents: AirbyteSortOrder
2060
2060
  """If true, the field is shown to agents by default; if false, it is hidden alongside infrequently u..."""
2061
- created_at: SortOrder
2061
+ created_at: AirbyteSortOrder
2062
2062
  """Timestamp when the custom ticket field was created"""
2063
- custom_field_options: SortOrder
2063
+ custom_field_options: AirbyteSortOrder
2064
2064
  """Array of option objects for custom ticket fields of type multiselect or tagger, containing name a..."""
2065
- custom_statuses: SortOrder
2065
+ custom_statuses: AirbyteSortOrder
2066
2066
  """List of customized ticket statuses, only present for system ticket fields of type custom_status"""
2067
- description: SortOrder
2067
+ description: AirbyteSortOrder
2068
2068
  """Text describing the purpose of the ticket field to users"""
2069
- editable_in_portal: SortOrder
2069
+ editable_in_portal: AirbyteSortOrder
2070
2070
  """Whether this field is editable by end users in Help Center"""
2071
- id: SortOrder
2071
+ id: AirbyteSortOrder
2072
2072
  """Unique identifier for the ticket field, automatically assigned when created"""
2073
- key: SortOrder
2073
+ key: AirbyteSortOrder
2074
2074
  """Internal identifier or reference key for the field"""
2075
- position: SortOrder
2075
+ position: AirbyteSortOrder
2076
2076
  """The relative position of the ticket field on a ticket, controlling display order"""
2077
- raw_description: SortOrder
2077
+ raw_description: AirbyteSortOrder
2078
2078
  """The dynamic content placeholder if present, or the description value if not"""
2079
- raw_title: SortOrder
2079
+ raw_title: AirbyteSortOrder
2080
2080
  """The dynamic content placeholder if present, or the title value if not"""
2081
- raw_title_in_portal: SortOrder
2081
+ raw_title_in_portal: AirbyteSortOrder
2082
2082
  """The dynamic content placeholder if present, or the title_in_portal value if not"""
2083
- regexp_for_validation: SortOrder
2083
+ regexp_for_validation: AirbyteSortOrder
2084
2084
  """For regexp fields only, the validation pattern for a field value to be deemed valid"""
2085
- removable: SortOrder
2085
+ removable: AirbyteSortOrder
2086
2086
  """If false, this field is a system field that must be present on all tickets"""
2087
- required: SortOrder
2087
+ required: AirbyteSortOrder
2088
2088
  """If true, agents must enter a value in the field to change the ticket status to solved"""
2089
- required_in_portal: SortOrder
2089
+ required_in_portal: AirbyteSortOrder
2090
2090
  """If true, end users must enter a value in the field to create a request"""
2091
- sub_type_id: SortOrder
2091
+ sub_type_id: AirbyteSortOrder
2092
2092
  """For system ticket fields of type priority and status, controlling available options"""
2093
- system_field_options: SortOrder
2093
+ system_field_options: AirbyteSortOrder
2094
2094
  """Array of options for system ticket fields of type tickettype, priority, or status"""
2095
- tag: SortOrder
2095
+ tag: AirbyteSortOrder
2096
2096
  """For checkbox fields only, a tag added to tickets when the checkbox field is selected"""
2097
- title: SortOrder
2097
+ title: AirbyteSortOrder
2098
2098
  """The title of the ticket field displayed to agents"""
2099
- title_in_portal: SortOrder
2099
+ title_in_portal: AirbyteSortOrder
2100
2100
  """The title of the ticket field displayed to end users in Help Center"""
2101
- type: SortOrder
2101
+ type: AirbyteSortOrder
2102
2102
  """Field type such as text, textarea, checkbox, date, integer, decimal, regexp, multiselect, tagger,..."""
2103
- updated_at: SortOrder
2103
+ updated_at: AirbyteSortOrder
2104
2104
  """Timestamp when the custom ticket field was last updated"""
2105
- url: SortOrder
2105
+ url: AirbyteSortOrder
2106
2106
  """The API URL for this ticket field resource"""
2107
- visible_in_portal: SortOrder
2107
+ visible_in_portal: AirbyteSortOrder
2108
2108
  """Whether this field is visible to end users in Help Center"""
2109
2109
 
2110
2110
 
@@ -2357,39 +2357,39 @@ class TicketFormsStringFilter(TypedDict, total=False):
2357
2357
 
2358
2358
  class TicketFormsSortFilter(TypedDict, total=False):
2359
2359
  """Available fields for sorting ticket_forms search results."""
2360
- active: SortOrder
2360
+ active: AirbyteSortOrder
2361
2361
  """Indicates if the form is set as active"""
2362
- agent_conditions: SortOrder
2362
+ agent_conditions: AirbyteSortOrder
2363
2363
  """Array of condition sets for agent workspaces"""
2364
- created_at: SortOrder
2364
+ created_at: AirbyteSortOrder
2365
2365
  """Timestamp when the ticket form was created"""
2366
- default: SortOrder
2366
+ default: AirbyteSortOrder
2367
2367
  """Indicates if the form is the default form for this account"""
2368
- display_name: SortOrder
2368
+ display_name: AirbyteSortOrder
2369
2369
  """The name of the form that is displayed to an end user"""
2370
- end_user_conditions: SortOrder
2370
+ end_user_conditions: AirbyteSortOrder
2371
2371
  """Array of condition sets for end user products"""
2372
- end_user_visible: SortOrder
2372
+ end_user_visible: AirbyteSortOrder
2373
2373
  """Indicates if the form is visible to the end user"""
2374
- id: SortOrder
2374
+ id: AirbyteSortOrder
2375
2375
  """Unique identifier for the ticket form, automatically assigned when creating the form"""
2376
- in_all_brands: SortOrder
2376
+ in_all_brands: AirbyteSortOrder
2377
2377
  """Indicates if the form is available for use in all brands on this account"""
2378
- name: SortOrder
2378
+ name: AirbyteSortOrder
2379
2379
  """The name of the ticket form"""
2380
- position: SortOrder
2380
+ position: AirbyteSortOrder
2381
2381
  """The position of this form among other forms in the account, such as in a dropdown"""
2382
- raw_display_name: SortOrder
2382
+ raw_display_name: AirbyteSortOrder
2383
2383
  """The dynamic content placeholder if present, or the display_name value if not"""
2384
- raw_name: SortOrder
2384
+ raw_name: AirbyteSortOrder
2385
2385
  """The dynamic content placeholder if present, or the name value if not"""
2386
- restricted_brand_ids: SortOrder
2386
+ restricted_brand_ids: AirbyteSortOrder
2387
2387
  """IDs of all brands that this ticket form is restricted to"""
2388
- ticket_field_ids: SortOrder
2388
+ ticket_field_ids: AirbyteSortOrder
2389
2389
  """IDs of all ticket fields included in this ticket form, ordered to determine field display sequenc..."""
2390
- updated_at: SortOrder
2390
+ updated_at: AirbyteSortOrder
2391
2391
  """Timestamp of the last update to the ticket form"""
2392
- url: SortOrder
2392
+ url: AirbyteSortOrder
2393
2393
  """URL of the ticket form"""
2394
2394
 
2395
2395
 
@@ -2746,65 +2746,65 @@ class TicketMetricsStringFilter(TypedDict, total=False):
2746
2746
 
2747
2747
  class TicketMetricsSortFilter(TypedDict, total=False):
2748
2748
  """Available fields for sorting ticket_metrics search results."""
2749
- agent_wait_time_in_minutes: SortOrder
2749
+ agent_wait_time_in_minutes: AirbyteSortOrder
2750
2750
  """Number of minutes the agent spent waiting during calendar and business hours"""
2751
- assigned_at: SortOrder
2751
+ assigned_at: AirbyteSortOrder
2752
2752
  """Timestamp when the ticket was assigned"""
2753
- assignee_stations: SortOrder
2753
+ assignee_stations: AirbyteSortOrder
2754
2754
  """Number of assignees the ticket had"""
2755
- assignee_updated_at: SortOrder
2755
+ assignee_updated_at: AirbyteSortOrder
2756
2756
  """Timestamp when the assignee last updated the ticket"""
2757
- created_at: SortOrder
2757
+ created_at: AirbyteSortOrder
2758
2758
  """Timestamp when the metric record was created"""
2759
- custom_status_updated_at: SortOrder
2759
+ custom_status_updated_at: AirbyteSortOrder
2760
2760
  """Timestamp when the ticket's custom status was last updated"""
2761
- first_resolution_time_in_minutes: SortOrder
2761
+ first_resolution_time_in_minutes: AirbyteSortOrder
2762
2762
  """Number of minutes to the first resolution time during calendar and business hours"""
2763
- full_resolution_time_in_minutes: SortOrder
2763
+ full_resolution_time_in_minutes: AirbyteSortOrder
2764
2764
  """Number of minutes to the full resolution during calendar and business hours"""
2765
- generated_timestamp: SortOrder
2765
+ generated_timestamp: AirbyteSortOrder
2766
2766
  """Timestamp of when record was last updated"""
2767
- group_stations: SortOrder
2767
+ group_stations: AirbyteSortOrder
2768
2768
  """Number of groups the ticket passed through"""
2769
- id: SortOrder
2769
+ id: AirbyteSortOrder
2770
2770
  """Unique identifier for the ticket metric record"""
2771
- initially_assigned_at: SortOrder
2771
+ initially_assigned_at: AirbyteSortOrder
2772
2772
  """Timestamp when the ticket was initially assigned"""
2773
- instance_id: SortOrder
2773
+ instance_id: AirbyteSortOrder
2774
2774
  """ID of the Zendesk instance associated with the ticket"""
2775
- latest_comment_added_at: SortOrder
2775
+ latest_comment_added_at: AirbyteSortOrder
2776
2776
  """Timestamp when the latest comment was added"""
2777
- metric: SortOrder
2777
+ metric: AirbyteSortOrder
2778
2778
  """Ticket metrics data"""
2779
- on_hold_time_in_minutes: SortOrder
2779
+ on_hold_time_in_minutes: AirbyteSortOrder
2780
2780
  """Number of minutes on hold"""
2781
- reopens: SortOrder
2781
+ reopens: AirbyteSortOrder
2782
2782
  """Total number of times the ticket was reopened"""
2783
- replies: SortOrder
2783
+ replies: AirbyteSortOrder
2784
2784
  """The number of public replies added to a ticket by an agent"""
2785
- reply_time_in_minutes: SortOrder
2785
+ reply_time_in_minutes: AirbyteSortOrder
2786
2786
  """Number of minutes to the first reply during calendar and business hours"""
2787
- reply_time_in_seconds: SortOrder
2787
+ reply_time_in_seconds: AirbyteSortOrder
2788
2788
  """Number of seconds to the first reply during calendar hours, only available for Messaging tickets"""
2789
- requester_updated_at: SortOrder
2789
+ requester_updated_at: AirbyteSortOrder
2790
2790
  """Timestamp when the requester last updated the ticket"""
2791
- requester_wait_time_in_minutes: SortOrder
2791
+ requester_wait_time_in_minutes: AirbyteSortOrder
2792
2792
  """Number of minutes the requester spent waiting during calendar and business hours"""
2793
- solved_at: SortOrder
2793
+ solved_at: AirbyteSortOrder
2794
2794
  """Timestamp when the ticket was solved"""
2795
- status: SortOrder
2795
+ status: AirbyteSortOrder
2796
2796
  """The current status of the ticket (open, pending, solved, etc.)."""
2797
- status_updated_at: SortOrder
2797
+ status_updated_at: AirbyteSortOrder
2798
2798
  """Timestamp when the status of the ticket was last updated"""
2799
- ticket_id: SortOrder
2799
+ ticket_id: AirbyteSortOrder
2800
2800
  """Identifier of the associated ticket"""
2801
- time: SortOrder
2801
+ time: AirbyteSortOrder
2802
2802
  """Time related to the ticket"""
2803
- type: SortOrder
2803
+ type: AirbyteSortOrder
2804
2804
  """Type of ticket"""
2805
- updated_at: SortOrder
2805
+ updated_at: AirbyteSortOrder
2806
2806
  """Timestamp when the metric record was last updated"""
2807
- url: SortOrder
2807
+ url: AirbyteSortOrder
2808
2808
  """The API url of the ticket metric"""
2809
2809
 
2810
2810
 
@@ -3241,85 +3241,85 @@ class TicketsStringFilter(TypedDict, total=False):
3241
3241
 
3242
3242
  class TicketsSortFilter(TypedDict, total=False):
3243
3243
  """Available fields for sorting tickets search results."""
3244
- allow_attachments: SortOrder
3244
+ allow_attachments: AirbyteSortOrder
3245
3245
  """Boolean indicating whether attachments are allowed on the ticket"""
3246
- allow_channelback: SortOrder
3246
+ allow_channelback: AirbyteSortOrder
3247
3247
  """Boolean indicating whether agents can reply to the ticket through the original channel"""
3248
- assignee_id: SortOrder
3248
+ assignee_id: AirbyteSortOrder
3249
3249
  """Unique identifier of the agent currently assigned to the ticket"""
3250
- brand_id: SortOrder
3250
+ brand_id: AirbyteSortOrder
3251
3251
  """Unique identifier of the brand associated with the ticket in multi-brand accounts"""
3252
- collaborator_ids: SortOrder
3252
+ collaborator_ids: AirbyteSortOrder
3253
3253
  """Array of user identifiers who are collaborating on the ticket"""
3254
- created_at: SortOrder
3254
+ created_at: AirbyteSortOrder
3255
3255
  """Timestamp indicating when the ticket was created"""
3256
- custom_fields: SortOrder
3256
+ custom_fields: AirbyteSortOrder
3257
3257
  """Array of custom field values specific to the account's ticket configuration"""
3258
- custom_status_id: SortOrder
3258
+ custom_status_id: AirbyteSortOrder
3259
3259
  """Unique identifier of the custom status applied to the ticket"""
3260
- deleted_ticket_form_id: SortOrder
3260
+ deleted_ticket_form_id: AirbyteSortOrder
3261
3261
  """Unique identifier of the ticket form if it was deleted after the ticket was created"""
3262
- description: SortOrder
3262
+ description: AirbyteSortOrder
3263
3263
  """Initial description or content of the ticket when it was created"""
3264
- due_at: SortOrder
3264
+ due_at: AirbyteSortOrder
3265
3265
  """Timestamp indicating when the ticket is due for completion or resolution"""
3266
- email_cc_ids: SortOrder
3266
+ email_cc_ids: AirbyteSortOrder
3267
3267
  """Array of user identifiers who are CC'd on ticket email notifications"""
3268
- external_id: SortOrder
3268
+ external_id: AirbyteSortOrder
3269
3269
  """External identifier for the ticket, used for integrations with other systems"""
3270
- fields: SortOrder
3270
+ fields: AirbyteSortOrder
3271
3271
  """Array of ticket field values including both system and custom fields"""
3272
- follower_ids: SortOrder
3272
+ follower_ids: AirbyteSortOrder
3273
3273
  """Array of user identifiers who are following the ticket for updates"""
3274
- followup_ids: SortOrder
3274
+ followup_ids: AirbyteSortOrder
3275
3275
  """Array of identifiers for follow-up tickets related to this ticket"""
3276
- forum_topic_id: SortOrder
3276
+ forum_topic_id: AirbyteSortOrder
3277
3277
  """Unique identifier linking the ticket to a forum topic if applicable"""
3278
- from_messaging_channel: SortOrder
3278
+ from_messaging_channel: AirbyteSortOrder
3279
3279
  """Boolean indicating whether the ticket originated from a messaging channel"""
3280
- generated_timestamp: SortOrder
3280
+ generated_timestamp: AirbyteSortOrder
3281
3281
  """Timestamp updated for all ticket updates including system changes, used for incremental export co..."""
3282
- group_id: SortOrder
3282
+ group_id: AirbyteSortOrder
3283
3283
  """Unique identifier of the agent group assigned to handle the ticket"""
3284
- has_incidents: SortOrder
3284
+ has_incidents: AirbyteSortOrder
3285
3285
  """Boolean indicating whether this problem ticket has related incident tickets"""
3286
- id: SortOrder
3286
+ id: AirbyteSortOrder
3287
3287
  """Unique identifier for the ticket"""
3288
- is_public: SortOrder
3288
+ is_public: AirbyteSortOrder
3289
3289
  """Boolean indicating whether the ticket is publicly visible"""
3290
- organization_id: SortOrder
3290
+ organization_id: AirbyteSortOrder
3291
3291
  """Unique identifier of the organization associated with the ticket"""
3292
- priority: SortOrder
3292
+ priority: AirbyteSortOrder
3293
3293
  """Priority level assigned to the ticket (e.g., urgent, high, normal, low)"""
3294
- problem_id: SortOrder
3294
+ problem_id: AirbyteSortOrder
3295
3295
  """Unique identifier of the problem ticket if this is an incident ticket"""
3296
- raw_subject: SortOrder
3296
+ raw_subject: AirbyteSortOrder
3297
3297
  """Original unprocessed subject line before any system modifications"""
3298
- recipient: SortOrder
3298
+ recipient: AirbyteSortOrder
3299
3299
  """Email address or identifier of the ticket recipient"""
3300
- requester_id: SortOrder
3300
+ requester_id: AirbyteSortOrder
3301
3301
  """Unique identifier of the user who requested or created the ticket"""
3302
- satisfaction_rating: SortOrder
3302
+ satisfaction_rating: AirbyteSortOrder
3303
3303
  """Object containing customer satisfaction rating data for the ticket"""
3304
- sharing_agreement_ids: SortOrder
3304
+ sharing_agreement_ids: AirbyteSortOrder
3305
3305
  """Array of sharing agreement identifiers if the ticket is shared across Zendesk instances"""
3306
- status: SortOrder
3306
+ status: AirbyteSortOrder
3307
3307
  """Current status of the ticket (e.g., new, open, pending, solved, closed)"""
3308
- subject: SortOrder
3308
+ subject: AirbyteSortOrder
3309
3309
  """Subject line of the ticket describing the issue or request"""
3310
- submitter_id: SortOrder
3310
+ submitter_id: AirbyteSortOrder
3311
3311
  """Unique identifier of the user who submitted the ticket on behalf of the requester"""
3312
- tags: SortOrder
3312
+ tags: AirbyteSortOrder
3313
3313
  """Array of tags applied to the ticket for categorization and filtering"""
3314
- ticket_form_id: SortOrder
3314
+ ticket_form_id: AirbyteSortOrder
3315
3315
  """Unique identifier of the ticket form used when creating the ticket"""
3316
- type: SortOrder
3316
+ type: AirbyteSortOrder
3317
3317
  """Type of ticket (e.g., problem, incident, question, task)"""
3318
- updated_at: SortOrder
3318
+ updated_at: AirbyteSortOrder
3319
3319
  """Timestamp indicating when the ticket was last updated with a ticket event"""
3320
- url: SortOrder
3320
+ url: AirbyteSortOrder
3321
3321
  """API URL to access the full ticket resource"""
3322
- via: SortOrder
3322
+ via: AirbyteSortOrder
3323
3323
  """Object describing the channel and method through which the ticket was created"""
3324
3324
 
3325
3325
 
@@ -3748,83 +3748,83 @@ class UsersStringFilter(TypedDict, total=False):
3748
3748
 
3749
3749
  class UsersSortFilter(TypedDict, total=False):
3750
3750
  """Available fields for sorting users search results."""
3751
- active: SortOrder
3751
+ active: AirbyteSortOrder
3752
3752
  """Indicates if the user account is currently active"""
3753
- alias: SortOrder
3753
+ alias: AirbyteSortOrder
3754
3754
  """Alternative name or nickname for the user"""
3755
- chat_only: SortOrder
3755
+ chat_only: AirbyteSortOrder
3756
3756
  """Indicates if the user can only interact via chat"""
3757
- created_at: SortOrder
3757
+ created_at: AirbyteSortOrder
3758
3758
  """Timestamp indicating when the user was created"""
3759
- custom_role_id: SortOrder
3759
+ custom_role_id: AirbyteSortOrder
3760
3760
  """Identifier for a custom role assigned to the user"""
3761
- default_group_id: SortOrder
3761
+ default_group_id: AirbyteSortOrder
3762
3762
  """Identifier of the default group assigned to the user"""
3763
- details: SortOrder
3763
+ details: AirbyteSortOrder
3764
3764
  """Additional descriptive information about the user"""
3765
- email: SortOrder
3765
+ email: AirbyteSortOrder
3766
3766
  """Email address of the user"""
3767
- external_id: SortOrder
3767
+ external_id: AirbyteSortOrder
3768
3768
  """External system identifier for the user, used for integrations"""
3769
- iana_time_zone: SortOrder
3769
+ iana_time_zone: AirbyteSortOrder
3770
3770
  """IANA standard time zone identifier for the user"""
3771
- id: SortOrder
3771
+ id: AirbyteSortOrder
3772
3772
  """Unique identifier for the user"""
3773
- last_login_at: SortOrder
3773
+ last_login_at: AirbyteSortOrder
3774
3774
  """Timestamp of the user's most recent login"""
3775
- locale: SortOrder
3775
+ locale: AirbyteSortOrder
3776
3776
  """Locale setting determining language and regional format preferences"""
3777
- locale_id: SortOrder
3777
+ locale_id: AirbyteSortOrder
3778
3778
  """Identifier for the user's locale preference"""
3779
- moderator: SortOrder
3779
+ moderator: AirbyteSortOrder
3780
3780
  """Indicates if the user has moderator privileges"""
3781
- name: SortOrder
3781
+ name: AirbyteSortOrder
3782
3782
  """Display name of the user"""
3783
- notes: SortOrder
3783
+ notes: AirbyteSortOrder
3784
3784
  """Internal notes about the user, visible only to agents"""
3785
- only_private_comments: SortOrder
3785
+ only_private_comments: AirbyteSortOrder
3786
3786
  """Indicates if the user can only make private comments on tickets"""
3787
- organization_id: SortOrder
3787
+ organization_id: AirbyteSortOrder
3788
3788
  """Identifier of the organization the user belongs to"""
3789
- permanently_deleted: SortOrder
3789
+ permanently_deleted: AirbyteSortOrder
3790
3790
  """Indicates if the user has been permanently deleted from the system"""
3791
- phone: SortOrder
3791
+ phone: AirbyteSortOrder
3792
3792
  """Phone number of the user"""
3793
- photo: SortOrder
3793
+ photo: AirbyteSortOrder
3794
3794
  """Profile photo or avatar of the user"""
3795
- report_csv: SortOrder
3795
+ report_csv: AirbyteSortOrder
3796
3796
  """Indicates if the user receives reports in CSV format"""
3797
- restricted_agent: SortOrder
3797
+ restricted_agent: AirbyteSortOrder
3798
3798
  """Indicates if the agent has restricted access permissions"""
3799
- role: SortOrder
3799
+ role: AirbyteSortOrder
3800
3800
  """Role assigned to the user defining their permissions level"""
3801
- role_type: SortOrder
3801
+ role_type: AirbyteSortOrder
3802
3802
  """Type classification of the user's role"""
3803
- shared: SortOrder
3803
+ shared: AirbyteSortOrder
3804
3804
  """Indicates if the user is shared across multiple accounts"""
3805
- shared_agent: SortOrder
3805
+ shared_agent: AirbyteSortOrder
3806
3806
  """Indicates if the user is a shared agent across multiple brands or accounts"""
3807
- shared_phone_number: SortOrder
3807
+ shared_phone_number: AirbyteSortOrder
3808
3808
  """Indicates if the phone number is shared with other users"""
3809
- signature: SortOrder
3809
+ signature: AirbyteSortOrder
3810
3810
  """Email signature text for the user"""
3811
- suspended: SortOrder
3811
+ suspended: AirbyteSortOrder
3812
3812
  """Indicates if the user account is suspended"""
3813
- tags: SortOrder
3813
+ tags: AirbyteSortOrder
3814
3814
  """Labels or tags associated with the user for categorization"""
3815
- ticket_restriction: SortOrder
3815
+ ticket_restriction: AirbyteSortOrder
3816
3816
  """Defines which tickets the user can access based on restrictions"""
3817
- time_zone: SortOrder
3817
+ time_zone: AirbyteSortOrder
3818
3818
  """Time zone setting for the user"""
3819
- two_factor_auth_enabled: SortOrder
3819
+ two_factor_auth_enabled: AirbyteSortOrder
3820
3820
  """Indicates if two-factor authentication is enabled for the user"""
3821
- updated_at: SortOrder
3821
+ updated_at: AirbyteSortOrder
3822
3822
  """Timestamp indicating when the user was last updated"""
3823
- url: SortOrder
3823
+ url: AirbyteSortOrder
3824
3824
  """API endpoint URL for accessing the user's detailed information"""
3825
- user_fields: SortOrder
3825
+ user_fields: AirbyteSortOrder
3826
3826
  """Custom field values specific to the user, stored as key-value pairs"""
3827
- verified: SortOrder
3827
+ verified: AirbyteSortOrder
3828
3828
  """Indicates if the user's identity has been verified"""
3829
3829
 
3830
3830
 
@@ -3924,8 +3924,8 @@ class UsersSearchQuery(TypedDict, total=False):
3924
3924
 
3925
3925
  # ===== SEARCH PARAMS =====
3926
3926
 
3927
- class SearchParams(TypedDict, total=False):
3928
- """Parameters for search operations (generic, use entity-specific query types for better type hints)."""
3927
+ class AirbyteSearchParams(TypedDict, total=False):
3928
+ """Parameters for Airbyte cache search operations (generic, use entity-specific query types for better type hints)."""
3929
3929
  query: dict[str, Any]
3930
3930
  limit: int
3931
3931
  cursor: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-zendesk-support
3
- Version: 0.18.49
3
+ Version: 0.18.50
4
4
  Summary: Airbyte Zendesk-Support Connector for AI platforms
5
5
  Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
6
  Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
@@ -140,6 +140,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
140
140
 
141
141
  ## Version information
142
142
 
143
- - **Package version:** 0.18.49
143
+ - **Package version:** 0.18.50
144
144
  - **Connector version:** 0.1.6
145
- - **Generated with Connector SDK commit SHA:** 49673b7bd7003c15994897987408c7722319c739
145
+ - **Generated with Connector SDK commit SHA:** a50c8f71ed01cb9fd029c6c72d7523dbe2d5cec7
@@ -1,8 +1,8 @@
1
- airbyte_agent_zendesk_support/__init__.py,sha256=0e4FcHQE2I3s8bjZVlouXg-Pg_ffO-sfGH9CwfSFnNM,9395
2
- airbyte_agent_zendesk_support/connector.py,sha256=aehq1oGMDhDqzZJoTFRP0SKh-Fhlx1viHsS4EqKf75U,109925
1
+ airbyte_agent_zendesk_support/__init__.py,sha256=RRAGu8AUU7OjMyGJvktoZvll1v7qxgw25mzqjBdODy4,9451
2
+ airbyte_agent_zendesk_support/connector.py,sha256=42ZIYYul_MxTiXzZrUQi5co5_5iOd18jLr3x9jOJ0DY,110114
3
3
  airbyte_agent_zendesk_support/connector_model.py,sha256=OoqtxX4jcSS6Ju8ggGjKovAiKHY7Dnf7sQ12GFaNNHo,241345
4
- airbyte_agent_zendesk_support/models.py,sha256=ldQfg4aPObaf33Qd9oMJ1v6cuqD7uAS0bAgKd6IelxY,63318
5
- airbyte_agent_zendesk_support/types.py,sha256=AN3CwUDMOsdDDewzRI1ZNsiSNvLiulBqJV4mmMKDQN8,161759
4
+ airbyte_agent_zendesk_support/models.py,sha256=-p6suLfKq-AMXzu1-LYmXGn2_F7ukTLfhk1pnKVNm3g,63437
5
+ airbyte_agent_zendesk_support/types.py,sha256=iEXmyDWv0u0dredqh5tKuWSqbO-na8sBZRyuD0WzemI,163411
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
8
  airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
@@ -52,6 +52,6 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py,sha2
52
52
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
53
53
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
54
54
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
55
- airbyte_agent_zendesk_support-0.18.49.dist-info/METADATA,sha256=u18lrz4fYXu8VJpdG7V89M5KguYo_SkTAyNWx3drwJk,6246
56
- airbyte_agent_zendesk_support-0.18.49.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
- airbyte_agent_zendesk_support-0.18.49.dist-info/RECORD,,
55
+ airbyte_agent_zendesk_support-0.18.50.dist-info/METADATA,sha256=5VJKGAUcYL6Hgna1f7eZ4GB3CsjTyoS-NKsaGAuAEqQ,6246
56
+ airbyte_agent_zendesk_support-0.18.50.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
+ airbyte_agent_zendesk_support-0.18.50.dist-info/RECORD,,