@chevre/factory 4.177.0 → 4.178.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.
@@ -138,7 +138,17 @@ export interface ISearchConditions {
138
138
  * 所有者
139
139
  */
140
140
  ownedBy?: {
141
- id?: string;
141
+ id?: string | {
142
+ $in?: string[];
143
+ };
144
+ memberOf?: {
145
+ membershipNumber?: {
146
+ $in?: string[];
147
+ };
148
+ };
149
+ typeOf?: {
150
+ $eq?: string;
151
+ };
142
152
  };
143
153
  ownedFromGte?: Date;
144
154
  ownedFromLte?: Date;
@@ -69,7 +69,6 @@ export interface ISettings {
69
69
  sendgridApiKey?: string;
70
70
  transactionWebhookUrls?: string[];
71
71
  useMyCreditCards?: boolean;
72
- useTransactionClientUser?: boolean;
73
72
  useUsernameAsGMOMemberId?: boolean;
74
73
  }
75
74
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.177.0",
3
+ "version": "4.178.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",