spartaxx.businessmodels 1.0.259 → 1.0.261

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.
@@ -77,7 +77,8 @@ function createDefaultAccountInfo() {
77
77
  IsDontProtested: false,
78
78
  IsInactivate: false,
79
79
  IsInactivateReasonCode: 0,
80
- IsReactivateAccount: false
80
+ IsReactivateAccount: false,
81
+ CDU: "",
81
82
  };
82
83
  });
83
84
  }
@@ -66,6 +66,7 @@ export interface AccountInfo {
66
66
  IsInactivate?: boolean;
67
67
  IsInactivateReasonCode?: number;
68
68
  IsReactivateAccount?: boolean;
69
+ CDU?: string;
69
70
  }
70
71
 
71
72
  export async function createDefaultAccountInfo(): Promise<AccountInfo> {
@@ -136,6 +137,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
136
137
  IsDontProtested: false,
137
138
  IsInactivate: false,
138
139
  IsInactivateReasonCode: 0,
139
- IsReactivateAccount: false
140
+ IsReactivateAccount: false,
141
+ CDU: "",
140
142
  };
141
143
  }
@@ -206,7 +206,8 @@ function createDefaultAppConfigHub() {
206
206
  TXBAAofAFormAgentTaxpayerIdNumber: "",
207
207
  CompanyAddress200: "",
208
208
  TXResidentialAofAAgentPhoneNumber: "",
209
- CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: ""
209
+ CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: "",
210
+ UserId: 0
210
211
  };
211
212
  });
212
213
  }
@@ -193,6 +193,7 @@ export interface AppConfigHub {
193
193
  CompanyAddress200: string;
194
194
  TXResidentialAofAAgentPhoneNumber: string;
195
195
  CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: string;
196
+ UserId: number;
196
197
  }
197
198
 
198
199
  export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
@@ -390,7 +391,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
390
391
  TXBAAofAFormAgentTaxpayerIdNumber: "",
391
392
  CompanyAddress200: "",
392
393
  TXResidentialAofAAgentPhoneNumber: "",
393
- CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: ""
394
+ CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: "",
395
+ UserId: 0
394
396
  }
395
397
  }
396
398
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.259",
3
+ "version": "1.0.261",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {