@upyo/ses 0.2.0-dev.22 → 0.2.0-dev.26

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
@@ -307,6 +307,8 @@ function formatAddress(address) {
307
307
  * console.log("Email sent with ID:", receipt.messageId);
308
308
  * }
309
309
  * ```
310
+ *
311
+ * @since 0.2.0
310
312
  */
311
313
  var SesTransport = class {
312
314
  /** Resolved configuration with defaults applied */
package/dist/index.d.cts CHANGED
@@ -32,6 +32,8 @@ import { Message, Receipt, Transport, TransportOptions } from "@upyo/core";
32
32
  * sessionToken: "FwoGZXIvYXdzE...",
33
33
  * };
34
34
  * ```
35
+ *
36
+ * @since 0.2.0
35
37
  */
36
38
  type SesAuthentication = {
37
39
  /** Authentication type identifier. */
@@ -71,6 +73,8 @@ type SesAuthentication = {
71
73
  * },
72
74
  * };
73
75
  * ```
76
+ *
77
+ * @since 0.2.0
74
78
  */
75
79
  interface SesConfig {
76
80
  /** AWS authentication configuration. */
@@ -181,6 +185,8 @@ type ResolvedSesConfig = Required<Omit<SesConfig, "configurationSetName" | "defa
181
185
  * console.log("Email sent with ID:", receipt.messageId);
182
186
  * }
183
187
  * ```
188
+ *
189
+ * @since 0.2.0
184
190
  */
185
191
  declare class SesTransport implements Transport {
186
192
  /** Resolved configuration with defaults applied */
package/dist/index.d.ts CHANGED
@@ -32,6 +32,8 @@ import { Message, Receipt, Transport, TransportOptions } from "@upyo/core";
32
32
  * sessionToken: "FwoGZXIvYXdzE...",
33
33
  * };
34
34
  * ```
35
+ *
36
+ * @since 0.2.0
35
37
  */
36
38
  type SesAuthentication = {
37
39
  /** Authentication type identifier. */
@@ -71,6 +73,8 @@ type SesAuthentication = {
71
73
  * },
72
74
  * };
73
75
  * ```
76
+ *
77
+ * @since 0.2.0
74
78
  */
75
79
  interface SesConfig {
76
80
  /** AWS authentication configuration. */
@@ -181,6 +185,8 @@ type ResolvedSesConfig = Required<Omit<SesConfig, "configurationSetName" | "defa
181
185
  * console.log("Email sent with ID:", receipt.messageId);
182
186
  * }
183
187
  * ```
188
+ *
189
+ * @since 0.2.0
184
190
  */
185
191
  declare class SesTransport implements Transport {
186
192
  /** Resolved configuration with defaults applied */
package/dist/index.js CHANGED
@@ -306,6 +306,8 @@ function formatAddress(address) {
306
306
  * console.log("Email sent with ID:", receipt.messageId);
307
307
  * }
308
308
  * ```
309
+ *
310
+ * @since 0.2.0
309
311
  */
310
312
  var SesTransport = class {
311
313
  /** Resolved configuration with defaults applied */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@upyo/ses",
3
- "version": "0.2.0-dev.22+3cc9fea3",
3
+ "version": "0.2.0-dev.26+8f57766a",
4
4
  "description": "Amazon SES transport for Upyo email library",
5
5
  "keywords": [
6
6
  "email",
@@ -16,7 +16,7 @@
16
16
  "email": "hong@minhee.org",
17
17
  "url": "https://hongminhee.org/"
18
18
  },
19
- "homepage": "https://upyo.org/",
19
+ "homepage": "https://upyo.org/transports/ses",
20
20
  "repository": {
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/dahlia/upyo.git",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "sideEffects": false,
57
57
  "peerDependencies": {
58
- "@upyo/core": "0.2.0-dev.22+3cc9fea3"
58
+ "@upyo/core": "0.2.0-dev.26+8f57766a"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@dotenvx/dotenvx": "^1.47.3",