@be-link/cs-cli-nodejs 0.1.91 → 0.1.92

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.
@@ -4,6 +4,8 @@ export declare namespace ItemTourMaterial {
4
4
  interface TourMaterial {
5
5
  /** 商品id */
6
6
  id: string;
7
+ createdAt?: number;
8
+ updatedAt?: number;
7
9
  /** 材料类型 */
8
10
  materialType: commodityEnums.TourMaterialType;
9
11
  /** 代办费用 */
@@ -14,14 +16,19 @@ export declare namespace ItemTourMaterial {
14
16
  visaCancel: boolean;
15
17
  /** 是否可用 */
16
18
  isEnable: boolean;
17
- /** 材料项 */
19
+ }
20
+ interface TourMaterialSnapshot extends TourMaterial {
21
+ /** 材料项1:实体材料或 代办材料*/
18
22
  items: TourMaterialItem[];
19
- /** 列表2 */
23
+ /** 材料项2:自备材料 */
20
24
  items2?: TourMaterialItem[];
21
25
  }
22
26
  interface TourMaterialItem {
23
27
  /** 材料项id */
24
28
  id?: string;
29
+ createdAt?: number;
30
+ updatedAt?: number;
31
+ deletedAt?: number;
25
32
  /** 商品id */
26
33
  itemId: string;
27
34
  /** 标题 */
@@ -45,10 +52,10 @@ export declare namespace ItemTourMaterial {
45
52
  /** 是否可用 */
46
53
  isEnable?: boolean;
47
54
  }
48
- type IUpdateItemTourMateria = Entity.TourMaterial;
55
+ type IUpdateItemTourMateria = Entity.TourMaterialSnapshot;
49
56
  }
50
57
  namespace Response {
51
- type IGetItemTourMaterial = Entity.TourMaterial;
58
+ type IGetItemTourMaterial = Entity.TourMaterialSnapshot;
52
59
  }
53
60
  interface Controller {
54
61
  /** 获取商品出行材料 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.1.91",
3
+ "version": "0.1.92",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {