From 6a18e1c4d6f7bbcaba9fd0b1f58681cb1a3546a1 Mon Sep 17 00:00:00 2001 From: darynaishchenko Date: Tue, 13 Feb 2024 15:04:44 +0200 Subject: [PATCH 1/3] added custom_event_id and custom_event fields fields to funnels stream schema --- .../connectors/source-mixpanel/metadata.yaml | 2 +- .../source-mixpanel/source_mixpanel/schemas/funnels.json | 6 ++++++ docs/integrations/sources/mixpanel.md | 5 +++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixpanel/metadata.yaml b/airbyte-integrations/connectors/source-mixpanel/metadata.yaml index a862eaf0d10e3..c8d1c570c5dcf 100644 --- a/airbyte-integrations/connectors/source-mixpanel/metadata.yaml +++ b/airbyte-integrations/connectors/source-mixpanel/metadata.yaml @@ -11,7 +11,7 @@ data: connectorSubtype: api connectorType: source definitionId: 12928b32-bf0a-4f1e-964f-07e12e37153a - dockerImageTag: 2.0.2 + dockerImageTag: 2.1.0 dockerRepository: airbyte/source-mixpanel documentationUrl: https://docs.airbyte.com/integrations/sources/mixpanel githubIssueLabel: source-mixpanel diff --git a/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json b/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json index a0488a87df689..d8d451e777321 100644 --- a/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json +++ b/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json @@ -25,6 +25,12 @@ "count": { "type": ["null", "integer"] }, + "custom_event": { + "type" : ["null", "boolean"] + }, + "custom_event_id": { + "type" : ["null", "integer"] + }, "avg_time": { "type": ["null", "number"], "multipleOf": 1e-20 diff --git a/docs/integrations/sources/mixpanel.md b/docs/integrations/sources/mixpanel.md index 3cae7c0a9c83a..80e28e392a0b8 100644 --- a/docs/integrations/sources/mixpanel.md +++ b/docs/integrations/sources/mixpanel.md @@ -55,8 +55,9 @@ Syncing huge date windows may take longer due to Mixpanel's low API rate-limits | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------| -| 2.0.2 | 2024-02-12 | [35151](https://github.com/airbytehq/airbyte/pull/35151) | Manage dependencies with Poetry. | -| 2.0.1 | 2024-01-11 | [34147](https://github.com/airbytehq/airbyte/pull/34147) | prepare for airbyte-lib | +| 2.0.2 | 2024-02-13 | | Update stream Funnels schema with custom_event_id and custom_event fields | +| 2.0.2 | 2024-02-12 | [35151](https://github.com/airbytehq/airbyte/pull/35151) | Manage dependencies with Poetry. | +| 2.0.1 | 2024-01-11 | [34147](https://github.com/airbytehq/airbyte/pull/34147) | prepare for airbyte-lib | | 2.0.0 | 2023-10-30 | [31955](https://github.com/airbytehq/airbyte/pull/31955) | Delete the default primary key for the Export stream | | 1.0.1 | 2023-10-19 | [31599](https://github.com/airbytehq/airbyte/pull/31599) | Base image migration: remove Dockerfile and use the python-connector-base image | | 1.0.0 | 2023-09-27 | [30025](https://github.com/airbytehq/airbyte/pull/30025) | Fix type of datetime field in engage stream; fix primary key for export stream. | From 367b87472f7ce4e1b4766af1f84cbc3067608a95 Mon Sep 17 00:00:00 2001 From: darynaishchenko Date: Tue, 13 Feb 2024 15:08:23 +0200 Subject: [PATCH 2/3] updated changelog --- docs/integrations/sources/mixpanel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/sources/mixpanel.md b/docs/integrations/sources/mixpanel.md index 80e28e392a0b8..359318423e2b1 100644 --- a/docs/integrations/sources/mixpanel.md +++ b/docs/integrations/sources/mixpanel.md @@ -55,7 +55,7 @@ Syncing huge date windows may take longer due to Mixpanel's low API rate-limits | Version | Date | Pull Request | Subject | |:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------------------------------------| -| 2.0.2 | 2024-02-13 | | Update stream Funnels schema with custom_event_id and custom_event fields | +| 2.1.0 | 2024-02-13 | [35203](https://github.com/airbytehq/airbyte/pull/35203) | Update stream Funnels schema with custom_event_id and custom_event fields | | 2.0.2 | 2024-02-12 | [35151](https://github.com/airbytehq/airbyte/pull/35151) | Manage dependencies with Poetry. | | 2.0.1 | 2024-01-11 | [34147](https://github.com/airbytehq/airbyte/pull/34147) | prepare for airbyte-lib | | 2.0.0 | 2023-10-30 | [31955](https://github.com/airbytehq/airbyte/pull/31955) | Delete the default primary key for the Export stream | From c5485d7e99932eec68f282d4eb98e78ba7b331f0 Mon Sep 17 00:00:00 2001 From: darynaishchenko Date: Tue, 13 Feb 2024 15:15:07 +0200 Subject: [PATCH 3/3] format fix --- .../source-mixpanel/source_mixpanel/schemas/funnels.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json b/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json index d8d451e777321..1cb068a86c7a3 100644 --- a/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json +++ b/airbyte-integrations/connectors/source-mixpanel/source_mixpanel/schemas/funnels.json @@ -26,10 +26,10 @@ "type": ["null", "integer"] }, "custom_event": { - "type" : ["null", "boolean"] + "type": ["null", "boolean"] }, "custom_event_id": { - "type" : ["null", "integer"] + "type": ["null", "integer"] }, "avg_time": { "type": ["null", "number"],