@be-link/tfs-cli-nodejs 0.0.153 → 0.0.154

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/tfs-cli-nodejs",
3
- "version": "0.0.153",
3
+ "version": "0.0.154",
4
4
  "description": "交易履约服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,13 +31,13 @@ export declare namespace Service {
31
31
  }
32
32
  /** 查看电子材料详情 */
33
33
  interface IGetTouristMaterialItemDetail {
34
- touristMaterialId: string;
34
+ touristMaterialItemId: string;
35
35
  }
36
36
  /** 商家审核 */
37
37
  interface IApproveTouristMaterial {
38
38
  touristMaterialItemId?: string;
39
39
  touristMaterialItemIdList?: string[];
40
- approvalStatus: string;
40
+ approvalStatus: CommodityEnums.TouristMaterialItemStatus;
41
41
  approvalRemark: string;
42
42
  operator: string;
43
43
  }
@@ -67,25 +67,26 @@ export declare namespace Service {
67
67
  interface IQueryOrderTouristMaterialInfo {
68
68
  orderId: string;
69
69
  touristId: string;
70
+ touristMaterialId: string;
70
71
  touristDigitalItems: {
71
72
  id: string;
72
73
  title: string;
73
- approvalStatus: string;
74
+ approvalStatus: CommodityEnums.TouristMaterialItemStatus;
74
75
  }[];
75
76
  touristPhysicalItems: {
76
77
  id: string;
77
78
  title: string;
78
- approvalStatus: string;
79
+ approvalStatus: CommodityEnums.TouristMaterialItemStatus;
79
80
  }[];
80
81
  visaInterviewInfo: Fulfill.Entity.VisaInterviewInfo;
81
82
  visaCancelInfo: Fulfill.Entity.VisaCancelInfo;
82
83
  }
83
84
  /** 查看电子材料详情 */
84
85
  interface IGetTouristMaterialItemDetail {
85
- touristMaterialId: string;
86
+ touristMaterialItemId: string;
86
87
  title: string;
87
88
  attachments: string[];
88
- approvalStatus: string;
89
+ approvalStatus: CommodityEnums.TouristMaterialItemStatus;
89
90
  approvalRemark: string;
90
91
  }
91
92
  interface IQueryOrderTouristMaterialDetail {
@@ -108,13 +109,13 @@ export declare namespace Service {
108
109
  /** 实体材料进度*/
109
110
  process: {
110
111
  updatedAt: number;
111
- approvalStatus?: string;
112
+ approvalStatus?: CommodityEnums.TouristMaterialItemStatus;
112
113
  approvalStatusDisplay: string;
113
114
  operator: string;
114
115
  remark: string;
115
116
  }[];
116
117
  /** 审核状态 */
117
- approvalStatus: string;
118
+ approvalStatus: CommodityEnums.TouristMaterialStatus;
118
119
  }[];
119
120
  }
120
121
  }