@chevre/factory 4.281.0 → 4.282.0-alpha.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.
|
@@ -2,14 +2,15 @@ import { ITransaction as IPayTransaction } from '../assetTransaction/pay';
|
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
3
|
import * as TaskFactory from '../task';
|
|
4
4
|
import { TaskName } from '../taskName';
|
|
5
|
+
export declare type IPayTransactionAsObject = Pick<IPayTransaction, 'project' | 'typeOf' | 'id' | 'transactionNumber' | 'recipient' | 'object'>;
|
|
5
6
|
export interface IData {
|
|
6
|
-
object:
|
|
7
|
+
object: IPayTransactionAsObject;
|
|
7
8
|
}
|
|
8
9
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
9
10
|
name: TaskName.VoidPayment;
|
|
10
11
|
data: IData;
|
|
11
12
|
}
|
|
12
13
|
/**
|
|
13
|
-
*
|
|
14
|
+
* 決済中止タスク
|
|
14
15
|
*/
|
|
15
16
|
export declare type ITask = IExtendId<IAttributes>;
|