Skip to content

Commit

Permalink
🐛 Source Linkedin Pages: remove duplicate streams and fix `follower_s…
Browse files Browse the repository at this point in the history
…tatistics` schema (#26783)

* remove duplicate streams

* fix schema for follower_statitiss

* fix schema

* update dockefile version
  • Loading branch information
marcosmarxm committed May 30, 2023
1 parent 69b96ed commit 87b43fb
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_linkedin_pages ./source_linkedin_pages
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=1.0.1
LABEL io.airbyte.version=1.0.2
LABEL io.airbyte.name=airbyte/source-linkedin-pages
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: af54297c-e8f8-4d63-a00d-a94695acc9d3
dockerImageTag: 1.0.1
dockerImageTag: 1.0.2
dockerRepository: airbyte/source-linkedin-pages
githubIssueLabel: source-linkedin-pages
icon: linkedin.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,53 @@
"followerCountsByStaffCountRange": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true
}
},
"followerCountsByFunction": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true
}
},
"followerCountsByAssociationType": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true
}
},
"followerCountsBySeniority": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true
}
},
"followerCountsByRegion": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"additionalProperties": true
}
},
"organizationalEntity": {
"type": ["null", "string"]
},
"followerCountsByCountry": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"additionalProperties": true
}
},
"followerCountsByIndustry": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"],
"additionalProperties": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,4 @@ def streams(self, config: Mapping[str, Any]) -> List[Stream]:
FollowerStatistics(config),
ShareStatistics(config),
TotalFollowerCount(config),
ShareStatistics(config),
TotalFollowerCount(config),
]
1 change: 1 addition & 0 deletions docs/integrations/sources/linkedin-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ The source LinkedIn Pages can use either the `client_id`, `client_secret` and `r

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------|
| 1.0.2 | 2023-05-30 | [24352](https://github.com/airbytehq/airbyte/pull/24352) | Remove duplicate streams |
| 1.0.1 | 2023-03-22 | [24352](https://github.com/airbytehq/airbyte/pull/24352) | Remove `authSpecification` as it's not yet supported |
| 1.0.0 | 2023-03-16 | [18967](https://github.com/airbytehq/airbyte/pull/18967) | Fixed failing connection checks |
| 0.1.0 | 2022-08-11 | [13098](https://github.com/airbytehq/airbyte/pull/13098) | Initial Release |

0 comments on commit 87b43fb

Please sign in to comment.