@chevre/factory 4.369.0-alpha.8 → 4.369.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.
|
@@ -18,11 +18,13 @@ export type IObject = OrderFactory.ISimpleOrder & {
|
|
|
18
18
|
* 注文配送結果としての所有権
|
|
19
19
|
*/
|
|
20
20
|
export type IResult = IOwnershipInfo<IGood>[];
|
|
21
|
+
export type ISendEmailMessage = Pick<ISendEmailMessageActionAttributes, 'object'>;
|
|
21
22
|
export interface IPotentialActions {
|
|
22
23
|
/**
|
|
23
24
|
* Eメール送信アクション
|
|
25
|
+
* 注文処理後のメッセージ送信として機能しているので注意
|
|
24
26
|
*/
|
|
25
|
-
sendEmailMessage?:
|
|
27
|
+
sendEmailMessage?: ISendEmailMessage[];
|
|
26
28
|
}
|
|
27
29
|
export interface IAttributes extends SendActionFactory.IAttributes<IObject, IResult> {
|
|
28
30
|
agent: IAgent;
|
package/lib/clientUser.d.ts
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* クライアントサイドでapiを利用するユーザー
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* クライアントユーザーインターフェース
|
|
2
|
+
* クライアントユーザー
|
|
7
3
|
*/
|
|
8
4
|
export interface IClientUser {
|
|
9
5
|
sub: string;
|
|
@@ -13,8 +9,10 @@ export interface IClientUser {
|
|
|
13
9
|
iss: string;
|
|
14
10
|
exp: number;
|
|
15
11
|
iat: number;
|
|
16
|
-
version: number;
|
|
12
|
+
version: number | string;
|
|
17
13
|
jti: string;
|
|
18
14
|
client_id: string;
|
|
19
15
|
username?: string;
|
|
16
|
+
aud?: string;
|
|
17
|
+
typ?: string;
|
|
20
18
|
}
|
package/lib/clientUser.js
CHANGED
package/lib/customer.d.ts
CHANGED