File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/Umbraco.Web.UI.Client/src/external/backend-api/src Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1634,7 +1634,7 @@ export type PackageDefinitionResponseModel = {
16341634 languages : Array < ( string ) > ;
16351635 dictionaryItems : Array < ( string ) > ;
16361636 id : string ;
1637- packagePath : string ;
1637+ readonly packagePath : string ;
16381638} ;
16391639
16401640export type PackageMigrationStatusResponseModel = {
@@ -2072,10 +2072,10 @@ export type RelationReferenceModel = {
20722072export type RelationResponseModel = {
20732073 id : string ;
20742074 relationType : ( ReferenceByIdModel ) ;
2075- parent : ( RelationReferenceModel ) ;
2076- child : ( RelationReferenceModel ) ;
2077- createDate : string ;
2078- comment ?: ( string ) | null ;
2075+ readonly parent : ( RelationReferenceModel ) ;
2076+ readonly child : ( RelationReferenceModel ) ;
2077+ readonly createDate : string ;
2078+ readonly comment ?: ( string ) | null ;
20792079} ;
20802080
20812081export type RelationTypeItemResponseModel = {
@@ -2592,7 +2592,7 @@ export type UpdatePackageRequestModel = {
25922592 scripts : Array < ( string ) > ;
25932593 languages : Array < ( string ) > ;
25942594 dictionaryItems : Array < ( string ) > ;
2595- packagePath : string ;
2595+ readonly packagePath : string ;
25962596} ;
25972597
25982598export type UpdatePartialViewRequestModel = {
You can’t perform that action at this time.
0 commit comments