@be-link/tfs-cli-nodejs 0.0.14 → 0.0.15
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
|
@@ -4,8 +4,8 @@ export declare namespace Itinerary {
|
|
|
4
4
|
interface batchUpsertItineraryInfo {
|
|
5
5
|
/** 商品Id */
|
|
6
6
|
itemId: string;
|
|
7
|
-
/**
|
|
8
|
-
|
|
7
|
+
/** 履约时期 */
|
|
8
|
+
fulfillAt: number;
|
|
9
9
|
/** 出行信息更新范围, touristId[]*/
|
|
10
10
|
upsertScope: {
|
|
11
11
|
[tradeOrderId: string]: string[];
|
|
@@ -38,8 +38,8 @@ export declare namespace Itinerary {
|
|
|
38
38
|
interface importPreCheck {
|
|
39
39
|
/** 商品id */
|
|
40
40
|
itemId: string;
|
|
41
|
-
/**
|
|
42
|
-
|
|
41
|
+
/** 履约时间 */
|
|
42
|
+
fulfillAt: number;
|
|
43
43
|
/** 导入数据 */
|
|
44
44
|
importDataList: {
|
|
45
45
|
/** 姓名 */
|
|
@@ -55,8 +55,8 @@ export declare namespace Itinerary {
|
|
|
55
55
|
type importSeatNumber = importPreCheck;
|
|
56
56
|
interface queryItineraryInfoByOrderIdList {
|
|
57
57
|
[tradeOrderId: string]: {
|
|
58
|
-
/**
|
|
59
|
-
|
|
58
|
+
/** 出行日期*/
|
|
59
|
+
fulfillAt: number;
|
|
60
60
|
/** 出行人Id列表 */
|
|
61
61
|
touristIdList: string[];
|
|
62
62
|
};
|