Skip to content

Commit fa2b33c

Browse files
chore: speakeasy SDK regeneration (#1)
* ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.1.1 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.1.2 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.2.0 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.3.1 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.3.2 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.3.3 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.4.5 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.4.8 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.5.0 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.5.3 * ci: regenerated with OpenAPI Doc 1.0.0, Speakeay CLI 1.5.4 --------- Co-authored-by: speakeasybot <bot@speakeasyapi.dev>
1 parent 0ea9a67 commit fa2b33c

395 files changed

Lines changed: 3819 additions & 1481 deletions

File tree

Some content is hidden

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

.gitignore

100644100755
File mode changed.

README.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Epilot is the digital foundation for sales, service, network and implementation
88
### Gradle
99

1010
```groovy
11-
implementation 'dev.epilot.sdk:epilot-sdk-java:1.0.0'
11+
implementation 'dev.epilot.sdk:epilot-sdk-java:1.5.2'
1212
```
1313
<!-- End SDK Installation -->
1414

@@ -74,13 +74,13 @@ DELETE /v1/access-tokens/api_5ZugdRXasLfWBypHi93Fk
7474
```java
7575
package hello.world;
7676

77-
import dev.epilot.sdk.EpilotApi;
77+
import dev.epilot.sdk.EpilotAPI;
7878
import dev.epilot.sdk.models.shared.Security;
7979

8080
public class Application {
8181
public static void main(String[] args) {
8282
try {
83-
EpilotApi.Builder builder = EpilotApi.builder();
83+
EpilotAPI.Builder builder = EpilotAPI.builder();
8484

8585
builder.setSecurity(
8686
new Security() {{
@@ -90,15 +90,17 @@ public class Application {
9090
}}
9191
);
9292

93-
EpilotApi sdk = builder.build();
93+
EpilotAPI sdk = builder.build();
9494

9595
AttachActivityRequest req = new AttachActivityRequest() {{
9696
pathParams = new AttachActivityPathParams() {{
97-
id = "sit";
97+
id = "unde";
9898
}};
9999
queryParams = new AttachActivityQueryParams() {{
100-
entities = new String[]() {{
101-
add("culpa"),
100+
entities = new String[]{{
101+
add("porro"),
102+
add("nulla"),
103+
add("id"),
102104
}};
103105
}};
104106
}};
@@ -117,14 +119,15 @@ public class Application {
117119
<!-- Start SDK Available Operations -->
118120
## SDK Available Operations
119121

120-
### Activity
122+
123+
### activity
121124

122125
* `attachActivity` - attachActivity
123126
* `createActivity` - createActivity
124127
* `getActivity` - getActivity
125128
* `getEntityActivityFeed` - getEntityActivityFeed
126129

127-
### Entities
130+
### entities
128131

129132
* `autocomplete` - autocomplete
130133
* `createEntity` - createEntity
@@ -134,12 +137,12 @@ public class Application {
134137
* `updateEntity` - updateEntity
135138
* `upsertEntity` - upsertEntity
136139

137-
### Export
140+
### export
138141

139142
* `exportEntities` - exportEntities
140143
* `importEntities` - importEntities
141144

142-
### Journeys
145+
### journeys
143146

144147
* `createJourney` - createJourney
145148
* `getJourney` - getJourney
@@ -149,22 +152,22 @@ public class Application {
149152
* `searchJourneys` - searchJourneys
150153
* `updateJourney` - updateJourney
151154

152-
### Relations
155+
### relations
153156

154157
* `addRelations` - addRelations
155158
* `deleteRelation` - deleteRelation
156159
* `getRelations` - getRelations
157160
* `updateRelation` - updateRelation
158161

159-
### Saved Views
162+
### savedViews
160163

161164
* `createSavedView` - createSavedView
162165
* `deleteSavedView` - deleteSavedView
163166
* `getSavedView` - getSavedView
164167
* `listSavedViews` - listSavedViews
165168
* `updateSavedView` - updateSavedView
166169

167-
### Schemas
170+
### schemas
168171

169172
* `createNewSchemaVersion` - createNewSchemaVersion
170173
* `deleteSchemaById` - deleteSchemaById
@@ -174,7 +177,7 @@ public class Application {
174177
* `listSchemas` - listSchemas
175178
* `listTaxonomyClassificationsForSchema` - listTaxonomyClassificationsForSchema
176179

177-
### Taxonomy
180+
### taxonomy
178181

179182
* `getTaxonomy` - getTaxonomy
180183
* `listTaxonomies` - listTaxonomies
@@ -197,7 +200,6 @@ public class Application {
197200
* `getFlow` - getFlow
198201
* `putFlow` - putFlow
199202
* `searchFlows` - searchFlows
200-
201203
<!-- End SDK Available Operations -->
202204

203205
### SDK Generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)

RELEASES.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
2+
3+
## Version 1.1.0
4+
### Changes
5+
Based on:
6+
- OpenAPI Doc 1.0.0 ./openapi.yaml
7+
- Speakeasy CLI 1.1.1 https://github.com/speakeasy-api/speakeasy
8+
9+
## Version 1.1.1
10+
### Changes
11+
Based on:
12+
- OpenAPI Doc 1.0.0 ./openapi.yaml
13+
- Speakeasy CLI 1.1.2 https://github.com/speakeasy-api/speakeasy
14+
15+
## Version 1.2.0
16+
### Changes
17+
Based on:
18+
- OpenAPI Doc 1.0.0 ./openapi.yaml
19+
- Speakeasy CLI 1.2.0 https://github.com/speakeasy-api/speakeasy
20+
21+
## Version 1.3.0
22+
### Changes
23+
Based on:
24+
- OpenAPI Doc 1.0.0 ./openapi.yaml
25+
- Speakeasy CLI 1.3.1 https://github.com/speakeasy-api/speakeasy
26+
27+
## Version 1.3.1
28+
### Changes
29+
Based on:
30+
- OpenAPI Doc 1.0.0 ./openapi.yaml
31+
- Speakeasy CLI 1.3.2 https://github.com/speakeasy-api/speakeasy
32+
33+
## Version 1.3.2
34+
### Changes
35+
Based on:
36+
- OpenAPI Doc 1.0.0 ./openapi.yaml
37+
- Speakeasy CLI 1.3.3 https://github.com/speakeasy-api/speakeasy
38+
39+
## Version 1.4.0
40+
### Changes
41+
Based on:
42+
- OpenAPI Doc 1.0.0 ./openapi.yaml
43+
- Speakeasy CLI 1.4.5 https://github.com/speakeasy-api/speakeasy
44+
45+
## Version 1.4.1
46+
### Changes
47+
Based on:
48+
- OpenAPI Doc 1.0.0 ./openapi.yaml
49+
- Speakeasy CLI 1.4.8 https://github.com/speakeasy-api/speakeasy
50+
51+
## Version 1.5.0
52+
### Changes
53+
Based on:
54+
- OpenAPI Doc 1.0.0 ./openapi.yaml
55+
- Speakeasy CLI 1.5.0 https://github.com/speakeasy-api/speakeasy
56+
57+
## Version 1.5.1
58+
### Changes
59+
Based on:
60+
- OpenAPI Doc 1.0.0 ./openapi.yaml
61+
- Speakeasy CLI 1.5.3 https://github.com/speakeasy-api/speakeasy
62+
63+
## Version 1.5.2
64+
### Changes
65+
Based on:
66+
- OpenAPI Doc 1.0.0 ./openapi.yaml
67+
- Speakeasy CLI 1.5.4 https://github.com/speakeasy-api/speakeasy

USAGE.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
```java
33
package hello.world;
44

5-
import dev.epilot.sdk.EpilotApi;
5+
import dev.epilot.sdk.EpilotAPI;
66
import dev.epilot.sdk.models.shared.Security;
77

88
public class Application {
99
public static void main(String[] args) {
1010
try {
11-
EpilotApi.Builder builder = EpilotApi.builder();
11+
EpilotAPI.Builder builder = EpilotAPI.builder();
1212

1313
builder.setSecurity(
1414
new Security() {{
@@ -18,15 +18,17 @@ public class Application {
1818
}}
1919
);
2020

21-
EpilotApi sdk = builder.build();
21+
EpilotAPI sdk = builder.build();
2222

2323
AttachActivityRequest req = new AttachActivityRequest() {{
2424
pathParams = new AttachActivityPathParams() {{
25-
id = "sit";
25+
id = "unde";
2626
}};
2727
queryParams = new AttachActivityQueryParams() {{
28-
entities = new String[]() {{
29-
add("culpa"),
28+
entities = new String[]{{
29+
add("porro"),
30+
add("nulla"),
31+
add("id"),
3032
}};
3133
}};
3234
}};

0 commit comments

Comments
 (0)