@chevre/factory 4.371.0-alpha.6 → 4.372.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,3 +1,4 @@
1
+ import { ActionStatusType } from './actionStatusType';
1
2
  import { AssetTransactionType } from './assetTransactionType';
2
3
  import { IExtendId } from './autoGenerated';
3
4
  import { OrganizationType } from './organizationType';
@@ -36,10 +37,11 @@ export interface IProject {
36
37
  typeOf: OrganizationType.Project;
37
38
  }
38
39
  export interface ITasksExportAction {
40
+ actionStatus: ActionStatusType;
39
41
  agent?: {
40
42
  name: string;
41
43
  };
42
- startDate: Date;
44
+ startDate?: Date;
43
45
  endDate?: Date;
44
46
  }
45
47
  /**
package/lib/index.d.ts CHANGED
@@ -497,6 +497,7 @@ export declare namespace transaction {
497
497
  export import IPassportBeforeStart = TransactionFactory.IPassportBeforeStart;
498
498
  export import ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
499
499
  export import ISortOrder = TransactionFactory.ISortOrder;
500
+ export import ITasksExportAction = TransactionFactory.ITasksExportAction;
500
501
  type ISearchConditions<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.ISearchConditions : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.ISearchConditions : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.ISearchConditions : never;
501
502
  type IStartParams<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.IStartParams : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.IStartParams : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.IStartParams : never;
502
503
  type IResult<T extends TransactionType> = T extends TransactionType.MoneyTransfer ? MoneyTransferTransactionFactory.IResult : T extends TransactionType.PlaceOrder ? PlaceOrderTransactionFactory.IResult : T extends TransactionType.ReturnOrder ? ReturnOrderTransactionFactory.IResult : never;
@@ -1,4 +1,5 @@
1
1
  import * as waiter from '@waiter/factory';
2
+ import { ActionStatusType } from './actionStatusType';
2
3
  import { IExtendId } from './autoGenerated';
3
4
  import * as EmailFactory from './creativeWork/message/email';
4
5
  import { ICreativeWork as IWebApplication } from './creativeWork/softwareApplication/webApplication';
@@ -56,10 +57,11 @@ export interface IProject {
56
57
  typeOf: OrganizationType.Project;
57
58
  }
58
59
  export interface ITasksExportAction {
60
+ actionStatus: ActionStatusType;
59
61
  agent?: {
60
62
  name: string;
61
63
  };
62
- startDate: Date;
64
+ startDate?: Date;
63
65
  endDate?: Date;
64
66
  }
65
67
  /**
@@ -181,4 +183,9 @@ export interface ISearchConditions<T extends TransactionType> {
181
183
  email?: string;
182
184
  };
183
185
  tasksExportationStatuses?: TransactionTasksExportationStatus[];
186
+ tasksExportAction?: {
187
+ actionStatus?: {
188
+ $eq?: ActionStatusType;
189
+ };
190
+ };
184
191
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.371.0-alpha.6",
3
+ "version": "4.372.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",