@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 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;
@@ -123,6 +123,9 @@ export interface ISeller {
123
123
  */
124
124
  id: string;
125
125
  name?: IMultilingualString;
126
+ /**
127
+ * アプリケーションごとのオファー
128
+ */
126
129
  makesOffer: ISellerMakesOffer[];
127
130
  }
128
131
  export import IEligibleQuantity = OfferFactory.IEligibleQuantity;
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.364.0-alpha.5",
3
+ "version": "4.364.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",