@anzusystems/common-admin 1.47.0-beta.dev-1775683200 → 1.47.0-beta.dev-1775683300

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.
package/dist/labs.d.ts CHANGED
@@ -791,6 +791,7 @@ declare type UseApiFetchByIdsParams = {
791
791
  options?: AxiosRequestConfig;
792
792
  isSearchApi?: boolean;
793
793
  field?: string;
794
+ silentConsoleError?: boolean;
794
795
  };
795
796
 
796
797
  declare type UseApiFetchByIdsReturnType<R> = {
@@ -809,6 +810,7 @@ declare type UseApiFetchListBatchParams = {
809
810
  urlTemplate?: string;
810
811
  urlParams?: UrlParams;
811
812
  options?: AxiosRequestConfig;
813
+ silentConsoleError?: boolean;
812
814
  };
813
815
 
814
816
  declare type UseApiFetchListBatchReturnType<R> = {
@@ -823,6 +825,7 @@ declare type UseApiFetchListParams = {
823
825
  urlTemplate?: string;
824
826
  urlParams?: UrlParams;
825
827
  options?: AxiosRequestConfig;
828
+ silentConsoleError?: boolean;
826
829
  };
827
830
 
828
831
  declare type UseApiFetchListReturnType<R> = {
@@ -858,6 +861,7 @@ declare type UseApiRequestParams = {
858
861
  urlTemplate?: string;
859
862
  urlParams?: UrlParams;
860
863
  options?: AxiosRequestConfig;
864
+ silentConsoleError?: boolean;
861
865
  };
862
866
 
863
867
  export declare function useFilterHelpers<F extends readonly MakeFilterOption<string>[] = readonly MakeFilterOption<string>[]>(filterData: FilterData<F>, filterConfig: FilterConfig<F>, moreOptions?: Partial<FilterHelpersMoreOptions>): {