Skip to content

Commit 445977d

Browse files
authored
Merge pull request #29 from airbytehq/speakeasy-sdk-regen-1684441154
chore: speakeasy sdk regeneration - Generate
2 parents ee715f0 + 9845235 commit 445977d

File tree

1,578 files changed

+13831
-13676
lines changed

Some content is hidden

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

1,578 files changed

+13831
-13676
lines changed

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Developer Portal UI can also be used to help build your integration by showi
2121
### Gradle
2222

2323
```groovy
24-
implementation 'com.airbyte.api:public-api:0.11.0'
24+
implementation 'com.airbyte.api:public-api:0.12.0'
2525
```
2626
<!-- End SDK Installation -->
2727

@@ -34,11 +34,11 @@ import com.airbyte.api.Airbyte;
3434
import com.airbyte.api.models.operations.CreateConnectionResponse;
3535
import com.airbyte.api.models.shared.ConnectionCreateRequest;
3636
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
37-
import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum;
38-
import com.airbyte.api.models.shared.GeographyEnumEnum;
39-
import com.airbyte.api.models.shared.NamespaceDefinitionEnumEnum;
40-
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnumEnum;
41-
import com.airbyte.api.models.shared.ScheduleTypeEnumEnum;
37+
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
38+
import com.airbyte.api.models.shared.GeographyEnum;
39+
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
40+
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnum;
41+
import com.airbyte.api.models.shared.ScheduleTypeEnum;
4242
import com.airbyte.api.models.shared.Security;
4343
import com.airbyte.api.models.shared.StreamConfiguration;
4444
import com.airbyte.api.models.shared.StreamConfigurations;
@@ -75,7 +75,7 @@ public class Application {
7575
add("iste"),
7676
}}),
7777
}};
78-
syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND;
78+
syncMode = ConnectionSyncModeEnum.FULL_REFRESH_APPEND;
7979
}}),
8080
add(new StreamConfiguration("excepturi") {{
8181
cursorField = new String[]{{
@@ -93,7 +93,7 @@ public class Application {
9393
add("nemo"),
9494
}}),
9595
}};
96-
syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND;
96+
syncMode = ConnectionSyncModeEnum.FULL_REFRESH_APPEND;
9797
}}),
9898
add(new StreamConfiguration("quia") {{
9999
cursorField = new String[]{{
@@ -114,17 +114,17 @@ public class Application {
114114
add("velit"),
115115
}}),
116116
}};
117-
syncMode = ConnectionSyncModeEnumEnum.INCREMENTAL_APPEND;
117+
syncMode = ConnectionSyncModeEnum.INCREMENTAL_APPEND;
118118
}}),
119119
}};
120120
}};;
121-
dataResidency = GeographyEnumEnum.US;
121+
dataResidency = GeographyEnum.US;
122122
name = "Kayla O'Kon";
123-
namespaceDefinition = NamespaceDefinitionEnumEnum.CUSTOM_FORMAT;
123+
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
124124
namespaceFormat = "${SOURCE_NAMESPACE}";
125-
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnumEnum.IGNORE;
125+
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
126126
prefix = "tenetur";
127-
schedule = new ConnectionScheduleCreate(ScheduleTypeEnumEnum.MANUAL) {{
127+
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.MANUAL) {{
128128
cronExpression = "id";
129129
}};;
130130
}};

RELEASES.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -287,4 +287,12 @@ Based on:
287287
- OpenAPI Doc 1.0.0
288288
- Speakeasy CLI 1.34.0 (2.30.0) https://github.com/speakeasy-api/speakeasy
289289
### Releases
290-
- [Maven Central v0.11.0] https://central.sonatype.com/artifact/com.airbyte/api/0.11.0 - .
290+
- [Maven Central v0.11.0] https://central.sonatype.com/artifact/com.airbyte/api/0.11.0 - .
291+
292+
## 2023-05-18 20:19:11
293+
### Changes
294+
Based on:
295+
- OpenAPI Doc 1.0.0
296+
- Speakeasy CLI 1.35.0 (2.31.0) https://github.com/speakeasy-api/speakeasy
297+
### Releases
298+
- [Maven Central v0.12.0] https://central.sonatype.com/artifact/com.airbyte/api/0.12.0 - .

USAGE.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import com.airbyte.api.Airbyte;
66
import com.airbyte.api.models.operations.CreateConnectionResponse;
77
import com.airbyte.api.models.shared.ConnectionCreateRequest;
88
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
9-
import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum;
10-
import com.airbyte.api.models.shared.GeographyEnumEnum;
11-
import com.airbyte.api.models.shared.NamespaceDefinitionEnumEnum;
12-
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnumEnum;
13-
import com.airbyte.api.models.shared.ScheduleTypeEnumEnum;
9+
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
10+
import com.airbyte.api.models.shared.GeographyEnum;
11+
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
12+
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnum;
13+
import com.airbyte.api.models.shared.ScheduleTypeEnum;
1414
import com.airbyte.api.models.shared.Security;
1515
import com.airbyte.api.models.shared.StreamConfiguration;
1616
import com.airbyte.api.models.shared.StreamConfigurations;
@@ -47,7 +47,7 @@ public class Application {
4747
add("iste"),
4848
}}),
4949
}};
50-
syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND;
50+
syncMode = ConnectionSyncModeEnum.FULL_REFRESH_APPEND;
5151
}}),
5252
add(new StreamConfiguration("excepturi") {{
5353
cursorField = new String[]{{
@@ -65,7 +65,7 @@ public class Application {
6565
add("nemo"),
6666
}}),
6767
}};
68-
syncMode = ConnectionSyncModeEnumEnum.FULL_REFRESH_APPEND;
68+
syncMode = ConnectionSyncModeEnum.FULL_REFRESH_APPEND;
6969
}}),
7070
add(new StreamConfiguration("quia") {{
7171
cursorField = new String[]{{
@@ -86,17 +86,17 @@ public class Application {
8686
add("velit"),
8787
}}),
8888
}};
89-
syncMode = ConnectionSyncModeEnumEnum.INCREMENTAL_APPEND;
89+
syncMode = ConnectionSyncModeEnum.INCREMENTAL_APPEND;
9090
}}),
9191
}};
9292
}};;
93-
dataResidency = GeographyEnumEnum.US;
93+
dataResidency = GeographyEnum.US;
9494
name = "Kayla O'Kon";
95-
namespaceDefinition = NamespaceDefinitionEnumEnum.CUSTOM_FORMAT;
95+
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
9696
namespaceFormat = "${SOURCE_NAMESPACE}";
97-
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnumEnum.IGNORE;
97+
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.IGNORE;
9898
prefix = "tenetur";
99-
schedule = new ConnectionScheduleCreate(ScheduleTypeEnumEnum.MANUAL) {{
99+
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.MANUAL) {{
100100
cronExpression = "id";
101101
}};;
102102
}};

docs/connections/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ import com.airbyte.api.Airbyte;
2020
import com.airbyte.api.models.operations.CreateConnectionResponse;
2121
import com.airbyte.api.models.shared.ConnectionCreateRequest;
2222
import com.airbyte.api.models.shared.ConnectionScheduleCreate;
23-
import com.airbyte.api.models.shared.ConnectionSyncModeEnumEnum;
24-
import com.airbyte.api.models.shared.GeographyEnumEnum;
25-
import com.airbyte.api.models.shared.NamespaceDefinitionEnumEnum;
26-
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnumEnum;
27-
import com.airbyte.api.models.shared.ScheduleTypeEnumEnum;
23+
import com.airbyte.api.models.shared.ConnectionSyncModeEnum;
24+
import com.airbyte.api.models.shared.GeographyEnum;
25+
import com.airbyte.api.models.shared.NamespaceDefinitionEnum;
26+
import com.airbyte.api.models.shared.NonBreakingSchemaUpdatesBehaviorEnum;
27+
import com.airbyte.api.models.shared.ScheduleTypeEnum;
2828
import com.airbyte.api.models.shared.Security;
2929
import com.airbyte.api.models.shared.StreamConfiguration;
3030
import com.airbyte.api.models.shared.StreamConfigurations;
@@ -71,17 +71,17 @@ public class Application {
7171
add("illum"),
7272
}}),
7373
}};
74-
syncMode = ConnectionSyncModeEnumEnum.INCREMENTAL_DEDUPED_HISTORY;
74+
syncMode = ConnectionSyncModeEnum.INCREMENTAL_DEDUPED_HISTORY;
7575
}}),
7676
}};
7777
}};;
78-
dataResidency = GeographyEnumEnum.AUTO;
78+
dataResidency = GeographyEnum.AUTO;
7979
name = "Blanca Schulist";
80-
namespaceDefinition = NamespaceDefinitionEnumEnum.CUSTOM_FORMAT;
80+
namespaceDefinition = NamespaceDefinitionEnum.CUSTOM_FORMAT;
8181
namespaceFormat = "${SOURCE_NAMESPACE}";
82-
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnumEnum.DISABLE_CONNECTION;
82+
nonBreakingSchemaUpdatesBehavior = NonBreakingSchemaUpdatesBehaviorEnum.DISABLE_CONNECTION;
8383
prefix = "non";
84-
schedule = new ConnectionScheduleCreate(ScheduleTypeEnumEnum.CRON) {{
84+
schedule = new ConnectionScheduleCreate(ScheduleTypeEnum.CRON) {{
8585
cronExpression = "enim";
8686
}};;
8787
}};

0 commit comments

Comments
 (0)