@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.
- package/auth/index.d.ts +228 -3
- package/fesm2022/acorex-platform-auth.mjs +162 -2
- package/fesm2022/acorex-platform-auth.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +50 -18
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/layout/entity/index.d.ts +7 -0
- package/package.json +1 -1
package/layout/entity/index.d.ts
CHANGED
|
@@ -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
|
}
|