@chevre/factory 7.0.0-alpha.0 → 7.0.0-alpha.1
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.
|
@@ -18,14 +18,6 @@ import { TransactionType } from '../../transactionType';
|
|
|
18
18
|
export type IAgent = ActionFactory.IParticipant;
|
|
19
19
|
export type IRecipient = ActionFactory.IParticipant;
|
|
20
20
|
export type IObjectAsPerson = Pick<IPerson, 'id' | 'typeOf'> & {
|
|
21
|
-
/**
|
|
22
|
-
* 新ユーザープールへ移行するかどうか
|
|
23
|
-
*/
|
|
24
|
-
migrate?: boolean;
|
|
25
|
-
/**
|
|
26
|
-
* 移行会員通知先
|
|
27
|
-
*/
|
|
28
|
-
migratePersonRecipientUrl?: string;
|
|
29
21
|
/**
|
|
30
22
|
* ユーザープールから物理削除するかどうか
|
|
31
23
|
*/
|
|
@@ -10,19 +10,10 @@ export interface IData {
|
|
|
10
10
|
agent: IDeleteMemberActionAttributes['agent'];
|
|
11
11
|
physically: boolean;
|
|
12
12
|
userPoolId: string;
|
|
13
|
-
/**
|
|
14
|
-
* 移行するかどうか
|
|
15
|
-
*/
|
|
16
|
-
migrate: boolean;
|
|
17
|
-
migratePersonRecipientUrl?: string;
|
|
18
|
-
useUsernameAsGMOMemberId: boolean;
|
|
19
|
-
/**
|
|
20
|
-
* クレジットカード会員を管理する決済代行の決済方法区分
|
|
21
|
-
* 未指定の場合、クレジットカード会員削除処理は実行されない
|
|
22
|
-
* 2024-12-26~
|
|
23
|
-
*/
|
|
24
|
-
paymentMethodType4creditCard?: string;
|
|
25
13
|
executeBackground: boolean;
|
|
14
|
+
migratePersonRecipientUrl?: never;
|
|
15
|
+
useUsernameAsGMOMemberId?: never;
|
|
16
|
+
paymentMethodType4creditCard?: never;
|
|
26
17
|
}
|
|
27
18
|
export interface IAttributes extends ITaskAttributes {
|
|
28
19
|
name: TaskName.DeletePerson;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chevre/factory",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.1",
|
|
4
4
|
"description": "Chevre Factory Library for Javascript",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"vitest": "4.1.0"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@coasystems/factory": "1.0.0
|
|
46
|
-
"@gmopg/factory": "1.0.0
|
|
45
|
+
"@coasystems/factory": "1.0.0",
|
|
46
|
+
"@gmopg/factory": "1.0.0",
|
|
47
47
|
"@surfrock/factory": "1.0.0-alpha.1",
|
|
48
48
|
"@waiter/factory": "2.2.0",
|
|
49
49
|
"setprototypeof": "1.2.0"
|