airbyte-agent-zendesk-support 0.18.35__py3-none-any.whl → 0.18.37__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.
@@ -1129,7 +1129,7 @@ class LocalExecutor:
1129
1129
  if not action:
1130
1130
  return response_data
1131
1131
 
1132
- is_array_action = action in (Action.LIST, Action.SEARCH)
1132
+ is_array_action = action in (Action.LIST, Action.API_SEARCH)
1133
1133
 
1134
1134
  try:
1135
1135
  # Parse and apply JSONPath expression
@@ -1259,7 +1259,7 @@ class LocalExecutor:
1259
1259
 
1260
1260
 
1261
1261
  class _StandardOperationHandler:
1262
- """Handler for standard REST operations (GET, LIST, CREATE, UPDATE, DELETE, SEARCH, AUTHORIZE)."""
1262
+ """Handler for standard REST operations (GET, LIST, CREATE, UPDATE, DELETE, API_SEARCH, AUTHORIZE)."""
1263
1263
 
1264
1264
  def __init__(self, context: _OperationContext):
1265
1265
  self.ctx = context
@@ -1272,7 +1272,7 @@ class _StandardOperationHandler:
1272
1272
  Action.CREATE,
1273
1273
  Action.UPDATE,
1274
1274
  Action.DELETE,
1275
- Action.SEARCH,
1275
+ Action.API_SEARCH,
1276
1276
  Action.AUTHORIZE,
1277
1277
  }
1278
1278
 
@@ -527,8 +527,8 @@ class ActionType(str, Enum):
527
527
  DELETE = "delete"
528
528
  """Delete a record"""
529
529
 
530
- SEARCH = "search"
531
- """Search for records matching specific query criteria"""
530
+ API_SEARCH = "api_search"
531
+ """Search for records matching specific query criteria via API"""
532
532
 
533
533
  DOWNLOAD = "download"
534
534
  """Download file content from a URL specified in the metadata response"""
@@ -546,7 +546,7 @@ class BodyType(str, Enum):
546
546
 
547
547
 
548
548
  # Type alias for use in Pydantic models
549
- ActionTypeLiteral = Literal["get", "list", "create", "update", "delete", "search", "download"]
549
+ ActionTypeLiteral = Literal["get", "list", "create", "update", "delete", "api_search", "download"]
550
550
 
551
551
 
552
552
  # =============================================================================
@@ -232,7 +232,7 @@ def generate_tool_description(model: ConnectorModelProtocol) -> str:
232
232
  # Response structure (brief, includes pagination hint)
233
233
  lines.append("")
234
234
  lines.append("RESPONSE STRUCTURE:")
235
- lines.append(" - list/search: {data: [...], meta: {has_more: bool}}")
235
+ lines.append(" - list/api_search: {data: [...], meta: {has_more: bool}}")
236
236
  lines.append(" - get: Returns entity directly (no envelope)")
237
237
  lines.append(" To paginate: pass starting_after=<last_id> while has_more is true")
238
238
 
@@ -61,7 +61,7 @@ class Operation(BaseModel):
61
61
  description=(
62
62
  "JSONPath expression to extract records from API response envelopes. "
63
63
  "When specified, executor extracts data at this path instead of returning "
64
- "full response. Returns array for list/search actions, single record for "
64
+ "full response. Returns array for list/api_search actions, single record for "
65
65
  "get/create/update/delete actions."
66
66
  ),
67
67
  )
@@ -22,7 +22,7 @@ class Action(str, Enum):
22
22
  UPDATE = "update"
23
23
  DELETE = "delete"
24
24
  LIST = "list"
25
- SEARCH = "search"
25
+ API_SEARCH = "api_search"
26
26
  DOWNLOAD = "download"
27
27
  AUTHORIZE = "authorize"
28
28
 
@@ -748,7 +748,7 @@ class ZendeskSupportConnector:
748
748
 
749
749
  original_doc = func.__doc__ or ""
750
750
  if original_doc.strip():
751
- func.__doc__ = f"{original_doc.strip()}\n\n{description}"
751
+ func.__doc__ = f"{original_doc.strip()}\n{description}"
752
752
  else:
753
753
  func.__doc__ = description
754
754
 
@@ -60,6 +60,7 @@ ZendeskSupportConnectorModel: ConnectorModel = ConnectorModel(
60
60
  ),
61
61
  },
62
62
  auth_mapping={'access_token': '${access_token}', 'refresh_token': '${refresh_token}'},
63
+ replication_auth_key_mapping={'access_token': 'access_token'},
63
64
  ),
64
65
  ),
65
66
  AuthOption(
@@ -83,6 +84,7 @@ ZendeskSupportConnectorModel: ConnectorModel = ConnectorModel(
83
84
  ),
84
85
  },
85
86
  auth_mapping={'username': '${email}/token', 'password': '${api_token}'},
87
+ replication_auth_key_mapping={'email': 'email', 'api_token': 'api_token'},
86
88
  ),
87
89
  ),
88
90
  ],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-zendesk-support
3
- Version: 0.18.35
3
+ Version: 0.18.37
4
4
  Summary: Airbyte Zendesk-Support Connector for AI platforms
5
5
  Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
6
  Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
@@ -137,6 +137,6 @@ For the service's official API docs, see the [Zendesk-Support API reference](htt
137
137
 
138
138
  ## Version information
139
139
 
140
- - **Package version:** 0.18.35
140
+ - **Package version:** 0.18.37
141
141
  - **Connector version:** 0.1.4
142
- - **Generated with Connector SDK commit SHA:** e80a226ece656f93854a8fd7a75aff502dadd2ae
142
+ - **Generated with Connector SDK commit SHA:** e6285db53fdc1d0dd43d30ef752a009226e47d48
@@ -1,6 +1,6 @@
1
1
  airbyte_agent_zendesk_support/__init__.py,sha256=MPz4HU055DRA3-1qgbGXh2E0YHmhcexQCFl-Tz21gm4,6227
2
- airbyte_agent_zendesk_support/connector.py,sha256=VYOTY7bEtXsvjyZSggoeS4lbSbGUsnVmtq3B2awkW5o,67058
3
- airbyte_agent_zendesk_support/connector_model.py,sha256=SAEWsLhW517Gc5eajkkYV1fQEGpsLlMALs2pTJ9BcPk,241131
2
+ airbyte_agent_zendesk_support/connector.py,sha256=bW99aXhfnVwjoTPXr0tJ2kjr6Prl_5AqMRlC4cgn2Dg,67056
3
+ airbyte_agent_zendesk_support/connector_model.py,sha256=M1phs0lN_6nxKgEF4enlA2znIMIDOMPkQiHY6BYszeE,241309
4
4
  airbyte_agent_zendesk_support/models.py,sha256=31bsOmf4nBdf8EXN3JpYzXW8mx6gv1xaZjeuEBgSzws,36399
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
@@ -10,18 +10,18 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py,sha256=vK
10
10
  airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py,sha256=nKrXfe-FAyvNMkW7AqGzxrp5wXdaHiqC0yIFJoIVwlY,34890
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=fWy9uwGUCjPO1KDYuGZo9nkrNU35P-dLcqi4K6UF4uA,21371
13
+ airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py,sha256=Ks4LR1lbJfBoJ-gN6byj7WtFGE1xMuerVTHXGKJcFKk,21391
14
14
  airbyte_agent_zendesk_support/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
15
- airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py,sha256=6v3YNdca8qe8qIz3m97GZ_ll_Ih3oUKMrqrdipPcpRk,10331
15
+ airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
16
16
  airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py,sha256=UWcO9fP-vZwcfkAuvlZahlOCTOwdNN860BIwe8X4jxw,6868
17
- airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py,sha256=TI-O7EyWAoppGc9G7kXHwceYWekt_sxXmXKxD1xC_7U,8285
17
+ airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py,sha256=0yY6mF03Dan5W9RNVHIEYlOijxa1j5T28TErjN_kUvQ,8293
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
21
  airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py,sha256=HoDgZuEgGHj78P-BGwUf6HGPVWynbdKjGOmjb-JDk58,7188
22
22
  airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
23
23
  airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py,sha256=YQ-qfT7PZh9izNFHHe7SAcETiZOKrWjTU-okVb0_VL8,7079
24
- airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py,sha256=IPe4q3FsN22zqCQfT836uQwhnnl3Y9g6o_ZBrZEjTuc,65271
24
+ airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py,sha256=ODbOLjlHjh_63T8XYGEJLuIz9e8QOZOGVdWFBsWWL44,65283
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
@@ -46,12 +46,12 @@ airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py,sha256=eN6Y
46
46
  airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py,sha256=4clYbIJNqfmFj7Te31ZqC3Rr5E2v33BeXyQx1wp3oj0,8076
47
47
  airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py,sha256=VFBOzIkLgYBR1XUTmyrPGqBkX8PP-zsG8avQcdJUqXs,3864
48
48
  airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py,sha256=LdoCuMLNdCj68O47qAL4v8xmqGz5tJgRiNZL5JnL9uw,3311
49
- airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py,sha256=zInMjx9iOEVZo-CCWw06Uk2SFg7HtUAXXpO5kFGUwNk,5825
49
+ airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py,sha256=HV_4mWya-kvSXOWVGPU1uD4GK3GIWneqETFqy9cnrpM,5829
50
50
  airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py,sha256=Xo6Z0-NCryMY4EDZgvg8ABSPglskpXANvm_iI34meV8,8588
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
53
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py,sha256=xUiasLicB818vfGVB108U7noVVDxz35g5vMomRKi0eE,1356
54
54
  airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py,sha256=lURbjZVZSWLluX3OTK_0D8xrc3HAzK9xixtMTOEWnQ4,5439
55
- airbyte_agent_zendesk_support-0.18.35.dist-info/METADATA,sha256=90ZXVzK1KS0xb9mS_v8STWg5-9zwUQt0BCd9p0rdkrU,6065
56
- airbyte_agent_zendesk_support-0.18.35.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
- airbyte_agent_zendesk_support-0.18.35.dist-info/RECORD,,
55
+ airbyte_agent_zendesk_support-0.18.37.dist-info/METADATA,sha256=1bG5jyFaXcqHlBSOYThVTZFxeAVYs8q6GPpwqeGZIdA,6065
56
+ airbyte_agent_zendesk_support-0.18.37.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
+ airbyte_agent_zendesk_support-0.18.37.dist-info/RECORD,,