Skip to content

Commit 48b62a9

Browse files
marcosmarxmschlattk
authored andcommitted
run gradlew format (airbytehq#7223)
1 parent 6e8d4f3 commit 48b62a9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+5270
-9940
lines changed

airbyte-integrations/connectors/destination-bigquery/src/main/resources/spec.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,7 @@
7878
"description": "When running custom transformations or Basic normalization, running queries on interactive mode can hit BQ limits, choosing batch will solve those limitss.",
7979
"title": "Transformation Query Run Type",
8080
"default": "interactive",
81-
"enum": [
82-
"interactive",
83-
"batch"
84-
]
81+
"enum": ["interactive", "batch"]
8582
},
8683
"loading_method": {
8784
"type": "object",

airbyte-integrations/connectors/destination-mongodb-strict-encrypt/src/main/java/io.airbyte.integrations.destination.mongodb/MongodbDestinationStrictEncrypt.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public MongodbDestinationStrictEncrypt() {
2424
@Override
2525
public ConnectorSpecification modifySpec(ConnectorSpecification originalSpec) throws Exception {
2626
final ConnectorSpecification spec = Jsons.clone(originalSpec);
27-
// removing tls property for a standalone instance to disable possibility to switch off a tls connection
27+
// removing tls property for a standalone instance to disable possibility to switch off a tls
28+
// connection
2829
((ObjectNode) spec.getConnectionSpecification().get("properties").get("instance_type").get("oneOf").get(0).get("properties")).remove("tls");
2930
return spec;
3031
}
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,81 @@
11
{
22
"streams": [
3-
{
4-
"name": "in_app_events",
5-
"json_schema": {},
6-
"supported_sync_modes": [
7-
"full_refresh",
8-
"incremental"
9-
],
10-
"source_defined_cursor": true,
11-
"default_cursor_field": [
12-
"event_time"
13-
]
14-
},
15-
{
16-
"name": "installs",
17-
"json_schema": {},
18-
"supported_sync_modes": [
19-
"full_refresh",
20-
"incremental"
21-
],
22-
"source_defined_cursor": true,
23-
"default_cursor_field": [
24-
"install_time"
25-
]
26-
},
27-
{
28-
"name": "uninstall_events",
29-
"json_schema": {},
30-
"supported_sync_modes": [
31-
"full_refresh",
32-
"incremental"
33-
],
34-
"source_defined_cursor": true,
35-
"default_cursor_field": [
36-
"event_time"
37-
]
38-
},
39-
{
40-
"name": "retargeting_in_app_events",
41-
"json_schema": {},
42-
"supported_sync_modes": [
43-
"full_refresh",
44-
"incremental"
45-
],
46-
"source_defined_cursor": true,
47-
"default_cursor_field": [
48-
"event_time"
49-
]
50-
},
51-
{
52-
"name": "retargeting_conversions",
53-
"json_schema": {},
54-
"supported_sync_modes": [
55-
"full_refresh",
56-
"incremental"
57-
],
58-
"source_defined_cursor": true,
59-
"default_cursor_field": [
60-
"install_time"
61-
]
62-
},
63-
{
64-
"name": "partners_report",
65-
"json_schema": {},
66-
"supported_sync_modes": [
67-
"full_refresh",
68-
"incremental"
69-
],
70-
"source_defined_cursor": true,
71-
"default_cursor_field": [
72-
"date"
73-
]
74-
},
75-
{
76-
"name": "daily_report",
77-
"json_schema": {},
78-
"supported_sync_modes": [
79-
"full_refresh",
80-
"incremental"
81-
],
82-
"source_defined_cursor": true,
83-
"default_cursor_field": [
84-
"date"
85-
]
86-
},
87-
{
88-
"name": "geo_report",
89-
"json_schema": {},
90-
"supported_sync_modes": [
91-
"full_refresh",
92-
"incremental"
93-
],
94-
"source_defined_cursor": true,
95-
"default_cursor_field": [
96-
"date"
97-
]
98-
},
99-
{
100-
"name": "retargeting_partners_report",
101-
"json_schema": {},
102-
"supported_sync_modes": [
103-
"full_refresh",
104-
"incremental"
105-
],
106-
"source_defined_cursor": true,
107-
"default_cursor_field": [
108-
"date"
109-
]
110-
},
111-
{
112-
"name": "retargeting_daily_report",
113-
"json_schema": {},
114-
"supported_sync_modes": [
115-
"full_refresh",
116-
"incremental"
117-
],
118-
"source_defined_cursor": true,
119-
"default_cursor_field": [
120-
"date"
121-
]
122-
},
123-
{
124-
"name": "retargeting_geo_report",
125-
"json_schema": {},
126-
"supported_sync_modes": [
127-
"full_refresh",
128-
"incremental"
129-
],
130-
"source_defined_cursor": true,
131-
"default_cursor_field": [
132-
"date"
133-
]
134-
}
3+
{
4+
"name": "in_app_events",
5+
"json_schema": {},
6+
"supported_sync_modes": ["full_refresh", "incremental"],
7+
"source_defined_cursor": true,
8+
"default_cursor_field": ["event_time"]
9+
},
10+
{
11+
"name": "installs",
12+
"json_schema": {},
13+
"supported_sync_modes": ["full_refresh", "incremental"],
14+
"source_defined_cursor": true,
15+
"default_cursor_field": ["install_time"]
16+
},
17+
{
18+
"name": "uninstall_events",
19+
"json_schema": {},
20+
"supported_sync_modes": ["full_refresh", "incremental"],
21+
"source_defined_cursor": true,
22+
"default_cursor_field": ["event_time"]
23+
},
24+
{
25+
"name": "retargeting_in_app_events",
26+
"json_schema": {},
27+
"supported_sync_modes": ["full_refresh", "incremental"],
28+
"source_defined_cursor": true,
29+
"default_cursor_field": ["event_time"]
30+
},
31+
{
32+
"name": "retargeting_conversions",
33+
"json_schema": {},
34+
"supported_sync_modes": ["full_refresh", "incremental"],
35+
"source_defined_cursor": true,
36+
"default_cursor_field": ["install_time"]
37+
},
38+
{
39+
"name": "partners_report",
40+
"json_schema": {},
41+
"supported_sync_modes": ["full_refresh", "incremental"],
42+
"source_defined_cursor": true,
43+
"default_cursor_field": ["date"]
44+
},
45+
{
46+
"name": "daily_report",
47+
"json_schema": {},
48+
"supported_sync_modes": ["full_refresh", "incremental"],
49+
"source_defined_cursor": true,
50+
"default_cursor_field": ["date"]
51+
},
52+
{
53+
"name": "geo_report",
54+
"json_schema": {},
55+
"supported_sync_modes": ["full_refresh", "incremental"],
56+
"source_defined_cursor": true,
57+
"default_cursor_field": ["date"]
58+
},
59+
{
60+
"name": "retargeting_partners_report",
61+
"json_schema": {},
62+
"supported_sync_modes": ["full_refresh", "incremental"],
63+
"source_defined_cursor": true,
64+
"default_cursor_field": ["date"]
65+
},
66+
{
67+
"name": "retargeting_daily_report",
68+
"json_schema": {},
69+
"supported_sync_modes": ["full_refresh", "incremental"],
70+
"source_defined_cursor": true,
71+
"default_cursor_field": ["date"]
72+
},
73+
{
74+
"name": "retargeting_geo_report",
75+
"json_schema": {},
76+
"supported_sync_modes": ["full_refresh", "incremental"],
77+
"source_defined_cursor": true,
78+
"default_cursor_field": ["date"]
79+
}
13580
]
136-
}
81+
}

0 commit comments

Comments
 (0)