Browse Source

wip

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5222/head
Pranav C 2 years ago
parent
commit
5d92054a85
  1. 1
      packages/nc-gui/components.d.ts
  2. 20
      packages/nocodb/src/schema/swagger.json

1
packages/nc-gui/components.d.ts vendored

@ -89,6 +89,7 @@ declare module '@vue/runtime-core' {
IcTwotoneWidthNormal: typeof import('~icons/ic/twotone-width-normal')['default']
LogosGoogleGmail: typeof import('~icons/logos/google-gmail')['default']
LogosMysqlIcon: typeof import('~icons/logos/mysql-icon')['default']
LogosOracle: typeof import('~icons/logos/oracle')['default']
LogosPostgresql: typeof import('~icons/logos/postgresql')['default']
LogosRedditIcon: typeof import('~icons/logos/reddit-icon')['default']
LogosSnowflakeIcon: typeof import('~icons/logos/snowflake-icon')['default']

20
packages/nocodb/src/schema/swagger.json

@ -9734,10 +9734,12 @@
"type": "object",
"properties": {
"email": {
"type": "string"
"type": "string",
"format": "email"
},
"password": {
"type": "string"
"type": "string",
"minLength": 8
}
},
"required": [
@ -9749,7 +9751,8 @@
"type": "object",
"properties": {
"email": {
"type": "string"
"type": "string",
"format": "email"
},
"password": {
"type": "string"
@ -9764,7 +9767,8 @@
"type": "object",
"properties": {
"email": {
"type": "string"
"type": "string",
"format": "email"
}
},
"required": [
@ -9775,7 +9779,10 @@
"type": "object",
"properties": {
"password": {
"type": "string"
"type": "string",
"minLength": 8,
"description": "New password",
"example": "newpassword"
}
},
"required": [
@ -9786,7 +9793,8 @@
"type": "object",
"properties": {
"currentPassword": {
"type": "string"
"type": "string",
"minLength": 8
},
"newPassword": {
"type": "string"

Loading…
Cancel
Save