@@ -29,7 +29,7 @@ func convertProjectVersion(v *version.ProjectVersion) *types.ProjectVersion {
2929 }
3030}
3131
32- func convertFolderInfoSlice (in []* types .FolderInfo , err error ) ([]* types.FolderInfo , error ) {
32+ func convertFolderInfoSlice (in []* mpr .FolderInfo , err error ) ([]* types.FolderInfo , error ) {
3333 if err != nil || in == nil {
3434 return nil , err
3535 }
@@ -40,7 +40,7 @@ func convertFolderInfoSlice(in []*types.FolderInfo, err error) ([]*types.FolderI
4040 return out , nil
4141}
4242
43- func convertUnitInfoSlice (in []* types .UnitInfo , err error ) ([]* types.UnitInfo , error ) {
43+ func convertUnitInfoSlice (in []* mpr .UnitInfo , err error ) ([]* types.UnitInfo , error ) {
4444 if err != nil || in == nil {
4545 return nil , err
4646 }
@@ -65,7 +65,7 @@ func convertRenameHitSlice(in []mpr.RenameHit, err error) ([]types.RenameHit, er
6565 return out , nil
6666}
6767
68- func convertRawUnitSlice (in []* types .RawUnit , err error ) ([]* types.RawUnit , error ) {
68+ func convertRawUnitSlice (in []* mpr .RawUnit , err error ) ([]* types.RawUnit , error ) {
6969 if err != nil || in == nil {
7070 return nil , err
7171 }
@@ -126,7 +126,7 @@ func convertRawCustomWidgetTypeSlice(in []*mpr.RawCustomWidgetType, err error) (
126126 return out , nil
127127}
128128
129- func convertJavaActionSlice (in []* types .JavaAction , err error ) ([]* types.JavaAction , error ) {
129+ func convertJavaActionSlice (in []* mpr .JavaAction , err error ) ([]* types.JavaAction , error ) {
130130 if err != nil || in == nil {
131131 return nil , err
132132 }
@@ -142,7 +142,7 @@ func convertJavaActionSlice(in []*types.JavaAction, err error) ([]*types.JavaAct
142142 return out , nil
143143}
144144
145- func convertJavaScriptActionSlice (in []* types .JavaScriptAction , err error ) ([]* types.JavaScriptAction , error ) {
145+ func convertJavaScriptActionSlice (in []* mpr .JavaScriptAction , err error ) ([]* types.JavaScriptAction , error ) {
146146 if err != nil || in == nil {
147147 return nil , err
148148 }
@@ -153,14 +153,14 @@ func convertJavaScriptActionSlice(in []*types.JavaScriptAction, err error) ([]*t
153153 return out , nil
154154}
155155
156- func convertJavaScriptActionPtr (in * types .JavaScriptAction , err error ) (* types.JavaScriptAction , error ) {
156+ func convertJavaScriptActionPtr (in * mpr .JavaScriptAction , err error ) (* types.JavaScriptAction , error ) {
157157 if err != nil || in == nil {
158158 return nil , err
159159 }
160160 return convertJavaScriptAction (in ), nil
161161}
162162
163- func convertJavaScriptAction (in * types .JavaScriptAction ) * types.JavaScriptAction {
163+ func convertJavaScriptAction (in * mpr .JavaScriptAction ) * types.JavaScriptAction {
164164 return & types.JavaScriptAction {
165165 BaseElement : in .BaseElement ,
166166 ContainerID : in .ContainerID ,
@@ -177,7 +177,7 @@ func convertJavaScriptAction(in *types.JavaScriptAction) *types.JavaScriptAction
177177 }
178178}
179179
180- func convertNavDocSlice (in []* types .NavigationDocument , err error ) ([]* types.NavigationDocument , error ) {
180+ func convertNavDocSlice (in []* mpr .NavigationDocument , err error ) ([]* types.NavigationDocument , error ) {
181181 if err != nil || in == nil {
182182 return nil , err
183183 }
@@ -188,14 +188,14 @@ func convertNavDocSlice(in []*types.NavigationDocument, err error) ([]*types.Nav
188188 return out , nil
189189}
190190
191- func convertNavDocPtr (in * types .NavigationDocument , err error ) (* types.NavigationDocument , error ) {
191+ func convertNavDocPtr (in * mpr .NavigationDocument , err error ) (* types.NavigationDocument , error ) {
192192 if err != nil || in == nil {
193193 return nil , err
194194 }
195195 return convertNavDoc (in ), nil
196196}
197197
198- func convertNavDoc (in * types .NavigationDocument ) * types.NavigationDocument {
198+ func convertNavDoc (in * mpr .NavigationDocument ) * types.NavigationDocument {
199199 nd := & types.NavigationDocument {
200200 BaseElement : in .BaseElement ,
201201 ContainerID : in .ContainerID ,
@@ -210,7 +210,7 @@ func convertNavDoc(in *types.NavigationDocument) *types.NavigationDocument {
210210 return nd
211211}
212212
213- func convertNavProfile (in * types .NavigationProfile ) * types.NavigationProfile {
213+ func convertNavProfile (in * mpr .NavigationProfile ) * types.NavigationProfile {
214214 p := & types.NavigationProfile {
215215 Name : in .Name ,
216216 Kind : in .Kind ,
@@ -246,7 +246,7 @@ func convertNavProfile(in *types.NavigationProfile) *types.NavigationProfile {
246246 return p
247247}
248248
249- func convertNavMenuItem (in * types .NavMenuItem ) * types.NavMenuItem {
249+ func convertNavMenuItem (in * mpr .NavMenuItem ) * types.NavMenuItem {
250250 mi := & types.NavMenuItem {
251251 Caption : in .Caption , Page : in .Page , Microflow : in .Microflow , ActionType : in .ActionType ,
252252 }
@@ -319,7 +319,7 @@ func unconvertEntityAccessRevocation(in types.EntityAccessRevocation) mpr.Entity
319319 }
320320}
321321
322- func convertJsonStructureSlice (in []* types .JsonStructure , err error ) ([]* types.JsonStructure , error ) {
322+ func convertJsonStructureSlice (in []* mpr .JsonStructure , err error ) ([]* types.JsonStructure , error ) {
323323 if err != nil || in == nil {
324324 return nil , err
325325 }
@@ -330,14 +330,14 @@ func convertJsonStructureSlice(in []*types.JsonStructure, err error) ([]*types.J
330330 return out , nil
331331}
332332
333- func convertJsonStructurePtr (in * types .JsonStructure , err error ) (* types.JsonStructure , error ) {
333+ func convertJsonStructurePtr (in * mpr .JsonStructure , err error ) (* types.JsonStructure , error ) {
334334 if err != nil || in == nil {
335335 return nil , err
336336 }
337337 return convertJsonStructure (in ), nil
338338}
339339
340- func convertJsonStructure (in * types .JsonStructure ) * types.JsonStructure {
340+ func convertJsonStructure (in * mpr .JsonStructure ) * types.JsonStructure {
341341 js := & types.JsonStructure {
342342 BaseElement : in .BaseElement ,
343343 ContainerID : in .ContainerID ,
@@ -356,7 +356,7 @@ func convertJsonStructure(in *types.JsonStructure) *types.JsonStructure {
356356 return js
357357}
358358
359- func convertJsonElement (in * types .JsonElement ) * types.JsonElement {
359+ func convertJsonElement (in * mpr .JsonElement ) * types.JsonElement {
360360 e := & types.JsonElement {
361361 ExposedName : in .ExposedName , ExposedItemName : in .ExposedItemName ,
362362 Path : in .Path , ElementType : in .ElementType , PrimitiveType : in .PrimitiveType ,
@@ -411,7 +411,7 @@ func unconvertJsonElement(in *types.JsonElement) *types.JsonElement {
411411 return e
412412}
413413
414- func convertImageCollectionSlice (in []* types .ImageCollection , err error ) ([]* types.ImageCollection , error ) {
414+ func convertImageCollectionSlice (in []* mpr .ImageCollection , err error ) ([]* types.ImageCollection , error ) {
415415 if err != nil || in == nil {
416416 return nil , err
417417 }
@@ -422,7 +422,7 @@ func convertImageCollectionSlice(in []*types.ImageCollection, err error) ([]*typ
422422 return out , nil
423423}
424424
425- func convertImageCollection (in * types .ImageCollection ) * types.ImageCollection {
425+ func convertImageCollection (in * mpr .ImageCollection ) * types.ImageCollection {
426426 ic := & types.ImageCollection {
427427 BaseElement : in .BaseElement ,
428428 ContainerID : in .ContainerID ,
0 commit comments