spartaxx.businessmodels 1.0.360 → 1.0.362

Sign up to get free protection for your applications and to get access to all the features.
package/CCC/DMQuestion.ts CHANGED
@@ -23,5 +23,4 @@ export interface DMQuestion {
23
23
  HVACReplacement?: string;
24
24
  DMQuestionImages?: string;
25
25
  QuestionImage: QuestionImage[];
26
- Quantity?: number;
27
26
  }
@@ -20,6 +20,7 @@ export interface QualifiedClientInfo {
20
20
  CCCPckEmailBlastFileName?: string;
21
21
  CCCPckEmailBlastOutputFilePath?: string;
22
22
  ClientSignature?: string;
23
+ gUId?: string;
23
24
  }
24
25
 
25
26
  export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
@@ -288,7 +288,8 @@ function createDefaultAppConfigHub() {
288
288
  CCCPckLetterGenUrl: "",
289
289
  CCCPckEmailLetterUrl: "",
290
290
  CompanyAddressTwoHundred: "",
291
- CPckDMpropertySurveyDocumentPath: ""
291
+ CPckDMpropertySurveyDocumentPath: "",
292
+ RMQEsignStagingProcessQueue: ""
292
293
  };
293
294
  });
294
295
  }
@@ -275,6 +275,7 @@ export interface AppConfigHub {
275
275
  CCCPckEmailLetterUrl: string;
276
276
  CompanyAddressTwoHundred: string;
277
277
  CPckDMpropertySurveyDocumentPath: string;
278
+ RMQEsignStagingProcessQueue:string;
278
279
  }
279
280
 
280
281
  export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
@@ -554,7 +555,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
554
555
  CCCPckLetterGenUrl: "",
555
556
  CCCPckEmailLetterUrl: "",
556
557
  CompanyAddressTwoHundred: "",
557
- CPckDMpropertySurveyDocumentPath: ""
558
+ CPckDMpropertySurveyDocumentPath: "",
559
+ RMQEsignStagingProcessQueue:""
558
560
  }
559
561
  }
560
562
 
@@ -7,12 +7,12 @@ export interface PwProcessDocumentDetails {
7
7
  AccountNumber: string;
8
8
  TaxYear: number;
9
9
  County: 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;
10
+ InvoiceNumber: string;
11
+ PaymentMethod: string;
12
+ PaymentAmount: number;
13
+ PaymentPosted: number;
14
+ PaymentPostedDate: Date;
15
+ LandUseCode: string;
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.360",
3
+ "version": "1.0.362",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
File without changes