spartaxx.businessmodels 1.0.340 → 1.0.342

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,7 +32,8 @@ function createDefaultQualifiedClientInfo() {
32
32
  IsSelected: false,
33
33
  InitiatedBy: 0,
34
34
  CCCPckEmailBlastFileName: "",
35
- CCCPckEmailBlastOutputFilePath: ""
35
+ CCCPckEmailBlastOutputFilePath: "",
36
+ ClientSignature: ""
36
37
  };
37
38
  });
38
39
  }
@@ -19,6 +19,7 @@ export interface QualifiedClientInfo {
19
19
  InitiatedBy?: number;
20
20
  CCCPckEmailBlastFileName?: string;
21
21
  CCCPckEmailBlastOutputFilePath?: string;
22
+ ClientSignature?: string;
22
23
  }
23
24
 
24
25
  export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
@@ -42,6 +43,7 @@ export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClien
42
43
  IsSelected: false,
43
44
  InitiatedBy: 0,
44
45
  CCCPckEmailBlastFileName: "",
45
- CCCPckEmailBlastOutputFilePath: ""
46
+ CCCPckEmailBlastOutputFilePath: "",
47
+ ClientSignature: ""
46
48
  };
47
49
  };
@@ -1,4 +1,5 @@
1
1
  export interface PwProcessDocumentDetails {
2
+ Guid: string;
2
3
  FileCabinetId: number;
3
4
  BatchCode: string;
4
5
  DocumentType: string;
@@ -14,8 +15,13 @@ export interface PwProcessDocumentDetails {
14
15
  LandUseCode: string;
15
16
  DocumentStatus: string;
16
17
  DocumentRouteTo: string;
18
+ IsValidateEsign: boolean;
19
+ ValidateEsignDocumentPath: string;
20
+ ValidateEsignIPAddress: string;
21
+ ValidateEsignSigneeName: string;
22
+ ValidateEsignSigneeEmail: string;
23
+ ValidateEsignSignature: Buffer;
17
24
  DocumentPath: string;
18
25
  CreatedApp: string;
19
26
  UserId: number;
20
- PW_ProcessDocumentId: number;
21
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.340",
3
+ "version": "1.0.342",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {