Provisioning: Move repository file API (#108514)

* Bump nanogit version
* Embed git repository in the Github one
This commit is contained in:
Roberto Jiménez Sánchez
2025-07-24 23:28:59 -05:00
committed by GitHub
parent 22bcd4dab4
commit 16339b0788
24 changed files with 2011 additions and 99 deletions
@@ -1281,6 +1281,14 @@
"schema": {
"type": "boolean"
}
},
{
"name": "originalPath",
"in": "query",
"description": "path of file to move (used with POST method for move operations). Must be same type as target path: file-to-file (e.g., 'some/a.json' -\u003e 'c/d.json') or folder-to-folder (e.g., 'some/' -\u003e 'new/')",
"schema": {
"type": "string"
}
}
],
"requestBody": {
@@ -1385,6 +1393,14 @@
"schema": {
"type": "boolean"
}
},
{
"name": "originalPath",
"in": "query",
"description": "path of file to move (used with POST method for move operations). Must be same type as target path: file-to-file (e.g., 'some/a.json' -\u003e 'c/d.json') or folder-to-folder (e.g., 'some/' -\u003e 'new/')",
"schema": {
"type": "string"
}
}
],
"requestBody": {
@@ -1489,6 +1505,14 @@
"schema": {
"type": "boolean"
}
},
{
"name": "originalPath",
"in": "query",
"description": "path of file to move (used with POST method for move operations). Must be same type as target path: file-to-file (e.g., 'some/a.json' -\u003e 'c/d.json') or folder-to-folder (e.g., 'some/' -\u003e 'new/')",
"schema": {
"type": "string"
}
}
],
"responses": {
@@ -3714,11 +3738,12 @@
],
"properties": {
"action": {
"description": "The action required/used for dryRun\n\nPossible enum values:\n - `\"create\"`\n - `\"delete\"`\n - `\"update\"`",
"description": "The action required/used for dryRun\n\nPossible enum values:\n - `\"create\"`\n - `\"delete\"`\n - `\"move\"`\n - `\"update\"`",
"type": "string",
"enum": [
"create",
"delete",
"move",
"update"
]
},