@acorex/platform 19.4.10 → 19.4.12
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/common/lib/file-storage/file-storage.types.d.ts +4 -0
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +209 -47
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/layout/entity/lib/entity-middleware/entity-middleware.d.ts +12 -0
- package/layout/entity/lib/entity-middleware/entity-modifier.context.d.ts +3 -0
- package/layout/entity/lib/entity-middleware/entity-modifier.types.d.ts +84 -0
- package/layout/entity/lib/entity-middleware/entity-provider.d.ts +3 -0
- package/layout/entity/lib/entity-middleware/index.d.ts +4 -0
- package/layout/entity/lib/entity.module.d.ts +1 -1
- package/layout/entity/lib/index.d.ts +1 -1
- package/package.json +1 -1
- package/layout/entity/lib/entity-middleware.d.ts +0 -10
|
@@ -71,6 +71,10 @@ export interface AXPFileStorageUpdateRequest {
|
|
|
71
71
|
* Represents information about a file stored in the AXP file storage system.
|
|
72
72
|
*/
|
|
73
73
|
export interface AXPFileStorageInfo {
|
|
74
|
+
/**
|
|
75
|
+
* The unique identifier for the stored file.
|
|
76
|
+
*/
|
|
77
|
+
id?: string;
|
|
74
78
|
/**
|
|
75
79
|
* The unique identifier for the stored file.
|
|
76
80
|
*/
|