@acorex/platform 20.6.3 → 20.6.4

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.
@@ -1173,6 +1173,13 @@ declare class AXPEntityFormBuilderService implements IEntitySelectorStage {
1173
1173
  private readonly layoutBuilder;
1174
1174
  private readonly deviceService;
1175
1175
  entity(fullName: string): IInterfaceSelectorStage;
1176
+ /**
1177
+ * Fetches a record by ID for the specified entity.
1178
+ * @param fullName - Entity full name in "module.entity" format
1179
+ * @param id - Record ID to fetch
1180
+ * @returns Promise resolving to the record data, or empty object if not found
1181
+ */
1182
+ getRecordById(fullName: string, id: string): Promise<Record<string, any>>;
1176
1183
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPEntityFormBuilderService, never>;
1177
1184
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<AXPEntityFormBuilderService>;
1178
1185
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/platform",
3
- "version": "20.6.3",
3
+ "version": "20.6.4",
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",