spartaxx.businessmodels 1.0.258 → 1.0.260
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.
- package/Common/AppConfigHub.js +3 -1
- package/Common/AppConfigHub.ts +5 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -205,7 +205,9 @@ function createDefaultAppConfigHub() {
|
|
205
205
|
TXBAAofAFormAgentCompanyName: "",
|
206
206
|
TXBAAofAFormAgentTaxpayerIdNumber: "",
|
207
207
|
CompanyAddress200: "",
|
208
|
-
TXResidentialAofAAgentPhoneNumber: ""
|
208
|
+
TXResidentialAofAAgentPhoneNumber: "",
|
209
|
+
CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: "",
|
210
|
+
UserId: 0
|
209
211
|
};
|
210
212
|
});
|
211
213
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -192,6 +192,8 @@ export interface AppConfigHub {
|
|
192
192
|
TXBAAofAFormAgentTaxpayerIdNumber: string;
|
193
193
|
CompanyAddress200: string;
|
194
194
|
TXResidentialAofAAgentPhoneNumber: string;
|
195
|
+
CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: string;
|
196
|
+
UserId: number;
|
195
197
|
}
|
196
198
|
|
197
199
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -388,7 +390,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
388
390
|
TXBAAofAFormAgentCompanyName: "",
|
389
391
|
TXBAAofAFormAgentTaxpayerIdNumber: "",
|
390
392
|
CompanyAddress200: "",
|
391
|
-
TXResidentialAofAAgentPhoneNumber: ""
|
393
|
+
TXResidentialAofAAgentPhoneNumber: "",
|
394
|
+
CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: "",
|
395
|
+
UserId: 0
|
392
396
|
}
|
393
397
|
}
|
394
398
|
|