@chevre/factory 4.369.0-alpha.9 → 4.369.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.
@@ -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.9",
3
+ "version": "4.369.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",