@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?: ISendEmailMessageActionAttributes[];
27
+ sendEmailMessage?: ISendEmailMessage[];
26
28
  }
27
29
  export interface IAttributes extends SendActionFactory.IAttributes<IObject, IResult> {
28
30
  agent: IAgent;
@@ -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
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
- /**
3
- * アプリケーションクライアントユーザーファクトリー
4
- * クライアントサイドでapiを利用するユーザー
5
- */
6
2
  Object.defineProperty(exports, "__esModule", { value: true });
package/lib/customer.d.ts CHANGED
@@ -48,6 +48,9 @@ export interface ISearchConditions {
48
48
  branchCode?: {
49
49
  $regex?: string;
50
50
  };
51
+ id?: {
52
+ $eq?: string;
53
+ };
51
54
  name?: {
52
55
  $regex?: string;
53
56
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.369.0-alpha.8",
3
+ "version": "4.369.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",