@bigid/apps-infrastructure-node-js 1.229.1 → 1.233.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.
package/lib/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export * from './abstractProviders';
2
2
  export * from './dto';
3
3
  export * from './utils';
4
- export { updateActionStatusToBigID, uploadAttachment, getValueFromAppStorage, saveInStorage, executeHttpGet, scheduleFunction, unscheduleFunction, unscheduleAllFunctions, deleteKeyFromAppStorage, sendBiEvent, getCommandsRegistrations, executeCommand, getExecutionStatus, registerActionAsCommand, fetchDataSourceCredentials, getAppConfiguration, } from './services';
4
+ export { updateActionStatusToBigID, uploadAttachment, getValueFromAppStorage, saveInStorage, executeHttpGet, executeHttpPut, executeHttpDelete, executeHttpPost, scheduleFunction, unscheduleFunction, unscheduleAllFunctions, deleteKeyFromAppStorage, sendBiEvent, getCommandsRegistrations, executeCommand, getExecutionStatus, registerActionAsCommand, fetchDataSourceCredentials, getAppConfiguration, } from './services';
5
5
  export { deployServer, ServerInit } from './server';
package/lib/index.js CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.deployServer = exports.getAppConfiguration = exports.fetchDataSourceCredentials = exports.registerActionAsCommand = exports.getExecutionStatus = exports.executeCommand = exports.getCommandsRegistrations = exports.sendBiEvent = exports.deleteKeyFromAppStorage = exports.unscheduleAllFunctions = exports.unscheduleFunction = exports.scheduleFunction = exports.executeHttpGet = exports.saveInStorage = exports.getValueFromAppStorage = exports.uploadAttachment = exports.updateActionStatusToBigID = void 0;
17
+ exports.deployServer = exports.getAppConfiguration = exports.fetchDataSourceCredentials = exports.registerActionAsCommand = exports.getExecutionStatus = exports.executeCommand = exports.getCommandsRegistrations = exports.sendBiEvent = exports.deleteKeyFromAppStorage = exports.unscheduleAllFunctions = exports.unscheduleFunction = exports.scheduleFunction = exports.executeHttpPost = exports.executeHttpDelete = exports.executeHttpPut = exports.executeHttpGet = exports.saveInStorage = exports.getValueFromAppStorage = exports.uploadAttachment = exports.updateActionStatusToBigID = void 0;
18
18
  __exportStar(require("./abstractProviders"), exports);
19
19
  __exportStar(require("./dto"), exports);
20
20
  __exportStar(require("./utils"), exports);
@@ -24,6 +24,9 @@ Object.defineProperty(exports, "uploadAttachment", { enumerable: true, get: func
24
24
  Object.defineProperty(exports, "getValueFromAppStorage", { enumerable: true, get: function () { return services_1.getValueFromAppStorage; } });
25
25
  Object.defineProperty(exports, "saveInStorage", { enumerable: true, get: function () { return services_1.saveInStorage; } });
26
26
  Object.defineProperty(exports, "executeHttpGet", { enumerable: true, get: function () { return services_1.executeHttpGet; } });
27
+ Object.defineProperty(exports, "executeHttpPut", { enumerable: true, get: function () { return services_1.executeHttpPut; } });
28
+ Object.defineProperty(exports, "executeHttpDelete", { enumerable: true, get: function () { return services_1.executeHttpDelete; } });
29
+ Object.defineProperty(exports, "executeHttpPost", { enumerable: true, get: function () { return services_1.executeHttpPost; } });
27
30
  Object.defineProperty(exports, "scheduleFunction", { enumerable: true, get: function () { return services_1.scheduleFunction; } });
28
31
  Object.defineProperty(exports, "unscheduleFunction", { enumerable: true, get: function () { return services_1.unscheduleFunction; } });
29
32
  Object.defineProperty(exports, "unscheduleAllFunctions", { enumerable: true, get: function () { return services_1.unscheduleAllFunctions; } });
package/log/app.log CHANGED
@@ -1,8 +1,8 @@
1
- [2025-05-25T08:22:45.856] [INFO] default - --> bigid-proxy::callBigIdApi: [get] endpoint: https://bigid-ui:9090/api/v1/id_connections
2
- [2025-05-25T08:22:45.872] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
3
- [2025-05-25T08:22:45.876] [INFO] default - --> bigid-proxy::callBigIdApi: [post] endpoint: https://bigid-ui:9090/api/v1/id_connections
4
- [2025-05-25T08:22:45.881] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
5
- [2025-05-25T08:22:45.883] [INFO] default - --> bigid-proxy::callBigIdApi: [put] endpoint: https://bigid-ui:9090/api/v1/id_connections
6
- [2025-05-25T08:22:45.888] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
7
- [2025-05-25T08:22:45.889] [INFO] default - --> bigid-proxy::callBigIdApi: [delete] endpoint: https://bigid-ui:9090/api/v1/id_connections
8
- [2025-05-25T08:22:45.893] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
1
+ [2025-07-21T08:26:22.230] [INFO] default - --> bigid-proxy::callBigIdApi: [get] endpoint: https://bigid-ui:9090/api/v1/id_connections
2
+ [2025-07-21T08:26:22.250] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
3
+ [2025-07-21T08:26:22.254] [INFO] default - --> bigid-proxy::callBigIdApi: [post] endpoint: https://bigid-ui:9090/api/v1/id_connections
4
+ [2025-07-21T08:26:22.258] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
5
+ [2025-07-21T08:26:22.260] [INFO] default - --> bigid-proxy::callBigIdApi: [put] endpoint: https://bigid-ui:9090/api/v1/id_connections
6
+ [2025-07-21T08:26:22.265] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
7
+ [2025-07-21T08:26:22.266] [INFO] default - --> bigid-proxy::callBigIdApi: [delete] endpoint: https://bigid-ui:9090/api/v1/id_connections
8
+ [2025-07-21T08:26:22.271] [INFO] default - <-- bigid-proxy::callBigIdApi: https://bigid-ui:9090/api/v1/id_connections success
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigid/apps-infrastructure-node-js",
3
- "version": "1.229.1",
3
+ "version": "1.233.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -37,7 +37,7 @@
37
37
  "dependencies": {
38
38
  "@types/jsonwebtoken": "^9.0.7",
39
39
  "axios": "1.8.2",
40
- "express": "4.21.0",
40
+ "express": "4.21.2",
41
41
  "follow-redirects": "1.15.6",
42
42
  "form-data": "^4.0.0",
43
43
  "http-errors": "^1.8.1",
package/src/index.ts CHANGED
@@ -7,6 +7,9 @@ export {
7
7
  getValueFromAppStorage,
8
8
  saveInStorage,
9
9
  executeHttpGet,
10
+ executeHttpPut,
11
+ executeHttpDelete,
12
+ executeHttpPost,
10
13
  scheduleFunction,
11
14
  unscheduleFunction,
12
15
  unscheduleAllFunctions,