@be-link/pos-cli-nodejs 1.0.89 → 1.0.90
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 +2 -2
- package/types.d.ts +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/pos-cli-nodejs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.90",
|
|
4
4
|
"description": "正向订单服务Nodejs客户端",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"axios-retry": "^4.0.0",
|
|
51
51
|
"uuid": "^9.0.1",
|
|
52
52
|
"vitality-meta": "1.0.197",
|
|
53
|
-
"@be-link/cs-cli-nodejs": "0.1.
|
|
53
|
+
"@be-link/cs-cli-nodejs": "0.1.93",
|
|
54
54
|
"lodash": "4.17.21"
|
|
55
55
|
}
|
|
56
56
|
}
|
package/types.d.ts
CHANGED
|
@@ -973,6 +973,15 @@ export interface IRawOrderStructure {
|
|
|
973
973
|
export interface IRawFulFillStructure {
|
|
974
974
|
tourismInfo: IPositiveTouristInfo;
|
|
975
975
|
fulfillmentInfo: IPositiveFulfillmentInfo;
|
|
976
|
+
tourMaterialInfo: TradeOrderTourMaterialInfo;
|
|
977
|
+
}
|
|
978
|
+
interface TradeOrderTourMaterialInfo {
|
|
979
|
+
_id: string;
|
|
980
|
+
createdAt: number;
|
|
981
|
+
updatedAt: number;
|
|
982
|
+
tourMaterialSnapShot: CSDto.ITourMaterialSnapshot;
|
|
983
|
+
itemId: string;
|
|
984
|
+
tourMaterialStatus: number;
|
|
976
985
|
}
|
|
977
986
|
export interface IWxPrepayResult {
|
|
978
987
|
payment: {
|
|
@@ -1286,3 +1295,4 @@ export type QueryDataRes<K extends (keyof QueryDataBlockTypeMap)[]> = {
|
|
|
1286
1295
|
export type QueryDataResProxy<K extends (keyof QueryDataBlockTypeProxyMap)[]> = {
|
|
1287
1296
|
[key in K[number]]: QueryDataBlockTypeProxyMap[key];
|
|
1288
1297
|
};
|
|
1298
|
+
export {};
|