@chevre/factory 4.351.0 → 4.352.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/action.d.ts CHANGED
@@ -90,6 +90,9 @@ export interface ISearchConditions {
90
90
  limit?: number;
91
91
  page?: number;
92
92
  sort?: ISortOrder;
93
+ id?: {
94
+ $nin?: string[];
95
+ };
93
96
  project?: {
94
97
  id?: {
95
98
  $eq?: string;
@@ -178,6 +178,9 @@ export interface IConfirmParams {
178
178
  export type IOrderAsResult = OrderFactory.IOrder & {
179
179
  acceptedOffers: OrderFactory.IAcceptedOffer<OrderFactory.IItemOffered>[];
180
180
  };
181
+ export interface IAuthorizeActionAsResult {
182
+ id: string;
183
+ }
181
184
  /**
182
185
  * 取引結果
183
186
  */
@@ -186,6 +189,14 @@ export interface IResult {
186
189
  * 注文
187
190
  */
188
191
  order: IOrderAsResult;
192
+ /**
193
+ * 承認アクションID(2024-01-17~)
194
+ */
195
+ authorizeActions?: IAuthorizeActionAsResult[];
196
+ /**
197
+ * オファー数(2024-01-17~)
198
+ */
199
+ numAcceptedOffers?: number;
189
200
  }
190
201
  /**
191
202
  * エラー
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.351.0",
3
+ "version": "4.352.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",