@@ -211,6 +211,7 @@ public IEnumerable<OrderedItem> GetOrderedContainmentIds(CDP4Common.DTO.Thing en
211
211
{
212
212
{ "Actor" , "1.3.0" } ,
213
213
{ "Attachment" , "1.4.0" } ,
214
+ { "AutoPublish" , "1.4.0" } ,
214
215
{ "DefaultOrganizationalParticipant" , "1.2.0" } ,
215
216
{ "ExcludedDomain" , "1.1.0" } ,
216
217
{ "ExcludedPerson" , "1.1.0" } ,
@@ -262,6 +263,7 @@ public IEnumerable<PropertyMetaInfo> Properties
262
263
{ "Actor" , thing => thing . Actor } ,
263
264
{ "Alias" , thing => thing . Alias } ,
264
265
{ "Attachment" , thing => thing . Attachment } ,
266
+ { "AutoPublish" , thing => thing . AutoPublish } ,
265
267
{ "ClassKind" , thing => thing . ClassKind } ,
266
268
{ "DefaultOrganizationalParticipant" , thing => thing . DefaultOrganizationalParticipant } ,
267
269
{ "Definition" , thing => thing . Definition } ,
@@ -294,6 +296,7 @@ public IEnumerable<PropertyMetaInfo> Properties
294
296
{
295
297
{ "ActiveDomain" , new PropertyMetaInfo ( "ActiveDomain" , "DomainOfExpertise" , PropertyKind . List , AggregationKind . None , false , false , true , 1 , "*" , true ) } ,
296
298
{ "Actor" , new PropertyMetaInfo ( "Actor" , "Person" , PropertyKind . Scalar , AggregationKind . None , false , false , false , 0 , "1" , false ) } ,
299
+ { "AutoPublish" , new PropertyMetaInfo ( "AutoPublish" , "bool" , PropertyKind . Scalar , AggregationKind . None , false , false , true , 1 , "1" , true ) } ,
297
300
{ "ClassKind" , new PropertyMetaInfo ( "ClassKind" , "CDP4Common.CommonData.ClassKind" , PropertyKind . Scalar , AggregationKind . None , false , false , true , 1 , "1" , true ) } ,
298
301
{ "DefaultOrganizationalParticipant" , new PropertyMetaInfo ( "DefaultOrganizationalParticipant" , "OrganizationalParticipant" , PropertyKind . Scalar , AggregationKind . None , false , false , true , 0 , "1" , true ) } ,
299
302
{ "EngineeringModelIid" , new PropertyMetaInfo ( "EngineeringModelIid" , "Guid" , PropertyKind . Scalar , AggregationKind . None , false , false , true , 1 , "1" , true ) } ,
@@ -334,6 +337,7 @@ public IEnumerable<PropertyMetaInfo> Properties
334
337
private readonly Dictionary < string , Action < CDP4Common . DTO . EngineeringModelSetup , object > > propertyValueAssignmentMap = new Dictionary < string , Action < CDP4Common . DTO . EngineeringModelSetup , object > >
335
338
{
336
339
{ "Actor" , ( engineeringModelSetup , value ) => engineeringModelSetup . Actor = value == null ? ( Guid ? ) null : ( Guid ) value } ,
340
+ { "AutoPublish" , ( engineeringModelSetup , value ) => engineeringModelSetup . AutoPublish = ( bool ) value } ,
337
341
{ "DefaultOrganizationalParticipant" , ( engineeringModelSetup , value ) => engineeringModelSetup . DefaultOrganizationalParticipant = value == null ? ( Guid ? ) null : ( Guid ) value } ,
338
342
{ "EngineeringModelIid" , ( engineeringModelSetup , value ) => engineeringModelSetup . EngineeringModelIid = ( Guid ) value } ,
339
343
{ "Iid" , ( engineeringModelSetup , value ) => engineeringModelSetup . Iid = ( Guid ) value } ,
0 commit comments