Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm committed Dec 19, 2023
1 parent cb2a216 commit a23b2a3
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"todo-stream-name": {
"todo-field-name": "todo-abnormal-value"
[
{
"type": "STREAM",
"stream": {
"stream_state": {
"modifiedAt": "2050-10-31T02:00:22.240+01:00"
},
"stream_descriptor": {
"name": "contacts"
}
}
}
}
]
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-sendinblue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import find_packages, setup

MAIN_REQUIREMENTS = [
"airbyte-cdk~=0.1",
"airbyte-cdk",
]

TEST_REQUIREMENTS = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ definitions:
type: DatetimeBasedCursor
cursor_field: modifiedAt
cursor_datetime_formats:
- '%Y-%m-%dT%H:%M:%S.%f%z'
datetime_format: '%Y-%m-%dT%H:%M:%S.%f%z'
- "%Y-%m-%dT%H:%M:%S.%f%z"
datetime_format: "%Y-%m-%dT%H:%M:%S.%f%z"
start_datetime:
type: MinMaxDatetime
datetime: '2000-01-01T00:00:00Z'
datetime_format: '%Y-%m-%dT%H:%M:%SZ'
datetime: "2000-01-01T00:00:00Z"
datetime_format: "%Y-%m-%dT%H:%M:%SZ"
start_time_option:
inject_into: request_parameter
field_name: modifiedSince
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": ["null", "integer"]
Expand All @@ -24,7 +25,9 @@
"type": ["null", "string"]
},
"sender": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true,
"properties": {}
},
"replyTo": {
"type": ["null", "string"]
Expand Down Expand Up @@ -62,6 +65,9 @@
"modifiedAt": {
"type": ["null", "string"]
},
"previewText": {
"type": ["null", "string"]
},
"shareLink": {
"type": ["null", "string"]
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": ["null", "integer"]
Expand All @@ -24,7 +25,9 @@
"type": ["null", "string"]
},
"attributes": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true,
"properties": {}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": ["null", "integer"]
Expand All @@ -18,7 +19,12 @@
"type": ["null", "boolean"]
},
"sender": {
"type": ["null", "object"]
"type": ["null", "object"],
"additionalProperties": true,
"properties": {}
},
"subject": {
"type": ["null", "string"]
},
"replyTo": {
"type": ["null", "string"]
Expand Down

0 comments on commit a23b2a3

Please sign in to comment.