cmd-control-client-lib 3.0.404 → 3.0.405
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.
|
@@ -7,11 +7,19 @@ export declare type groupIdType = {
|
|
|
7
7
|
/** id */
|
|
8
8
|
groupId: string;
|
|
9
9
|
};
|
|
10
|
+
export declare enum EnumSignificance {
|
|
11
|
+
ZERO = 0,
|
|
12
|
+
ONE = 1,
|
|
13
|
+
TWO = 2,
|
|
14
|
+
THREE = 3,
|
|
15
|
+
FOUR = 4,
|
|
16
|
+
FIVE = 5
|
|
17
|
+
}
|
|
10
18
|
export declare type groupDataType = {
|
|
11
19
|
key?: "ticketShow" | string;
|
|
12
20
|
auto_generated?: boolean;
|
|
13
21
|
product_summary?: Map<string, number>;
|
|
14
|
-
significance?:
|
|
22
|
+
significance?: EnumSignificance;
|
|
15
23
|
};
|
|
16
24
|
export declare type groupType = groupIdType & {
|
|
17
25
|
/** display name */
|