@be-link/pos-cli-nodejs 0.0.116 → 0.0.117-beta.0
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 +20 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -88,6 +88,10 @@ export interface IPositiveAttributes {
|
|
|
88
88
|
isAuthSendItineraryInfoSubscribeMessage: boolean;
|
|
89
89
|
/** 出行人是否填写完整 */
|
|
90
90
|
isTouristsCompletely: boolean;
|
|
91
|
+
/** 快照创建时间 */
|
|
92
|
+
createdAt: number;
|
|
93
|
+
/** 快照更新时间 */
|
|
94
|
+
updatedAt: number;
|
|
91
95
|
}
|
|
92
96
|
export interface CostInclusionJson {
|
|
93
97
|
/** 标题 */
|
|
@@ -246,6 +250,10 @@ export interface IPositiveItemInfo {
|
|
|
246
250
|
settlementPrice: number;
|
|
247
251
|
};
|
|
248
252
|
};
|
|
253
|
+
/** 创建时间 */
|
|
254
|
+
createdAt: number;
|
|
255
|
+
/** 更新时间 */
|
|
256
|
+
updatedAt: number;
|
|
249
257
|
}
|
|
250
258
|
export interface IPositiveSkuInfo {
|
|
251
259
|
/** SKU ID */
|
|
@@ -345,6 +353,10 @@ export interface IPositiveSkuInfo {
|
|
|
345
353
|
categoryOne: string;
|
|
346
354
|
/** 二级类目 */
|
|
347
355
|
categoryTwo: string;
|
|
356
|
+
/** sku快照创建时间 */
|
|
357
|
+
createdAt: number;
|
|
358
|
+
/** sku快照更新时间 */
|
|
359
|
+
updatedAt: number;
|
|
348
360
|
}
|
|
349
361
|
export interface IWxPaymentInfo {
|
|
350
362
|
appId: string;
|
|
@@ -384,6 +396,10 @@ export interface IPositivePaymentInfo {
|
|
|
384
396
|
/** 外部订单 */
|
|
385
397
|
outOrderId?: string;
|
|
386
398
|
};
|
|
399
|
+
/** 支付交易创建时间 */
|
|
400
|
+
createdAt: number;
|
|
401
|
+
/** 支付交易更新时间 */
|
|
402
|
+
updatedAt: number;
|
|
387
403
|
}
|
|
388
404
|
export interface CouponSnapShotInfo {
|
|
389
405
|
/** 优惠券Id */
|
|
@@ -423,6 +439,10 @@ export interface IPositivePromotionInfo {
|
|
|
423
439
|
reduce: number;
|
|
424
440
|
/** 与营销关联的优惠券的快照信息。 */
|
|
425
441
|
snapShotInfo: CouponSnapShotInfo;
|
|
442
|
+
/** 营销记录创建时间 */
|
|
443
|
+
createdAt: number;
|
|
444
|
+
/** 营销记录更新时间 */
|
|
445
|
+
updatedAt: number;
|
|
426
446
|
}
|
|
427
447
|
export interface IPositiveItineraryInfo {
|
|
428
448
|
_id: string;
|