@chevre/factory 4.391.0-alpha.3 → 4.391.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.
package/lib/index.d.ts
CHANGED
|
@@ -139,7 +139,6 @@ import * as AccountMoneyTransferTaskFactory from './task/accountMoneyTransfer';
|
|
|
139
139
|
import * as AggregateOffersTaskFactory from './task/aggregateOffers';
|
|
140
140
|
import * as AggregateOnSystemTaskFactory from './task/aggregateOnSystem';
|
|
141
141
|
import * as AggregateScreeningEventTaskFactory from './task/aggregateScreeningEvent';
|
|
142
|
-
import * as AggregateUseActionsOnEventTaskFactory from './task/aggregateUseActionsOnEvent';
|
|
143
142
|
import * as AuthorizePaymentTaskFactory from './task/authorizePayment';
|
|
144
143
|
import * as CancelAccountMoneyTransferTaskFactory from './task/cancelAccountMoneyTransfer';
|
|
145
144
|
import * as CancelMoneyTransferTaskFactory from './task/cancelMoneyTransfer';
|
|
@@ -453,7 +452,6 @@ export declare namespace task {
|
|
|
453
452
|
export import aggregateOffers = AggregateOffersTaskFactory;
|
|
454
453
|
export import aggregateOnSystem = AggregateOnSystemTaskFactory;
|
|
455
454
|
export import aggregateScreeningEvent = AggregateScreeningEventTaskFactory;
|
|
456
|
-
export import aggregateUseActionsOnEvent = AggregateUseActionsOnEventTaskFactory;
|
|
457
455
|
export import authorizePayment = AuthorizePaymentTaskFactory;
|
|
458
456
|
export import cancelMoneyTransfer = CancelMoneyTransferTaskFactory;
|
|
459
457
|
export import cancelPendingReservation = CancelPendingReservationTaskFactory;
|
package/lib/index.js
CHANGED
|
@@ -127,7 +127,6 @@ var AccountMoneyTransferTaskFactory = require("./task/accountMoneyTransfer");
|
|
|
127
127
|
var AggregateOffersTaskFactory = require("./task/aggregateOffers");
|
|
128
128
|
var AggregateOnSystemTaskFactory = require("./task/aggregateOnSystem");
|
|
129
129
|
var AggregateScreeningEventTaskFactory = require("./task/aggregateScreeningEvent");
|
|
130
|
-
var AggregateUseActionsOnEventTaskFactory = require("./task/aggregateUseActionsOnEvent");
|
|
131
130
|
var AuthorizePaymentTaskFactory = require("./task/authorizePayment");
|
|
132
131
|
var CancelAccountMoneyTransferTaskFactory = require("./task/cancelAccountMoneyTransfer");
|
|
133
132
|
var CancelMoneyTransferTaskFactory = require("./task/cancelMoneyTransfer");
|
|
@@ -409,7 +408,6 @@ var task;
|
|
|
409
408
|
task.aggregateOffers = AggregateOffersTaskFactory;
|
|
410
409
|
task.aggregateOnSystem = AggregateOnSystemTaskFactory;
|
|
411
410
|
task.aggregateScreeningEvent = AggregateScreeningEventTaskFactory;
|
|
412
|
-
task.aggregateUseActionsOnEvent = AggregateUseActionsOnEventTaskFactory;
|
|
413
411
|
task.authorizePayment = AuthorizePaymentTaskFactory;
|
|
414
412
|
task.cancelMoneyTransfer = CancelMoneyTransferTaskFactory;
|
|
415
413
|
task.cancelPendingReservation = CancelPendingReservationTaskFactory;
|
|
@@ -10,15 +10,18 @@ export interface IData {
|
|
|
10
10
|
agent: IDeleteMemberActionAttributes['agent'];
|
|
11
11
|
physically: boolean;
|
|
12
12
|
userPoolId: string;
|
|
13
|
-
project: {
|
|
14
|
-
id: string;
|
|
15
|
-
};
|
|
16
13
|
/**
|
|
17
14
|
* 移行するかどうか
|
|
18
15
|
*/
|
|
19
16
|
migrate: boolean;
|
|
20
17
|
migratePersonRecipientUrl?: string;
|
|
21
18
|
useUsernameAsGMOMemberId: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* クレジットカード会員を管理する決済代行の決済方法区分
|
|
21
|
+
* 未指定の場合、クレジットカード会員削除処理は実行されない
|
|
22
|
+
* 2024-12-26~
|
|
23
|
+
*/
|
|
24
|
+
paymentMethodType4creditCard?: string;
|
|
22
25
|
executeBackground: boolean;
|
|
23
26
|
}
|
|
24
27
|
export interface IAttributes extends TaskFactory.IAttributes {
|
package/lib/taskName.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export declare enum TaskName {
|
|
|
10
10
|
AggregateOffers = "aggregateOffers",
|
|
11
11
|
AggregateOnSystem = "aggregateOnSystem",
|
|
12
12
|
AggregateScreeningEvent = "aggregateScreeningEvent",
|
|
13
|
-
AggregateUseActionsOnEvent = "aggregateUseActionsOnEvent",
|
|
14
13
|
/**
|
|
15
14
|
* 決済承認(2024-04-20~)
|
|
16
15
|
*/
|
package/lib/taskName.js
CHANGED
|
@@ -14,7 +14,6 @@ var TaskName;
|
|
|
14
14
|
TaskName["AggregateOffers"] = "aggregateOffers";
|
|
15
15
|
TaskName["AggregateOnSystem"] = "aggregateOnSystem";
|
|
16
16
|
TaskName["AggregateScreeningEvent"] = "aggregateScreeningEvent";
|
|
17
|
-
TaskName["AggregateUseActionsOnEvent"] = "aggregateUseActionsOnEvent";
|
|
18
17
|
/**
|
|
19
18
|
* 決済承認(2024-04-20~)
|
|
20
19
|
*/
|
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { IExtendId } from '../autoGenerated';
|
|
2
|
-
import { EventType } from '../eventType';
|
|
3
|
-
import * as TaskFactory from '../task';
|
|
4
|
-
import { TaskName } from '../taskName';
|
|
5
|
-
export interface IData {
|
|
6
|
-
typeOf: EventType.ScreeningEvent;
|
|
7
|
-
id: string;
|
|
8
|
-
}
|
|
9
|
-
export interface IAttributes extends TaskFactory.IAttributes {
|
|
10
|
-
name: TaskName.AggregateUseActionsOnEvent;
|
|
11
|
-
data: IData;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* イベント入場集計タスクインターフェース
|
|
15
|
-
*/
|
|
16
|
-
export type ITask = IExtendId<IAttributes>;
|