@be-link/pos-cli-nodejs 1.0.92 → 1.0.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.
- package/package.json +1 -1
- package/types.d.ts +11 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -973,7 +973,15 @@ export interface IRawOrderStructure {
|
|
|
973
973
|
export interface IRawFulFillStructure {
|
|
974
974
|
tourismInfo: IPositiveTouristInfo;
|
|
975
975
|
fulfillmentInfo: IPositiveFulfillmentInfo;
|
|
976
|
-
tourMaterialInfo:
|
|
976
|
+
tourMaterialInfo: ITradeOrderTourMaterialSnapshot;
|
|
977
|
+
}
|
|
978
|
+
export interface ITradeOrderTourMaterialSnapshot {
|
|
979
|
+
_id: string;
|
|
980
|
+
createdAt: number;
|
|
981
|
+
updatedAt: number;
|
|
982
|
+
itemId: string;
|
|
983
|
+
tourMaterialSnapShot: ITourMaterialSnapshot;
|
|
984
|
+
tourMaterialStatus: number;
|
|
977
985
|
}
|
|
978
986
|
export interface IWxPrepayResult {
|
|
979
987
|
payment: {
|
|
@@ -1149,6 +1157,8 @@ export interface QueryDataBlockTypeProxyMap {
|
|
|
1149
1157
|
paymentInfo: IPositivePaymentInfo[];
|
|
1150
1158
|
/** 营销信息 */
|
|
1151
1159
|
promotionInfo: IPositivePromotionInfo[];
|
|
1160
|
+
/** 商品出行材料快照信息 */
|
|
1161
|
+
itemTourMaterialInfo: ITradeOrderTourMaterialInfo;
|
|
1152
1162
|
}
|
|
1153
1163
|
export interface IPositiveOrderInvoice {
|
|
1154
1164
|
/** ID */
|