@chevre/factory 4.242.0 → 4.243.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.
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import { IExtendId } from '../autoGenerated';
|
|
2
2
|
import * as TaskFactory from '../task';
|
|
3
3
|
import { TaskName } from '../taskName';
|
|
4
|
-
import { ITransaction } from '../transaction/
|
|
4
|
+
import { ITransaction as IMoneyTransfer } from '../transaction/moneyTransfer';
|
|
5
|
+
import { ITransaction as IPlaceOrder } from '../transaction/placeOrder';
|
|
6
|
+
import { ITransaction as IReturnOrder } from '../transaction/returnOrder';
|
|
7
|
+
export declare type IObject = IPlaceOrder | IReturnOrder | IMoneyTransfer;
|
|
5
8
|
export interface IData {
|
|
6
|
-
object:
|
|
9
|
+
object: IObject;
|
|
7
10
|
}
|
|
8
11
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
9
12
|
name: TaskName.DeleteTransaction;
|
|
10
13
|
data: IData;
|
|
11
14
|
}
|
|
12
15
|
/**
|
|
13
|
-
*
|
|
16
|
+
* 取引削除タスク
|
|
14
17
|
*/
|
|
15
18
|
export declare type ITask = IExtendId<IAttributes>;
|