@xube/kit-aws-hooks 0.0.45 → 0.0.46

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/dist/send.js CHANGED
@@ -72,6 +72,7 @@ const sendDataToEndpoints = async (webhookTableName, indexName, items, log = kit
72
72
  error: `Failed to send data to ${failedResponseCount} of ${endpointSends.length} endpoints: ${JSON.stringify(failedEndpointSendUrls, null, 2)}`,
73
73
  });
74
74
  }
75
+ log.info(`Successfully sent data to all endpoints.`);
75
76
  return new kit_request_1.XubeResponse({
76
77
  statusCode: 200,
77
78
  data: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws-hooks",
3
- "version": "0.0.45",
3
+ "version": "0.0.46",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -17,12 +17,12 @@
17
17
  },
18
18
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
19
19
  "devDependencies": {
20
- "@xube/kit-build": "^0.0.45"
20
+ "@xube/kit-build": "^0.0.46"
21
21
  },
22
22
  "dependencies": {
23
- "@xube/kit-aws": "^0.0.45",
24
- "@xube/kit-log": "^0.0.45",
25
- "@xube/kit-request": "^0.0.45",
23
+ "@xube/kit-aws": "^0.0.46",
24
+ "@xube/kit-log": "^0.0.46",
25
+ "@xube/kit-request": "^0.0.46",
26
26
  "zod": "^3.22.4"
27
27
  }
28
28
  }
package/src/send.ts CHANGED
@@ -128,6 +128,8 @@ export const sendDataToEndpoints = async (
128
128
  });
129
129
  }
130
130
 
131
+ log.info(`Successfully sent data to all endpoints.`);
132
+
131
133
  return new XubeResponse({
132
134
  statusCode: 200,
133
135
  data: true,