@lambda-kata/cdk 0.1.3-rc.26 → 0.1.3-rc.27

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.
@@ -110,12 +110,13 @@ export declare function kata<T extends NodejsFunction | LambdaFunction>(lambda:
110
110
  *
111
111
  * @param lambda - The Node.js Lambda function to transform
112
112
  * @param accountId - The AWS account ID to use for licensing check
113
+ * @param region - The AWS region for deployment (from Stack.of(lambda).region)
113
114
  * @param props - Optional configuration for the transformation
114
115
  * @returns Promise resolving to the transformation result
115
116
  *
116
117
  * @internal
117
118
  */
118
- export declare function kataWithAccountId<T extends NodejsFunction | LambdaFunction>(lambda: T, accountId: string, props?: KataWrapperOptions): Promise<KataResult>;
119
+ export declare function kataWithAccountId<T extends NodejsFunction | LambdaFunction>(lambda: T, accountId: string, region: string, props?: KataWrapperOptions): Promise<KataResult>;
119
120
  /**
120
121
  * Gets the original runtime from a Lambda function before transformation.
121
122
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambda-kata/cdk",
3
- "version": "0.1.3-rc.26",
3
+ "version": "0.1.3-rc.27",
4
4
  "description": "AWS CDK integration for Lambda Kata - Node.js Lambdas running via Lambda Kata runtime",
5
5
  "main": "out/dist/index.js",
6
6
  "types": "out/tsc/src/index.d.ts",