@chevre/factory 10.3.0-alpha.1 → 10.3.0-alpha.3
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.
|
@@ -408,11 +408,6 @@ export interface IAttributes extends IBaseAttributes<IStartParams, IResult, IErr
|
|
|
408
408
|
*/
|
|
409
409
|
export type ITransaction = IExtendId<IAttributes>;
|
|
410
410
|
export interface IObjectSearchConditions {
|
|
411
|
-
provider?: {
|
|
412
|
-
id?: {
|
|
413
|
-
$eq?: string;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
411
|
reservationFor?: {
|
|
417
412
|
id?: {
|
|
418
413
|
$eq?: string;
|
|
@@ -426,14 +421,6 @@ export interface IObjectSearchConditions {
|
|
|
426
421
|
id?: {
|
|
427
422
|
$in?: string[];
|
|
428
423
|
};
|
|
429
|
-
reservationNumber?: {
|
|
430
|
-
$in?: string[];
|
|
431
|
-
};
|
|
432
|
-
reservationFor?: {
|
|
433
|
-
id?: {
|
|
434
|
-
$in?: string[];
|
|
435
|
-
};
|
|
436
|
-
};
|
|
437
424
|
reservedTicket?: {
|
|
438
425
|
ticketedSeat?: {
|
|
439
426
|
seatNumber?: {
|
|
@@ -441,12 +428,11 @@ export interface IObjectSearchConditions {
|
|
|
441
428
|
};
|
|
442
429
|
};
|
|
443
430
|
};
|
|
431
|
+
reservationFor?: never;
|
|
432
|
+
reservationNumber?: never;
|
|
444
433
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
$eq?: string;
|
|
448
|
-
};
|
|
449
|
-
};
|
|
434
|
+
provider?: never;
|
|
435
|
+
reservatiounderNamenNumber?: never;
|
|
450
436
|
}
|
|
451
437
|
export interface ISearchConditions extends IBaseSearchConditions<AssetTransactionType.Reserve> {
|
|
452
438
|
object?: IObjectSearchConditions;
|
|
@@ -161,13 +161,10 @@ export interface ISortOrder {
|
|
|
161
161
|
export interface IObjectSearchConditions {
|
|
162
162
|
typeOfs?: string[];
|
|
163
163
|
ids?: string[];
|
|
164
|
-
typeOfGood?: {
|
|
165
|
-
typeOfs?: string[];
|
|
166
|
-
ids?: string[];
|
|
167
|
-
};
|
|
168
164
|
orderNumber?: {
|
|
169
165
|
$eq?: string;
|
|
170
166
|
};
|
|
167
|
+
typeOfGood?: never;
|
|
171
168
|
}
|
|
172
169
|
/**
|
|
173
170
|
* 承認検索条件
|
|
@@ -132,30 +132,6 @@ export interface ISortOrder {
|
|
|
132
132
|
*/
|
|
133
133
|
ownedFrom?: SortType;
|
|
134
134
|
}
|
|
135
|
-
/**
|
|
136
|
-
* 所有対象物検索条件
|
|
137
|
-
*/
|
|
138
|
-
export interface ITypeOfGoodSearchConditions {
|
|
139
|
-
typeOf?: string | {
|
|
140
|
-
$eq?: string;
|
|
141
|
-
$in?: string[];
|
|
142
|
-
};
|
|
143
|
-
identifier?: {
|
|
144
|
-
$eq?: string;
|
|
145
|
-
};
|
|
146
|
-
id?: {
|
|
147
|
-
$eq?: string;
|
|
148
|
-
$in?: string[];
|
|
149
|
-
};
|
|
150
|
-
issuedThrough?: {
|
|
151
|
-
id?: {
|
|
152
|
-
$eq?: string;
|
|
153
|
-
};
|
|
154
|
-
typeOf?: {
|
|
155
|
-
$eq?: string;
|
|
156
|
-
};
|
|
157
|
-
};
|
|
158
|
-
}
|
|
159
135
|
/**
|
|
160
136
|
* 所有権検索条件
|
|
161
137
|
*/
|
|
@@ -168,36 +144,13 @@ export interface ISearchConditions {
|
|
|
168
144
|
$eq?: string;
|
|
169
145
|
};
|
|
170
146
|
};
|
|
171
|
-
acquiredFrom?: {
|
|
172
|
-
id?: {
|
|
173
|
-
$in?: string[];
|
|
174
|
-
};
|
|
175
|
-
};
|
|
176
|
-
ids?: string[];
|
|
177
|
-
identifiers?: string[];
|
|
178
|
-
/**
|
|
179
|
-
* 所有者
|
|
180
|
-
*/
|
|
181
|
-
ownedBy?: {
|
|
182
|
-
id?: string | {
|
|
183
|
-
$in?: string[];
|
|
184
|
-
};
|
|
185
|
-
typeOf?: {
|
|
186
|
-
$eq?: string;
|
|
187
|
-
};
|
|
188
|
-
};
|
|
189
147
|
ownedFromGte?: Date;
|
|
190
148
|
ownedFromLte?: Date;
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
ownedThrough?: Date;
|
|
199
|
-
/**
|
|
200
|
-
* 所有対象物
|
|
201
|
-
*/
|
|
202
|
-
typeOfGood?: ITypeOfGoodSearchConditions;
|
|
149
|
+
ownedFrom?: never;
|
|
150
|
+
ownedThrough?: never;
|
|
151
|
+
acquiredFrom?: never;
|
|
152
|
+
ids?: never;
|
|
153
|
+
identifiers?: never;
|
|
154
|
+
ownedBy?: never;
|
|
155
|
+
typeOfGood?: never;
|
|
203
156
|
}
|