diff --git a/src/index.ts b/src/index.ts index 0d1495a..39b3d33 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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'; @@ -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;