@exabugs/dynamodb-client 1.1.1 → 1.1.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.
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.1.2] - 2025-01-02
11
+
12
+ ### Fixed
13
+
14
+ - **Parameter Store**: outputs.tfのパラメータ参照を修正
15
+ - 古いパラメータ名(`app_records_api_url`, `lambda_records_function_arn`)から新しい名前(`infra_dynamodb_client_api_url`, `infra_dynamodb_client_api_arn`)に更新
16
+ - v1.1.0で変更したパラメータ名に合わせてoutputsを修正
17
+
10
18
  ## [1.1.1] - 2025-01-02
11
19
 
12
20
  ### Fixed
@@ -1,5 +1,5 @@
1
- // @exabugs/dynamodb-client v1.1.1
2
- // Built: 2026-01-01T17:41:12.278Z
1
+ // @exabugs/dynamodb-client v1.1.2
2
+ // Built: 2026-01-01T17:49:53.300Z
3
3
  "use strict";
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exabugs/dynamodb-client",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
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",
@@ -1,34 +0,0 @@
1
- # Parameter Store モジュール出力
2
-
3
- # Parameter Store ARNs
4
- output "parameter_arns" {
5
- description = "作成されたParameter StoreパラメータのARN一覧"
6
- value = {
7
- records_api_url = aws_ssm_parameter.app_records_api_url.arn
8
- dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.arn
9
- records_function_arn = aws_ssm_parameter.lambda_records_function_arn.arn
10
- }
11
- }
12
-
13
- # Parameter Store Names
14
- output "parameter_names" {
15
- description = "作成されたParameter Storeパラメータの名前一覧"
16
- value = {
17
- records_api_url = aws_ssm_parameter.app_records_api_url.name
18
- dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.name
19
- records_function_arn = aws_ssm_parameter.lambda_records_function_arn.name
20
- }
21
- }
22
-
23
- # Parameter Store Paths (same as names)
24
- output "parameter_paths" {
25
- description = "作成されたParameter Storeパラメータのパス一覧"
26
- value = {
27
- records_api_url = aws_ssm_parameter.app_records_api_url.name
28
- dynamodb_table_name = aws_ssm_parameter.infra_dynamodb_table_name.name
29
- records_function_arn = aws_ssm_parameter.lambda_records_function_arn.name
30
- }
31
- }
32
-
33
- # Note: IAMポリシーは各プロジェクトで個別に定義してください
34
- # 詳細は iam.tf のコメントを参照