airbyte-agent-amazon-ads 0.1.15__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.
- airbyte_agent_amazon_ads/__init__.py +2 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/cloud_utils/client.py +62 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/connector_model_loader.py +5 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/hosted_executor.py +59 -25
- airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/local_executor.py +87 -12
- airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/models.py +12 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/http/adapters/httpx_adapter.py +10 -1
- airbyte_agent_amazon_ads/_vendored/connector_sdk/introspection.py +12 -5
- airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/base.py +11 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/operations.py +10 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/security.py +5 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/telemetry/tracker.py +4 -4
- airbyte_agent_amazon_ads/_vendored/connector_sdk/types.py +20 -1
- airbyte_agent_amazon_ads/_vendored/connector_sdk/utils.py +67 -0
- airbyte_agent_amazon_ads/_vendored/connector_sdk/validation.py +171 -2
- airbyte_agent_amazon_ads/_vendored/connector_sdk/validation_replication.py +970 -0
- airbyte_agent_amazon_ads/connector.py +154 -11
- airbyte_agent_amazon_ads/connector_model.py +2 -1
- airbyte_agent_amazon_ads/models.py +19 -0
- {airbyte_agent_amazon_ads-0.1.15.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/METADATA +13 -9
- {airbyte_agent_amazon_ads-0.1.15.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/RECORD +22 -21
- {airbyte_agent_amazon_ads-0.1.15.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.
|
|
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
|
|
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 (
|
|
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 (
|
|
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:
|
|
167
|
-
|
|
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
|
-
|
|
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 (
|
|
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
|
|
@@ -338,6 +386,7 @@ class AmazonAdsConnector:
|
|
|
338
386
|
func: _F | None = None,
|
|
339
387
|
*,
|
|
340
388
|
update_docstring: bool = True,
|
|
389
|
+
enable_hosted_mode_features: bool = True,
|
|
341
390
|
max_output_chars: int | None = DEFAULT_MAX_OUTPUT_CHARS,
|
|
342
391
|
) -> _F | Callable[[_F], _F]:
|
|
343
392
|
"""
|
|
@@ -356,12 +405,16 @@ class AmazonAdsConnector:
|
|
|
356
405
|
|
|
357
406
|
Args:
|
|
358
407
|
update_docstring: When True, append connector capabilities to __doc__.
|
|
408
|
+
enable_hosted_mode_features: When False, omit hosted-mode search sections from docstrings.
|
|
359
409
|
max_output_chars: Max serialized output size before raising. Use None to disable.
|
|
360
410
|
"""
|
|
361
411
|
|
|
362
412
|
def decorate(inner: _F) -> _F:
|
|
363
413
|
if update_docstring:
|
|
364
|
-
description = generate_tool_description(
|
|
414
|
+
description = generate_tool_description(
|
|
415
|
+
AmazonAdsConnectorModel,
|
|
416
|
+
enable_hosted_mode_features=enable_hosted_mode_features,
|
|
417
|
+
)
|
|
365
418
|
original_doc = inner.__doc__ or ""
|
|
366
419
|
if original_doc.strip():
|
|
367
420
|
full_doc = f"{original_doc.strip()}\n{description}"
|
|
@@ -438,6 +491,96 @@ class AmazonAdsConnector:
|
|
|
438
491
|
)
|
|
439
492
|
return entity_def.entity_schema if entity_def else None
|
|
440
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
|
+
|
|
441
584
|
|
|
442
585
|
|
|
443
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.
|
|
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
|
{airbyte_agent_amazon_ads-0.1.15.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-amazon-ads
|
|
3
|
-
Version: 0.1.
|
|
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/
|
|
@@ -112,10 +112,11 @@ async def amazon-ads_execute(entity: str, action: str, params: dict | None = Non
|
|
|
112
112
|
return await connector.execute(entity, action, params or {})
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
|
|
116
115
|
## Full documentation
|
|
117
116
|
|
|
118
|
-
|
|
117
|
+
### Entities and actions
|
|
118
|
+
|
|
119
|
+
This connector supports the following entities and actions. For more details, see this connector's [full reference documentation](REFERENCE.md).
|
|
119
120
|
|
|
120
121
|
| Entity | Actions |
|
|
121
122
|
|--------|---------|
|
|
@@ -124,14 +125,17 @@ This connector supports the following entities and actions.
|
|
|
124
125
|
| Sponsored Product Campaigns | [List](./REFERENCE.md#sponsored-product-campaigns-list), [Get](./REFERENCE.md#sponsored-product-campaigns-get) |
|
|
125
126
|
|
|
126
127
|
|
|
127
|
-
|
|
128
|
+
### Authentication and configuration
|
|
129
|
+
|
|
130
|
+
For all authentication and configuration options, see the connector's [authentication documentation](AUTH.md).
|
|
128
131
|
|
|
129
|
-
|
|
132
|
+
### Amazon-Ads API docs
|
|
130
133
|
|
|
131
|
-
|
|
134
|
+
See the official [Amazon-Ads API reference](https://advertising.amazon.com/API/docs/en-us).
|
|
132
135
|
|
|
133
136
|
## Version information
|
|
134
137
|
|
|
135
|
-
- **Package version:** 0.1.
|
|
136
|
-
- **Connector version:** 1.0.
|
|
137
|
-
- **Generated with Connector SDK commit SHA:**
|
|
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)
|
{airbyte_agent_amazon_ads-0.1.15.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/RECORD
RENAMED
|
@@ -1,35 +1,36 @@
|
|
|
1
|
-
airbyte_agent_amazon_ads/__init__.py,sha256=
|
|
2
|
-
airbyte_agent_amazon_ads/connector.py,sha256=
|
|
3
|
-
airbyte_agent_amazon_ads/connector_model.py,sha256=
|
|
4
|
-
airbyte_agent_amazon_ads/models.py,sha256=
|
|
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=
|
|
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
|
-
airbyte_agent_amazon_ads/_vendored/connector_sdk/introspection.py,sha256=
|
|
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=
|
|
18
|
-
airbyte_agent_amazon_ads/_vendored/connector_sdk/utils.py,sha256=
|
|
19
|
-
airbyte_agent_amazon_ads/_vendored/connector_sdk/validation.py,sha256=
|
|
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
|
|
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=
|
|
24
|
-
airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/local_executor.py,sha256=
|
|
25
|
-
airbyte_agent_amazon_ads/_vendored/connector_sdk/executor/models.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
50
|
-
airbyte_agent_amazon_ads/_vendored/connector_sdk/schema/security.py,sha256=
|
|
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=
|
|
55
|
-
airbyte_agent_amazon_ads-0.1.
|
|
56
|
-
airbyte_agent_amazon_ads-0.1.
|
|
57
|
-
airbyte_agent_amazon_ads-0.1.
|
|
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,,
|
{airbyte_agent_amazon_ads-0.1.15.dist-info → airbyte_agent_amazon_ads-0.1.24.dist-info}/WHEEL
RENAMED
|
File without changes
|