@effect-aws/client-sqs 0.3.2 → 0.4.0

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
@@ -1,5 +1,11 @@
1
1
  # @effect-aws/client-sqs
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`0a969d8`](https://github.com/floydspace/effect-aws/commit/0a969d8a74c3bf1b87ff6a1c8bf689af849797e1) Thanks [@floydspace](https://github.com/floydspace)! - upgrade effect peer version
8
+
3
9
  ## 0.3.2
4
10
 
5
11
  ### Patch Changes
package/lib/Context.d.ts CHANGED
@@ -2,7 +2,7 @@ import { SQSClient, SQSClientConfig } from "@aws-sdk/client-sqs";
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 SQSClientOptions_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> & {
5
+ declare const SQSClientOptions_base: new <A extends Record<string, any>>(args: import("effect/Types").Equals<Omit<A, keyof import("effect/Equal").Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends "_tag" | keyof import("effect/Equal").Equal ? never : P]: A[P]; }) => Data.Data<Readonly<A> & {
6
6
  readonly _tag: "SQSClientOptions";
7
7
  }>;
8
8
  export declare class SQSClientOptions extends SQSClientOptions_base<SQSClientConfig> {
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.52",
15
+ "effect": "2.0.0-next.55",
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.52"
29
+ "effect": "^2.0.0-next.55"
30
30
  },
31
31
  "dependencies": {
32
32
  "@aws-sdk/client-sqs": "^3",
@@ -37,7 +37,7 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "version": "0.3.2",
40
+ "version": "0.4.0",
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\".",