@chevre/factory 4.197.0 → 4.198.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.
@@ -1,8 +1,16 @@
1
- import { IAttributes as IOrderActionAttributes } from '../action/trade/order';
1
+ import { IPotentialActions as IOrderActionPotentialActions } from '../action/trade/order';
2
2
  import { IExtendId } from '../autoGenerated';
3
+ import { IProject } from '../project';
3
4
  import * as TaskFactory from '../task';
4
5
  import { TaskName } from '../taskName';
5
- export declare type IData = IOrderActionAttributes;
6
+ export interface IData {
7
+ project: IProject;
8
+ object: {
9
+ confirmationNumber: string;
10
+ orderNumber: string;
11
+ };
12
+ potentialActions?: IOrderActionPotentialActions;
13
+ }
6
14
  export interface IAttributes extends TaskFactory.IAttributes {
7
15
  name: TaskName.PlaceOrder;
8
16
  data: IData;
@@ -1,8 +1,13 @@
1
- import { IAttributes as ISendOrderActionAttributes } from '../action/transfer/send/order';
1
+ import * as SendOrderActionFactory from '../action/transfer/send/order';
2
2
  import { IExtendId } from '../autoGenerated';
3
+ import { IProject } from '../project';
3
4
  import * as TaskFactory from '../task';
4
5
  import { TaskName } from '../taskName';
5
- export declare type IData = ISendOrderActionAttributes;
6
+ export interface IData {
7
+ project: IProject;
8
+ object: SendOrderActionFactory.IObject;
9
+ potentialActions?: SendOrderActionFactory.IPotentialActions;
10
+ }
6
11
  export interface IAttributes extends TaskFactory.IAttributes {
7
12
  name: TaskName.SendOrder;
8
13
  data: IData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.197.0",
3
+ "version": "4.198.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",