diff --git a/application-typings/lib/SystemCenter.ts b/application-typings/lib/SystemCenter.ts index d20a9f24..fa0e47f9 100644 --- a/application-typings/lib/SystemCenter.ts +++ b/application-typings/lib/SystemCenter.ts @@ -34,7 +34,7 @@ namespace SystemCenter { export type AdditionalFieldType = 'integer' | 'number' | 'string' | 'boolean' | string; // Tables export interface Setting {ID: number, Name: string, Value: string, DefaultValue: string } - export interface AdditionalField { ID: number, ParentTable: string, FieldName: string, Type: AdditionalFieldType, ExternalDB?: string, ExternalDBTable?: string, ExternalDBTableKey?: string, IsSecure: boolean } + export interface AdditionalField { ID: number, ParentTable: string, FieldName: string, Type: AdditionalFieldType, ExternalDB?: string, ExternalDBTable?: string, ExternalDBTableKey?: string, IsSecure: boolean, Searchable: boolean} export interface AdditionalFieldValue { ID: number, ParentTableID: number, AdditionalFieldID: number, Value: string } export interface ValueListGroup { ID: number, Name: string, Description: string, Items?: ValueListItem[]} export interface ValueListItem { ID: number, GroupID: number, AltValue: string, Value: string, SortOrder: number} diff --git a/application-typings/package.json b/application-typings/package.json index 460f35fe..f296204f 100644 --- a/application-typings/package.json +++ b/application-typings/package.json @@ -1,6 +1,6 @@ { "name": "@gpa-gemstone/application-typings", - "version": "0.0.24", + "version": "0.0.25", "description": "Application typings for GPA products", "main": "lib/index.js", "types": "lib/index.d.ts",