airbyte-agent-amazon-ads 0.1.17__py3-none-any.whl → 0.1.24__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.
Files changed (21) hide show
  1. airbyte_agent_amazon_ads/__init__.py +2 -0
  2. airbyte_agent_amazon_ads/_vendored/connector_sdk/cloud_utils/client.py +62 -0
  3. airbyte_agent_amazon_ads/_vendored/connector_sdk/connector_model_loader.py +5 -0
  4. airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/hosted_executor.py +59 -25
  5. airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/local_executor.py +87 -12
  6. airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/models.py +12 -0
  7. airbyte_agent_amazon_ads/_vendored/connector_sdk/http/adapters/httpx_adapter.py +10 -1
  8. airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/base.py +11 -0
  9. airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/operations.py +10 -0
  10. airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/security.py +5 -0
  11. airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/tracker.py +4 -4
  12. airbyte_agent_amazon_ads/_vendored/connector_sdk/types.py +20 -1
  13. airbyte_agent_amazon_ads/_vendored/connector_sdk/utils.py +67 -0
  14. airbyte_agent_amazon_ads/_vendored/connector_sdk/validation.py +171 -2
  15. airbyte_agent_amazon_ads/_vendored/connector_sdk/validation_replication.py +970 -0
  16. airbyte_agent_amazon_ads/connector.py +148 -10
  17. airbyte_agent_amazon_ads/connector_model.py +2 -1
  18. airbyte_agent_amazon_ads/models.py +19 -0
  19. {airbyte_agent_amazon_ads-0.1.17.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/METADATA +5 -4
  20. {airbyte_agent_amazon_ads-0.1.17.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/RECORD +21 -20
  21. {airbyte_agent_amazon_ads-0.1.17.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/WHEEL +0 -0
@@ -30,8 +30,10 @@ from .types import (
30
30
  )
31
31
  if TYPE_CHECKING:
32
32
  from .models import AmazonAdsAuthConfig
33
+
33
34
  # Import response models and envelope models at runtime
34
35
  from .models import (
36
+ AmazonAdsCheckResult,
35
37
  AmazonAdsExecuteResult,
36
38
  AmazonAdsExecuteResultWithMeta,
37
39
  ProfilesListResult,
@@ -91,7 +93,7 @@ class AmazonAdsConnector:
91
93
  """
92
94
 
93
95
  connector_name = "amazon-ads"
94
- connector_version = "1.0.4"
96
+ connector_version = "1.0.5"
95
97
  vendored_sdk_version = "0.1.0" # Version of vendored connector-sdk
96
98
 
97
99
  # Map of (entity, action) -> needs_envelope for envelope wrapping decision
@@ -121,6 +123,7 @@ class AmazonAdsConnector:
121
123
  external_user_id: str | None = None,
122
124
  airbyte_client_id: str | None = None,
123
125
  airbyte_client_secret: str | None = None,
126
+ connector_id: str | None = None,
124
127
  on_token_refresh: Any | None = None,
125
128
  region: str | None = None ):
126
129
  """
@@ -128,13 +131,14 @@ class AmazonAdsConnector:
128
131
 
129
132
  Supports both local and hosted execution modes:
130
133
  - Local mode: Provide `auth_config` for direct API calls
131
- - Hosted mode: Provide `external_user_id`, `airbyte_client_id`, and `airbyte_client_secret` for hosted execution
134
+ - Hosted mode: Provide Airbyte credentials with either `connector_id` or `external_user_id`
132
135
 
133
136
  Args:
134
137
  auth_config: Typed authentication configuration (required for local mode)
135
- external_user_id: External user ID (required for hosted mode)
138
+ external_user_id: External user ID (for hosted mode lookup)
136
139
  airbyte_client_id: Airbyte OAuth client ID (required for hosted mode)
137
140
  airbyte_client_secret: Airbyte OAuth client secret (required for hosted mode)
141
+ connector_id: Specific connector/source ID (for hosted mode, skips lookup)
138
142
  on_token_refresh: Optional callback for OAuth2 token refresh persistence.
139
143
  Called with new_tokens dict when tokens are refreshed. Can be sync or async.
140
144
  Example: lambda tokens: save_to_database(tokens) region: The Amazon Ads API endpoint URL based on region:
@@ -145,7 +149,14 @@ class AmazonAdsConnector:
145
149
  Examples:
146
150
  # Local mode (direct API calls)
147
151
  connector = AmazonAdsConnector(auth_config=AmazonAdsAuthConfig(client_id="...", client_secret="...", refresh_token="..."))
148
- # Hosted mode (executed on Airbyte cloud)
152
+ # Hosted mode with explicit connector_id (no lookup needed)
153
+ connector = AmazonAdsConnector(
154
+ airbyte_client_id="client_abc123",
155
+ airbyte_client_secret="secret_xyz789",
156
+ connector_id="existing-source-uuid"
157
+ )
158
+
159
+ # Hosted mode with lookup by external_user_id
149
160
  connector = AmazonAdsConnector(
150
161
  external_user_id="user-123",
151
162
  airbyte_client_id="client_abc123",
@@ -163,21 +174,24 @@ class AmazonAdsConnector:
163
174
  on_token_refresh=save_tokens
164
175
  )
165
176
  """
166
- # Hosted mode: external_user_id, airbyte_client_id, and airbyte_client_secret provided
167
- if external_user_id and airbyte_client_id and airbyte_client_secret:
177
+ # Hosted mode: Airbyte credentials + either connector_id OR external_user_id
178
+ is_hosted = airbyte_client_id and airbyte_client_secret and (connector_id or external_user_id)
179
+
180
+ if is_hosted:
168
181
  from ._vendored.connector_sdk.executor import HostedExecutor
169
182
  self._executor = HostedExecutor(
170
- external_user_id=external_user_id,
171
183
  airbyte_client_id=airbyte_client_id,
172
184
  airbyte_client_secret=airbyte_client_secret,
173
- connector_definition_id=str(AmazonAdsConnectorModel.id),
185
+ connector_id=connector_id,
186
+ external_user_id=external_user_id,
187
+ connector_definition_id=str(AmazonAdsConnectorModel.id) if not connector_id else None,
174
188
  )
175
189
  else:
176
190
  # Local mode: auth_config required
177
191
  if not auth_config:
178
192
  raise ValueError(
179
- "Either provide (external_user_id, airbyte_client_id, airbyte_client_secret) for hosted mode "
180
- "or auth_config for local mode"
193
+ "Either provide Airbyte credentials (airbyte_client_id, airbyte_client_secret) with "
194
+ "connector_id or external_user_id for hosted mode, or auth_config for local mode"
181
195
  )
182
196
 
183
197
  from ._vendored.connector_sdk.executor import LocalExecutor
@@ -330,6 +344,40 @@ class AmazonAdsConnector:
330
344
  # No extractors - return raw response data
331
345
  return result.data
332
346
 
347
+ # ===== HEALTH CHECK METHOD =====
348
+
349
+ async def check(self) -> AmazonAdsCheckResult:
350
+ """
351
+ Perform a health check to verify connectivity and credentials.
352
+
353
+ Executes a lightweight list operation (limit=1) to validate that
354
+ the connector can communicate with the API and credentials are valid.
355
+
356
+ Returns:
357
+ AmazonAdsCheckResult with status ("healthy" or "unhealthy") and optional error message
358
+
359
+ Example:
360
+ result = await connector.check()
361
+ if result.status == "healthy":
362
+ print("Connection verified!")
363
+ else:
364
+ print(f"Check failed: {result.error}")
365
+ """
366
+ result = await self._executor.check()
367
+
368
+ if result.success and isinstance(result.data, dict):
369
+ return AmazonAdsCheckResult(
370
+ status=result.data.get("status", "unhealthy"),
371
+ error=result.data.get("error"),
372
+ checked_entity=result.data.get("checked_entity"),
373
+ checked_action=result.data.get("checked_action"),
374
+ )
375
+ else:
376
+ return AmazonAdsCheckResult(
377
+ status="unhealthy",
378
+ error=result.error or "Unknown error during health check",
379
+ )
380
+
333
381
  # ===== INTROSPECTION METHODS =====
334
382
 
335
383
  @classmethod
@@ -443,6 +491,96 @@ class AmazonAdsConnector:
443
491
  )
444
492
  return entity_def.entity_schema if entity_def else None
445
493
 
494
+ @property
495
+ def connector_id(self) -> str | None:
496
+ """Get the connector/source ID (only available in hosted mode).
497
+
498
+ Returns:
499
+ The connector ID if in hosted mode, None if in local mode.
500
+
501
+ Example:
502
+ connector = await AmazonAdsConnector.create_hosted(...)
503
+ print(f"Created connector: {connector.connector_id}")
504
+ """
505
+ if hasattr(self, '_executor') and hasattr(self._executor, '_connector_id'):
506
+ return self._executor._connector_id
507
+ return None
508
+
509
+ # ===== HOSTED MODE FACTORY =====
510
+
511
+ @classmethod
512
+ async def create_hosted(
513
+ cls,
514
+ *,
515
+ external_user_id: str,
516
+ airbyte_client_id: str,
517
+ airbyte_client_secret: str,
518
+ auth_config: "AmazonAdsAuthConfig",
519
+ name: str | None = None,
520
+ replication_config: dict[str, Any] | None = None,
521
+ ) -> "AmazonAdsConnector":
522
+ """
523
+ Create a new hosted connector on Airbyte Cloud.
524
+
525
+ This factory method:
526
+ 1. Creates a source on Airbyte Cloud with the provided credentials
527
+ 2. Returns a connector configured with the new connector_id
528
+
529
+ Args:
530
+ external_user_id: Workspace identifier in Airbyte Cloud
531
+ airbyte_client_id: Airbyte OAuth client ID
532
+ airbyte_client_secret: Airbyte OAuth client secret
533
+ auth_config: Typed auth config (same as local mode)
534
+ name: Optional source name (defaults to connector name + external_user_id)
535
+ replication_config: Optional replication settings dict.
536
+ Required for connectors with x-airbyte-replication-config (REPLICATION mode sources).
537
+
538
+ Returns:
539
+ A AmazonAdsConnector instance configured in hosted mode
540
+
541
+ Example:
542
+ # Create a new hosted connector with API key auth
543
+ connector = await AmazonAdsConnector.create_hosted(
544
+ external_user_id="my-workspace",
545
+ airbyte_client_id="client_abc",
546
+ airbyte_client_secret="secret_xyz",
547
+ auth_config=AmazonAdsAuthConfig(client_id="...", client_secret="...", refresh_token="..."),
548
+ )
549
+
550
+ # Use the connector
551
+ result = await connector.execute("entity", "list", {})
552
+ """
553
+ from ._vendored.connector_sdk.cloud_utils import AirbyteCloudClient
554
+
555
+ client = AirbyteCloudClient(
556
+ client_id=airbyte_client_id,
557
+ client_secret=airbyte_client_secret,
558
+ )
559
+
560
+ try:
561
+ # Build credentials from auth_config
562
+ credentials = auth_config.model_dump(exclude_none=True)
563
+ replication_config_dict = replication_config.model_dump(exclude_none=True) if replication_config else None
564
+
565
+ # Create source on Airbyte Cloud
566
+ source_name = name or f"{cls.connector_name} - {external_user_id}"
567
+ source_id = await client.create_source(
568
+ name=source_name,
569
+ connector_definition_id=str(AmazonAdsConnectorModel.id),
570
+ external_user_id=external_user_id,
571
+ credentials=credentials,
572
+ replication_config=replication_config_dict,
573
+ )
574
+ finally:
575
+ await client.close()
576
+
577
+ # Return connector configured with the new connector_id
578
+ return cls(
579
+ airbyte_client_id=airbyte_client_id,
580
+ airbyte_client_secret=airbyte_client_secret,
581
+ connector_id=source_id,
582
+ )
583
+
446
584
 
447
585
 
448
586
  class ProfilesQuery:
@@ -26,7 +26,7 @@ from uuid import (
26
26
  AmazonAdsConnectorModel: ConnectorModel = ConnectorModel(
27
27
  id=UUID('c6b0a29e-1da9-4512-9002-7bfd0cba2246'),
28
28
  name='amazon-ads',
29
- version='1.0.4',
29
+ version='1.0.5',
30
30
  base_url='{region}',
31
31
  auth=AuthConfig(
32
32
  type=AuthType.OAUTH2,
@@ -157,6 +157,7 @@ AmazonAdsConnectorModel: ConnectorModel = ConnectorModel(
157
157
  'x-airbyte-entity-name': 'profiles',
158
158
  },
159
159
  },
160
+ preferred_for_check=True,
160
161
  ),
161
162
  Action.GET: EndpointDefinition(
162
163
  method='GET',
@@ -126,6 +126,25 @@ class CampaignBudget(BaseModel):
126
126
  # ===== METADATA TYPE DEFINITIONS (PYDANTIC) =====
127
127
  # Meta types for operations that extract metadata (e.g., pagination info)
128
128
 
129
+ # ===== CHECK RESULT MODEL =====
130
+
131
+ class AmazonAdsCheckResult(BaseModel):
132
+ """Result of a health check operation.
133
+
134
+ Returned by the check() method to indicate connectivity and credential status.
135
+ """
136
+ model_config = ConfigDict(extra="forbid")
137
+
138
+ status: str
139
+ """Health check status: 'healthy' or 'unhealthy'."""
140
+ error: str | None = None
141
+ """Error message if status is 'unhealthy', None otherwise."""
142
+ checked_entity: str | None = None
143
+ """Entity name used for the health check."""
144
+ checked_action: str | None = None
145
+ """Action name used for the health check."""
146
+
147
+
129
148
  # ===== RESPONSE ENVELOPE MODELS =====
130
149
 
131
150
  # Type variables for generic envelope models
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-amazon-ads
3
- Version: 0.1.17
3
+ Version: 0.1.24
4
4
  Summary: Airbyte Amazon-Ads 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/
@@ -135,6 +135,7 @@ See the official [Amazon-Ads API reference](https://advertising.amazon.com/API/d
135
135
 
136
136
  ## Version information
137
137
 
138
- - **Package version:** 0.1.17
139
- - **Connector version:** 1.0.4
140
- - **Generated with Connector SDK commit SHA:** f6c6fca292b291b200b31e4056856465129ae703
138
+ - **Package version:** 0.1.24
139
+ - **Connector version:** 1.0.5
140
+ - **Generated with Connector SDK commit SHA:** b184da3e22ef8521d2eeebf3c96a0fe8da2424f5
141
+ - **Changelog:** [View changelog](https://github.com/airbytehq/airbyte-agent-connectors/blob/main/connectors/amazon-ads/CHANGELOG.md)
@@ -1,35 +1,36 @@
1
- airbyte_agent_amazon_ads/__init__.py,sha256=f883U_4eSRjMLgjqpi5rGcKZ0U44ME_Z0IY-XZhwlPc,1896
2
- airbyte_agent_amazon_ads/connector.py,sha256=iN7jP_VemUPoTbpWcpgggUyl8S9ZZvzFYFeGNQ3UhQw,24164
3
- airbyte_agent_amazon_ads/connector_model.py,sha256=EBw-dpn0Vf5NpZCxGI-pHxaB52h4e1ApHfOXKGPPuCQ,97995
4
- airbyte_agent_amazon_ads/models.py,sha256=TOHCY0p3cE0rWVv3YfYvyvL-lmdYBcoGRTXtFNNBztc,9182
1
+ airbyte_agent_amazon_ads/__init__.py,sha256=MICR9abWiXLcSQ0jd4W7S6xyo2KgwRjOPIZTeHpz67I,1950
2
+ airbyte_agent_amazon_ads/connector.py,sha256=emUP1S6OIO0WowecjbiUtCnUB2vopT7S68AIppHb8ls,29494
3
+ airbyte_agent_amazon_ads/connector_model.py,sha256=QAxt_l2-RjUBxg2izmclOPTqVrjF9CL70fOkkYcwpTk,98041
4
+ airbyte_agent_amazon_ads/models.py,sha256=KmYWz46e-8HuQdnuz6FQT99uDKwpcToEc9Xda2M7FL4,9781
5
5
  airbyte_agent_amazon_ads/types.py,sha256=EW-jvOmXyJQqe2ESiDCs7nCIIsFreDCIZBlA6aplxpA,6728
6
6
  airbyte_agent_amazon_ads/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
7
7
  airbyte_agent_amazon_ads/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
8
8
  airbyte_agent_amazon_ads/_vendored/connector_sdk/auth_strategies.py,sha256=5Sb9moUp623o67Q2wMa8iZldJH08y4gQdoutoO_75Iw,42088
9
9
  airbyte_agent_amazon_ads/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
10
- airbyte_agent_amazon_ads/_vendored/connector_sdk/connector_model_loader.py,sha256=AW9bsdggzuc3ydy2bYYF33L6LxLKLQer9Wm47IOuQw0,41492
10
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/connector_model_loader.py,sha256=1AAvSvjxM9Nuto6w7D6skN5VXGb4e6na0lMFcFmmVkI,41761
11
11
  airbyte_agent_amazon_ads/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
12
12
  airbyte_agent_amazon_ads/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
13
13
  airbyte_agent_amazon_ads/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
14
14
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http_client.py,sha256=09Fclbq4wrg38EM2Yh2kHiykQVXqdAGby024elcEz8E,28027
15
15
  airbyte_agent_amazon_ads/_vendored/connector_sdk/introspection.py,sha256=e9uWn2ofpeehoBbzNgts_bjlKLn8ayA1Y3OpDC3b7ZA,19517
16
16
  airbyte_agent_amazon_ads/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
17
- airbyte_agent_amazon_ads/_vendored/connector_sdk/types.py,sha256=in8gHsn5nsScujOfHZmkOgNmqmJKiPyNNjg59m5fGWc,8807
18
- airbyte_agent_amazon_ads/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
19
- airbyte_agent_amazon_ads/_vendored/connector_sdk/validation.py,sha256=4MPrxYmQh8TbCU0KdvvRKe35Lg1YYLEBd0u4aKySl_E,32122
17
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/types.py,sha256=MsWJsQy779r7Mqiqf_gh_4Vs6VDqieoMjLPyWt7qhu8,9412
18
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/utils.py,sha256=UYwYuSLhsDD-4C0dBs7Qy0E0gIcFZXb6VWadJORhQQU,4080
19
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/validation.py,sha256=w5WGnmILkdBslpXhAXhKhE-c8ANBc_OZQxr_fUeAgtc,39666
20
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/validation_replication.py,sha256=v7F5YWd5m4diIF7_4m4nOkC9crg97vqRUUkt9ka9HZ4,36043
20
21
  airbyte_agent_amazon_ads/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
21
- airbyte_agent_amazon_ads/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
22
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/cloud_utils/client.py,sha256=-_ibaHVa7KBBw8SnMuxpWz6XkrSgNTFdMgDfTChtywg,9505
22
23
  airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
23
- airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
24
- airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/local_executor.py,sha256=tVbfstxOrm5qJt1NawTwjhIIpDgPCC4wSrKM5eALPSQ,74064
25
- airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
24
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/hosted_executor.py,sha256=tv0njAdy-gdHBg4izgcxhEWYbrNiBifEYEca9AWzaL0,8693
25
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/local_executor.py,sha256=RtdTXFzfoJz5Coz9nwQi81Df1402BRgO1Mgd3ZzTkfw,76581
26
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/models.py,sha256=mUUBnuShKXxVIfsTOhMiI2rn2a-50jJG7SFGKT_P6Jk,6281
26
27
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
27
28
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
28
29
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
29
30
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
30
31
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05ZhmZVJk4hVpmoS8YtyXNOTM5hqBt7rWI,3475
31
32
  airbyte_agent_amazon_ads/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
32
- airbyte_agent_amazon_ads/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
33
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=7ounOUlpx7RBLLqYSGWzEsOnnCgCBH3WCDaQFJcmKj0,8902
33
34
  airbyte_agent_amazon_ads/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
34
35
  airbyte_agent_amazon_ads/_vendored/connector_sdk/logging/logger.py,sha256=rUdKDEQe3pOODmBLEcvhgZeEZi48BvrgKXKq1xvCXu0,8387
35
36
  airbyte_agent_amazon_ads/_vendored/connector_sdk/logging/types.py,sha256=ONb9xKNXUkrR2lojSBMF7ruof7S2r92WjrO_kEZic84,3239
@@ -42,16 +43,16 @@ airbyte_agent_amazon_ads/_vendored/connector_sdk/performance/__init__.py,sha256=
42
43
  airbyte_agent_amazon_ads/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
43
44
  airbyte_agent_amazon_ads/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
44
45
  airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
45
- airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/base.py,sha256=IoAucZQ0j0xTdm4VWotB636R4jsrkYnppMQhXE0uoyU,6541
46
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/base.py,sha256=mOO5eZSK-FB7S-ZXpt5HFG5YBg8x-oM6RZRLPOEGxZM,7115
46
47
  airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/components.py,sha256=nJIPieavwX3o3ODvdtLHPk84d_V229xmg6LDfwEHjzc,8119
47
48
  airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
48
49
  airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/extensions.py,sha256=5hgpFHK7fzpzegCkJk882DeIP79bCx_qairKJhvPMZ8,9590
49
- airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
50
- airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/security.py,sha256=1CVCavrPdHHyk7B6JtUD75yRS_hWLCemZF1zwGbdqxg,9036
50
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/operations.py,sha256=St-A75m6sZUZlsoM6WcoPaShYu_X1K19pdyPvJbabOE,6214
51
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/security.py,sha256=R-21DLnp-ANIRO1Dzqo53TYFJL6lCp0aO8GSuxa_bDI,9225
51
52
  airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
52
53
  airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
53
54
  airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
54
- airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
55
- airbyte_agent_amazon_ads-0.1.17.dist-info/METADATA,sha256=qA9FrnyYSqJ2eC3xPetQk8Th5RoF6qKAaULnwB64-0A,5192
56
- airbyte_agent_amazon_ads-0.1.17.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
57
- airbyte_agent_amazon_ads-0.1.17.dist-info/RECORD,,
55
+ airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/tracker.py,sha256=SginFQbHqVUVYG82NnNzG34O-tAQ_wZYjGDcuo0q4Kk,5584
56
+ airbyte_agent_amazon_ads-0.1.24.dist-info/METADATA,sha256=izTt3eLQjsnHCbUprS1Dgo2oUgynI7l425iKamEW6Sc,5326
57
+ airbyte_agent_amazon_ads-0.1.24.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
58
+ airbyte_agent_amazon_ads-0.1.24.dist-info/RECORD,,