@be-link/pos-cli-nodejs 1.0.183 → 1.0.185

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/pos-cli-nodejs",
3
- "version": "1.0.183",
3
+ "version": "1.0.185",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -945,7 +945,11 @@ export declare namespace Service {
945
945
  };
946
946
  attributes: DTO.QueryDataBlockTypeMap['attributes'] | Record<string, unknown>;
947
947
  fulfillInfo: Record<string, unknown>;
948
- commodityInfo: Array<Record<string, unknown>>;
948
+ commodityInfo: Array<Record<string, unknown> & {
949
+ beginCity?: string;
950
+ tourBeginPlace?: string;
951
+ tourEndPlace?: string;
952
+ }>;
949
953
  tourismInfo: Record<string, unknown>;
950
954
  switchInfo: {
951
955
  closeByRejected: boolean;
package/types.d.ts CHANGED
@@ -98,6 +98,8 @@ export interface IPositiveAttributes {
98
98
  isFirstTrade: boolean;
99
99
  /** 是否合并过其它订单 */
100
100
  hasMergedOrder: boolean;
101
+ /** 是否已预约 */
102
+ isBooked: boolean;
101
103
  /** 是否合并到了其它订单 */
102
104
  isMerged: boolean;
103
105
  /** 是否修改过餐食 */