Skip to content

Commit 3316946

Browse files
chore: regenerate autoloaders and update psalm baseline
Co-authored-by: Micke Nordin <kano@sunet.se> Signed-off-by: Micke Nordin <kano@sunet.se> Signed-off-by: Enrique Pérez Arnaud <enrique@cazalla.net>
1 parent 33d1d6f commit 3316946

4 files changed

Lines changed: 18 additions & 9 deletions

File tree

build/psalm-baseline.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
['uid' => &$uid]
3939
)]]></code>
4040
<code><![CDATA[getFederationIdFromSharedSecret]]></code>
41+
<code><![CDATA[getFederationIdFromSharedSecret]]></code>
4142
</DeprecatedMethod>
4243
</file>
4344
<file src="apps/comments/lib/Activity/Listener.php">

lib/composer/composer/autoload_classmap.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,7 @@
746746
'OCP\\OCM\\IOCMDiscoveryService' => $baseDir . '/lib/public/OCM/IOCMDiscoveryService.php',
747747
'OCP\\OCM\\IOCMProvider' => $baseDir . '/lib/public/OCM/IOCMProvider.php',
748748
'OCP\\OCM\\IOCMResource' => $baseDir . '/lib/public/OCM/IOCMResource.php',
749+
'OCP\\OCM\\OCMCapabilities' => $baseDir . '/lib/public/OCM/OCMCapabilities.php',
749750
'OCP\\OCS\\IDiscoveryService' => $baseDir . '/lib/public/OCS/IDiscoveryService.php',
750751
'OCP\\OpenMetrics\\IMetricFamily' => $baseDir . '/lib/public/OpenMetrics/IMetricFamily.php',
751752
'OCP\\OpenMetrics\\Metric' => $baseDir . '/lib/public/OpenMetrics/Metric.php',

lib/composer/composer/autoload_static.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -787,6 +787,7 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
787787
'OCP\\OCM\\IOCMDiscoveryService' => __DIR__ . '/../../..' . '/lib/public/OCM/IOCMDiscoveryService.php',
788788
'OCP\\OCM\\IOCMProvider' => __DIR__ . '/../../..' . '/lib/public/OCM/IOCMProvider.php',
789789
'OCP\\OCM\\IOCMResource' => __DIR__ . '/../../..' . '/lib/public/OCM/IOCMResource.php',
790+
'OCP\\OCM\\OCMCapabilities' => __DIR__ . '/../../..' . '/lib/public/OCM/OCMCapabilities.php',
790791
'OCP\\OCS\\IDiscoveryService' => __DIR__ . '/../../..' . '/lib/public/OCS/IDiscoveryService.php',
791792
'OCP\\OpenMetrics\\IMetricFamily' => __DIR__ . '/../../..' . '/lib/public/OpenMetrics/IMetricFamily.php',
792793
'OCP\\OpenMetrics\\Metric' => __DIR__ . '/../../..' . '/lib/public/OpenMetrics/Metric.php',

openapi.json

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
"name": "cloud_federation_api/request_handler",
4242
"description": "Open-Cloud-Mesh-API"
4343
},
44+
{
45+
"name": "cloud_federation_api/token",
46+
"description": "Controller for the /token endpoint Exchanges long-lived refresh tokens for short-lived access tokens"
47+
},
4448
{
4549
"name": "federatedfilesharing/mount_public_link",
4650
"description": "Class MountPublicLinkController convert public links to federated shares"
@@ -2540,7 +2544,7 @@
25402544
"permissions",
25412545
"remote",
25422546
"remote_id",
2543-
"share_token",
2547+
"refresh_token",
25442548
"share_type",
25452549
"type",
25462550
"user",
@@ -2592,7 +2596,7 @@
25922596
"remote_id": {
25932597
"type": "string"
25942598
},
2595-
"share_token": {
2599+
"refresh_token": {
25962600
"type": "string"
25972601
},
25982602
"share_type": {
@@ -18127,23 +18131,25 @@
1812718131
},
1812818132
"protocol": {
1812918133
"type": "object",
18130-
"description": "e,.g. ['name' => 'webdav', 'options' => ['username' => 'john', 'permissions' => 31]]",
18134+
"description": "Old format: ['name' => 'webdav', 'options' => ['sharedSecret' => '...', 'permissions' => '...']] or New format: ['name' => 'webdav', 'webdav' => ['uri' => '...', 'sharedSecret' => '...', 'permissions' => [...]]] or Multi format: ['name' => 'multi', 'webdav' => [...]]",
1813118135
"required": [
18132-
"name",
18133-
"options"
18136+
"name"
1813418137
],
1813518138
"properties": {
1813618139
"name": {
18137-
"type": "array",
18138-
"items": {
18139-
"type": "string"
18140-
}
18140+
"type": "string"
1814118141
},
1814218142
"options": {
1814318143
"type": "object",
1814418144
"additionalProperties": {
1814518145
"type": "object"
1814618146
}
18147+
},
18148+
"webdav": {
18149+
"type": "object",
18150+
"additionalProperties": {
18151+
"type": "object"
18152+
}
1814718153
}
1814818154
}
1814918155
},

0 commit comments

Comments
 (0)