@be-link/pos-cli-nodejs 1.0.90 → 1.0.91
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 +1 -10
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.91",
|
|
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.1",
|
|
54
54
|
"lodash": "4.17.21"
|
|
55
55
|
}
|
|
56
56
|
}
|
package/types.d.ts
CHANGED
|
@@ -973,15 +973,7 @@ export interface IRawOrderStructure {
|
|
|
973
973
|
export interface IRawFulFillStructure {
|
|
974
974
|
tourismInfo: IPositiveTouristInfo;
|
|
975
975
|
fulfillmentInfo: IPositiveFulfillmentInfo;
|
|
976
|
-
tourMaterialInfo:
|
|
977
|
-
}
|
|
978
|
-
interface TradeOrderTourMaterialInfo {
|
|
979
|
-
_id: string;
|
|
980
|
-
createdAt: number;
|
|
981
|
-
updatedAt: number;
|
|
982
|
-
tourMaterialSnapShot: CSDto.ITourMaterialSnapshot;
|
|
983
|
-
itemId: string;
|
|
984
|
-
tourMaterialStatus: number;
|
|
976
|
+
tourMaterialInfo: ITradeTourismInfo;
|
|
985
977
|
}
|
|
986
978
|
export interface IWxPrepayResult {
|
|
987
979
|
payment: {
|
|
@@ -1295,4 +1287,3 @@ export type QueryDataRes<K extends (keyof QueryDataBlockTypeMap)[]> = {
|
|
|
1295
1287
|
export type QueryDataResProxy<K extends (keyof QueryDataBlockTypeProxyMap)[]> = {
|
|
1296
1288
|
[key in K[number]]: QueryDataBlockTypeProxyMap[key];
|
|
1297
1289
|
};
|
|
1298
|
-
export {};
|