spartaxx.businessmodels 1.0.195 → 1.0.196

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.
package/CCC/CCCModel.ts CHANGED
@@ -13,6 +13,7 @@ import { GenarateClientPackageParam } from "./GenarateClientPackageParam";
13
13
  import { HistroyInfo } from "./HistroyInfo";
14
14
  import { HistroyInfoResults } from "./HistroyInfoResults";
15
15
  import { ClientPackageDocument } from "./ClientPackageDocuments";
16
+ import { ManageClientPackage } from "./ManageClientPackage";
16
17
 
17
18
  export {
18
19
  ScoreCardDetails,
@@ -29,5 +30,6 @@ export {
29
30
  GenarateClientPackageParam,
30
31
  HistroyInfo,
31
32
  HistroyInfoResults,
32
- ClientPackageDocument
33
+ ClientPackageDocument,
34
+ ManageClientPackage
33
35
  }
@@ -4,6 +4,4 @@ export interface ClientPackageDocument {
4
4
  QueueName?: string;
5
5
  DocumentOrder?: string;
6
6
  Description?: string;
7
- OutputFilePath?: string;
8
- OutputBase64Format?: string;
9
7
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,13 @@
1
+ import { ClientPackageDocument } from "./ClientPackageDocuments";
2
+
3
+ export interface ManageClientPackage {
4
+ ClientId?: number;
5
+ LeadId?: number;
6
+ ClientNumber?: string;
7
+ ClientName?: string;
8
+ ContactEmail?: string;
9
+ ClientStatus?: string;
10
+ OutputFilePath?: string;
11
+ OutputBase64Format?: string;
12
+ ClientPackageDocument?: ClientPackageDocument[];
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.195",
3
+ "version": "1.0.196",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {