spartaxx.businessmodels 1.0.362 → 1.0.364

Sign up to get free protection for your applications and to get access to all the features.
package/CCC/DMQuestion.ts CHANGED
@@ -23,4 +23,5 @@ export interface DMQuestion {
23
23
  HVACReplacement?: string;
24
24
  DMQuestionImages?: string;
25
25
  QuestionImage: QuestionImage[];
26
+ Quantity?: number;
26
27
  }
@@ -17,10 +17,11 @@ import { TemplateContents } from "./TemplateContents";
17
17
  import { AppConfigHub, createDefaultAppConfigHub } from "./AppConfigHub";
18
18
  import { FileDownloadParam } from "./FileDownloadPara";
19
19
  import { PwProcessDocumentDetails } from "./PwProcessDocumentDetails";
20
+ import { ProcessManagerService } from "./ProcessManagerService";
20
21
 
21
22
  export {
22
23
  ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
23
24
  RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
24
25
  ManageSchedulers, APICommonResponse, SentEmailServiceParam, TemplateContents,
25
- AppConfigHub, createDefaultAppConfigHub, FileDownloadParam, PwProcessDocumentDetails
26
+ AppConfigHub, createDefaultAppConfigHub, FileDownloadParam, PwProcessDocumentDetails,ProcessManagerService
26
27
  };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export interface ProcessManagerService {
2
+ Id: number;
3
+ ClientNumber: string;
4
+ AccountNumber: string;
5
+ DocumentType: string;
6
+ isProcessedNecessaryActions: number;
7
+ UserId: number;
8
+ }
@@ -7,12 +7,12 @@ export interface PwProcessDocumentDetails {
7
7
  AccountNumber: string;
8
8
  TaxYear: number;
9
9
  County: string;
10
- InvoiceNumber: string;
11
- PaymentMethod: string;
12
- PaymentAmount: number;
13
- PaymentPosted: number;
14
- PaymentPostedDate: Date;
15
- LandUseCode: string;
10
+ InvoiceNumber: string | null;
11
+ PaymentMethod: string | null;
12
+ PaymentAmount: number | null;
13
+ PaymentPosted: number | null;
14
+ PaymentPostedDate: Date | null;
15
+ LandUseCode: string | null;
16
16
  DocumentStatus: string;
17
17
  DocumentRouteTo: string;
18
18
  IsValidateEsign: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.362",
3
+ "version": "1.0.364",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
File without changes