@chevre/factory 4.393.0-alpha.39 → 4.393.0-alpha.40

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.
@@ -3,18 +3,22 @@ import * as TaskFactory from '../task';
3
3
  import { TaskName } from '../taskName';
4
4
  export interface IData {
5
5
  /**
6
- * 承認コード
6
+ * authorization code
7
7
  */
8
8
  code: string;
9
9
  project: {
10
10
  id: string;
11
11
  };
12
+ /**
13
+ * 2025-03-17~
14
+ */
15
+ retryOnReservationNotFound?: boolean;
12
16
  }
13
17
  export interface IAttributes extends TaskFactory.IAttributes {
14
18
  name: TaskName.OnAuthorizationCreated;
15
19
  data: IData;
16
20
  }
17
21
  /**
18
- * 承認作成時タスク
22
+ * task on authorization created
19
23
  */
20
24
  export type ITask = IExtendId<IAttributes>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.393.0-alpha.39",
3
+ "version": "4.393.0-alpha.40",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",