@effect-aws/client-lambda 0.2.1 → 0.2.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 +6 -0
- package/lib/Context.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @effect-aws/client-lambda
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`280d8bd`](https://github.com/floydspace/effect-aws/commit/280d8bd6686d6e7a2b73322a047e8eb22263b1e1) Thanks [@floydspace](https://github.com/floydspace)! - upgrade dependencies
|
|
8
|
+
|
|
3
9
|
## 0.2.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/Context.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { LambdaClient, LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
|
2
2
|
import * as Context from "effect/Context";
|
|
3
3
|
import * as Data from "effect/Data";
|
|
4
4
|
import * as Layer from "effect/Layer";
|
|
5
|
-
declare const LambdaClientOptions_base: new <A extends Record<string, any>>(args: import("effect/dist/declarations/src/Types").Equals<Omit<A, keyof import("effect/dist/declarations/src/Equal").Equal>, {}> extends true ? void :
|
|
5
|
+
declare const LambdaClientOptions_base: new <A extends Record<string, any>>(args: import("effect/dist/declarations/src/Types").Equals<Omit<A, keyof import("effect/dist/declarations/src/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends "_tag" | keyof import("effect/dist/declarations/src/Equal").Equal ? never : P]: A[P]; }) => Data.Data<Readonly<A> & {
|
|
6
6
|
readonly _tag: "LambdaClientOptions";
|
|
7
7
|
}>;
|
|
8
8
|
export declare class LambdaClientOptions extends LambdaClientOptions_base<LambdaClientConfig> {
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@typescript-eslint/parser": "^6",
|
|
13
13
|
"aws-sdk-client-mock": "^3.0.0",
|
|
14
14
|
"aws-sdk-client-mock-jest": "^3.0.0",
|
|
15
|
-
"effect": "2.0.0-next.
|
|
15
|
+
"effect": "2.0.0-next.52",
|
|
16
16
|
"eslint": "^8",
|
|
17
17
|
"eslint-config-prettier": "^9.0.0",
|
|
18
18
|
"eslint-import-resolver-node": "^0.3.9",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typescript": "^5.2.2"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"effect": "^2.0.0-next.
|
|
29
|
+
"effect": "^2.0.0-next.52"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@aws-sdk/client-lambda": "^3",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"version": "0.2.
|
|
40
|
+
"version": "0.2.2",
|
|
41
41
|
"types": "lib/index.d.ts",
|
|
42
42
|
"module": "lib/esm/index.js",
|
|
43
43
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
|