@giteeteam/apps-manifest 0.1.2 → 0.1.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/lib/types.d.ts +3 -0
- package/package.json +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface IManifestApp {
|
|
|
7
7
|
id?: string;
|
|
8
8
|
name?: string;
|
|
9
9
|
key?: string;
|
|
10
|
+
description?: string;
|
|
10
11
|
version?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare type LoadType = 'micro' | 'iframe' | 'remoteJs' | 'redirect' | 'uikit';
|
|
@@ -37,6 +38,8 @@ export interface IManifestTrigger {
|
|
|
37
38
|
key: string;
|
|
38
39
|
function: string;
|
|
39
40
|
events: TriggerEvent[];
|
|
41
|
+
/** 是否异步执行trigger */
|
|
42
|
+
async?: boolean;
|
|
40
43
|
}
|
|
41
44
|
export interface IManifestCustomField {
|
|
42
45
|
key: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@giteeteam/apps-manifest",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Giteeteam Apps Manifest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"yaml": "^2.1.1"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "bcee13307660e408ddfbfcc5924931bf56b577bc"
|
|
38
38
|
}
|