@logto/connector-aws-ses 1.0.0-beta.16 → 1.0.0-beta.18
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 +13 -3
- package/docs/config-template.json +5 -0
- 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 +9734 -38822
- 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/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
|
|
@@ -83,6 +83,11 @@ Here is an example of the JSON of the `Amazon SES` connector:
|
|
|
83
83
|
"subject": "<forgot-password-template-subject>",
|
|
84
84
|
"content": "<forgot-password-template-content>"
|
|
85
85
|
},
|
|
86
|
+
{
|
|
87
|
+
"usageType": "Generic",
|
|
88
|
+
"subject": "<generic-template-subject>",
|
|
89
|
+
"content": "<generic-template-content>"
|
|
90
|
+
},
|
|
86
91
|
{
|
|
87
92
|
"usageType": "Test",
|
|
88
93
|
"subject": "<test-template-subject>",
|
|
@@ -117,7 +122,7 @@ That's it. Don't forget to [Enable connector in sign-in experience](https://docs
|
|
|
117
122
|
| ------------------- | ----------- | -----------------------------------------------------|
|
|
118
123
|
| subject | string | N/A |
|
|
119
124
|
| content | string | N/A |
|
|
120
|
-
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| 'Test' |
|
|
125
|
+
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| 'Generic' \| 'Test' |
|
|
121
126
|
|
|
122
127
|
|
|
123
128
|
# AWS SES 邮件连接器
|
|
@@ -182,6 +187,11 @@ Amazon SES 是云电子邮件发送服务,它可以集成到任何应用程序
|
|
|
182
187
|
"subject": "<forgot-password-template-subject>",
|
|
183
188
|
"content": "<forgot-password-template-content>"
|
|
184
189
|
},
|
|
190
|
+
{
|
|
191
|
+
"usageType": "Generic",
|
|
192
|
+
"subject": "<generic-template-subject>",
|
|
193
|
+
"content": "<generic-template-content>"
|
|
194
|
+
},
|
|
185
195
|
{
|
|
186
196
|
"usageType": "Test",
|
|
187
197
|
"subject": "<test-template-subject>",
|
|
@@ -216,4 +226,4 @@ Amazon SES 是云电子邮件发送服务,它可以集成到任何应用程序
|
|
|
216
226
|
| --------- | ----------- | -----------------------------------------------------|
|
|
217
227
|
| subject | string | N/A |
|
|
218
228
|
| content | string | N/A |
|
|
219
|
-
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| 'Test' |
|
|
229
|
+
| usageType | enum string | 'Register' \| 'SignIn' \| 'ForgotPassword' \| 'Generic' \| 'Test' |
|
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"subject": "<forgot-password-template-subject>",
|
|
24
24
|
"content": "<forgot-password-template-content>"
|
|
25
25
|
},
|
|
26
|
+
{
|
|
27
|
+
"usageType": "Generic",
|
|
28
|
+
"subject": "<generic-template-subject>",
|
|
29
|
+
"content": "<generic-template-content>"
|
|
30
|
+
},
|
|
26
31
|
{
|
|
27
32
|
"usageType": "Test",
|
|
28
33
|
"subject": "<test-template-subject>",
|
|
File without changes
|
|
File without changes
|