@be-link/cs-cli-nodejs 0.1.120 → 0.1.122

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.
@@ -27,7 +27,7 @@ export declare namespace MiniApp {
27
27
  floatPictureUrl: string;
28
28
  hasGroupBookingRule: boolean;
29
29
  isMigration: number;
30
- memberPrice: number;
30
+ memberPrice?: number;
31
31
  }
32
32
  }
33
33
  interface Controller {
@@ -713,37 +713,14 @@ export declare namespace Restructure {
713
713
  saleCount: number;
714
714
  _createTime: number;
715
715
  minPrice: number;
716
+ shortName?: string;
717
+ commissionFee?: number;
718
+ unitDeposit?: number;
719
+ depositTimeoutDays?: number;
720
+ saleChannelBitMap?: number;
716
721
  }[];
717
722
  }
718
- interface queryTourExtraInfoByItemIds {
719
- list: {
720
- _id: string;
721
- _createTime: number;
722
- _updateTime: number;
723
- isSelfLead: boolean | null;
724
- itinerarySchedule: any;
725
- tourBeginPlace: string | null;
726
- tourEndPlace: string | null;
727
- tourDays: number | null;
728
- tourWholesaler: string | null;
729
- domesticTourOperator: string | null;
730
- tourContactInfo: string | null;
731
- tourContactName: string | null;
732
- tourContactPhone: string | null;
733
- tourContactAddress: string | null;
734
- tourPrincipal: string | null;
735
- contractType: string | null;
736
- needWxGroup: boolean | null;
737
- recommendation: any;
738
- supplierId: string;
739
- hasShopping: boolean | null;
740
- hasActivity: boolean | null;
741
- majorTransportationFinalFeeList: {
742
- beginCity: string;
743
- fee: number;
744
- }[] | null;
745
- }[];
746
- }
723
+ type queryTourExtraInfoByItemIds = Record<string, unknown>[];
747
724
  interface IItemInfoDisplay {
748
725
  saleInfo: {
749
726
  sales: number;
@@ -956,11 +933,14 @@ export declare namespace Restructure {
956
933
  }[];
957
934
  type queryHotItemsInLast30Days = IItemInfoDisplay[];
958
935
  type queryItemIdsInTagIds = {
959
- _id: number;
960
- name: string;
936
+ _id?: number;
937
+ _createTime?: number;
938
+ _updateTime?: number;
961
939
  itemIdList: string[];
940
+ status?: string;
941
+ name?: string;
942
+ describeInfo?: string;
962
943
  sortType?: string;
963
- [key: string]: unknown;
964
944
  }[];
965
945
  type queryItemInfoByIdList = {
966
946
  _createTime: number;
@@ -996,7 +976,7 @@ export declare namespace Restructure {
996
976
  type queryItemSkuByTime = {
997
977
  date: number;
998
978
  combo: string;
999
- price: string;
979
+ price: number;
1000
980
  surplus: number;
1001
981
  }[];
1002
982
  interface queryItemTagList {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/cs-cli-nodejs",
3
- "version": "0.1.120",
3
+ "version": "0.1.122",
4
4
  "description": "商品服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "author": "dev@8848top.com",