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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="websql" />
1
2
  import { TableDefinition } from "backend-plus";
2
3
  export type Key = string[];
3
4
  type DetectFeatures = {
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backend-plus",
3
3
  "description": "Backend for the anti Pareto rule",
4
- "version": "2.0.0-rc.22",
4
+ "version": "2.0.0-rc.24",
5
5
  "author": "Codenautas <codenautas@googlegroups.com>",
6
6
  "license": "MIT",
7
7
  "repository": "codenautas/backend-plus",