Update manifest structure (#17547)

Move all sync entities in an `entities` key. Rename functions to
logicFunctions

```json
{
  application: {
    ...
  },
  entities: {
    objects: [],
    logicFunctions: [],
    ...
  }
}
```
This commit is contained in:
martmull
2026-01-30 16:26:45 +01:00
committed by GitHub
parent bc022f82cb
commit f46da3eefd
162 changed files with 2555 additions and 3778 deletions
@@ -1,8 +1,7 @@
export enum SyncableEntity {
Object = 'object',
ObjectExtension = 'objectExtension',
Function = 'function',
Field = 'field',
LogicFunction = 'logicFunction',
FrontComponent = 'frontComponent',
Role = 'role',
PublicAsset = 'publicAsset',
}