The following entities,
are moved to another namespaces.
Take a look at the following table, which summarizes the changes:
Entity | Namespace before | Namespace now | Qualified name now |
Config |
General | Systems.Core | Systems.Core.Config |
Sequences | General | Systems.Core | Systems.Core.Sequences |
ScheduledDocumentEvents | General | Systems.Core | Systems.Core.ScheduledDocumentEvents |
ProductCatalogs | General | General.Products | General.Products.ProductCatalogs |
ProductVariants | General | General.Products | General.Products.ProductVariants |
This way, the entities now belong to logically more precise locations.
What to do if this change affects me?
This change only affects you if you're referring the entities directly. In this case, you just need to adjust them to the new namespace.
E.g.:
~/api/domain/odata/General_Config
~/api/domain/odata/General_Sequences
~/api/domain/odata/General_ScheduledDocumentEvents
~/api/domain/odata/General_ProductCatalogs
~/api/domain/odata/General_ProductVariants
Are now:
~/api/domain/odata/Systems_Core_Config
~/api/domain/odata/Systems_Core_Sequences
~/api/domain/odata/Systems_Core_ScheduledDocumentEvents
~/api/domain/odata/General_Products_ProductCatalogs
~/api/domain/odata/General_Products_ProductVariants
0 Comments