@chevre/factory 4.351.0-alpha.5 → 4.351.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.
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
import { IParticipantAsCustomer, IParticipantAsPerson, IParticipantAsProject, IParticipantAsWebApplication } from '../../../action';
|
|
2
2
|
import * as OrderFactory from '../../../order';
|
|
3
|
-
import
|
|
3
|
+
import { IGood, IOwnershipInfo } from '../../../ownershipInfo';
|
|
4
4
|
import { IAttributes as IMoneyTransferActionAttributes } from '../../interact/confirm/moneyTransfer';
|
|
5
5
|
import { IAttributes as IRegisterServiceAttributes } from '../../interact/confirm/registerService';
|
|
6
6
|
import * as SendActionFactory from '../send';
|
|
7
7
|
import { IAttributes as ISendEmailMessageActionAttributes } from './message/email';
|
|
8
8
|
export type IAgent = IParticipantAsPerson | IParticipantAsProject | IParticipantAsWebApplication;
|
|
9
9
|
export type IRecipient = IParticipantAsWebApplication | IParticipantAsPerson | IParticipantAsCustomer;
|
|
10
|
-
export type IObject = OrderFactory.ISimpleOrder
|
|
10
|
+
export type IObject = OrderFactory.ISimpleOrder & {
|
|
11
|
+
/**
|
|
12
|
+
* 配送対象オファー(2024-01-11~)
|
|
13
|
+
*/
|
|
14
|
+
acceptedOffers?: {
|
|
15
|
+
limit: number;
|
|
16
|
+
page: number;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
11
19
|
/**
|
|
12
20
|
* 注文配送結果としての所有権
|
|
13
21
|
*/
|
|
14
|
-
export type IResult =
|
|
22
|
+
export type IResult = IOwnershipInfo<IGood>[];
|
|
15
23
|
export interface IPotentialActions {
|
|
16
24
|
/**
|
|
17
25
|
* 通貨転送アクション
|