Fix format (#4991)
This commit is contained in:
@@ -27,7 +27,6 @@ package io.airbyte.config.persistence;
|
||||
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;
|
||||
|
||||
@@ -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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user