@be-link/pos-cli-nodejs 1.0.217 → 1.0.218
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
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as PosConstants from 'vitality-meta/enums/pos';
|
|
2
2
|
import * as DTO from '../../../types';
|
|
3
|
+
export type RescheduleSource = 'WEB' | 'BIZ_FLOW' | 'ORDER_CHANGE';
|
|
3
4
|
export declare namespace Service {
|
|
4
5
|
namespace Request {
|
|
5
6
|
interface createOrderInvoice {
|
|
@@ -335,6 +336,7 @@ export declare namespace Service {
|
|
|
335
336
|
reasonType: string;
|
|
336
337
|
reasonDesc: string;
|
|
337
338
|
attachment: string[];
|
|
339
|
+
source?: RescheduleSource;
|
|
338
340
|
}
|
|
339
341
|
interface IRescheduleOrderV2 {
|
|
340
342
|
orderId: string;
|
|
@@ -343,6 +345,7 @@ export declare namespace Service {
|
|
|
343
345
|
reasonType: string;
|
|
344
346
|
reasonDesc: string;
|
|
345
347
|
attachment: string[];
|
|
348
|
+
source?: RescheduleSource;
|
|
346
349
|
}
|
|
347
350
|
interface IBatchSubmitOrders {
|
|
348
351
|
/** 订单Id */
|