Skip to content
Open

3505 #3506

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export const NotificationEventTypeEnum = {
JobCreated: 'JOB_CREATED',
JobCompleted: 'JOB_COMPLETED',
JobFailed: 'JOB_FAILED',
JobStarted: 'JOB_STARTED'
JobStarted: 'JOB_STARTED',
JobStopped: 'JOB_STOPPED'
} as const;
export type NotificationEventTypeEnum = typeof NotificationEventTypeEnum[keyof typeof NotificationEventTypeEnum];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public enum Source {
public enum Type {

JOB_CANCELLED(Source.JOB, "CANCELLED"), JOB_CREATED(Source.JOB, "CREATED"),
JOB_COMPLETED(Source.JOB, "COMPLETED"), JOB_FAILED(Source.JOB, "FAILED"), JOB_STARTED(Source.JOB, "STARTED");
JOB_COMPLETED(Source.JOB, "COMPLETED"), JOB_FAILED(Source.JOB, "FAILED"),
JOB_STARTED(Source.JOB, "STARTED"), JOB_STOPPED(Source.JOB, "STOPPED");

private final Source source;
private final String value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import java.util.Optional;
import jakarta.annotation.Generated;

@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:42.849969+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-13T11:43:16.460432936+01:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
@Validated
@Tag(name = "notification", description = "The Platform Notification Internal API")
public interface NotificationApi {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import java.util.Optional;
import jakarta.annotation.Generated;

@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:42.849969+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-13T11:43:16.460432936+01:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
@Validated
@Tag(name = "notification-event", description = "The platform Notification Event Internal API")
public interface NotificationEventApi {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

@Schema(name = "NotificationEvent", description = "A notification event definition.")
@JsonTypeName("NotificationEvent")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:42.849969+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-13T11:43:16.460432936+01:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
public class NotificationEventModel {

private Long id;
Expand All @@ -40,7 +40,9 @@ public enum TypeEnum {

JOB_FAILED("JOB_FAILED"),

JOB_STARTED("JOB_STARTED");
JOB_STARTED("JOB_STARTED"),

JOB_STOPPED("JOB_STOPPED");

private final String value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

@Schema(name = "Notification", description = "A Notification definition.")
@JsonTypeName("Notification")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-10-07T14:49:42.849969+02:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2025-11-13T11:43:16.460432936+01:00[Europe/Zagreb]", comments = "Generator version: 7.16.0")
public class NotificationModel {

private @Nullable Long id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,4 @@ components:
- "JOB_COMPLETED"
- "JOB_FAILED"
- "JOB_STARTED"
- "JOB_STOPPED"
Loading