Skip to content

Commit 96c0154

Browse files
[source-lemlist] Add new columns for AB tests tracking (#37100)
Co-authored-by: Marcos Marx <[email protected]> Co-authored-by: marcosmarxm <[email protected]>
1 parent f140aa3 commit 96c0154

File tree

8 files changed

+1070
-91
lines changed

8 files changed

+1070
-91
lines changed

airbyte-integrations/connectors/source-lemlist/.dockerignore

-6
This file was deleted.

airbyte-integrations/connectors/source-lemlist/Dockerfile

-38
This file was deleted.

airbyte-integrations/connectors/source-lemlist/metadata.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ data:
1313
enabled: true
1414
connectorSubtype: api
1515
connectorType: source
16+
connectorBuildOptions:
17+
baseImage: docker.io/airbyte/python-connector-base:1.2.0@sha256:c22a9d97464b69d6ef01898edf3f8612dc11614f05a84984451dde195f337db9
1618
definitionId: 789f8e7a-2d28-11ec-8d3d-0242ac130003
17-
dockerImageTag: 0.2.0
19+
dockerImageTag: 0.2.1
1820
dockerRepository: airbyte/source-lemlist
1921
githubIssueLabel: source-lemlist
2022
icon: lemlist.svg

airbyte-integrations/connectors/source-lemlist/poetry.lock

+1,032
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[build-system]
2+
requires = [ "poetry-core>=1.0.0",]
3+
build-backend = "poetry.core.masonry.api"
4+
5+
[tool.poetry]
6+
version = "0.2.1"
7+
name = "source-lemlist"
8+
description = "Source implementation for Lemlist."
9+
authors = [ "Airbyte <[email protected]>",]
10+
license = "MIT"
11+
readme = "README.md"
12+
documentation = "https://docs.airbyte.com/integrations/sources/lemlist"
13+
homepage = "https://airbyte.com"
14+
repository = "https://github.com/airbytehq/airbyte"
15+
[[tool.poetry.packages]]
16+
include = "source_lemlist"
17+
18+
[tool.poetry.dependencies]
19+
python = "^3.9,<3.12"
20+
airbyte-cdk = "^0"
21+
22+
[tool.poetry.scripts]
23+
source-lemlist = "source_lemlist.run:run"
24+
25+
[tool.poetry.group.dev.dependencies]
26+
requests-mock = "^1.9.3"
27+
pytest-mock = "^3.6.1"
28+
pytest = "^6.2"

airbyte-integrations/connectors/source-lemlist/setup.py

-46
This file was deleted.

airbyte-integrations/connectors/source-lemlist/source_lemlist/schemas/activities.json

+6
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@
9393
},
9494
"emailTemplateName": {
9595
"type": ["null", "string"]
96+
},
97+
"sequenceTested": {
98+
"type": ["null", "string"]
99+
},
100+
"stepTested": {
101+
"type": ["null", "string"]
96102
}
97103
}
98104
}

docs/integrations/sources/lemlist.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The Lemlist connector should not run into Lemlist API limitations under normal u
3737

3838
| Version | Date | Pull Request | Subject |
3939
| :------ | :--------- | :----------------------------------------------------- | :-------------- |
40+
| 0.2.1 | 2024-05-15 | [37100](https://github.com/airbytehq/airbyte/pull/37100) | Add new A/B test columns |
4041
| 0.2.0 | 2023-08-14 | [29406](https://github.com/airbytehq/airbyte/pull/29406) | Migrated to LowCode Cdk |
4142
| 0.1.1 | Unknown | Unknown | Bump Version |
4243
| 0.1.0 | 2021-10-14 | [7062](https://github.com/airbytehq/airbyte/pull/7062) | Initial Release |

0 commit comments

Comments
 (0)