Skip to content
Open
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
2 changes: 1 addition & 1 deletion main.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ using OpenAPI;
*/
@service(#{ title: "HyperFleet API" })
@info(#{
version: "1.0.24",
version: "1.0.25",
contact: #{
name: "HyperFleet Team",
url: "https://github.com/openshift-hyperfleet",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperfleet",
"version": "1.0.24",
"version": "1.0.25",
"type": "module",
"exports": {
"./*": "./*"
Expand Down
14 changes: 1 addition & 13 deletions schemas/core/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.0
info:
title: HyperFleet API
version: 1.0.24
version: 1.0.25
contact:
name: HyperFleet Team
url: https://github.com/openshift-hyperfleet
Expand Down Expand Up @@ -1794,19 +1794,16 @@ components:
description: Timestamp when the resource was last updated
created_by:
type: string
format: email
description: Identity that created the resource
updated_by:
type: string
format: email
description: Identity that last updated the resource
deleted_time:
type: string
format: date-time
description: Timestamp when deletion was requested; omitted if not marked for deletion
deleted_by:
type: string
format: email
description: Identity that requested deletion; omitted if not marked for deletion
generation:
type: integer
Expand Down Expand Up @@ -2074,19 +2071,16 @@ components:
description: Timestamp when the resource was last updated
created_by:
type: string
format: email
description: Identity that created the resource
updated_by:
type: string
format: email
description: Identity that last updated the resource
deleted_time:
type: string
format: date-time
description: Timestamp when deletion was requested; omitted if not marked for deletion
deleted_by:
type: string
format: email
description: Identity that requested deletion; omitted if not marked for deletion
generation:
type: integer
Expand Down Expand Up @@ -2231,19 +2225,16 @@ components:
description: Timestamp when the resource was last updated
created_by:
type: string
format: email
description: Identity that created the resource
updated_by:
type: string
format: email
description: Identity that last updated the resource
deleted_time:
type: string
format: date-time
description: Timestamp when deletion was requested; omitted if not marked for deletion
deleted_by:
type: string
format: email
description: Identity that requested deletion; omitted if not marked for deletion
generation:
type: integer
Expand Down Expand Up @@ -2459,19 +2450,16 @@ components:
description: Timestamp when the resource was last updated
created_by:
type: string
format: email
description: Identity that created the resource
updated_by:
type: string
format: email
description: Identity that last updated the resource
deleted_time:
type: string
format: date-time
description: Timestamp when deletion was requested; omitted if not marked for deletion
deleted_by:
type: string
format: email
description: Identity that requested deletion; omitted if not marked for deletion
example:
kind: MyResource
Expand Down
6 changes: 3 additions & 3 deletions shared/models/common/model.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -156,16 +156,16 @@ model APIMetadata {
@format("date-time") updated_time: string;

@doc("Identity that created the resource")
@format("email") created_by: string;
created_by: string;

@doc("Identity that last updated the resource")
@format("email") updated_by: string;
updated_by: string;

@doc("Timestamp when deletion was requested; omitted if not marked for deletion")
@format("date-time") deleted_time?: string;

@doc("Identity that requested deletion; omitted if not marked for deletion")
@format("email") deleted_by?: string;
deleted_by?: string;
}

model Page<Kind> {
Expand Down