@be-link/tfs-cli-nodejs 0.0.29 → 0.0.31
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/package.json
CHANGED
|
@@ -18,7 +18,10 @@ export declare namespace DepartureGroup {
|
|
|
18
18
|
wxQrCode: string;
|
|
19
19
|
preDepartureStatement: string;
|
|
20
20
|
note: string;
|
|
21
|
-
attachments:
|
|
21
|
+
attachments: {
|
|
22
|
+
url: string;
|
|
23
|
+
name: string;
|
|
24
|
+
};
|
|
22
25
|
};
|
|
23
26
|
}
|
|
24
27
|
interface updateDepartureGroup {
|
|
@@ -36,7 +39,10 @@ export declare namespace DepartureGroup {
|
|
|
36
39
|
wxQrCode: string;
|
|
37
40
|
preDepartureStatement: string;
|
|
38
41
|
note: string;
|
|
39
|
-
attachments:
|
|
42
|
+
attachments: {
|
|
43
|
+
url: string;
|
|
44
|
+
name: string;
|
|
45
|
+
};
|
|
40
46
|
};
|
|
41
47
|
}
|
|
42
48
|
interface getDepartureGroupByBizId {
|
|
@@ -64,7 +70,10 @@ export declare namespace DepartureGroup {
|
|
|
64
70
|
wxQrCode: string;
|
|
65
71
|
preDepartureStatement: string;
|
|
66
72
|
note: string;
|
|
67
|
-
attachments:
|
|
73
|
+
attachments: {
|
|
74
|
+
url: string;
|
|
75
|
+
name: string;
|
|
76
|
+
}[];
|
|
68
77
|
};
|
|
69
78
|
}
|
|
70
79
|
}
|
|
@@ -21,6 +21,8 @@ export declare namespace TourGroup {
|
|
|
21
21
|
interface batchCreateGroupParam {
|
|
22
22
|
limitCount: number;
|
|
23
23
|
groupCount: number;
|
|
24
|
+
itemId: string;
|
|
25
|
+
fulfillAt: number;
|
|
24
26
|
}
|
|
25
27
|
interface batchUpdateGroupParam {
|
|
26
28
|
groupId: string;
|
|
@@ -49,31 +51,27 @@ export declare namespace TourGroup {
|
|
|
49
51
|
fulfillAt: number;
|
|
50
52
|
}
|
|
51
53
|
interface queryGroupInfoRes {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
+
unSplitTeamList: {
|
|
55
|
+
id: string;
|
|
56
|
+
type: any;
|
|
57
|
+
leaderInfo: {};
|
|
58
|
+
orderList: {
|
|
54
59
|
id: string;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
mobile: string;
|
|
61
|
-
};
|
|
62
|
-
}[];
|
|
63
|
-
};
|
|
60
|
+
tourists: {
|
|
61
|
+
name: string;
|
|
62
|
+
mobile: string;
|
|
63
|
+
};
|
|
64
|
+
}[];
|
|
64
65
|
}[];
|
|
65
66
|
split: {
|
|
66
67
|
group: {
|
|
67
68
|
id: string;
|
|
68
|
-
|
|
69
|
-
|
|
69
|
+
type: any;
|
|
70
|
+
orderList: {
|
|
70
71
|
id: string;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
name: string;
|
|
75
|
-
mobile: string;
|
|
76
|
-
};
|
|
72
|
+
tourists: {
|
|
73
|
+
name: string;
|
|
74
|
+
mobile: string;
|
|
77
75
|
}[];
|
|
78
76
|
}[];
|
|
79
77
|
}[];
|