@exabugs/dynamodb-client 1.3.5 → 1.3.6

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.
@@ -4,7 +4,7 @@
4
4
  * HTTP API(Lambda Function URL)経由でCRUD操作を提供
5
5
  * MongoDB風の10操作をサポート
6
6
  *
7
- * Version: 1.3.5
7
+ * Version: 1.3.6
8
8
  */
9
9
  import type { APIGatewayProxyEventV2, APIGatewayProxyResultV2 } from 'aws-lambda';
10
10
  /**
@@ -38,7 +38,7 @@ export async function handler(event) {
38
38
  // バージョンエンドポイント(GET /version)
39
39
  if (event.requestContext.http.method === 'GET' &&
40
40
  event.requestContext.http.path === '/version') {
41
- const version = process.env.DYNAMODB_CLIENT_VERSION || '1.3.2';
41
+ const version = process.env.DYNAMODB_CLIENT_VERSION || '1.3.6';
42
42
  return createSuccessResponse({ version, timestamp: new Date().toISOString() }, requestId);
43
43
  }
44
44
  // POSTメソッドのみ許可
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exabugs/dynamodb-client",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "DynamoDB Single-Table Client SDK with MongoDB-like API, Shadow Records, and Lambda implementation for serverless applications",
5
5
  "author": "exabugs",
6
6
  "license": "MIT",