@be-link/tfs-cli-nodejs 0.0.194 → 0.0.196
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
|
@@ -84,12 +84,19 @@ export declare namespace Service {
|
|
|
84
84
|
approvalStatus: CommodityEnums.TouristMaterialItemStatus;
|
|
85
85
|
approvalRemark: string;
|
|
86
86
|
operator: string;
|
|
87
|
+
touristMobile: string;
|
|
88
|
+
touristName: string;
|
|
87
89
|
}
|
|
88
90
|
/** 商家批量面签 */
|
|
89
91
|
interface IVerifyVisaInterviewInfo {
|
|
90
92
|
touristMaterialIdList: string[];
|
|
91
93
|
visaInterviewInfo: Fulfill.Entity.VisaInterviewInfo;
|
|
92
94
|
operator: string;
|
|
95
|
+
notifyList: {
|
|
96
|
+
orderId: string;
|
|
97
|
+
mobile: string;
|
|
98
|
+
name: string;
|
|
99
|
+
}[];
|
|
93
100
|
}
|
|
94
101
|
/** 商家批量出签 */
|
|
95
102
|
interface IVerifyVisaIssueInfo {
|
|
@@ -145,6 +152,7 @@ export declare namespace Service {
|
|
|
145
152
|
orderId: string;
|
|
146
153
|
touristId: string;
|
|
147
154
|
touristName: string;
|
|
155
|
+
touristMobile: string;
|
|
148
156
|
visaType: string;
|
|
149
157
|
touristMaterial: {
|
|
150
158
|
digitalMaterial: {
|
package/types.d.ts
CHANGED
|
@@ -495,9 +495,9 @@ export declare namespace Fulfill {
|
|
|
495
495
|
}
|
|
496
496
|
/** 消签信息 */
|
|
497
497
|
interface VisaCancelInfo {
|
|
498
|
-
contact
|
|
499
|
-
tel
|
|
500
|
-
address
|
|
498
|
+
contact?: string;
|
|
499
|
+
tel?: string;
|
|
500
|
+
address?: string;
|
|
501
501
|
expressNum: string;
|
|
502
502
|
}
|
|
503
503
|
/** 商品出行材料项信息 */
|