@chevre/factory 4.360.0-alpha.5 → 4.360.0-alpha.6

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.
@@ -44,12 +44,10 @@ export interface IResult<T extends WebAPIFactory.Identifier> {
44
44
  amount: OrderFactory.ITotalPaymentDue[];
45
45
  /**
46
46
  * 外部サービスへのリクエスト
47
- * COAの場合存在する
48
47
  */
49
48
  requestBody: IRequestBody<T>;
50
49
  /**
51
50
  * 外部サービスからのレスポンス
52
- * COAの場合存在する
53
51
  */
54
52
  responseBody: IResponseBody<T>;
55
53
  acceptedOffers?: IResultAcceptedOffer[];
@@ -142,6 +140,10 @@ export type IObject<T extends WebAPIFactory.Identifier> = {
142
140
  * 進行中取引
143
141
  */
144
142
  pendingTransaction: IPendingTransaction<T>;
143
+ /**
144
+ * result.acceptedOffers廃止に際して使用有無を保管
145
+ */
146
+ useResultAcceptedOffers?: boolean;
145
147
  } & Omit<IObjectWithoutDetail<T>, 'acceptedOffer' | 'reservationFor'>;
146
148
  export interface IPurpose {
147
149
  typeOf: TransactionType.PlaceOrder;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.360.0-alpha.5",
3
+ "version": "4.360.0-alpha.6",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",