@be-link/pos-cli-nodejs 1.0.51-beta.8 → 1.0.51-beta.9

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.51-beta.8",
3
+ "version": "1.0.51-beta.9",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -2,6 +2,7 @@ import { PosDto } from '../..';
2
2
  export declare abstract class ItemInfoProxy {
3
3
  abstract get raw(): PosDto.IPositiveItemInfo | PosDto.IPositiveItemInfoV2;
4
4
  abstract get id(): string;
5
+ /** @deprecated 请使用 id 代替 */
5
6
  abstract get _id(): string;
6
7
  abstract get name(): string;
7
8
  abstract get headPic(): string;
@@ -11,6 +12,7 @@ export declare abstract class ItemInfoProxy {
11
12
  abstract get categoryTwo(): string;
12
13
  abstract get isSelfLead(): number;
13
14
  abstract get canUpdateMealInfo(): number | boolean;
15
+ /** @deprecated 请使用 venueId 代替 */
14
16
  abstract get storeId(): string | undefined;
15
17
  abstract get venueId(): string | undefined;
16
18
  abstract get contractType(): string | undefined;