@acrool/rtk-query-codegen-openapi 1.4.0-alpha.3 → 1.4.0-alpha.4

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/lib/index.mjs CHANGED
@@ -516,7 +516,7 @@ export type SimpleLazyQueryHook<TData, TArg> = () => readonly [
516
516
  ];
517
517
 
518
518
  export type UseSimpleMutation<TRes, TArg = void> = () => readonly [
519
- (arg: TArg) => Promise<TRes>,
519
+ (arg: TArg) => Promise<TRes> & { unwrap: () => Promise<TRes> },
520
520
  {
521
521
  data: TRes | undefined;
522
522
  isLoading: boolean;