Skip to content

Commit

Permalink
fix schema and add additionalProperties true (#29364)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm authored Aug 11, 2023
1 parent 84a113f commit ae732cb
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_onesignal ./source_onesignal
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=1.0.0
LABEL io.airbyte.version=1.0.1
LABEL io.airbyte.name=airbyte/source-onesignal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: bb6afd81-87d5-47e3-97c4-e2c2901b1cf8
dockerImageTag: 1.0.0
dockerImageTag: 1.0.1
dockerRepository: airbyte/source-onesignal
githubIssueLabel: source-onesignal
icon: onesignal.svg
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": ["null", "string"]
Expand Down Expand Up @@ -81,6 +82,21 @@
},
"additional_data_is_root_payload": {
"type": ["null", "boolean"]
},
"apns_key_id": {
"type": ["null", "string"]
},
"apns_p8": {
"type": ["null", "string"]
},
"apns_team_id": {
"type": ["null", "string"]
},
"fcm_v1_service_account_json": {
"type": ["null", "string"]
},
"apns_bundle_id": {
"type": ["null", "string"]
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"adm_big_picture": {
"type": ["null", "string"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/onesignal.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ The connector is restricted by normal OneSignal [rate limits](https://documentat

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------- |
| 1.0.1 | 2023-03-14 | [24076](https://github.com/airbytehq/airbyte/pull/24076) | Fix schema and add additionalProperties true |
| 1.0.0 | 2023-03-14 | [24076](https://github.com/airbytehq/airbyte/pull/24076) | Update connectors spec; fix incremental sync |
| 0.1.2 | 2021-12-07 | [8582](https://github.com/airbytehq/airbyte/pull/8582) | Update connector fields title/description |
| 0.1.1 | 2021-11-10 | [7617](https://github.com/airbytehq/airbyte/pull/7617) | Fix get_update state |
Expand Down

0 comments on commit ae732cb

Please sign in to comment.