@develit-io/backend-sdk 9.4.1 → 9.4.2

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.
@@ -192,7 +192,7 @@ const logger = () => {
192
192
  context.set("auditLog", {
193
193
  requestId
194
194
  });
195
- await context.env.AUDITLOG_SERVICE.processLog({
195
+ await context.env.AUDITLOG_SERVICE.processAuditLog({
196
196
  type: "REQUEST",
197
197
  method: requestLog.method,
198
198
  path: requestLog.path,
@@ -227,7 +227,7 @@ const logger = () => {
227
227
  const rawUserMetaDataString = identityContext?.user?.rawUserMetaData;
228
228
  const rawUserMetaData = rawUserMetaDataString ? JSON.parse(rawUserMetaDataString) : null;
229
229
  const auditLogContext = context.get("auditLog");
230
- await context.env.AUDITLOG_SERVICE.processLog({
230
+ await context.env.AUDITLOG_SERVICE.processAuditLog({
231
231
  type: "RESPONSE",
232
232
  method: responseLog.method,
233
233
  path: responseLog.path,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@develit-io/backend-sdk",
3
- "version": "9.4.1",
3
+ "version": "9.4.2",
4
4
  "description": "Develit Backend SDK",
5
5
  "author": "Develit.io",
6
6
  "license": "ISC",