Skip to content

Commit 2e17d65

Browse files
authored
Fix format (#4991)
1 parent 703bfe8 commit 2e17d65

File tree

3 files changed

+20
-76
lines changed

3 files changed

+20
-76
lines changed

airbyte-config/persistence/src/main/java/io/airbyte/config/persistence/FileSystemConfigPersistence.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import com.fasterxml.jackson.databind.JsonNode;
2828
import com.google.common.collect.Lists;
2929
import io.airbyte.commons.json.Jsons;
30-
import io.airbyte.commons.lang.Exceptions;
3130
import io.airbyte.config.ConfigSchema;
3231
import io.airbyte.validation.json.JsonValidationException;
3332
import java.io.IOException;

airbyte-integrations/connectors/source-stripe/integration_tests/non_disputes_events_catalog.json

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,49 +4,27 @@
44
"stream": {
55
"name": "subscriptions",
66
"json_schema": {},
7-
"supported_sync_modes": [
8-
"full_refresh",
9-
"incremental"
10-
],
7+
"supported_sync_modes": ["full_refresh", "incremental"],
118
"source_defined_cursor": true,
12-
"default_cursor_field": [
13-
"created"
14-
],
15-
"source_defined_primary_key": [
16-
[
17-
"id"
18-
]
19-
]
9+
"default_cursor_field": ["created"],
10+
"source_defined_primary_key": [["id"]]
2011
},
2112
"sync_mode": "incremental",
2213
"destination_sync_mode": "overwrite",
23-
"cursor_field": [
24-
"created"
25-
]
14+
"cursor_field": ["created"]
2615
},
2716
{
2817
"stream": {
2918
"name": "invoices",
3019
"json_schema": {},
31-
"supported_sync_modes": [
32-
"full_refresh",
33-
"incremental"
34-
],
20+
"supported_sync_modes": ["full_refresh", "incremental"],
3521
"source_defined_cursor": true,
36-
"default_cursor_field": [
37-
"created"
38-
],
39-
"source_defined_primary_key": [
40-
[
41-
"id"
42-
]
43-
]
22+
"default_cursor_field": ["created"],
23+
"source_defined_primary_key": [["id"]]
4424
},
4525
"sync_mode": "incremental",
4626
"destination_sync_mode": "overwrite",
47-
"cursor_field": [
48-
"created"
49-
]
27+
"cursor_field": ["created"]
5028
}
5129
]
5230
}

airbyte-integrations/connectors/source-stripe/integration_tests/non_invoice_line_items_catalog.json

Lines changed: 12 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -4,73 +4,40 @@
44
"stream": {
55
"name": "subscriptions",
66
"json_schema": {},
7-
"supported_sync_modes": [
8-
"full_refresh",
9-
"incremental"
10-
],
7+
"supported_sync_modes": ["full_refresh", "incremental"],
118
"source_defined_cursor": true,
12-
"default_cursor_field": [
13-
"created"
14-
],
15-
"source_defined_primary_key": [
16-
[
17-
"id"
18-
]
19-
]
9+
"default_cursor_field": ["created"],
10+
"source_defined_primary_key": [["id"]]
2011
},
2112
"sync_mode": "incremental",
2213
"destination_sync_mode": "overwrite",
23-
"cursor_field": [
24-
"created"
25-
]
14+
"cursor_field": ["created"]
2615
},
2716
{
2817
"stream": {
2918
"name": "customers",
3019
"json_schema": {},
31-
"supported_sync_modes": [
32-
"full_refresh",
33-
"incremental"
34-
],
20+
"supported_sync_modes": ["full_refresh", "incremental"],
3521
"source_defined_cursor": true,
36-
"default_cursor_field": [
37-
"created"
38-
],
39-
"source_defined_primary_key": [
40-
[
41-
"id"
42-
]
43-
]
22+
"default_cursor_field": ["created"],
23+
"source_defined_primary_key": [["id"]]
4424
},
4525
"sync_mode": "incremental",
4626
"destination_sync_mode": "overwrite",
47-
"cursor_field": [
48-
"created"
49-
]
27+
"cursor_field": ["created"]
5028
},
5129
{
5230
"stream": {
5331
"name": "disputes",
5432
"json_schema": {},
55-
"supported_sync_modes": [
56-
"full_refresh",
57-
"incremental"
58-
],
33+
"supported_sync_modes": ["full_refresh", "incremental"],
5934
"source_defined_cursor": true,
60-
"default_cursor_field": [
61-
"created"
62-
],
63-
"source_defined_primary_key": [
64-
[
65-
"id"
66-
]
67-
]
35+
"default_cursor_field": ["created"],
36+
"source_defined_primary_key": [["id"]]
6837
},
6938
"sync_mode": "incremental",
7039
"destination_sync_mode": "overwrite",
71-
"cursor_field": [
72-
"created"
73-
]
40+
"cursor_field": ["created"]
7441
}
7542
]
7643
}

0 commit comments

Comments
 (0)