@chevre/factory 10.4.0-alpha.2 → 10.5.0-alpha.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.
package/lib/chevre/action.d.ts
CHANGED
|
@@ -161,18 +161,13 @@ export interface ISearchConditions {
|
|
|
161
161
|
transactionNumber?: {
|
|
162
162
|
$eq?: string;
|
|
163
163
|
};
|
|
164
|
-
/**
|
|
165
|
-
* returnPolicy.identifier etc.
|
|
166
|
-
*/
|
|
167
|
-
identifier?: {
|
|
168
|
-
$eq?: string;
|
|
169
|
-
};
|
|
170
164
|
id?: {
|
|
171
165
|
$eq?: string;
|
|
172
166
|
};
|
|
173
167
|
orderNumber?: {
|
|
174
168
|
$eq?: string;
|
|
175
169
|
};
|
|
170
|
+
identifier?: never;
|
|
176
171
|
};
|
|
177
172
|
location?: never;
|
|
178
173
|
object?: {
|
|
@@ -202,9 +197,6 @@ export interface ISearchConditions {
|
|
|
202
197
|
$in?: string[];
|
|
203
198
|
};
|
|
204
199
|
paymentMethod?: {
|
|
205
|
-
accountId?: {
|
|
206
|
-
$eq?: string;
|
|
207
|
-
};
|
|
208
200
|
/**
|
|
209
201
|
* 決済アクションの決済方法ID
|
|
210
202
|
*/
|
|
@@ -212,6 +204,7 @@ export interface ISearchConditions {
|
|
|
212
204
|
$eq?: string;
|
|
213
205
|
$in?: string[];
|
|
214
206
|
};
|
|
207
|
+
accountId?: never;
|
|
215
208
|
typeOf?: never;
|
|
216
209
|
};
|
|
217
210
|
/**
|
|
@@ -246,18 +239,14 @@ export interface ISearchConditions {
|
|
|
246
239
|
};
|
|
247
240
|
};
|
|
248
241
|
result?: {
|
|
249
|
-
typeOf?: {
|
|
250
|
-
$in?: string[];
|
|
251
|
-
};
|
|
252
242
|
id?: {
|
|
253
243
|
$in?: string[];
|
|
254
244
|
};
|
|
255
|
-
orderNumber?: {
|
|
256
|
-
$in?: string[];
|
|
257
|
-
};
|
|
258
245
|
code?: {
|
|
259
246
|
$in?: string[];
|
|
260
247
|
};
|
|
248
|
+
typeOf?: never;
|
|
249
|
+
orderNumber?: never;
|
|
261
250
|
};
|
|
262
251
|
sameAs?: {
|
|
263
252
|
id?: {
|
|
@@ -20,10 +20,9 @@ export type ISubReservation4inform = Pick<IEventReservation, 'id' | 'modifiedTim
|
|
|
20
20
|
additionalProperty?: never;
|
|
21
21
|
programMembershipUsed?: never;
|
|
22
22
|
};
|
|
23
|
-
export type IReservationFor4informLegacy = IReservationForLegacy;
|
|
24
23
|
/**
|
|
25
24
|
* 確定予約通知のイベント属性
|
|
26
|
-
* 2026-09-01~
|
|
25
|
+
* 最小化(2026-09-01~)
|
|
27
26
|
*/
|
|
28
27
|
export type IReservationFor4inform = Pick<IReservationForLegacy, 'id' | 'typeOf'> & {
|
|
29
28
|
superEvent?: never;
|
|
@@ -35,7 +34,7 @@ export interface IReservationPackage4informConfirmed {
|
|
|
35
34
|
bookingTime: Date;
|
|
36
35
|
project: IProject;
|
|
37
36
|
provider: IProvider;
|
|
38
|
-
reservationFor: IReservationFor4inform
|
|
37
|
+
reservationFor: IReservationFor4inform;
|
|
39
38
|
reservationNumber: string;
|
|
40
39
|
reservationStatus: ReservationStatusType.ReservationConfirmed;
|
|
41
40
|
subReservation: ISubReservation4inform[];
|