Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…o-universal-migration-tool into feat/github-actions-pipeline
  • Loading branch information
Martin Medek authored and Martin Medek committed Dec 12, 2024
2 parents 14b2ce8 + 4ec55e1 commit bd40702
Show file tree
Hide file tree
Showing 17 changed files with 1,031 additions and 591 deletions.
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Users referenced in this file will automatically be requested as reviewers for PRs that modify the given paths

## See <https://help.github.com/articles/about-code-owners/>

* @Kentico/integration-administrators
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Authors>$(Company)</Authors>
<Copyright>Copyright © $(Company) $([System.DateTime]::Now.Year)</Copyright>
<Trademark>$(Company)™</Trademark>
<VersionPrefix>1.10.1</VersionPrefix>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageLicenseExpression>MIT</PackageLicenseExpression>

Expand Down
26 changes: 23 additions & 3 deletions docs/Model/ContentItemSimplifiedModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ Simplified model for importing webpage content item with parent
"LanguageData": [
{
"LanguageName": "en-US",
"DisplayName": "Simplified model sample sub page - en-us",
"DisplayName": "Simplified model sample sub page - en-US",
"VersionStatus": 0,
"IsLatest": true,
"UserGuid": "dbfcc244-2cb9-4934-857f-9d75404c1553",
"ContentItemData": {
"ArticleTitle": "en-US UMT simplified model creation as sub page",
Expand All @@ -44,8 +45,9 @@ Simplified model for importing webpage content item with parent
},
{
"LanguageName": "en-GB",
"DisplayName": "Simplified model sample sub page - en-gb",
"DisplayName": "Simplified model sample sub page - en-GB",
"VersionStatus": 2,
"IsLatest": true,
"UserGuid": "dbfcc244-2cb9-4934-857f-9d75404c1553",
"ContentItemData": {
"ArticleTitle": "en-GB UMT simplified model creation as sub page",
Expand All @@ -59,14 +61,20 @@ Simplified model for importing webpage content item with parent
"PageUrls": [
{
"UrlPath": "en-us/simplified-sample/sub-page",
"PathIsDraft": false,
"PathIsLatest": true,
"LanguageName": "en-US"
},
{
"UrlPath": "en-gb/simplified-sample/sub-page",
"PathIsDraft": false,
"PathIsLatest": true,
"LanguageName": "en-GB"
},
{
"UrlPath": "es/simplified-sample/sub-page",
"UrlPath": "es-cu/simplified-sample/sub-page",
"PathIsDraft": false,
"PathIsLatest": true,
"LanguageName": "es-CU"
}
],
Expand All @@ -92,6 +100,7 @@ Simplified model for importing webpage content item
"LanguageName": "en-US",
"DisplayName": "Simplified model sample - en-us",
"VersionStatus": 0,
"IsLatest": true,
"ScheduledPublishWhen": "2045-01-01T00:00:00Z",
"ContentItemData": {
"ArticleTitle": "en-US UMT simplified model creation",
Expand All @@ -105,6 +114,7 @@ Simplified model for importing webpage content item
"LanguageName": "en-GB",
"DisplayName": "Simplified model sample - en-gb",
"VersionStatus": 2,
"IsLatest": true,
"ScheduledUnpublishWhen": "2045-01-01T00:00:00Z",
"ContentItemData": {
"ArticleTitle": "en-GB UMT simplified model creation",
Expand All @@ -119,14 +129,20 @@ Simplified model for importing webpage content item
"PageUrls": [
{
"UrlPath": "en-us/simplified-sample",
"PathIsDraft": false,
"PathIsLatest": true,
"LanguageName": "en-US"
},
{
"UrlPath": "en-gb/simplified-sample",
"PathIsDraft": false,
"PathIsLatest": true,
"LanguageName": "en-GB"
},
{
"UrlPath": "es/simplified-sample",
"PathIsDraft": false,
"PathIsLatest": true,
"LanguageName": "es-CU"
}
],
Expand All @@ -151,6 +167,7 @@ This sample describes how to import reusable content item with asset into XbyK
"LanguageName": "en-US",
"DisplayName": "Event sample 2024 - en-US",
"VersionStatus": 0,
"IsLatest": true,
"UserGuid": "dbfcc244-2cb9-4934-857f-9d75404c1553",
"ContentItemData": {
"EventTitle": "en-US Event sample 2024",
Expand All @@ -171,6 +188,7 @@ This sample describes how to import reusable content item with asset into XbyK
"LanguageName": "en-GB",
"DisplayName": "Event sample 2024 - en-GB",
"VersionStatus": 2,
"IsLatest": true,
"UserGuid": "dbfcc244-2cb9-4934-857f-9d75404c1553",
"ScheduledUnpublishWhen": "2045-01-01T00:00:00Z",
"ContentItemData": {
Expand Down Expand Up @@ -198,6 +216,7 @@ This sample describes how to import reusable content item with asset into XbyK
|LanguageName\*||string||
|DisplayName\*||string||
|VersionStatus||CMS.ContentEngine.VersionStatus||
|IsLatest||bool||
|UserGuid\*||System.Guid?||
|ScheduledPublishWhen|Date and time on which draft content item will be published, must be set in future|System.DateTime?||
|ScheduledUnpublishWhen|Date and time on which published content item will be unpublished, must be set in future|System.DateTime?||
Expand Down Expand Up @@ -225,6 +244,7 @@ Defines url for web page item
|---|---|---|---|
|UrlPath||string?||
|PathIsDraft|currently unused, until simplified model supports Draft content items (and not only Published or InitialDraft)|bool?||
|PathIsLatest||bool?||
|LanguageName||string?||

<p>*) value is required</p>
Expand Down
Loading

0 comments on commit bd40702

Please sign in to comment.