Skip to content

Commit f46b35a

Browse files
committed
520 Generate
1 parent 1c5b133 commit f46b35a

File tree

356 files changed

+726
-1253
lines changed

Some content is hidden

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

356 files changed

+726
-1253
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.16.0
1+
7.17.0

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<dependency>
8484
<groupId>org.openapitools</groupId>
8585
<artifactId>jackson-databind-nullable</artifactId>
86-
<version>0.2.7</version>
86+
<version>0.2.8</version>
8787
</dependency>
8888
<!-- Bean Validation API support -->
8989
<dependency>

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/ApiClientApi.java

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.16.0).
2+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.17.0).
33
* https://openapi-generator.tech
44
* Do not edit the class manually.
55
*/
@@ -34,7 +34,7 @@
3434
import java.util.Optional;
3535
import jakarta.annotation.Generated;
3636

37-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
37+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
3838
@Validated
3939
@Tag(name = "api-client", description = "The Automation API Platform Client Internal API")
4040
public interface ApiClientApi {
@@ -43,7 +43,7 @@ default Optional<NativeWebRequest> getRequest() {
4343
return Optional.empty();
4444
}
4545

46-
public static final String PATH_CREATE_API_CLIENT = "/api-clients";
46+
String PATH_CREATE_API_CLIENT = "/api-clients";
4747
/**
4848
* POST /api-clients : Create a new API client
4949
* Create a new API client.
@@ -68,7 +68,6 @@ default Optional<NativeWebRequest> getRequest() {
6868
produces = { "application/json" },
6969
consumes = { "application/json" }
7070
)
71-
7271
default ResponseEntity<CreateApiClient200ResponseModel> createApiClient(
7372
@Parameter(name = "ApiClientModel", description = "", required = true) @Valid @RequestBody ApiClientModel apiClientModel
7473
) {
@@ -86,7 +85,7 @@ default ResponseEntity<CreateApiClient200ResponseModel> createApiClient(
8685
}
8786

8887

89-
public static final String PATH_DELETE_API_CLIENT = "/api-client/{id}";
88+
String PATH_DELETE_API_CLIENT = "/api-client/{id}";
9089
/**
9190
* DELETE /api-client/{id} : Delete an API client
9291
* Delete an API client.
@@ -107,7 +106,6 @@ default ResponseEntity<CreateApiClient200ResponseModel> createApiClient(
107106
method = RequestMethod.DELETE,
108107
value = ApiClientApi.PATH_DELETE_API_CLIENT
109108
)
110-
111109
default ResponseEntity<Void> deleteApiClient(
112110
@NotNull @Parameter(name = "id", description = "The id of an API client.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id
113111
) {
@@ -116,7 +114,7 @@ default ResponseEntity<Void> deleteApiClient(
116114
}
117115

118116

119-
public static final String PATH_GET_API_CLIENT = "/api-client/{id}";
117+
String PATH_GET_API_CLIENT = "/api-client/{id}";
120118
/**
121119
* GET /api-client/{id} : Get an API client by id
122120
* Get an API client by id.
@@ -140,7 +138,6 @@ default ResponseEntity<Void> deleteApiClient(
140138
value = ApiClientApi.PATH_GET_API_CLIENT,
141139
produces = { "application/json" }
142140
)
143-
144141
default ResponseEntity<ApiClientModel> getApiClient(
145142
@NotNull @Parameter(name = "id", description = "The id of an API client.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id
146143
) {
@@ -158,7 +155,7 @@ default ResponseEntity<ApiClientModel> getApiClient(
158155
}
159156

160157

161-
public static final String PATH_GET_API_CLIENTS = "/api-clients";
158+
String PATH_GET_API_CLIENTS = "/api-clients";
162159
/**
163160
* GET /api-clients : Get API clients
164161
* Get API clients.
@@ -181,7 +178,6 @@ default ResponseEntity<ApiClientModel> getApiClient(
181178
value = ApiClientApi.PATH_GET_API_CLIENTS,
182179
produces = { "application/json" }
183180
)
184-
185181
default ResponseEntity<List<ApiClientModel>> getApiClients(
186182

187183
) {
@@ -199,7 +195,7 @@ default ResponseEntity<List<ApiClientModel>> getApiClients(
199195
}
200196

201197

202-
public static final String PATH_UPDATE_API_CLIENT = "/api-client/{id}";
198+
String PATH_UPDATE_API_CLIENT = "/api-client/{id}";
203199
/**
204200
* PUT /api-client/{id} : Update an existing API client
205201
* Update an existing API client.
@@ -222,7 +218,6 @@ default ResponseEntity<List<ApiClientModel>> getApiClients(
222218
value = ApiClientApi.PATH_UPDATE_API_CLIENT,
223219
consumes = { "application/json" }
224220
)
225-
226221
default ResponseEntity<Void> updateApiClient(
227222
@NotNull @Parameter(name = "id", description = "The id of an API client.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id,
228223
@Parameter(name = "ApiClientModel", description = "", required = true) @Valid @RequestBody ApiClientModel apiClientModel

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/ApiCollectionApi.java

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.16.0).
2+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.17.0).
33
* https://openapi-generator.tech
44
* Do not edit the class manually.
55
*/
@@ -34,7 +34,7 @@
3434
import java.util.Optional;
3535
import jakarta.annotation.Generated;
3636

37-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
37+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
3838
@Validated
3939
@Tag(name = "api-collection", description = "The Automation API Platform Collection Internal API")
4040
public interface ApiCollectionApi {
@@ -43,7 +43,7 @@ default Optional<NativeWebRequest> getRequest() {
4343
return Optional.empty();
4444
}
4545

46-
public static final String PATH_CREATE_API_COLLECTION = "/api-collections";
46+
String PATH_CREATE_API_COLLECTION = "/api-collections";
4747
/**
4848
* POST /api-collections : Create a new API collection
4949
* Create a new API collection.
@@ -68,7 +68,6 @@ default Optional<NativeWebRequest> getRequest() {
6868
produces = { "application/json" },
6969
consumes = { "application/json" }
7070
)
71-
7271
default ResponseEntity<ApiCollectionModel> createApiCollection(
7372
@Parameter(name = "ApiCollectionModel", description = "", required = true) @Valid @RequestBody ApiCollectionModel apiCollectionModel
7473
) {
@@ -86,7 +85,7 @@ default ResponseEntity<ApiCollectionModel> createApiCollection(
8685
}
8786

8887

89-
public static final String PATH_DELETE_API_COLLECTION = "/api-collections/{id}";
88+
String PATH_DELETE_API_COLLECTION = "/api-collections/{id}";
9089
/**
9190
* DELETE /api-collections/{id} : Delete an API collection
9291
* Delete an API collection.
@@ -107,7 +106,6 @@ default ResponseEntity<ApiCollectionModel> createApiCollection(
107106
method = RequestMethod.DELETE,
108107
value = ApiCollectionApi.PATH_DELETE_API_COLLECTION
109108
)
110-
111109
default ResponseEntity<Void> deleteApiCollection(
112110
@NotNull @Parameter(name = "id", description = "The id of an API collection.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id
113111
) {
@@ -116,7 +114,7 @@ default ResponseEntity<Void> deleteApiCollection(
116114
}
117115

118116

119-
public static final String PATH_GET_API_COLLECTION = "/api-collections/{id}";
117+
String PATH_GET_API_COLLECTION = "/api-collections/{id}";
120118
/**
121119
* GET /api-collections/{id} : Get an API collection by id
122120
* Get an API collection by id.
@@ -140,7 +138,6 @@ default ResponseEntity<Void> deleteApiCollection(
140138
value = ApiCollectionApi.PATH_GET_API_COLLECTION,
141139
produces = { "application/json" }
142140
)
143-
144141
default ResponseEntity<ApiCollectionModel> getApiCollection(
145142
@NotNull @Parameter(name = "id", description = "The id of an API collection.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id
146143
) {
@@ -158,7 +155,7 @@ default ResponseEntity<ApiCollectionModel> getApiCollection(
158155
}
159156

160157

161-
public static final String PATH_GET_WORKSPACE_API_COLLECTIONS = "/workspaces/{id}/api-collections";
158+
String PATH_GET_WORKSPACE_API_COLLECTIONS = "/workspaces/{id}/api-collections";
162159
/**
163160
* GET /workspaces/{id}/api-collections : Get all workspace API collections
164161
* Get all workspace API collections.
@@ -185,7 +182,6 @@ default ResponseEntity<ApiCollectionModel> getApiCollection(
185182
value = ApiCollectionApi.PATH_GET_WORKSPACE_API_COLLECTIONS,
186183
produces = { "application/json" }
187184
)
188-
189185
default ResponseEntity<List<ApiCollectionModel>> getWorkspaceApiCollections(
190186
@NotNull @Parameter(name = "id", description = "The id of a workspace.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id,
191187
@Parameter(name = "environmentId", description = "The environment id.", in = ParameterIn.QUERY) @Valid @RequestParam(value = "environmentId", required = false) @Nullable Long environmentId,
@@ -206,7 +202,7 @@ default ResponseEntity<List<ApiCollectionModel>> getWorkspaceApiCollections(
206202
}
207203

208204

209-
public static final String PATH_UPDATE_API_COLLECTION = "/api-collections/{id}";
205+
String PATH_UPDATE_API_COLLECTION = "/api-collections/{id}";
210206
/**
211207
* PUT /api-collections/{id} : Update an existing API collection
212208
* Update an existing API collection.
@@ -232,7 +228,6 @@ default ResponseEntity<List<ApiCollectionModel>> getWorkspaceApiCollections(
232228
produces = { "application/json" },
233229
consumes = { "application/json" }
234230
)
235-
236231
default ResponseEntity<ApiCollectionModel> updateApiCollection(
237232
@NotNull @Parameter(name = "id", description = "The id of an API collection.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id,
238233
@Parameter(name = "ApiCollectionModel", description = "", required = true) @Valid @RequestBody ApiCollectionModel apiCollectionModel

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/ApiCollectionEndpointApi.java

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.16.0).
2+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.17.0).
33
* https://openapi-generator.tech
44
* Do not edit the class manually.
55
*/
@@ -33,7 +33,7 @@
3333
import java.util.Optional;
3434
import jakarta.annotation.Generated;
3535

36-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
36+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
3737
@Validated
3838
@Tag(name = "api-collection-endpoint", description = "The Automation API Platform Collection Endpoint Internal API")
3939
public interface ApiCollectionEndpointApi {
@@ -42,7 +42,7 @@ default Optional<NativeWebRequest> getRequest() {
4242
return Optional.empty();
4343
}
4444

45-
public static final String PATH_CREATE_API_COLLECTION_ENDPOINT = "/api-collection-endpoints";
45+
String PATH_CREATE_API_COLLECTION_ENDPOINT = "/api-collection-endpoints";
4646
/**
4747
* POST /api-collection-endpoints : Create a new API collection endpoint
4848
* Create a new API collection endpoint.
@@ -67,7 +67,6 @@ default Optional<NativeWebRequest> getRequest() {
6767
produces = { "application/json" },
6868
consumes = { "application/json" }
6969
)
70-
7170
default ResponseEntity<ApiCollectionEndpointModel> createApiCollectionEndpoint(
7271
@Parameter(name = "ApiCollectionEndpointModel", description = "", required = true) @Valid @RequestBody ApiCollectionEndpointModel apiCollectionEndpointModel
7372
) {
@@ -85,7 +84,7 @@ default ResponseEntity<ApiCollectionEndpointModel> createApiCollectionEndpoint(
8584
}
8685

8786

88-
public static final String PATH_DELETE_API_COLLECTION_ENDPOINT = "/api-collection-endpoints/{id}";
87+
String PATH_DELETE_API_COLLECTION_ENDPOINT = "/api-collection-endpoints/{id}";
8988
/**
9089
* DELETE /api-collection-endpoints/{id} : Delete an API collection endpoint
9190
* Delete an API collection endpoint.
@@ -106,7 +105,6 @@ default ResponseEntity<ApiCollectionEndpointModel> createApiCollectionEndpoint(
106105
method = RequestMethod.DELETE,
107106
value = ApiCollectionEndpointApi.PATH_DELETE_API_COLLECTION_ENDPOINT
108107
)
109-
110108
default ResponseEntity<Void> deleteApiCollectionEndpoint(
111109
@NotNull @Parameter(name = "id", description = "The id of an API collection endpoint.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id
112110
) {
@@ -115,7 +113,7 @@ default ResponseEntity<Void> deleteApiCollectionEndpoint(
115113
}
116114

117115

118-
public static final String PATH_GET_API_COLLECTION_ENDPOINT = "/api-collection-endpoints/{id}";
116+
String PATH_GET_API_COLLECTION_ENDPOINT = "/api-collection-endpoints/{id}";
119117
/**
120118
* GET /api-collection-endpoints/{id} : Get an API collection endpoint by id
121119
* Get an API collection endpoint by id.
@@ -139,7 +137,6 @@ default ResponseEntity<Void> deleteApiCollectionEndpoint(
139137
value = ApiCollectionEndpointApi.PATH_GET_API_COLLECTION_ENDPOINT,
140138
produces = { "application/json" }
141139
)
142-
143140
default ResponseEntity<ApiCollectionEndpointModel> getApiCollectionEndpoint(
144141
@NotNull @Parameter(name = "id", description = "The id of an API collection endpoint.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id
145142
) {
@@ -157,7 +154,7 @@ default ResponseEntity<ApiCollectionEndpointModel> getApiCollectionEndpoint(
157154
}
158155

159156

160-
public static final String PATH_UPDATE_API_COLLECTION_ENDPOINT = "/api-collection-endpoints/{id}";
157+
String PATH_UPDATE_API_COLLECTION_ENDPOINT = "/api-collection-endpoints/{id}";
161158
/**
162159
* PUT /api-collection-endpoints/{id} : Update an existing API collection endpoint
163160
* Update an existing API collection endpoint.
@@ -183,7 +180,6 @@ default ResponseEntity<ApiCollectionEndpointModel> getApiCollectionEndpoint(
183180
produces = { "application/json" },
184181
consumes = { "application/json" }
185182
)
186-
187183
default ResponseEntity<ApiCollectionEndpointModel> updateApiCollectionEndpoint(
188184
@NotNull @Parameter(name = "id", description = "The id of an API collection endpoint.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id,
189185
@Parameter(name = "ApiCollectionEndpointModel", description = "", required = true) @Valid @RequestBody ApiCollectionEndpointModel apiCollectionEndpointModel

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/ApiCollectionTagApi.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.16.0).
2+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (7.17.0).
33
* https://openapi-generator.tech
44
* Do not edit the class manually.
55
*/
@@ -34,7 +34,7 @@
3434
import java.util.Optional;
3535
import jakarta.annotation.Generated;
3636

37-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
37+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
3838
@Validated
3939
@Tag(name = "api-collection-tag", description = "The Automation API Platform Collection Tag Internal API")
4040
public interface ApiCollectionTagApi {
@@ -43,7 +43,7 @@ default Optional<NativeWebRequest> getRequest() {
4343
return Optional.empty();
4444
}
4545

46-
public static final String PATH_GET_API_COLLECTION_TAGS = "/api-collections/tags";
46+
String PATH_GET_API_COLLECTION_TAGS = "/api-collections/tags";
4747
/**
4848
* GET /api-collections/tags : Get API collection tags
4949
* Get API collection tags.
@@ -66,7 +66,6 @@ default Optional<NativeWebRequest> getRequest() {
6666
value = ApiCollectionTagApi.PATH_GET_API_COLLECTION_TAGS,
6767
produces = { "application/json" }
6868
)
69-
7069
default ResponseEntity<List<TagModel>> getApiCollectionTags(
7170

7271
) {
@@ -84,7 +83,7 @@ default ResponseEntity<List<TagModel>> getApiCollectionTags(
8483
}
8584

8685

87-
public static final String PATH_UPDATE_API_COLLECTION_TAGS = "/api-collections/{id}/tags";
86+
String PATH_UPDATE_API_COLLECTION_TAGS = "/api-collections/{id}/tags";
8887
/**
8988
* PUT /api-collections/{id}/tags : Updates tags of an existing API collection
9089
* Updates tags of an existing API collection.
@@ -107,7 +106,6 @@ default ResponseEntity<List<TagModel>> getApiCollectionTags(
107106
value = ApiCollectionTagApi.PATH_UPDATE_API_COLLECTION_TAGS,
108107
consumes = { "application/json" }
109108
)
110-
111109
default ResponseEntity<Void> updateApiCollectionTags(
112110
@NotNull @Parameter(name = "id", description = "The id of an API collection.", required = true, in = ParameterIn.PATH) @PathVariable("id") Long id,
113111
@Parameter(name = "UpdateTagsRequestModel", description = "", required = true) @Valid @RequestBody UpdateTagsRequestModel updateTagsRequestModel

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/model/ApiClientModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
@Schema(name = "ApiClient", description = "Contains generated key required for calling API.")
2626
@JsonTypeName("ApiClient")
27-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
27+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
2828
public class ApiClientModel {
2929

3030
private @Nullable String createdBy;

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/model/ApiCollectionEndpointModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
@Schema(name = "ApiCollectionEndpoint", description = "An API collection endpoint.")
2828
@JsonTypeName("ApiCollectionEndpoint")
29-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
29+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
3030
public class ApiCollectionEndpointModel {
3131

3232
private @Nullable Long apiCollectionId;

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/model/ApiCollectionModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
@Schema(name = "ApiCollection", description = "An API collection.")
3131
@JsonTypeName("ApiCollection")
32-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
32+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
3333
public class ApiCollectionModel {
3434

3535
private @Nullable Integer collectionVersion;

server/ee/libs/automation/automation-api-platform/automation-api-platform-configuration/automation-api-platform-configuration-rest/generated/src/main/java/com/bytechef/ee/automation/apiplatform/configuration/web/rest/model/CreateApiClient200ResponseModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222

2323
@JsonTypeName("createApiClient_200_response")
24-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:48.731112+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
24+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-20T06:27:35.285159+01:00[Europe/Zagreb]", comments = "Generator version: 7.17.0")
2525
public class CreateApiClient200ResponseModel {
2626

2727
private @Nullable String secretKey;

0 commit comments

Comments
 (0)