@chevre/factory 4.398.0-alpha.5 → 4.398.0-alpha.7

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.
package/lib/event.d.ts CHANGED
@@ -99,9 +99,7 @@ export interface ISearchConditions<T extends EventType> {
99
99
  $eq?: string;
100
100
  $in?: string[];
101
101
  };
102
- identifier?: {
103
- $in?: string[];
104
- };
102
+ identifiers?: string[];
105
103
  organizer?: {
106
104
  id?: {
107
105
  $eq?: string;
package/lib/project.d.ts CHANGED
@@ -38,6 +38,11 @@ export interface ISettings {
38
38
  useAggregateEntranceGate?: boolean;
39
39
  useAggregateOffer?: boolean;
40
40
  useOfferRateLimit?: boolean;
41
+ /**
42
+ * 注文照会結果にcustomerを含めるかどうか
43
+ * 2025-09-10=
44
+ */
45
+ includeCustomerAsFindByConfirmationNumberResult?: boolean;
41
46
  }
42
47
  export interface ISubscription {
43
48
  identifier?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.398.0-alpha.5",
3
+ "version": "4.398.0-alpha.7",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",