@chevre/factory 4.364.0-alpha.5 → 4.364.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/action.d.ts +18 -0
- package/lib/event/anyEvent.d.ts +3 -0
- package/lib/event/screeningEvent.d.ts +1 -1
- package/package.json +1 -1
package/lib/action.d.ts
CHANGED
|
@@ -116,6 +116,9 @@ export interface ISearchConditions {
|
|
|
116
116
|
};
|
|
117
117
|
};
|
|
118
118
|
instrument?: {
|
|
119
|
+
typeOf?: {
|
|
120
|
+
$eq?: string;
|
|
121
|
+
};
|
|
119
122
|
transactionNumber?: {
|
|
120
123
|
$eq?: string;
|
|
121
124
|
};
|
|
@@ -146,6 +149,9 @@ export interface ISearchConditions {
|
|
|
146
149
|
};
|
|
147
150
|
};
|
|
148
151
|
object?: {
|
|
152
|
+
/**
|
|
153
|
+
* 通知アクション(決済、返金)の決済方法ID
|
|
154
|
+
*/
|
|
149
155
|
paymentMethodId?: {
|
|
150
156
|
$eq?: string;
|
|
151
157
|
};
|
|
@@ -166,6 +172,9 @@ export interface ISearchConditions {
|
|
|
166
172
|
accountId?: {
|
|
167
173
|
$eq?: string;
|
|
168
174
|
};
|
|
175
|
+
/**
|
|
176
|
+
* 決済アクションの決済方法ID
|
|
177
|
+
*/
|
|
169
178
|
paymentMethodId?: {
|
|
170
179
|
$eq?: string;
|
|
171
180
|
$in?: string[];
|
|
@@ -174,6 +183,9 @@ export interface ISearchConditions {
|
|
|
174
183
|
$eq?: string;
|
|
175
184
|
};
|
|
176
185
|
};
|
|
186
|
+
/**
|
|
187
|
+
* 承認アクションの決済方法ID
|
|
188
|
+
*/
|
|
177
189
|
paymentMethodId?: {
|
|
178
190
|
$eq?: string;
|
|
179
191
|
};
|
|
@@ -199,6 +211,12 @@ export interface ISearchConditions {
|
|
|
199
211
|
$eq?: string;
|
|
200
212
|
$in?: string[];
|
|
201
213
|
};
|
|
214
|
+
/**
|
|
215
|
+
* 確定アクション、採用アクションなどの資産取引番号
|
|
216
|
+
*/
|
|
217
|
+
transactionNumber?: {
|
|
218
|
+
$eq?: string;
|
|
219
|
+
};
|
|
202
220
|
};
|
|
203
221
|
startFrom?: Date;
|
|
204
222
|
startThrough?: Date;
|
package/lib/event/anyEvent.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export interface IOffer {
|
|
|
85
85
|
unacceptedPaymentMethod?: EventFactory.IUnacceptedPaymentMethodType[];
|
|
86
86
|
seller: ISeller;
|
|
87
87
|
}
|
|
88
|
-
export type IOffer4COA = Pick<IOffer, 'typeOf' | 'offeredThrough'> & {
|
|
88
|
+
export type IOffer4COA = Pick<IOffer, 'typeOf' | 'offeredThrough' | 'eligibleQuantity' | 'seller'> & {
|
|
89
89
|
itemOffered: {
|
|
90
90
|
serviceOutput: Pick<IServiceOutput, 'reservedTicket'>;
|
|
91
91
|
};
|