spartaxx.businessmodels 1.0.450 → 1.0.451
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
package/Common/AppConfigHub.ts
CHANGED
@@ -326,6 +326,7 @@ export interface AppConfigHub {
|
|
326
326
|
CCCUSMailPWDocumentType: string;
|
327
327
|
CCCUSMailPWDocumentStatus: string;
|
328
328
|
CCCUSMailPWCreatedApp: string;
|
329
|
+
RMQConfigCCCBlastQueue: string;
|
329
330
|
}
|
330
331
|
|
331
332
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -656,7 +657,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
656
657
|
CCCUSMailPWBatchCode: "",
|
657
658
|
CCCUSMailPWDocumentType: "",
|
658
659
|
CCCUSMailPWDocumentStatus: "",
|
659
|
-
CCCUSMailPWCreatedApp: ""
|
660
|
+
CCCUSMailPWCreatedApp: "",
|
661
|
+
RMQConfigCCCBlastQueue: ""
|
660
662
|
}
|
661
663
|
}
|
662
664
|
|