Skip to content

Commit

Permalink
bump version to include latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada committed Jan 15, 2021
1 parent f62efcc commit 92f0157
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 16 deletions.

This file was deleted.

Expand Up @@ -2,6 +2,6 @@
"sourceDefinitionId": "e7778cfc-e97c-4458-9ecb-b4f2bba8946c",
"name": "Facebook Marketing",
"dockerRepository": "airbyte/source-facebook-marketing",
"dockerImageTag": "0.1.0",
"dockerImageTag": "0.1.1",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-facebook-marketing"
}
Expand Up @@ -76,13 +76,8 @@
- sourceDefinitionId: e7778cfc-e97c-4458-9ecb-b4f2bba8946c
name: Facebook Marketing
dockerRepository: airbyte/source-facebook-marketing
dockerImageTag: 0.1.0
dockerImageTag: 0.1.1
documentationUrl: https://hub.docker.com/r/airbyte/source-facebook-marketing
- sourceDefinitionId: 74d47f79-8d01-44ac-9755-f5eb0d7caacb
name: Facebook Marketing APIs
dockerRepository: airbyte/source-facebook-marketing-api-singer
dockerImageTag: 0.1.5
documentationUrl: https://hub.docker.com/r/airbyte/source-facebook-marketing-api-singer
- sourceDefinitionId: 57eb1576-8f52-463d-beb6-2e107cdf571d
name: Hubspot
dockerRepository: airbyte/source-hubspot-singer
Expand Down
Expand Up @@ -12,5 +12,5 @@ COPY $CODE_PATH ./$CODE_PATH
COPY setup.py ./
RUN pip install .

LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/source-facebook-marketing
Expand Up @@ -233,11 +233,12 @@ def _get_insights(self, params):


class Client(BaseClient):
def __init__(self, account_id: str, access_token: str, start_date: str):
def __init__(self, account_id: str, access_token: str, start_date: str, include_deleted: bool = False):
super().__init__()
self._api = FacebookAdsApi.init(access_token=access_token)
self._account_id = account_id
self._start_date = isoparse(start_date)
self._include_deleted = include_deleted

@cached_property
def account(self):
Expand Down

0 comments on commit 92f0157

Please sign in to comment.