@acorex/platform 20.8.3 → 20.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -661,6 +661,15 @@ declare const AXPEntityPreloadFiltersViewModelResolver: ResolveFn<Promise<AXPEnt
661
661
 
662
662
  interface AXPEntityModifierContext {
663
663
  readonly entity: AXPEntity;
664
+ plugins: {
665
+ list(): NonNullable<AXPEntity['plugins']>;
666
+ add(...items: NonNullable<AXPEntity['plugins']>): AXPEntityModifierContext;
667
+ remove(predicate: (p: NonNullable<AXPEntity['plugins']>[number]) => boolean): AXPEntityModifierContext;
668
+ find(name: string): {
669
+ get(): NonNullable<AXPEntity['plugins']>[number] | undefined;
670
+ update(updater: (p: NonNullable<AXPEntity['plugins']>[number]) => NonNullable<AXPEntity['plugins']>[number]): AXPEntityModifierContext;
671
+ };
672
+ };
664
673
  title: {
665
674
  get(): string;
666
675
  set(newTitle: string): AXPEntityModifierContext;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "20.8.3",
3
+ "version": "20.8.5",
4
4
  "peerDependencies": {
5
5
  "@acorex/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",
6
6
  "@acorex/core": "^19.0.0 || ^20.0.0 || ^21.0.0-next.0",