@chevre/factory 10.5.0-alpha.4 → 10.5.0-alpha.6
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,7 +2,13 @@ import { IAttributes as IReturnOrderActionAttributes } from '../action/transfer/
|
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
3
|
import { ITaskAttributes } from '../task';
|
|
4
4
|
import { TaskName } from '../taskName';
|
|
5
|
-
|
|
5
|
+
import type { ITransaction as IReturnOrder } from '../transaction/returnOrder';
|
|
6
|
+
export type IData = Pick<IReturnOrderActionAttributes, 'agent' | 'object' | 'project' | 'typeOf'> & {
|
|
7
|
+
/**
|
|
8
|
+
* 返品取引廃止のために、必要な属性を拡張(2026-09-05~)
|
|
9
|
+
*/
|
|
10
|
+
returnOrderTransaction?: Pick<IReturnOrder, 'object' | 'potentialActions' | 'typeOf'>;
|
|
11
|
+
};
|
|
6
12
|
export interface IAttributes extends ITaskAttributes {
|
|
7
13
|
name: TaskName.ReturnOrder;
|
|
8
14
|
data: IData;
|
|
@@ -2,7 +2,13 @@ import { IPotentialReturnInvoiceAction } from '../action/transfer/return/order';
|
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
3
|
import { ITaskAttributes } from '../task';
|
|
4
4
|
import { TaskName } from '../taskName';
|
|
5
|
-
|
|
5
|
+
import type { ITransaction as IReturnOrder } from '../transaction/returnOrder';
|
|
6
|
+
export type IData = IPotentialReturnInvoiceAction & {
|
|
7
|
+
/**
|
|
8
|
+
* 返品取引廃止のために、必要な属性を拡張(2026-09-05~)
|
|
9
|
+
*/
|
|
10
|
+
returnOrderTransaction?: Pick<IReturnOrder, 'object'>;
|
|
11
|
+
};
|
|
6
12
|
export interface IAttributes extends ITaskAttributes {
|
|
7
13
|
name: TaskName.ReturnPayTransaction;
|
|
8
14
|
data: IData;
|