@chevre/factory 4.355.0-alpha.1 → 4.356.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.
@@ -17,9 +17,21 @@ export type IObject = IOrderAsObject | IOwnershipInfoAsObject;
17
17
  export interface IAuthorization {
18
18
  project: Pick<IProject, 'id' | 'typeOf'>;
19
19
  typeOf: 'Authorization';
20
+ /**
21
+ * 承認コード
22
+ */
20
23
  code: string;
24
+ /**
25
+ * 承認対象
26
+ */
21
27
  object: IObject;
28
+ /**
29
+ * 有効期間
30
+ */
22
31
  validFrom: Date;
32
+ /**
33
+ * 有効期間
34
+ */
23
35
  validUntil: Date;
24
36
  }
25
37
  /**
@@ -49,12 +61,13 @@ export interface ISearchConditions {
49
61
  };
50
62
  };
51
63
  id?: {
64
+ $eq?: string;
52
65
  $in?: string[];
53
66
  };
54
67
  code?: {
68
+ $eq?: string;
55
69
  $in?: string[];
56
70
  };
57
- codes?: string[];
58
71
  validFrom?: Date;
59
72
  validThrough?: Date;
60
73
  object?: IObjectSearchConditions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.355.0-alpha.1",
3
+ "version": "4.356.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",