@chevre/factory 4.327.0-alpha.8 → 4.327.0-alpha.9
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,12 +1,17 @@
|
|
|
1
|
-
import { IPurpose } from '../action/authorize/paymentMethod/any';
|
|
1
|
+
import { IPurpose as IAuthorizePaymentPurpose } from '../action/authorize/paymentMethod/any';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
|
+
import { OrderStatus } from '../orderStatus';
|
|
3
4
|
import { IProject } from '../project';
|
|
4
5
|
import * as TaskFactory from '../task';
|
|
5
6
|
import { TaskName } from '../taskName';
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
export declare type IPurpose = IAuthorizePaymentPurpose & {
|
|
8
|
+
result?: {
|
|
9
|
+
order?: {
|
|
10
|
+
orderStatus?: OrderStatus.OrderCancelled;
|
|
11
|
+
};
|
|
9
12
|
};
|
|
13
|
+
};
|
|
14
|
+
export interface IData {
|
|
10
15
|
/**
|
|
11
16
|
* 承認アクションID指定であれば、指定アクションのみ中止
|
|
12
17
|
*/
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import { IPurpose } from '../action/authorize/offer/seatReservation';
|
|
1
|
+
import { IPurpose as IAuthorizeEventServiceOfferPurpose } from '../action/authorize/offer/seatReservation';
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
|
+
import { OrderStatus } from '../orderStatus';
|
|
3
4
|
import { IProject } from '../project';
|
|
4
5
|
import * as TaskFactory from '../task';
|
|
5
6
|
import { TaskName } from '../taskName';
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
export declare type IPurpose = IAuthorizeEventServiceOfferPurpose & {
|
|
8
|
+
result?: {
|
|
9
|
+
order?: {
|
|
10
|
+
orderStatus?: OrderStatus.OrderCancelled;
|
|
11
|
+
};
|
|
9
12
|
};
|
|
13
|
+
};
|
|
14
|
+
export interface IData {
|
|
10
15
|
/**
|
|
11
16
|
* 承認アクションID指定であれば、指定アクションのみ中止
|
|
12
17
|
*/
|