spartaxx.businessmodels 1.0.259 → 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 +2 -1
- package/Common/AppConfigHub.ts +3 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -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
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -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
|
|