Skip to content

Commit

Permalink
Added Searchable to Additional Value table
Browse files Browse the repository at this point in the history
  • Loading branch information
Billy Ernest committed Sep 8, 2021
1 parent 79e363e commit a49e30b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application-typings/lib/SystemCenter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion application-typings/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit a49e30b

Please sign in to comment.