Skip to content

Commit d8d05ec

Browse files
Merge pull request #44827 from nextcloud/chore/deps/openapi-extractor
2 parents 984f00c + 015f582 commit d8d05ec

12 files changed

Lines changed: 96 additions & 70 deletions

File tree

apps/files/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
},
183183
"ratio": {
184184
"type": "number",
185-
"format": "float",
185+
"format": "double",
186186
"nullable": true
187187
},
188188
"actionLabel": {

apps/files_sharing/openapi.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -555,10 +555,10 @@
555555
"format": "int64"
556556
},
557557
"item_size": {
558-
"oneOf": [
558+
"anyOf": [
559559
{
560560
"type": "number",
561-
"format": "float"
561+
"format": "double"
562562
},
563563
{
564564
"type": "integer",
@@ -727,14 +727,14 @@
727727
"type": "string"
728728
},
729729
"size": {
730-
"oneOf": [
730+
"anyOf": [
731731
{
732732
"type": "integer",
733733
"format": "int64"
734734
},
735735
{
736736
"type": "number",
737-
"format": "float"
737+
"format": "double"
738738
}
739739
]
740740
},

apps/provisioning_api/openapi-administration.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@
238238
"post": {
239239
"operationId": "apps-enable",
240240
"summary": "Enable an app",
241-
"description": "This endpoint requires admin access",
241+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
242242
"tags": [
243243
"apps"
244244
],
@@ -305,7 +305,7 @@
305305
"delete": {
306306
"operationId": "apps-disable",
307307
"summary": "Disable an app",
308-
"description": "This endpoint requires admin access",
308+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
309309
"tags": [
310310
"apps"
311311
],
@@ -449,7 +449,7 @@
449449
"post": {
450450
"operationId": "groups-add-group",
451451
"summary": "Create a new group",
452-
"description": "This endpoint requires admin access",
452+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
453453
"tags": [
454454
"groups"
455455
],
@@ -527,7 +527,7 @@
527527
"put": {
528528
"operationId": "groups-update-group",
529529
"summary": "Update a group",
530-
"description": "This endpoint requires admin access",
530+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
531531
"tags": [
532532
"groups"
533533
],
@@ -613,7 +613,7 @@
613613
"delete": {
614614
"operationId": "groups-delete-group",
615615
"summary": "Delete a group",
616-
"description": "This endpoint requires admin access",
616+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
617617
"tags": [
618618
"groups"
619619
],
@@ -755,7 +755,7 @@
755755
"post": {
756756
"operationId": "users-add-sub-admin",
757757
"summary": "Make a user a subadmin of a group",
758-
"description": "This endpoint requires admin access",
758+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
759759
"tags": [
760760
"users"
761761
],
@@ -831,7 +831,7 @@
831831
"delete": {
832832
"operationId": "users-remove-sub-admin",
833833
"summary": "Remove a user from the subadmins of a group",
834-
"description": "This endpoint requires admin access",
834+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
835835
"tags": [
836836
"users"
837837
],
@@ -1251,7 +1251,7 @@
12511251
"delete": {
12521252
"operationId": "app_config-delete-key",
12531253
"summary": "Delete a config key of an app",
1254-
"description": "This endpoint requires admin access",
1254+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
12551255
"tags": [
12561256
"app_config"
12571257
],

apps/provisioning_api/openapi-full.json

Lines changed: 28 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@
309309
"type": "object",
310310
"properties": {
311311
"free": {
312-
"oneOf": [
312+
"anyOf": [
313313
{
314314
"type": "number",
315-
"format": "float"
315+
"format": "double"
316316
},
317317
{
318318
"type": "integer",
@@ -321,10 +321,10 @@
321321
]
322322
},
323323
"quota": {
324-
"oneOf": [
324+
"anyOf": [
325325
{
326326
"type": "number",
327-
"format": "float"
327+
"format": "double"
328328
},
329329
{
330330
"type": "integer",
@@ -336,10 +336,10 @@
336336
]
337337
},
338338
"relative": {
339-
"oneOf": [
339+
"anyOf": [
340340
{
341341
"type": "number",
342-
"format": "float"
342+
"format": "double"
343343
},
344344
{
345345
"type": "integer",
@@ -348,10 +348,10 @@
348348
]
349349
},
350350
"total": {
351-
"oneOf": [
351+
"anyOf": [
352352
{
353353
"type": "number",
354-
"format": "float"
354+
"format": "double"
355355
},
356356
{
357357
"type": "integer",
@@ -360,10 +360,10 @@
360360
]
361361
},
362362
"used": {
363-
"oneOf": [
363+
"anyOf": [
364364
{
365365
"type": "number",
366-
"format": "float"
366+
"format": "double"
367367
},
368368
{
369369
"type": "integer",
@@ -535,7 +535,7 @@
535535
"post": {
536536
"operationId": "apps-enable",
537537
"summary": "Enable an app",
538-
"description": "This endpoint requires admin access",
538+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
539539
"tags": [
540540
"apps"
541541
],
@@ -602,7 +602,7 @@
602602
"delete": {
603603
"operationId": "apps-disable",
604604
"summary": "Disable an app",
605-
"description": "This endpoint requires admin access",
605+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
606606
"tags": [
607607
"apps"
608608
],
@@ -1002,7 +1002,7 @@
10021002
"post": {
10031003
"operationId": "users-add-sub-admin",
10041004
"summary": "Make a user a subadmin of a group",
1005-
"description": "This endpoint requires admin access",
1005+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
10061006
"tags": [
10071007
"users"
10081008
],
@@ -1078,7 +1078,7 @@
10781078
"delete": {
10791079
"operationId": "users-remove-sub-admin",
10801080
"summary": "Remove a user from the subadmins of a group",
1081-
"description": "This endpoint requires admin access",
1081+
"description": "This endpoint requires admin access\nThis endpoint requires password confirmation",
10821082
"tags": [
10831083
"users"
10841084
],
@@ -1357,6 +1357,7 @@
13571357
"post": {
13581358
"operationId": "app_config-set-value",
13591359
"summary": "Update the config value of an app",
1360+
"description": "This endpoint requires password confirmation",
13601361
"tags": [
13611362
"app_config"
13621363
],
@@ -1820,7 +1821,7 @@
18201821
"users": {
18211822
"type": "object",
18221823
"additionalProperties": {
1823-
"oneOf": [
1824+
"anyOf": [
18241825
{
18251826
"$ref": "#/components/schemas/UserDetails"
18261827
},
@@ -1953,6 +1954,7 @@
19531954
"post": {
19541955
"operationId": "users-add-user",
19551956
"summary": "Create a new user",
1957+
"description": "This endpoint requires password confirmation",
19561958
"tags": [
19571959
"users"
19581960
],
@@ -2219,7 +2221,7 @@
22192221
"users": {
22202222
"type": "object",
22212223
"additionalProperties": {
2222-
"oneOf": [
2224+
"anyOf": [
22232225
{
22242226
"$ref": "#/components/schemas/UserDetails"
22252227
},
@@ -2326,7 +2328,7 @@
23262328
"users": {
23272329
"type": "object",
23282330
"additionalProperties": {
2329-
"oneOf": [
2331+
"anyOf": [
23302332
{
23312333
"$ref": "#/components/schemas/UserDetails"
23322334
},
@@ -2538,6 +2540,7 @@
25382540
"put": {
25392541
"operationId": "users-edit-user",
25402542
"summary": "Update a value of the user's details",
2543+
"description": "This endpoint requires password confirmation",
25412544
"tags": [
25422545
"users"
25432546
],
@@ -2622,6 +2625,7 @@
26222625
"delete": {
26232626
"operationId": "users-delete-user",
26242627
"summary": "Delete a user",
2628+
"description": "This endpoint requires password confirmation",
26252629
"tags": [
26262630
"users"
26272631
],
@@ -2888,6 +2892,7 @@
28882892
"put": {
28892893
"operationId": "users-edit-user-multi-value",
28902894
"summary": "Update multiple values of the user's details",
2895+
"description": "This endpoint requires password confirmation",
28912896
"tags": [
28922897
"users"
28932898
],
@@ -2984,6 +2989,7 @@
29842989
"post": {
29852990
"operationId": "users-wipe-user-devices",
29862991
"summary": "Wipe all devices of a user",
2992+
"description": "This endpoint requires password confirmation",
29872993
"tags": [
29882994
"users"
29892995
],
@@ -3052,6 +3058,7 @@
30523058
"put": {
30533059
"operationId": "users-enable-user",
30543060
"summary": "Enable a user",
3061+
"description": "This endpoint requires password confirmation",
30553062
"tags": [
30563063
"users"
30573064
],
@@ -3120,6 +3127,7 @@
31203127
"put": {
31213128
"operationId": "users-disable-user",
31223129
"summary": "Disable a user",
3130+
"description": "This endpoint requires password confirmation",
31233131
"tags": [
31243132
"users"
31253133
],
@@ -3267,6 +3275,7 @@
32673275
"post": {
32683276
"operationId": "users-add-to-group",
32693277
"summary": "Add a user to a group",
3278+
"description": "This endpoint requires password confirmation",
32703279
"tags": [
32713280
"users"
32723281
],
@@ -3342,6 +3351,7 @@
33423351
"delete": {
33433352
"operationId": "users-remove-from-group",
33443353
"summary": "Remove a user from a group",
3354+
"description": "This endpoint requires password confirmation",
33453355
"tags": [
33463356
"users"
33473357
],
@@ -3419,6 +3429,7 @@
34193429
"post": {
34203430
"operationId": "users-resend-welcome-message",
34213431
"summary": "Resend the welcome message",
3432+
"description": "This endpoint requires password confirmation",
34223433
"tags": [
34233434
"users"
34243435
],

0 commit comments

Comments
 (0)