@giteeteam/apps-manifest 0.5.1 → 0.5.3
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/lib/schema/storage.json +6 -0
- package/lib/types.d.ts +2 -0
- package/package.json +1 -1
package/lib/schema/storage.json
CHANGED
package/lib/types.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export interface IManifestModule {
|
|
|
20
20
|
resource?: string;
|
|
21
21
|
route?: string;
|
|
22
22
|
type?: string;
|
|
23
|
+
displayConditions?: Record<string, any>;
|
|
23
24
|
}
|
|
24
25
|
export interface IManifestFunction {
|
|
25
26
|
key: string;
|
|
@@ -80,6 +81,7 @@ export interface IStorageAttribute {
|
|
|
80
81
|
export interface IStorageEntity {
|
|
81
82
|
name: string;
|
|
82
83
|
attributes: Record<string, IStorageAttribute>;
|
|
84
|
+
indexes?: string[];
|
|
83
85
|
}
|
|
84
86
|
export interface IStorage {
|
|
85
87
|
entities: IStorageEntity[];
|