@be-link/pos-cli-nodejs 1.0.134 → 1.0.136

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.134",
3
+ "version": "1.0.136",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -39,7 +39,7 @@
39
39
  "axios": "0.27.2",
40
40
  "axios-retry": "^4.0.0",
41
41
  "uuid": "^9.0.1",
42
- "vitality-meta": "1.0.215",
42
+ "vitality-meta": "1.0.226",
43
43
  "@be-link/cs-cli-nodejs": "0.1.100",
44
44
  "lodash": "4.17.21"
45
45
  },
package/types.d.ts CHANGED
@@ -183,6 +183,8 @@ export interface IPositiveItemInfo {
183
183
  creditInfo: CreditInfo;
184
184
  /** 地接社 */
185
185
  domesticTourOperator: string;
186
+ /** 联系人 */
187
+ tourContactInfo: string;
186
188
  /** 产品特色 */
187
189
  featuredTags: string[];
188
190
  /** 门店id */
@@ -22,6 +22,7 @@ export declare abstract class ItemInfoProxy {
22
22
  abstract get cooperator(): string | undefined;
23
23
  abstract get tourWholesaler(): string | undefined;
24
24
  abstract get domesticTourOperator(): string | undefined;
25
+ abstract get tourContactInfo(): string | undefined;
25
26
  abstract get tourPrincipal(): string | undefined | null;
26
27
  abstract get periodStartTime(): number | undefined;
27
28
  abstract get periodEndTime(): number | undefined;
@@ -62,6 +63,7 @@ declare class ItemInfoProxyV1 extends ItemInfoProxy {
62
63
  get cooperator(): string;
63
64
  get tourWholesaler(): any;
64
65
  get domesticTourOperator(): string;
66
+ get tourContactInfo(): string;
65
67
  get tourPrincipal(): string | null;
66
68
  get tourBeginPlace(): string;
67
69
  get tourDays(): number;
@@ -117,6 +119,7 @@ declare class ItemInfoProxyV2 extends ItemInfoProxy {
117
119
  get cooperator(): undefined;
118
120
  get tourWholesaler(): undefined;
119
121
  get domesticTourOperator(): undefined;
122
+ get tourContactInfo(): undefined;
120
123
  get tourPrincipal(): undefined;
121
124
  get tourBeginPlace(): undefined;
122
125
  get tourDays(): undefined;
@@ -31,6 +31,7 @@ class ItemInfoProxyV1 extends ItemInfoProxy {
31
31
  get cooperator() { return this.itemInfo.cooperator; }
32
32
  get tourWholesaler() { return this.itemInfo.tourWholesaler; }
33
33
  get domesticTourOperator() { return this.itemInfo.domesticTourOperator; }
34
+ get tourContactInfo() { return this.itemInfo.tourContactInfo; }
34
35
  get tourPrincipal() { return this.itemInfo.tourPrincipal; }
35
36
  get tourBeginPlace() { return this.itemInfo.tourBeginPlace; }
36
37
  get tourDays() { return this.itemInfo.tourDays; }
@@ -80,6 +81,7 @@ class ItemInfoProxyV2 extends ItemInfoProxy {
80
81
  get cooperator() { return undefined; }
81
82
  get tourWholesaler() { return undefined; }
82
83
  get domesticTourOperator() { return undefined; }
84
+ get tourContactInfo() { return undefined; }
83
85
  get tourPrincipal() { return undefined; }
84
86
  get tourBeginPlace() { return undefined; }
85
87
  get tourDays() { return undefined; }