@exabugs/dynamodb-client 1.3.31 → 1.3.32
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/CHANGELOG.md +8 -0
- package/dist/server/handler.cjs +7 -3
- package/dist/server/handler.cjs.map +2 -2
- package/dist/server/handler.d.ts +1 -1
- package/dist/server/handler.js +1 -1
- package/dist/server/operations/parameterConverter.d.ts.map +1 -1
- package/dist/server/operations/parameterConverter.js +5 -0
- package/dist/server/operations/parameterConverter.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.3.32] - 2026-01-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **デバッグログ追加**: convertUpdateOneParamsにデバッグログを追加
|
|
15
|
+
- ゲストユーザーのデバイス登録失敗問題の調査のため
|
|
16
|
+
- filter.idが正しく渡されているかを確認
|
|
17
|
+
|
|
10
18
|
## [1.3.31] - 2026-01-08
|
|
11
19
|
|
|
12
20
|
### Fixed
|
package/dist/server/handler.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
// @exabugs/dynamodb-client v1.3.
|
|
2
|
-
// Built: 2026-01-
|
|
1
|
+
// @exabugs/dynamodb-client v1.3.32
|
|
2
|
+
// Built: 2026-01-08T12:01:29.501Z
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -33242,6 +33242,10 @@ function convertInsertOneParams(mongoParams) {
|
|
|
33242
33242
|
}
|
|
33243
33243
|
__name(convertInsertOneParams, "convertInsertOneParams");
|
|
33244
33244
|
function convertUpdateOneParams(mongoParams) {
|
|
33245
|
+
console.log("[DEBUG] convertUpdateOneParams received:", JSON.stringify(mongoParams, null, 2));
|
|
33246
|
+
console.log("[DEBUG] mongoParams.filter:", JSON.stringify(mongoParams.filter, null, 2));
|
|
33247
|
+
console.log("[DEBUG] mongoParams.filter?.id:", mongoParams.filter?.id);
|
|
33248
|
+
console.log("[DEBUG] typeof mongoParams.filter?.id:", typeof mongoParams.filter?.id);
|
|
33245
33249
|
const id = typeof mongoParams.filter?.id === "string" ? mongoParams.filter.id : void 0;
|
|
33246
33250
|
if (!id) {
|
|
33247
33251
|
throw new Error("updateOne requires filter.id");
|
|
@@ -34791,7 +34795,7 @@ async function handler(event) {
|
|
|
34791
34795
|
return createCorsResponse(HTTP_STATUS.OK);
|
|
34792
34796
|
}
|
|
34793
34797
|
if (event.requestContext.http.method === "GET" && event.requestContext.http.path === "/version") {
|
|
34794
|
-
const version = "1.3.
|
|
34798
|
+
const version = "1.3.32";
|
|
34795
34799
|
return createSuccessResponse({ version, timestamp: (/* @__PURE__ */ new Date()).toISOString() }, requestId);
|
|
34796
34800
|
}
|
|
34797
34801
|
if (event.requestContext.http.method !== "POST") {
|