Merge branch 'v14/dev' of https://github.com/umbraco/Umbraco-CMS into v14/dev

This commit is contained in:
Jacob Overgaard
2023-06-20 11:02:41 +02:00
5 changed files with 71 additions and 10 deletions

View File

@@ -819,6 +819,45 @@
]
}
},
"/umbraco/management/api/v1/data-type/item/{alias}": {
"get": {
"tags": [
"Data Type"
],
"operationId": "GetDataTypeItemByAlias",
"parameters": [
{
"name": "alias",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/DataTypeItemResponseModel"
}
]
}
}
}
}
},
"security": [
{
"Backoffice User": [ ]
}
]
}
},
"/umbraco/management/api/v1/tree/data-type/children": {
"get": {
"tags": [
@@ -8369,6 +8408,16 @@
"Template"
],
"operationId": "GetTemplateScaffold",
"parameters": [
{
"name": "masterTemplateId",
"in": "query",
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "Success",
@@ -14611,6 +14660,11 @@
"$ref": "#/components/schemas/ItemResponseModelBaseModel"
}
],
"properties": {
"alias": {
"type": "string"
}
},
"additionalProperties": false
},
"TemplateModelBaseModel": {
@@ -14819,6 +14873,11 @@
"id": {
"type": "string",
"format": "uuid"
},
"masterTemplateId": {
"type": "string",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,

View File

@@ -1,5 +0,0 @@
{
"id": "UmbracoPackage",
"name": "UmbracoPackage",
"allowPackageTelemetry": true
}

View File

@@ -0,0 +1,6 @@
{
"id": "UmbracoPackage",
"name": "UmbracoPackage",
"allowPackageTelemetry": true,
"extensions": []
}

View File

@@ -1,5 +0,0 @@
{
"id": "UmbracoPackage",
"name": "UmbracoPackage",
"allowPackageTelemetry": true
}

View File

@@ -0,0 +1,6 @@
{
"id": "UmbracoPackage",
"name": "UmbracoPackage",
"allowPackageTelemetry": true,
"extensions": []
}