spartaxx.businessmodels 1.0.335 → 1.0.337

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
  };
@@ -16,10 +16,11 @@ import { SentEmailServiceParam } from "./SentEmailServiceParam";
16
16
  import { TemplateContents } from "./TemplateContents";
17
17
  import { AppConfigHub, createDefaultAppConfigHub } from "./AppConfigHub";
18
18
  import { FileDownloadParam } from "./FileDownloadPara";
19
+ import { PwProcessDocumentDetails } from "./PwProcessDocumentDetails";
19
20
 
20
21
  export {
21
22
  ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
22
23
  RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
23
24
  ManageSchedulers, APICommonResponse, SentEmailServiceParam, TemplateContents,
24
- AppConfigHub, createDefaultAppConfigHub, FileDownloadParam
25
+ AppConfigHub, createDefaultAppConfigHub, FileDownloadParam, PwProcessDocumentDetails
25
26
  };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ export interface PwProcessDocumentDetails {
2
+ FileCabinetId: number;
3
+ BatchCode: string;
4
+ DocumentType: string;
5
+ ClientNumber: string;
6
+ AccountNumber: string;
7
+ TaxYear: number;
8
+ County: string;
9
+ InvoiceNumber: string;
10
+ PaymentMethod: string;
11
+ PaymentAmount: number;
12
+ PaymentPosted: number;
13
+ PaymentPostedDate: Date;
14
+ LandUseCode: string;
15
+ DocumentStatus: string;
16
+ DocumentRouteTo: string;
17
+ DocumentPath: string;
18
+ CreatedApp: string;
19
+ UserId: number;
20
+ PW_ProcessDocumentId: number;
21
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.335",
3
+ "version": "1.0.337",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {