@bigid/apps-infrastructure-node-js 1.233.1 → 1.241.1
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.
|
@@ -153,7 +153,7 @@ const enrichManifestWithEnvConfigurations = (originalManifestString) => {
|
|
|
153
153
|
if (manifestJson['app_configurations']) {
|
|
154
154
|
manifestJson['app_configurations'].env = process.env;
|
|
155
155
|
}
|
|
156
|
-
(0, utils_1.
|
|
156
|
+
(0, utils_1.logDebug)(`App manifest was enriched with env vars for app_configurations section`);
|
|
157
157
|
return JSON.stringify(manifestJson);
|
|
158
158
|
};
|
|
159
159
|
exports.enrichManifestWithEnvConfigurations = enrichManifestWithEnvConfigurations;
|
package/log/app.log
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
[2025-
|
|
2
|
-
[2025-
|
|
3
|
-
[2025-
|
|
4
|
-
[2025-
|
|
5
|
-
[2025-
|
|
6
|
-
[2025-
|
|
7
|
-
[2025-
|
|
8
|
-
[2025-
|
|
1
|
+
[2025-11-09T11:52:30.749] [INFO] default - --> bigid-proxy::callBigIdApi: [get] endpoint: https://bigid-ui:9090/api/v1/id_connections
|
|
2
|
+
[2025-11-09T11:52:30.763] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
|
|
3
|
+
[2025-11-09T11:52:30.766] [INFO] default - --> bigid-proxy::callBigIdApi: [post] endpoint: https://bigid-ui:9090/api/v1/id_connections
|
|
4
|
+
[2025-11-09T11:52:30.770] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
|
|
5
|
+
[2025-11-09T11:52:30.771] [INFO] default - --> bigid-proxy::callBigIdApi: [put] endpoint: https://bigid-ui:9090/api/v1/id_connections
|
|
6
|
+
[2025-11-09T11:52:30.775] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
|
|
7
|
+
[2025-11-09T11:52:30.776] [INFO] default - --> bigid-proxy::callBigIdApi: [delete] endpoint: https://bigid-ui:9090/api/v1/id_connections
|
|
8
|
+
[2025-11-09T11:52:30.779] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { CacheEntry, AppsConfigurationsManagement, AppConfigurationsParams } fro
|
|
|
4
4
|
import { decodeToken } from '../utils/tokenUtil';
|
|
5
5
|
import { isMultiTenantMode, scheduleFunction } from './schedulerService';
|
|
6
6
|
import { handleBatchProcess } from './batchProcessManager';
|
|
7
|
-
import {
|
|
7
|
+
import { logDebug, logError } from '../utils';
|
|
8
8
|
|
|
9
9
|
const APP_CONFIGURATIONS_CACHE_TTL = 10 * 1000;
|
|
10
10
|
|
|
@@ -166,7 +166,7 @@ export const enrichManifestWithEnvConfigurations = (originalManifestString: stri
|
|
|
166
166
|
if (manifestJson['app_configurations']) {
|
|
167
167
|
manifestJson['app_configurations'].env = process.env;
|
|
168
168
|
}
|
|
169
|
-
|
|
169
|
+
logDebug(`App manifest was enriched with env vars for app_configurations section`);
|
|
170
170
|
return JSON.stringify(manifestJson);
|
|
171
171
|
};
|
|
172
172
|
|