Skip to content

Commit 027ec63

Browse files
monikakusterivicac
authored andcommitted
2514 - generated
1 parent 3f0b19d commit 027ec63

File tree

315 files changed

+362
-341
lines changed

Some content is hidden

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

315 files changed

+362
-341
lines changed

client/src/ee/shared/middleware/automation/api-platform/runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414

1515

16-
export const BASE_PATH = "/api/automation/api-platform/internal".replace(/\/+$/, "");
16+
export const BASE_PATH = "http://localhost/api/automation/api-platform/internal".replace(/\/+$/, "");
1717

1818
export interface ConfigurationParameters {
1919
basePath?: string; // override base path

client/src/shared/middleware/platform/configuration/models/SaveWorkflowTestConfigurationInputsRequest.ts

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,17 @@ import { mapValues } from '../runtime';
2020
*/
2121
export interface SaveWorkflowTestConfigurationInputsRequest {
2222
/**
23-
* The input parameters used as workflow input values.
24-
* @type {{ [key: string]: string; }}
23+
*
24+
* @type {string}
2525
* @memberof SaveWorkflowTestConfigurationInputsRequest
2626
*/
27-
inputs?: { [key: string]: string; };
27+
key?: string;
28+
/**
29+
*
30+
* @type {string}
31+
* @memberof SaveWorkflowTestConfigurationInputsRequest
32+
*/
33+
value?: string;
2834
}
2935

3036
/**
@@ -44,7 +50,8 @@ export function SaveWorkflowTestConfigurationInputsRequestFromJSONTyped(json: an
4450
}
4551
return {
4652

47-
'inputs': json['inputs'] == null ? undefined : json['inputs'],
53+
'key': json['key'] == null ? undefined : json['key'],
54+
'value': json['value'] == null ? undefined : json['value'],
4855
};
4956
}
5057

@@ -59,7 +66,8 @@ export function SaveWorkflowTestConfigurationInputsRequestToJSONTyped(value?: Sa
5966

6067
return {
6168

62-
'inputs': value['inputs'],
69+
'key': value['key'],
70+
'value': value['value'],
6371
};
6472
}
6573

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
37+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
3838
@Validated
3939
@Tag(name = "api-client", description = "The Automation API Platform Client Internal API")
4040
public interface ApiClientApi {

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
36+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
3737
@Validated
3838
@Tag(name = "api-collection", description = "The Automation API Platform Collection Internal API")
3939
public interface ApiCollectionApi {

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
36+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
3737
@Validated
3838
@Tag(name = "api-collection-endpoint", description = "The Automation API Platform Collection Endpoint Internal API")
3939
public interface ApiCollectionEndpointApi {

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
37+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
3838
@Validated
3939
@Tag(name = "api-collection-tag", description = "The Automation API Platform Collection Tag Internal API")
4040
public interface ApiCollectionTagApi {

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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
27+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
29+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.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
@@ -30,7 +30,7 @@
3030

3131
@Schema(name = "ApiCollection", description = "An API collection.")
3232
@JsonTypeName("ApiCollection")
33-
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
33+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
3434
public class ApiCollectionModel {
3535

3636
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-07-25T11:11:27.674655+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
24+
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-08-22T09:07:41.418515386+02:00[Europe/Zagreb]", comments = "Generator version: 7.13.0")
2525
public class CreateApiClient200ResponseModel {
2626

2727
private @Nullable String secretKey;

0 commit comments

Comments
 (0)