@chevre/factory 5.4.0-alpha.6 → 5.4.0-alpha.7
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,9 +1,10 @@
|
|
|
1
1
|
import { IAuthorizeCreditCardObject, IPurpose } from '../action/authorize/paymentMethod/any';
|
|
2
|
-
import { ILocation } from '../action/trade/pay';
|
|
2
|
+
import { IAcceptedPaymentMethodOfferAsInstrument, ILocation } from '../action/trade/pay';
|
|
3
3
|
import { IExtendId } from '../autoGenerated';
|
|
4
4
|
import { PaymentServiceType } from '../service/paymentService';
|
|
5
5
|
import * as TaskFactory from '../task';
|
|
6
6
|
import { TaskName } from '../taskName';
|
|
7
|
+
export type IInstrument = IAcceptedPaymentMethodOfferAsInstrument;
|
|
7
8
|
export interface IData {
|
|
8
9
|
project: {
|
|
9
10
|
id: string;
|
|
@@ -20,6 +21,7 @@ export interface IData {
|
|
|
20
21
|
* authorize payment action identifier
|
|
21
22
|
*/
|
|
22
23
|
identifier?: string;
|
|
24
|
+
instrument?: IInstrument[];
|
|
23
25
|
}
|
|
24
26
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
25
27
|
name: TaskName.PublishPaymentUrl;
|