@webbio/strapi-plugin-page-builder 0.9.19-authentication → 0.9.21-authentication

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webbio/strapi-plugin-page-builder",
3
- "version": "0.9.19-authentication",
3
+ "version": "0.9.21-authentication",
4
4
  "description": "This is the description of the plugin.",
5
5
  "scripts": {
6
6
  "develop": "tsc -p tsconfig.server.json -w",
@@ -57,7 +57,7 @@ exports.default = {
57
57
  // @ts-ignore we all love strapi typings
58
58
  from: foundUser.platform.platformEmails.adminEmail.fromEmail,
59
59
  // @ts-ignore
60
- to: foundUser.platform.platformEmails.adminEmail.toMail,
60
+ to: foundUser.platform.platformEmails.adminEmail.toEmail,
61
61
  // @ts-ignore
62
62
  subject: foundUser.platform.platformEmails.adminEmail.subject,
63
63
  // @ts-ignore
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "options": {},
8
8
  "attributes": {
9
- "toMail": {
9
+ "toEmail": {
10
10
  "type": "string"
11
11
  },
12
12
  "fromEmail": {
@@ -65,7 +65,6 @@ type ResetPassword {
65
65
  exports.ResetPasswordInput = `
66
66
  input ResetPasswordInput {
67
67
  password: String!
68
- passwordConfirmation: String!
69
68
  resetPasswordToken: String!
70
69
  }
71
70
  `;