1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Source Notion: add parent field to blocks streams (#26286)

* add parent field to blocks

* udpate docs

* Automated Change

* Automated Change

* format oss registry and update notion

* Automated Change

* Update notion.md
This commit is contained in:
Marcos Marx
2023-05-19 10:06:17 -03:00
committed by GitHub
parent 1c029bc375
commit 9ac8ba41a1
6 changed files with 17 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@@ -34,5 +34,5 @@ COPY source_notion ./source_notion
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=1.0.5
LABEL io.airbyte.version=1.0.6
LABEL io.airbyte.name=airbyte/source-notion

File diff suppressed because one or more lines are too long

View File

@@ -5,7 +5,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 6e00b415-b02e-4160-bf02-58176a0ae687
dockerImageTag: 1.0.5
dockerImageTag: 1.0.6
dockerRepository: airbyte/source-notion
githubIssueLabel: source-notion
icon: notion.svg

View File

@@ -6,6 +6,9 @@
"object": {
"enum": ["block"]
},
"parent": {
"$ref": "parent.json"
},
"id": {
"type": "string"
},

View File

@@ -84,6 +84,7 @@ The connector is restricted by Notion [request limits](https://developers.notion
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------|
| 1.0.6 | 2023-05-18 | [26286](https://github.com/airbytehq/airbyte/pull/26286) | Add `parent` field to `Blocks` stream |
| 1.0.5 | 2023-05-01 | [25709](https://github.com/airbytehq/airbyte/pull/25709) | Fixed `ai_block is unsupported by API` issue, while fetching `Blocks` stream |
| 1.0.4 | 2023-04-11 | [25041](https://github.com/airbytehq/airbyte/pull/25041) | Improve error handling for API /search |
| 1.0.3 | 2023-03-02 | [22931](https://github.com/airbytehq/airbyte/pull/22931) | Specified date formatting in specification |