@anzusystems/common-admin 1.47.0-beta.dev-1778753795 → 1.47.0-beta.dev-1778753796

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.
@@ -9288,8 +9288,8 @@ export declare function useBaseUserFactory(): {
9288
9288
  export declare function useCachedItem<T extends {
9289
9289
  _loaded?: boolean;
9290
9290
  }>(getter: () => T | undefined): {
9291
- cached: ShallowRef<T | undefined>;
9292
- loaded: ShallowRef<boolean>;
9291
+ cached: ComputedRef<T | undefined>;
9292
+ loaded: ComputedRef<boolean>;
9293
9293
  };
9294
9294
 
9295
9295
  declare type UseCachedType = () => {