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.
- package/lib/backend-plus.d.ts +9 -6
- package/package.json +1 -1
package/lib/backend-plus.d.ts
CHANGED
|
@@ -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
|
|
223
|
-
nullable
|
|
224
|
-
editable
|
|
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