Skip to content

Commit

Permalink
feat: update generated client
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Apr 19, 2024
1 parent dc3a3a8 commit 2baab25
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions packages/mittwald/spec/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3099,6 +3099,13 @@
"format": "uuid",
"type": "string"
},
"status": {
"$ref": "#/components/schemas/database.DatabaseStatus"
},
"statusSetAt": {
"format": "date-time",
"type": "string"
},
"storageUsageInBytes": {
"type": "integer"
},
Expand Down Expand Up @@ -3127,7 +3134,9 @@
"isShared",
"isReady",
"storageUsageInBytes",
"storageUsageInBytesSetAt"
"storageUsageInBytesSetAt",
"status",
"statusSetAt"
],
"type": "object"
},
Expand Down Expand Up @@ -3277,6 +3286,8 @@
"name": "redis_xxxxxx",
"port": 6379,
"projectId": "9f2bddf1-dea6-4441-b4fe-a22ff39caff8",
"status": "error",
"statusSetAt": "2024-03-05T9:26:32.000Z",
"storageUsageInBytes": 10485760,
"storageUsageInBytesSetAt": "2024-03-05T9:26:32.000Z",
"updatedAt": "2023-03-29T15:50:10.000Z",
Expand Down Expand Up @@ -3318,6 +3329,13 @@
"format": "uuid",
"type": "string"
},
"status": {
"$ref": "#/components/schemas/database.DatabaseStatus"
},
"statusSetAt": {
"format": "date-time",
"type": "string"
},
"storageUsageInBytes": {
"type": "integer"
},
Expand All @@ -3344,7 +3362,9 @@
"updatedAt",
"name",
"storageUsageInBytes",
"storageUsageInBytesSetAt"
"storageUsageInBytesSetAt",
"status",
"statusSetAt"
],
"type": "object"
},
Expand Down Expand Up @@ -8136,6 +8156,16 @@
],
"type": "object"
},
"database.DatabaseStatus": {
"enum": [
"pending",
"ready",
"migrating",
"importing",
"error"
],
"type": "string"
},
"commons.Address": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 2baab25

Please sign in to comment.