backend-plus 2.5.2-betha.6 → 2.5.2-betha.7

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.
@@ -218,11 +218,15 @@ export type FieldDefinition = EditableDbDefinition & {
218
218
  alwaysShow?:boolean /* show when appears in fixed fields */
219
219
  suggestingKeys?:string[]
220
220
  postInput?:PostInputOptions
221
- } & ({} | {
222
- sequence:SequenceDefinition
223
- nullable:true
224
- editable:false
225
- })
221
+ } & ({
222
+ sequence?: undefined
223
+ nullable?: boolean
224
+ editable?: boolean
225
+ } | {
226
+ sequence: SequenceDefinition
227
+ nullable: true
228
+ editable: false
229
+ });
226
230
  export type EditableDbDefinition = {
227
231
  editable?:boolean
228
232
  allow?:{
@@ -415,7 +419,6 @@ export interface AppConfigLogin
415
419
  {
416
420
  schema: string // schema of the user table
417
421
  table: string // user table
418
- from: string // complete expression to get table or join where get the user
419
422
  userFieldname: string // fieldname in user table that stores the user name
420
423
  passFieldname: string // fieldname in user table that stores the password hash
421
424
  rolFieldname: string // fieldname in user table that stores the rol
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backend-plus",
3
3
  "description": "Backend for the anti Pareto rule",
4
- "version": "2.5.2-betha.6",
4
+ "version": "2.5.2-betha.7",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/backend-plus",