@paroicms/server 1.121.0 → 1.122.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/server",
3
- "version": "1.121.0",
3
+ "version": "1.122.0",
4
4
  "description": "The ParoiCMS server",
5
5
  "keywords": [
6
6
  "cms",
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@apollo/server": "~5.4.0",
40
40
  "@as-integrations/express5": "~1.1.2",
41
- "@paroicms/admin-ui": "1.94.0",
41
+ "@paroicms/admin-ui": "1.95.0",
42
42
  "@paroicms/internal-anywhere-lib": "1.39.1",
43
43
  "@paroicms/internal-server-lib": "1.24.5",
44
44
  "@paroicms/playground_demo1": "0.68.4",
package/schema.graphql CHANGED
@@ -434,6 +434,7 @@ type Mutation {
434
434
  deleteAccount(accountId: ID!): Boolean!
435
435
  reactivateAccount(accountId: ID!): Boolean!
436
436
  resetAccountPassword(accountId: ID!): Boolean!
437
+ changeOwnPassword(currentPassword: String!, newPassword: String!): Boolean!
437
438
  setAccountPreferences(accountId: ID!, values: AccountPreferencesValues!): String!
438
439
  updateAccount(accountId: ID!, values: UpdateAccountValues!): Account!
439
440
  updateAccountRoles(accountId: ID!, roles: [String!]!): Account!