@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.js CHANGED
@@ -531,7 +531,7 @@ export type SimpleLazyQueryHook<TData, TArg> = () => readonly [
531
531
  ];
532
532
 
533
533
  export type UseSimpleMutation<TRes, TArg = void> = () => readonly [
534
- (arg: TArg) => Promise<TRes>,
534
+ (arg: TArg) => Promise<TRes> & { unwrap: () => Promise<TRes> },
535
535
  {
536
536
  data: TRes | undefined;
537
537
  isLoading: boolean;