backend-plus 2.0.0-rc.22 → 2.0.0-rc.24
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
CHANGED
|
@@ -169,6 +169,7 @@ export type SequenceDefinition = {
|
|
|
169
169
|
prefix?:string /* Prefix for the generated value */
|
|
170
170
|
}
|
|
171
171
|
export type ExportMetadataDefinition={ /* TODO: define */ }
|
|
172
|
+
export type PostInput='upperSpanish' | 'upperWithoutDiacritics' | 'parseDecimal'
|
|
172
173
|
export type FieldDefinition = EditableDbDefinition & {
|
|
173
174
|
name:string
|
|
174
175
|
typeName:PgKnownTypes|'ARRAY:text'
|
|
@@ -211,6 +212,7 @@ export type FieldDefinition = EditableDbDefinition & {
|
|
|
211
212
|
nameForUpsert?:string
|
|
212
213
|
alwaysShow?:boolean /* show when appears in fixed fields */
|
|
213
214
|
suggestingKeys?:string[]
|
|
215
|
+
postInput?:PostInput
|
|
214
216
|
} & ({} | {
|
|
215
217
|
sequence:SequenceDefinition
|
|
216
218
|
nullable:true
|
package/package.json
CHANGED