@chevre/factory 4.351.0-alpha.8 → 4.351.0-alpha.9

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.
@@ -1,10 +1,15 @@
1
1
  import * as SendOrderActionFactory from '../action/transfer/send/order';
2
2
  import { IExtendId } from '../autoGenerated';
3
+ import { OrderStatus } from '../orderStatus';
3
4
  import { IProject } from '../project';
4
5
  import * as TaskFactory from '../task';
5
6
  import { TaskName } from '../taskName';
6
7
  export type IObject = SendOrderActionFactory.IObject & {
7
8
  confirmationNumber: string;
9
+ /**
10
+ * OrderInTransit導入期の互換性維持対応として
11
+ */
12
+ previousOrderStatus?: OrderStatus.OrderProcessing | OrderStatus.OrderInTransit;
8
13
  };
9
14
  export interface IData {
10
15
  project: Pick<IProject, 'id' | 'typeOf'>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.351.0-alpha.8",
3
+ "version": "4.351.0-alpha.9",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",