Skip to content

Commit

Permalink
SSA-159 - SearchAdminSetting
Browse files Browse the repository at this point in the history
  • Loading branch information
kflo411 committed Dec 4, 2024
1 parent c659cd2 commit aa3d888
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,7 @@ export class EntityTypes {
static SalesTaxRateSourceLookup: 'SalesTaxRateSourceLookup' = 'SalesTaxRateSourceLookup';
static SalesTaxRateTypeLookup: 'SalesTaxRateTypeLookup' = 'SalesTaxRateTypeLookup';
static SalesTaxRateVersion: 'SalesTaxRateVersion' = 'SalesTaxRateVersion';
static SearchAdminSetting: 'SearchAdminSetting' = 'SearchAdminSetting';
static Sendout: 'Sendout' = 'Sendout';
static Shift: 'Shift' = 'Shift';
static ShiftPosition: 'ShiftPosition' = 'ShiftPosition';
Expand Down Expand Up @@ -15177,6 +15178,11 @@ export interface SalesTaxRateVersion {
status?: TaxStatusLookup;
taxType?: TaxTypeLookup;
}
export interface SearchAdminSetting {
id: number;
enableAutobuild?: boolean;
filters?: {enabled: boolean, field: string, operator?: any, value?: any}[],
}
export interface Sendout {
id?: number;
candidate?: Candidate;
Expand Down

0 comments on commit aa3d888

Please sign in to comment.