@logto/connector-aws-ses 1.0.0-beta.15 → 1.0.0-beta.17
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/README.md +17 -17
- package/docs/config-template.json +3 -3
- package/lib/{src/constant.d.ts → constant.d.ts} +0 -0
- package/lib/{src/index.d.ts → index.d.ts} +0 -0
- package/lib/index.js +9735 -38805
- package/lib/{src/mock.d.ts → mock.d.ts} +0 -0
- package/lib/{src/types.d.ts → types.d.ts} +10 -6
- package/lib/{src/utils.d.ts → utils.d.ts} +1 -1
- package/logo-dark.svg +5 -0
- package/logo.svg +4 -5
- package/package.json +17 -9
- package/lib/jest.config.d.ts +0 -3
- package/lib/src/index.test.d.ts +0 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Amazon SES邮件推送服务 Logto 官方连接器[中文文档](#aws-ses邮件
|
|
|
24
24
|
## Get started
|
|
25
25
|
Amazon SES is a cloud email service provider that can integrate into any application for bulk email sending.
|
|
26
26
|
|
|
27
|
-
Logto team to call the Amazon Simple Email Service APIs, with the help of which Logto end-users can register and sign in to their Logto account via mail verification code
|
|
27
|
+
Logto team to call the Amazon Simple Email Service APIs, with the help of which Logto end-users can register and sign in to their Logto account via mail verification code.
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
## Configure a mail service in the AWS service console
|
|
@@ -84,9 +84,9 @@ Here is an example of the JSON of the `Amazon SES` connector:
|
|
|
84
84
|
"content": "<forgot-password-template-content>"
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
|
-
"usageType": "
|
|
88
|
-
"subject": "<
|
|
89
|
-
"content": "<
|
|
87
|
+
"usageType": "Generic",
|
|
88
|
+
"subject": "<generic-template-subject>",
|
|
89
|
+
"content": "<generic-template-content>"
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"usageType": "Test",
|
|
@@ -118,11 +118,11 @@ That's it. Don't forget to [Enable connector in sign-in experience](https://docs
|
|
|
118
118
|
| configurationSetName | string (OPTIONAL) |
|
|
119
119
|
| templates | Template[] |
|
|
120
120
|
|
|
121
|
-
| Template Properties | Type | Enum values
|
|
122
|
-
| ------------------- | ----------- |
|
|
123
|
-
| subject | string | N/A
|
|
124
|
-
| content | string | N/A
|
|
125
|
-
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| '
|
|
121
|
+
| Template Properties | Type | Enum values |
|
|
122
|
+
| ------------------- | ----------- | -----------------------------------------------------|
|
|
123
|
+
| subject | string | N/A |
|
|
124
|
+
| content | string | N/A |
|
|
125
|
+
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| 'Generic' \| 'Test' |
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
# AWS SES 邮件连接器
|
|
@@ -188,9 +188,9 @@ Amazon SES 是云电子邮件发送服务,它可以集成到任何应用程序
|
|
|
188
188
|
"content": "<forgot-password-template-content>"
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
|
-
"usageType": "
|
|
192
|
-
"subject": "<
|
|
193
|
-
"content": "<
|
|
191
|
+
"usageType": "Generic",
|
|
192
|
+
"subject": "<generic-template-subject>",
|
|
193
|
+
"content": "<generic-template-content>"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"usageType": "Test",
|
|
@@ -222,8 +222,8 @@ Amazon SES 是云电子邮件发送服务,它可以集成到任何应用程序
|
|
|
222
222
|
| configurationSetName | string (OPTIONAL) |
|
|
223
223
|
| templates | Template[] |
|
|
224
224
|
|
|
225
|
-
| 模板属性 | 类型 | 枚举值
|
|
226
|
-
| --------- | ----------- |
|
|
227
|
-
| subject | string | N/A
|
|
228
|
-
| content | string | N/A
|
|
229
|
-
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| '
|
|
225
|
+
| 模板属性 | 类型 | 枚举值 |
|
|
226
|
+
| --------- | ----------- | -----------------------------------------------------|
|
|
227
|
+
| subject | string | N/A |
|
|
228
|
+
| content | string | N/A |
|
|
229
|
+
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| 'Generic' \| 'Test' |
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"content": "<forgot-password-template-content>"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
|
-
"usageType": "
|
|
28
|
-
"subject": "<
|
|
29
|
-
"content": "<
|
|
27
|
+
"usageType": "Generic",
|
|
28
|
+
"subject": "<generic-template-subject>",
|
|
29
|
+
"content": "<generic-template-content>"
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
"usageType": "Test",
|
|
File without changes
|
|
File without changes
|