@be-link/tfs-cli-nodejs 0.0.193 → 0.0.195
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
|
@@ -32,6 +32,7 @@ export declare namespace Service {
|
|
|
32
32
|
adjustmentOrderId?: string;
|
|
33
33
|
}
|
|
34
34
|
interface IUpdateVisaType {
|
|
35
|
+
unionId: string;
|
|
35
36
|
orderId: string;
|
|
36
37
|
visaType: CommodityEnums.TourMaterialVisaType;
|
|
37
38
|
fee: number;
|
|
@@ -83,12 +84,19 @@ export declare namespace Service {
|
|
|
83
84
|
approvalStatus: CommodityEnums.TouristMaterialItemStatus;
|
|
84
85
|
approvalRemark: string;
|
|
85
86
|
operator: string;
|
|
87
|
+
touristMobile: string;
|
|
88
|
+
touristName: string;
|
|
86
89
|
}
|
|
87
90
|
/** 商家批量面签 */
|
|
88
91
|
interface IVerifyVisaInterviewInfo {
|
|
89
92
|
touristMaterialIdList: string[];
|
|
90
93
|
visaInterviewInfo: Fulfill.Entity.VisaInterviewInfo;
|
|
91
94
|
operator: string;
|
|
95
|
+
notifyList: {
|
|
96
|
+
orderId: string;
|
|
97
|
+
mobile: string;
|
|
98
|
+
name: string;
|
|
99
|
+
}[];
|
|
92
100
|
}
|
|
93
101
|
/** 商家批量出签 */
|
|
94
102
|
interface IVerifyVisaIssueInfo {
|
|
@@ -144,6 +152,7 @@ export declare namespace Service {
|
|
|
144
152
|
orderId: string;
|
|
145
153
|
touristId: string;
|
|
146
154
|
touristName: string;
|
|
155
|
+
touristMobile: string;
|
|
147
156
|
visaType: string;
|
|
148
157
|
touristMaterial: {
|
|
149
158
|
digitalMaterial: {
|