spartaxx.businessmodels 1.0.215 → 1.0.216

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,7 @@ import { ClientInfo } from "./ClientInfo";
2
2
  import { QualifiedClientInfo } from "./QualifiedClientInfo";
3
3
  import { AppConfigHub } from "../Common/AppConfigHub";
4
4
  import { RabbitMQQueueInfo } from "../Common/RabbitMQQueueInfo";
5
+ import { ClientPackageParam } from "./ClientPackageParam";
5
6
 
6
7
  export interface CCCTemplateData {
7
8
  QualifiedClientInfo?: QualifiedClientInfo;
@@ -9,4 +10,5 @@ export interface CCCTemplateData {
9
10
  AppConfigHub?: AppConfigHub;
10
11
  DocumentsTempPath?: string[];
11
12
  RabbitMQQueueInfo?: RabbitMQQueueInfo;
13
+ ClientPackageParam?: ClientPackageParam;
12
14
  }
@@ -2,6 +2,8 @@ export interface ClientPackageDocument {
2
2
  Id?: string;
3
3
  Name?: string;
4
4
  QueueName?: string;
5
- DocumentOrder?: string;
5
+ DocumentOrder?: number;
6
6
  Description?: string;
7
+ DocumentPath?: string;
8
+ IsDocumentGenerated?: boolean;
7
9
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,13 @@
1
+
2
+ import { ClientPackageDocument } from "./ClientPackageDocuments";
3
+
4
+ export interface ClientPackageParam {
5
+ ClientId?: number
6
+ AccountId?: number
7
+ PackageId?: string
8
+ LeadId?: number
9
+ ItIsbeforeClient?: boolean;
10
+ ToEmail?: string;
11
+ TeamplateId?: string;
12
+ DocumentList?: ClientPackageDocument[];
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.215",
3
+ "version": "1.0.216",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {