Skip to content

Commit 1282d88

Browse files
chore: publish new version
1 parent ee0afdb commit 1282d88

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@
914914
- name: TikTok Marketing
915915
sourceDefinitionId: 4bfac00d-ce15-44ff-95b9-9e3c3e8fbd35
916916
dockerRepository: airbyte/source-tiktok-marketing
917-
dockerImageTag: 0.1.11
917+
dockerImageTag: 0.1.12
918918
documentationUrl: https://docs.airbyte.io/integrations/sources/tiktok-marketing
919919
icon: tiktok.svg
920920
sourceType: api

airbyte-integrations/connectors/source-tiktok-marketing/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ COPY source_tiktok_marketing ./source_tiktok_marketing
3232
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
3333
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
3434

35-
LABEL io.airbyte.version=0.1.11
35+
LABEL io.airbyte.version=0.1.12
3636
LABEL io.airbyte.name=airbyte/source-tiktok-marketing

airbyte-integrations/connectors/source-tiktok-marketing/integration_tests/spec.json

-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888
"end_date": {
8989
"title": "End Date",
9090
"description": "The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DD. All data generated between start_date and this date will be replicated. Not setting this option will result in always syncing the data till the current date.",
91-
"default": "2022-09-01",
9291
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
9392
"order": 3,
9493
"type": "string"

airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/spec.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from jsonschema import RefResolver
1111
from pydantic import BaseModel, Field
1212

13-
from .streams import DEFAULT_END_DATE, DEFAULT_START_DATE, ReportGranularity
13+
from .streams import DEFAULT_START_DATE, ReportGranularity
1414

1515

1616
class OauthCredSpec(BaseModel):
@@ -63,8 +63,8 @@ class Config:
6363
)
6464

6565
end_date: str = Field(
66+
None,
6667
title="End Date",
67-
default=DEFAULT_END_DATE,
6868
pattern="^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
6969
description=(
7070
"The date until which you'd like to replicate data for all incremental streams, in the format YYYY-MM-DD. "

airbyte-integrations/connectors/source-tiktok-marketing/source_tiktok_marketing/streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# TikTok Initial release date is September 2016
2424
DEFAULT_START_DATE = "2016-09-01"
25-
DEFAULT_END_DATE = "2022-09-01"
25+
DEFAULT_END_DATE = str(datetime.now().date())
2626
NOT_AUDIENCE_METRICS = [
2727
"reach",
2828
"cost_per_1000_reached",

docs/integrations/sources/tiktok-marketing.md

+1
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ The connector is restricted by [requests limitation](https://ads.tiktok.com/mark
524524

525525
| Version | Date | Pull Request | Subject |
526526
|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------|
527+
| 0.1.12 | 2022-05-24 | [13127](https://github.com/airbytehq/airbyte/pull/13127) | Fixed integration test |
527528
| 0.1.11 | 2022-04-27 | [12838](https://github.com/airbytehq/airbyte/pull/12838) | Added end date configuration for tiktok |
528529
| 0.1.10 | 2022-05-07 | [12545](https://github.com/airbytehq/airbyte/pull/12545) | Removed odd production authenication method |
529530
| 0.1.9 | 2022-04-30 | [12500](https://github.com/airbytehq/airbyte/pull/12500) | Improve input configuration copy |

0 commit comments

Comments
 (0)