@upyo/ses 0.3.2-dev.57 → 0.3.3

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/dist/index.cjs CHANGED
@@ -101,7 +101,7 @@ var SesHttpClient = class {
101
101
  try {
102
102
  return await globalThis.fetch(url, {
103
103
  ...options,
104
- headers: signedHeaders,
104
+ headers: this.headersToRecord(signedHeaders),
105
105
  signal
106
106
  });
107
107
  } finally {
package/dist/index.js CHANGED
@@ -100,7 +100,7 @@ var SesHttpClient = class {
100
100
  try {
101
101
  return await globalThis.fetch(url, {
102
102
  ...options,
103
- headers: signedHeaders,
103
+ headers: this.headersToRecord(signedHeaders),
104
104
  signal
105
105
  });
106
106
  } finally {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upyo/ses",
3
- "version": "0.3.2-dev.57+bc2526d9",
3
+ "version": "0.3.3",
4
4
  "description": "Amazon SES transport for Upyo email library",
5
5
  "keywords": [
6
6
  "email",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "sideEffects": false,
57
57
  "peerDependencies": {
58
- "@upyo/core": "0.3.2-dev.57+bc2526d9"
58
+ "@upyo/core": "0.3.3"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@dotenvx/dotenvx": "^1.47.3",