@chevre/factory 4.304.0 → 4.305.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.
|
@@ -16,7 +16,7 @@ export import IAgent = ActionFactory.IParticipantAsProject;
|
|
|
16
16
|
export import IRecipient = ActionFactory.IParticipantAsSeller;
|
|
17
17
|
export interface IOrderAsPayPurpose {
|
|
18
18
|
typeOf: OrderType.Order;
|
|
19
|
-
confirmationNumber
|
|
19
|
+
confirmationNumber: string;
|
|
20
20
|
orderNumber?: string;
|
|
21
21
|
}
|
|
22
22
|
export interface IAssetTransactionAsPayPurpose {
|
|
@@ -29,8 +29,7 @@ export interface ITransactionAsPayPurpose {
|
|
|
29
29
|
id: string;
|
|
30
30
|
}
|
|
31
31
|
export declare type IReturnActionAsPayPurpose = IReturnOrderActionAttributes;
|
|
32
|
-
export declare type
|
|
33
|
-
export declare type IPurpose = IPayPurpose;
|
|
32
|
+
export declare type IPurpose = IOrderAsPayPurpose | IAssetTransactionAsPayPurpose | IReturnActionAsPayPurpose | ITransactionAsPayPurpose;
|
|
34
33
|
export declare type AvailablePaymentMethodType = string;
|
|
35
34
|
export interface IPendingTransaction {
|
|
36
35
|
typeOf: AccountFactory.transactionType;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as ActionFactory from '../../action';
|
|
2
2
|
import { ActionType } from '../../actionType';
|
|
3
3
|
import { IAttributes as IInformActionAttributes } from '../interact/inform';
|
|
4
|
-
import { IPaymentService as IPaymentServiceOnPay, IPayPurpose } from './pay';
|
|
4
|
+
import { IPaymentService as IPaymentServiceOnPay, IPurpose as IPayPurpose } from './pay';
|
|
5
5
|
export declare type IAgent = ActionFactory.IParticipantAsSeller | ActionFactory.IParticipantAsPerson;
|
|
6
6
|
export declare type IRecipient = ActionFactory.IParticipant;
|
|
7
7
|
export declare type IPaymentService = IPaymentServiceOnPay & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as GMO from '@motionpicture/gmo-service';
|
|
2
|
-
import { IAction as IPayAction, IAttributes as IPayActionAttributes, ILocation, IMovieTicket, IOrderAsPayPurpose,
|
|
2
|
+
import { IAction as IPayAction, IAttributes as IPayActionAttributes, ILocation, IMovieTicket, IOrderAsPayPurpose, IPendingTransaction, IPurpose as IPayPurpose, IRecipient as IPayRecipient, ITotalPaymentDue } from '../action/trade/pay';
|
|
3
3
|
import * as AssetTransactionFactory from '../assetTransaction';
|
|
4
4
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
5
5
|
import { IExtendId } from '../autoGenerated';
|
package/lib/invoice.d.ts
CHANGED
package/lib/task/pay.d.ts
CHANGED