@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 +2 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2 -0
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@upyo/ses",
|
|
3
|
-
"version": "0.2.0-dev.
|
|
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.
|
|
58
|
+
"@upyo/core": "0.2.0-dev.26+8f57766a"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@dotenvx/dotenvx": "^1.47.3",
|