Skip to content

Commit f0e22e3

Browse files
committed
update openapi
1 parent e5de678 commit f0e22e3

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

services/storage/openapi.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1440,8 +1440,15 @@
14401440
"title": "Items"
14411441
},
14421442
"total": {
1443-
"type": "integer",
1444-
"minimum": 0,
1443+
"anyOf": [
1444+
{
1445+
"type": "integer",
1446+
"minimum": 0
1447+
},
1448+
{
1449+
"type": "null"
1450+
}
1451+
],
14451452
"title": "Total"
14461453
},
14471454
"current_page": {
@@ -1495,8 +1502,7 @@
14951502
},
14961503
"type": "object",
14971504
"required": [
1498-
"items",
1499-
"total"
1505+
"items"
15001506
],
15011507
"title": "CursorPage[~_T]Customized[PathMetaDataGet]"
15021508
},

services/web/server/src/simcore_service_webserver/api/v0/openapi.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10504,8 +10504,10 @@ components:
1050410504
type: array
1050510505
title: Items
1050610506
total:
10507-
type: integer
10508-
minimum: 0
10507+
anyOf:
10508+
- type: integer
10509+
minimum: 0
10510+
- type: 'null'
1050910511
title: Total
1051010512
current_page:
1051110513
anyOf:
@@ -10534,7 +10536,6 @@ components:
1053410536
type: object
1053510537
required:
1053610538
- items
10537-
- total
1053810539
title: CursorPage[~_T]Customized[PathMetaDataGet]
1053910540
DatCoreFileLink:
1054010541
properties:

0 commit comments

Comments
 (0)