Skip to content

Commit

Permalink
Fix format (#4991)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliren authored Jul 26, 2021
1 parent 703bfe8 commit 2e17d65
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 76 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import com.fasterxml.jackson.databind.JsonNode;
import com.google.common.collect.Lists;
import io.airbyte.commons.json.Jsons;
import io.airbyte.commons.lang.Exceptions;
import io.airbyte.config.ConfigSchema;
import io.airbyte.validation.json.JsonValidationException;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,49 +4,27 @@
"stream": {
"name": "subscriptions",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": [
"created"
],
"source_defined_primary_key": [
[
"id"
]
]
"default_cursor_field": ["created"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": [
"created"
]
"cursor_field": ["created"]
},
{
"stream": {
"name": "invoices",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": [
"created"
],
"source_defined_primary_key": [
[
"id"
]
]
"default_cursor_field": ["created"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": [
"created"
]
"cursor_field": ["created"]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,73 +4,40 @@
"stream": {
"name": "subscriptions",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": [
"created"
],
"source_defined_primary_key": [
[
"id"
]
]
"default_cursor_field": ["created"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": [
"created"
]
"cursor_field": ["created"]
},
{
"stream": {
"name": "customers",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": [
"created"
],
"source_defined_primary_key": [
[
"id"
]
]
"default_cursor_field": ["created"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": [
"created"
]
"cursor_field": ["created"]
},
{
"stream": {
"name": "disputes",
"json_schema": {},
"supported_sync_modes": [
"full_refresh",
"incremental"
],
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": [
"created"
],
"source_defined_primary_key": [
[
"id"
]
]
"default_cursor_field": ["created"],
"source_defined_primary_key": [["id"]]
},
"sync_mode": "incremental",
"destination_sync_mode": "overwrite",
"cursor_field": [
"created"
]
"cursor_field": ["created"]
}
]
}

0 comments on commit 2e17d65

Please sign in to comment.