@be-link/cs-cli-nodejs 0.1.93 → 0.1.94

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.1.93",
3
+ "version": "0.1.94",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/types.d.ts CHANGED
@@ -368,7 +368,7 @@ export interface ITourMaterial {
368
368
  /** 材料类型 */
369
369
  materialType: commodityEnums.TourMaterialType;
370
370
  /** 代办费用 */
371
- agentCharge: bigint;
371
+ agentCharge: number;
372
372
  /** 是否面签 */
373
373
  visaInterview: boolean;
374
374
  /** 是否消签 */
@@ -400,7 +400,7 @@ export interface ITourMaterialItem {
400
400
  }
401
401
  /** 商品出行材料快照信息信息 */
402
402
  export interface ITourMaterialSnapshot extends ITourMaterial {
403
- /** 材料项1:实体材料或 代办材料*/
403
+ /** 材料项1:实体材料或 代办材料 */
404
404
  items: ITourMaterialItem[];
405
405
  /** 材料项2:自备材料 */
406
406
  items2?: ITourMaterialItem[];